:root {
  --bg: #f5f7ff;
  --bg-2: #f0f3ff;
  --text: #0f172a;
  --muted: #64748b;
  --card: rgba(255, 255, 255, 0.6);
  --glass: rgba(255, 255, 255, 0.55);
  --border: rgba(86, 97, 112, 0.25);
  --primary: #4f46e5;
  --secondary: #6366f1;
  --accent: #a855f7;
  --cyan: #22d3ee;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", "Inter", sans-serif;
  background: radial-gradient(circle at top, #ffffff 0%, var(--bg) 35%, #e9eeff 100%);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.logo img{
  border-radius: 25%;
  height: 8rem;
  border: 3px solid rgb(122, 42, 42);
}

.nav-links {
  display: flex;
  gap: 20px;
  color: var(--muted);
  font-weight: 500;
}

.nav-link {
  position: relative;
  padding: 6px 2px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(120deg, var(--primary), var(--accent));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.nav-cta {
  display: flex;
  gap: 12px;
}

.btn {
  border: 1px solid transparent;
  padding: 12px 20px;
  border-radius: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.3s ease, color 0.2s ease;
}

.btn.primary {
  background: linear-gradient(120deg, var(--primary), var(--accent));
  color: white;
  box-shadow: 0 12px 24px rgba(79, 70, 229, 0.3);
}

.btn.secondary {
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(79, 70, 229, 0.2);
}

.btn.glow:hover {
  box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.2), 0 18px 32px rgba(79, 70, 229, 0.35);
}

.bg-glow {
  position: fixed;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(99, 102, 241, 0.25), transparent 35%),
    radial-gradient(circle at 80% 10%, rgba(34, 211, 238, 0.2), transparent 35%),
    radial-gradient(circle at 80% 80%, rgba(168, 85, 247, 0.15), transparent 30%);
  z-index: -1;
}

.hero {
  padding: 70px 24px 60px;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: block;
}

.hero-text {
  text-align: center;
}

.hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-text p {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 760px;
  margin: 0 auto 18px;
}

.gradient-text {
  background: linear-gradient(120deg, #4338ca, #a855f7, #22d3ee);
  -webkit-background-clip: text;
  color: transparent;
}

.pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(99, 102, 241, 0.12);
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 16px;
}

.hero-image {
  display: flex;
  align-items: center;
}

.hero-image img {
  height: auto;
}

.hero-image .bg-image{
  height: 35rem;
  width: 100%;
}

.bg-rotate{
  height: 30rem;
  width: 30%;
  margin-right: -10rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 32px;
}

.hero-metrics {
  display: flex;
  gap: 32px;
}

.metric {
  font-size: 1.4rem;
  font-weight: 700;
}

.metric-label {
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}


.dashboard {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 20px;
  width: 100%;
  max-width: 480px;
  transform: perspective(900px) rotateY(-8deg) rotateX(4deg);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.dashboard:hover {
  transform: perspective(900px) rotateY(-4deg) rotateX(2deg) scale(1.01);
  box-shadow: 0 24px 60px rgba(79, 70, 229, 0.25);
  border-color: rgba(79, 70, 229, 0.4);
}

.dash-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.red { background: #f87171; }
.yellow { background: #facc15; }
.green { background: #4ade80; }

.dash-title {
  margin-left: auto;
  font-weight: 600;
  color: var(--muted);
}

.dash-body {
  display: grid;
  gap: 14px;
}

.kpi {
  background: rgba(99, 102, 241, 0.12);
  padding: 14px;
  border-radius: 16px;
}

.kpi-label {
  color: var(--muted);
  font-size: 0.85rem;
}

.kpi-value {
  font-size: 1.4rem;
  font-weight: 700;
}

.kpi-trend {
  font-size: 0.85rem;
}

.kpi-trend.up {
  color: #22c55e;
}

.chart {
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(130deg, rgba(79, 70, 229, 0.2), rgba(34, 211, 238, 0.2));
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mini-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px;
  font-size: 0.85rem;
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.mini-card:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(79, 70, 229, 0.4);
}

.floating-card {
  position: absolute;
  width: 120px;
  height: 80px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}

.card-1 { top: -10px; left: 10px; }
.card-2 { bottom: -20px; right: 30px; animation-delay: 1.5s; }

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-12px); }
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 40px;
}

.section-head h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

.section-head p {
  color: var(--muted);
}

.product {
  padding: 80px 24px;
}

.tabs {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
}

.tab {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.2s ease;
}

.tab.active {
  color: var(--text);
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.15), rgba(168, 85, 247, 0.15));
  border-color: rgba(79, 70, 229, 0.3);
}

.product-ui {
  display: flex;
  justify-content: center;
}

.ui-screen {
  width: min(900px, 90vw);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 26px;
  padding: 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.ui-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
  font-weight: 600;
}

.ui-chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.15);
}

.ui-body {
  display: grid;
  gap: 16px;
}

.ui-body.alt .ui-card {
  background: linear-gradient(140deg, rgba(168, 85, 247, 0.18), rgba(34, 211, 238, 0.18));
}

.ui-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
}

.ui-row:last-child {
  grid-template-columns: repeat(3, 1fr);
}

.ui-card {
  height: 140px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(79, 70, 229, 0.15), rgba(34, 211, 238, 0.15));
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.ui-card.big {
  height: 200px;
}

.ui-card:hover {
  transform: translateY(-6px) scale(1.01);
  background: linear-gradient(140deg, rgba(79, 70, 229, 0.25), rgba(168, 85, 247, 0.22));
  box-shadow: 0 18px 36px rgba(79, 70, 229, 0.2);
}

.features {
  padding: 80px 24px;
}

.feature-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.feature-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.2);
  background-color: #d480f5;
}

.feature-card .icon {
  width: 88px;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.2), rgba(168, 85, 247, 0.2));
  margin-bottom: 16px;
  font-weight: 700;
}

.feature-card h3 {
  margin-bottom: 8px;
}

.feature-card p {
  color: var(--muted);
}

.why {
  padding: 80px 24px;
}

.zigzag {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.zig-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.zig-item.reverse {
  direction: rtl;
}

.zig-item.reverse .zig-text {
  direction: ltr;
}

.zig-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.zig-text p {
  color: var(--muted);
}

.card-glass {
  height: 300px;
  border-radius: 24px;
  background: linear-gradient(140deg, rgba(79, 70, 229, 0.18), rgba(34, 211, 238, 0.2));
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card-glass:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.22);
  border-color: rgba(79, 70, 229, 0.4);
}

.stats {
  padding: 70px 24px;
  background: rgba(79, 70, 229, 0.06);
}

.stats-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  text-align: center;
}

.stat-number {
  font-size: 2.4rem;
  font-weight: 800;
}

.stat-label {
  color: var(--muted);
}

.integrations {
  padding: 80px 24px;
}

.logo-marquee {
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
}

.logo-track {
  display: flex;
  gap: 40px;
  padding: 20px;
  animation: marquee 18s linear infinite;
}

.logo {
  font-weight: 700;
  color: var(--muted);
}

@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.testimonials {
  padding: 20px 24px;
}

.carousel {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-card {
  min-width: 100%;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.22);
  border-color: rgba(79, 70, 229, 0.4);
}

.avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.5), rgba(168, 85, 247, 0.5));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  color: white;
  font-weight: 700;
}

.testimonial-card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.testimonial-card p {
  margin-top: 16px;
  color: var(--muted);
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.carousel-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(99, 102, 241, 0.3);
  cursor: pointer;
}

.carousel-dots button.active {
  background: var(--primary);
}

.pricing {
  padding: 80px 24px;
}

.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  color: var(--muted);
}

.switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
}

.switch input { display: none; }

.slider {
  position: absolute;
  cursor: pointer;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(99, 102, 241, 0.3);
  border-radius: 999px;
  transition: 0.3s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 22px;
  width: 22px;
  left: 3px;
  bottom: 3px;
  background: white;
  border-radius: 50%;
  transition: 0.3s;
}

input:checked + .slider {
  background: linear-gradient(120deg, var(--primary), var(--accent));
}

input:checked + .slider:before {
  transform: translateX(24px);
}

.pricing-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.price-card {
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}

.price-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.22);
  border-color: rgba(79, 70, 229, 0.4);
  background: rgba(255, 255, 255, 0.9);
}

.price-card ul {
  list-style: none;
  margin: 18px 0 24px;
  color: var(--muted);
  display: grid;
  gap: 8px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin: 12px 0;
}

.price-card.popular {
  border: 1px solid rgba(79, 70, 229, 0.4);
  transform: translateY(-8px);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.15);
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.cta {
  padding: 80px 24px;
}

.cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.9), rgba(168, 85, 247, 0.85), rgba(34, 211, 238, 0.85));
  background-size: 200% 200%;
  color: white;
  animation: gradientShift 8s ease infinite;
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-inner p {
  margin: 12px 0 24px;
  color: rgba(255, 255, 255, 0.85);
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer {
  padding: 70px 24px 50px;
  background: #fbf4dd;
  border-top: 1px solid rgba(30, 41, 59, 0.12);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 300px) 1fr;
  gap: 40px;
}

.footer-brand {
  padding-right: 28px;
  border-right: 1px solid rgba(30, 41, 59, 0.2);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #1f2937;
  transition: transform 0.2s ease, color 0.2s ease, text-shadow 0.2s ease;
}

.footer-logo:hover {
  color: #111827;
  transform: translateY(-2px);
  text-shadow: 0 10px 20px rgba(17, 24, 39, 0.15);
}

.footer-brand p {
  margin: 12px 0 18px;
  color: #4b5563;
}

.footer-contact {
  display: grid;
  gap: 6px;
  font-weight: 600;
  color: #1f2937;
}

.footer-apps {
  margin-top: 22px;
}

.footer-apps h5 {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1f2937;
}

.app-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #1f2937;
  color: #fef3c7;
  font-weight: 600;
  font-size: 13px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.app-badge:hover {
  background: #111827;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.2);
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 28px;
}

.footer h4 {
  margin-bottom: 12px;
  color: #1f2937;
}

.footer-subhead {
  margin-top: 18px;
}

.newsletter {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.newsletter input {
  flex: 1;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  color: var(--muted);
}

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .nav-links { display: none; }

  .hero-cta { flex-direction: column; align-items: flex-start; }

  .zig-item, .zig-item.reverse {
    grid-template-columns: 1fr;
    direction: ltr;
  }

  .stats-inner { grid-template-columns: 1fr; }

  .cta-buttons { flex-direction: column; }
}

.topbar {
  background: #8081f5;
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
  margin: 0;
  padding: 0;
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.topbar a {
  color: #22d3ee;
  font-weight: 700;
}

html, body {
  margin: 0;
  padding: 0;
}


.product-media {
  width: min(980px, 92vw);
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.product-badge {
  align-self: start;
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.12);
  color: var(--secondary);
  font-weight: 600;
}

.product-media img {
  width: 100%;
  height: 30rem;
  border-radius: 18px;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.product-media img.fade {
  opacity: 0.6;
  transform: scale(0.98);
}

.card-glass {
  overflow: hidden;
}

.card-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 22px;
}

.product-glass-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.glass-mini {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 12px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glass-mini:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.18);
  border-color: rgba(79, 70, 229, 0.35);
}

.glass-title {
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.glass-value {
  font-weight: 700;
  font-size: 1.05rem;
}

@media (max-width: 980px) {
  .product-glass-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.integration-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 18px;
}

.logo-card {
  height: 84px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: none;
}

.logo-card.go {
  background: linear-gradient(135deg, #0f9d58, #2ecc71);
  color: #fffef7;
}

.logo-card.zoom {
  background: linear-gradient(135deg, #2d8cff, #6aa8ff);
  color: white;
  font-weight: 600;
}

.logo-card.campus {
  background: linear-gradient(135deg, #6d28d9, #a855f7);
  color: white;
}

.logo-card.tally {
  background: #ffffff;
  color: #111827;
  font-family: "Poppins", sans-serif;
  border: 1px solid rgba(17, 24, 39, 0.12);
}

.glass-cards {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 10px;
  text-align: center;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.glass-card:nth-child(1) { grid-column: 2 / span 2; }
.glass-card:nth-child(2) { grid-column: 4 / span 2; }
.glass-card:nth-child(3) { grid-column: 1 / span 2; }
.glass-card:nth-child(4) { grid-column: 3 / span 2; }
.glass-card:nth-child(5) { grid-column: 5 / span 2; }

.glass-card img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 8px;
}

.glass-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(79, 70, 229, 0.18);
  border-color: rgba(79, 70, 229, 0.35);
}

.glass-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 600;
}

@media (max-width: 980px) {
  .glass-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .glass-card:nth-child(1),
  .glass-card:nth-child(2),
  .glass-card:nth-child(3),
  .glass-card:nth-child(4),
  .glass-card:nth-child(5) {
    grid-column: auto;
  }
}


.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 16px;
}

.product-card {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 18px;
  padding: 12px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(16px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.product-card.large { grid-column: span 6; height: 220px; }
.product-card.wide { grid-column: span 6; height: 180px; }
.product-card:not(.large):not(.wide) { grid-column: span 3; height: 180px; }

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card img.fade {
  opacity: 0.6;
  transform: scale(0.98);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 46px rgba(79, 70, 229, 0.18);
  border-color: rgba(79, 70, 229, 0.35);
}

@media (max-width: 980px) {
  .product-card.large,
  .product-card.wide,
  .product-card:not(.large):not(.wide) {
    grid-column: span 12;
    height: auto;
  }

  .product-card img {
    height: auto;
  }
}

.segments {
  padding: 80px 24px;
}

.segment-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
}

.segment-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 22px;
  padding: 24px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(12px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.segment-card:hover {
  transform: scaleY(1.15);
  box-shadow: 0 22px 46px rgba(79, 70, 229, 0.18);
  border-color: rgba(79, 70, 229, 0.35);
  background-color: #92f0ff;
}

.segment-card img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 18px;
  margin-bottom: 14px;
}

.segment-card h3 {
  margin-bottom: 4px;
}

.segment-card span {
  display: block;
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 10px;
}

.segment-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.segment-card a {
  font-weight: 600;
  color: var(--primary);
}

.hero-strap {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: 0.3px;
  margin-bottom: 14px;
  color: #0f172a;
}

.hero-strap .accent {
  color: #f59e0b;
}

.hero-center {
  /* grid-template-columns: 1fr; */
  text-align: center;
}

.hero-center .hero-text {
  /* max-width: 900px; */
  margin: 0 auto;
}

.hero-center .hero-cta {
  justify-content: center;
}

.hero-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 18px;
  font-weight: 600;
  color: var(--text);
}

.hero-link::after {
  content: "→";
  font-size: 1rem;
}

.hero-showcase {
  /* margin-top: 40px; */
}

.hero-canvas {
  position: relative;
  /* max-width: 1000px; */
  margin: 0 auto;
  padding: 40px 20px 60px;
  border-radius: 30px;
  background: radial-gradient(circle at 20% 30%, rgba(34, 211, 238, 0.18), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.18), transparent 40%),
    radial-gradient(circle at 70% 80%, rgba(99, 102, 241, 0.18), transparent 40%);
  overflow: hidden;
}

.hero-shot {
  position: absolute;
  width: 32%;
  border-radius: 18px;
  border: 1px solid rgba(148, 163, 184, 0.3);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  background: white;
}

.shot-1 { left: 6%; top: 20%; transform: rotate(-4deg); }
.shot-2 { left: 30%; top: 5%; transform: rotate(2deg); width: 36%; }
.shot-3 { right: 8%; top: 22%; transform: rotate(3deg); }
.shot-4 { left: 28%; bottom: 6%; transform: rotate(-2deg); width: 38%; }

.orbit {
  position: absolute;
  right: -8%;
  top: 10%;
  width: 320px;
  height: 320px;
}

.orbit-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px dashed rgba(148, 163, 184, 0.5);
}

.orbit-dot {
  position: absolute;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text);
}

.orbit-dot:nth-child(2) { top: 10%; left: 45%; }
.orbit-dot:nth-child(3) { top: 35%; right: -6%; }
.orbit-dot:nth-child(4) { bottom: 30%; right: 6%; }
.orbit-dot:nth-child(5) { bottom: 12%; left: 25%; }
.orbit-dot:nth-child(6) { top: 45%; left: -6%; }

@media (max-width: 980px) {
  .hero-shot { position: relative; width: 100%; margin: 0 auto 16px; }
  .hero-canvas { padding: 20px; }
  .orbit { display: none; }
}

.hero-title {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 10px;
}

.hero-accent {
  color: #4f46e5;
}

.hero-subtitle {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 12px;
}


.testimonial-showcase {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 32px;
  align-items: center;
}

.testimonial-visual {
  position: relative;
  padding: 40px;
  border-radius: 26px;
  background: radial-gradient(circle at 10% 20%, rgba(251, 191, 36, 0.25), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(250, 204, 21, 0.25), transparent 45%);
}

.visual-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 24px;
  padding: 36px;
  display: grid;
  place-items: center;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  overflow: hidden;
}

.visual-ring {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  border: 2px solid #a855f7;
}

.visual-photo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  /* border: 8px solid white; */
  /* box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2); */
}

.testimonial-content h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
  color: #4f46e5;
}

.testimonial-content span {
  display: block;
  color: var(--muted);
  margin-bottom: 16px;
}

.testimonial-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-content .person {
  font-weight: 600;
  color: var(--text);
}

.school-badge {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(148, 163, 184, 0.25);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.school-badge img {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
}

@media (max-width: 980px) {
  .testimonial-showcase {
    grid-template-columns: 1fr;
  }

  .testimonial-visual {
    padding: 20px;
  }

  .visual-card {
    padding: 24px;
  }
}

.testimonial-carousel {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 10px 0;
}

.carousel-btn {
  margin: 0 15px;
  font-weight: 700;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(148, 163, 184, 0.3);
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  z-index: 2;
}

.carousel-btn:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.18);
}

.carousel-btn.prev { left: -10px; }
.carousel-btn.next { right: -10px; }

@media (max-width: 980px) {
  .carousel-btn.prev { left: 6px; }
  .carousel-btn.next { right: 6px; }
}

.faq {
  padding: 80px 24px;
}

.faq-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  border-radius: 20px;
  padding: 18px 22px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 46px rgba(79, 70, 229, 0.16);
  border-color: rgba(79, 70, 229, 0.35);
}

.faq-question {
  width: 100%;
  border: none;
  background: transparent;
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.faq-question::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--secondary);
}

.faq-answer {
  margin-top: 10px;
  color: var(--muted);
  line-height: 1.6;
}

.faq-board {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 24px;
  background: #fff4b5;
  border: 2px solid #2f9e44;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.faq-tabs {
  display: grid;
  gap: 14px;
}

.faq-tab {
  border: 1px solid rgba(31, 41, 55, 0.12);
  background: #fff9e3;
  border-radius: 14px;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

.faq-tab.active {
  background: linear-gradient(180deg, #ffe580, #f6c400);
  border-color: #2f9e44;
}

.faq-chat {
  position: relative;
  background: #fff9e3;
  border-radius: 20px;
  padding: 24px;
  min-height: 260px;
  display: grid;
  gap: 20px;
  align-content: start;
}

.faq-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: white;
  border: 3px solid #f6c400;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.faq-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.faq-bubble {
  max-width: 70%;
  padding: 14px 18px;
  border-radius: 999px;
  background: #ffe580;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.1);
  position: relative;
}

.faq-bubble.question {
  justify-self: start;
}

.faq-bubble.answer {
  justify-self: start;
  background: #fff9c4;
  border-radius: 20px;
}

.faq-bubble.answer::after {
  content: "";
  position: absolute;
  right: 40px;
  bottom: -12px;
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff9c4;
}

@media (max-width: 980px) {
  .faq-board {
    grid-template-columns: 1fr;
  }
}

.faq-board {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  padding: 24px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(16px);
}

.faq-tabs {
  display: grid;
  gap: 14px;
}

.faq-tab {
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(255, 255, 255, 0.6);
  border-radius: 16px;
  padding: 14px 16px;
  text-align: left;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.faq-tab.active {
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.2), rgba(34, 211, 238, 0.2));
  border-color: rgba(79, 70, 229, 0.4);
}

.faq-chat {
  position: relative;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 24px;
  min-height: 260px;
  display: grid;
  gap: 16px;
  align-content: start;
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.faq-avatar {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(79, 70, 229, 0.3);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.faq-bubble {
  max-width: 70%;
  padding: 14px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(148, 163, 184, 0.2);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.faq-bubble.answer {
  border-radius: 18px;
}

.faq-related {
  display: grid;
  gap: 10px;
  margin-top: 4px;
}

.faq-related button {
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 10px 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.faq-related button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
}

@media (max-width: 980px) {
  .faq-board {
    grid-template-columns: 1fr;
  }
}

.footer-link {
  display: inline-block;
  color: var(--muted);
  margin-bottom: 8px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-link:hover {
  color: var(--primary);
  transform: translateX(4px);
}

.footer-socials {
  display: flex;
  gap: 20px;
  margin-top: 14px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid rgba(148, 163, 184, 0.25);
  color: var(--text);
  transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

/* .social-icon img{
  width: 36px;
  height: 36px;
} */

.social-icon:hover {
  transform: translateY(-3px);
  color: var(--primary);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12);
}


@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-right: 0;
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.2);
  }
}

.footer-tagline {
  margin: 6px 0 14px;
  font-weight: 600;
  color: #4b5563;
}

.footer-col h5 {
  margin: 14px 0 8px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #1f2937;
}

.footer {
  padding: 70px 24px 40px;
  background: #fdf5dc;
  border-top: 1px solid #111827;
  border-bottom: 1px solid #111827;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 36px;
  align-items: start;
}

.footer-brand {
  padding-right: 28px;
  border-right: 1px solid #111827;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 24px;
  font-weight: 700;
  color: #111827;
}

.logo-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, #f4b40f 0 60deg, #f7c845 60deg 120deg, #f4b40f 120deg 180deg, #f7c845 180deg 240deg, #f4b40f 240deg 300deg, #f7c845 300deg 360deg);
  box-shadow: inset 0 0 0 6px #fff4c7;
  display: inline-block;
}

.footer-contact {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  font-weight: 500;
  color: #111827;
}

.footer-apps {
  margin-top: 26px;
}

.footer-apps h5 {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  color: #111827;
}

.app-badges {
  display: flex;
  gap: 12px;
  align-items: center;
}

.app-badge {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  background: transparent;
  border: none;
}

.app-badge svg {
  width: 26px;
  height: 26px;
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(4, minmax(180px, 1fr));
  gap: 24px;
}

.footer h4 {
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 700;
  color: #111827;
}

.footer-col h5 {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: #111827;
}

.footer-link {
  display: block;
  color: #111827;
  margin-bottom: 8px;
  font-size: 14px;
  text-decoration: none;
}

.footer-link:hover {
  text-decoration: underline;
}

@media (max-width: 980px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-right: 0;
    border-right: none;
    padding-bottom: 24px;
    border-bottom: 1px solid #111827;
  }

  .footer-columns {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}


.custom-footer {
    background: var(--bg);
    padding: 0;
    font-family: Arial, sans-serif;
    color: var(--text);
    border-top: 1px solid var(--border);
}

.footer-container {
    display: flex;
    width: 100%;
    min-height: 600px;
}

.footer-left {
    width: 22%;
    padding: 30px 25px;
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.footer-left img{
  height: 50px;
  width: 13rem;
}

.footer-logo-upload {
    width: 180px;
    height: 120px;
    border: 2px dashed #8d8d8d;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-bottom: 40px;
    background: rgba(255,255,255,0.25);
    font-size: 15px;
    font-weight: 600;
    color: #444;
}

.footer-contact p {
    margin: 0 0 10px;
    font-size: 16px;
    line-height: 1.6;
    color: var(--muted);
}

.footer-contact-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--text);
  margin-top: 6px;
  text-decoration: none;
}

.footer-contact-link:hover {
  text-decoration: underline;
}

.footer-apps {
    margin-top: 60px;
}

.footer-apps h4 {
    font-size: 22px;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text);
}

.app-icons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.app-icons a {
    display: inline-block;
    padding: 10px 14px;
    background: #111827;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 14px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.app-icons a:hover {
    background: #0f172a;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.18);
}

.footer-socials {
    margin-top: 18px;
}

.footer-socials h5 {
    font-size: 13px;
    margin-bottom: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
}

.social-icons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.custom-footer .social-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border);
    color: #111827;
    transition: transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.custom-footer .social-icon:hover {
    transform: translateY(-2px);
    color: var(--primary);
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.12);
}

.custom-footer .social-icon svg {
    width: 18px;
    height: 18px;
    display: block;
}

.footer-right {
    width: 78%;
    padding: 18px 40px 30px;
}

.footer-columns {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-column {
    width: 22%;
    min-width: 200px;
}

.footer-column h3 {
    font-size: 34px;
    margin-bottom: 28px;
    font-weight: 700;
    color: var(--text);
}

.footer-column h4 {
    font-size: 18px;
    margin: 20px 0 14px;
    font-weight: 700;
    color: var(--text);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0 0 14px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column ul li a {
    text-decoration: none;
    color: var(--muted);
    font-size: 16px;
    line-height: 1.5;
    transition: color 0.2s ease, transform 0.2s ease;
}

.footer-column ul li a:hover {
    color: var(--text);
    transform: translateX(4px);
    text-decoration: underline;
}

.footer-bottom {
    border-top: 2px solid var(--border);
    margin: 0 20px;
    height: 14px;
}

/* Responsive */
@media (max-width: 1024px) {
    .footer-container {
        flex-direction: column;
    }

    .footer-left,
    .footer-right {
        width: 100%;
        border-right: none;
    }

    .footer-left {
        border-bottom: 2px solid var(--border);
    }

    .footer-column {
        width: 45%;
    }
}

@media (max-width: 768px) {
    .footer-column {
        width: 100%;
    }

    .footer-column h3 {
        font-size: 28px;
    }

    .footer-apps h4 {
        font-size: 18px;
    }
}



.footer-copyright {
    text-align: center;
    padding: 18px 10px;
    font-size: 14px;
    color: #222;
}

.footer-copyright a {
    color: #000;
    text-decoration: none;
    margin: 0 6px;
    transition: 0.3s;
}

.footer-copyright a:hover {
    text-decoration: underline;
}

/* About Page */
.about-page {
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, var(--bg) 35%, #e8eeff 100%);
}

.about-main {
  padding-top: 20px;
}

.about-hero {
  padding: 70px 24px 40px;
}

.about-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: 40px;
  align-items: center;
}

.about-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.12);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
}

.about-hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.about-hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.about-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.about-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-metric {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px 16px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.about-metric .stat-number {
  display: block;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

.about-metric-label {
  color: var(--muted);
  font-size: 0.85rem;
  font-weight: 600;
}

.about-hero-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.about-orbit {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 1px dashed rgba(79, 70, 229, 0.35);
  background: radial-gradient(circle at 30% 30%, rgba(99, 102, 241, 0.18), transparent 60%);
}

.about-card {
  position: absolute;
  width: 220px;
  padding: 18px 18px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(14px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card h4 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.about-card p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.about-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 24px 46px rgba(79, 70, 229, 0.2);
}

.stack-one { top: 10px; left: 10px; }
.stack-two { bottom: 10px; right: 10px; }
.stack-three { top: 55%; left: 45%; transform: translate(-50%, -50%); }

.about-trust {
  padding: 18px 24px 50px;
}

.about-trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px 26px;
  display: grid;
  gap: 12px;
  text-align: center;
}

.about-trust-inner p {
  color: var(--muted);
  font-weight: 600;
}

.about-trust-logos {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  color: var(--text);
  font-weight: 700;
}

.about-story {
  padding: 60px 24px;
}

.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: start;
}

.about-story-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 14px;
}

.about-story-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 14px;
}

.about-story-cards {
  display: grid;
  gap: 16px;
}

.about-story-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.12), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(79, 70, 229, 0.2);
}

.about-story-card h3 {
  margin-bottom: 6px;
}

.about-story-card p {
  color: var(--muted);
}

.about-values {
  padding: 60px 24px 80px;
}

.about-values-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.about-values-head {
  text-align: center;
  margin-bottom: 30px;
}

.about-values-head p {
  color: var(--muted);
}

.about-values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-value-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.about-value-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px rgba(79, 70, 229, 0.16);
}

.about-impact {
  padding: 60px 24px;
  background: rgba(79, 70, 229, 0.06);
}

.about-impact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.about-impact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.about-impact-card {
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.about-impact-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.about-timeline {
  padding: 70px 24px;
}

.about-timeline-inner {
  max-width: 1000px;
  margin: 0 auto;
}

.about-timeline-head {
  text-align: center;
  margin-bottom: 28px;
}

.about-timeline-head p {
  color: var(--muted);
}

.about-timeline-track {
  display: grid;
  gap: 18px;
}

.about-timeline-item {
  padding: 20px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  position: relative;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.about-timeline-item span {
  display: inline-block;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 6px;
}

.about-timeline-item p {
  color: var(--muted);
}

.about-leadership {
  padding: 60px 24px;
}

.about-leadership-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.about-leadership-head {
  text-align: center;
}

.about-leadership-head p {
  color: var(--muted);
}

.about-leadership-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.about-lead-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  text-align: center;
}

.about-lead-avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 12px;
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.8), rgba(34, 211, 238, 0.8));
  color: white;
  font-weight: 700;
}

.about-lead-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  font-weight: 600;
}

.about-lead-card p {
  color: var(--muted);
}

.about-culture {
  padding: 60px 24px 80px;
}

.about-culture-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.about-culture-text p {
  color: var(--muted);
  line-height: 1.7;
}

.about-culture-grid {
  display: grid;
  gap: 16px;
}

.about-culture-card {
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.12), rgba(34, 211, 238, 0.1));
  border: 1px solid rgba(168, 85, 247, 0.2);
}

.about-culture-card p {
  color: var(--muted);
}

.about-cta {
  padding: 60px 24px 90px;
}

.about-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.9), rgba(168, 85, 247, 0.88), rgba(34, 211, 238, 0.85));
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.3);
}

.about-cta-inner p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.85);
}

.about-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .about-hero-inner,
  .about-story-inner,
  .about-culture-inner {
    grid-template-columns: 1fr;
  }

  .about-hero-visual {
    min-height: 280px;
  }

  .about-hero-metrics {
    grid-template-columns: 1fr;
  }
}


/* Contact Page */
.contact-page {
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, var(--bg) 35%, #e8eeff 100%);
}

.contact-main {
  padding-top: 20px;
}

.contact-hero {
  padding: 70px 24px 40px;
}

.contact-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.05fr) minmax(280px, 0.95fr);
  gap: 38px;
  align-items: center;
}

.contact-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(79, 70, 229, 0.12);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 16px;
}

.contact-hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.contact-hero-text p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.contact-hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.contact-quick {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.contact-quick div {
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.08);
}

.contact-quick span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.contact-quick strong {
  color: var(--text);
  font-weight: 700;
}

.contact-hero-card {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.12);
}

.contact-hero-card h3 {
  margin-bottom: 6px;
}

.contact-hero-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .form-row {
  display: grid;
  gap: 6px;
}

.contact-form label {
  font-weight: 600;
  color: var(--text);
  font-size: 0.9rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: rgba(79, 70, 229, 0.5);
  box-shadow: 0 0 0 4px rgba(79, 70, 229, 0.12);
}

.contact-info {
  padding: 40px 24px 20px;
}

.contact-info-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.contact-info-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.contact-info-card span {
  display: block;
  color: var(--muted);
  margin-top: 10px;
  font-weight: 600;
}

.contact-support {
  padding: 60px 24px;
  background: rgba(79, 70, 229, 0.06);
}

.contact-support-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 26px;
}

.contact-support-text p {
  color: var(--muted);
  line-height: 1.7;
}

.contact-support-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.contact-support-card {
  padding: 20px;
  border-radius: 18px;
  background: white;
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.contact-support-card p {
  color: var(--muted);
}

.contact-sla {
  padding: 60px 24px;
}

.contact-sla-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 18px;
}

.contact-sla-card {
  padding: 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.contact-sla-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 12px;
  color: var(--muted);
}

.contact-sla-card.highlight {
  background: linear-gradient(135deg, rgba(79, 70, 229, 0.15), rgba(34, 211, 238, 0.12));
  border-color: rgba(79, 70, 229, 0.3);
}

.contact-faq {
  padding: 60px 24px;
}

.contact-faq-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  gap: 24px;
}

.contact-faq-head {
  text-align: center;
}

.contact-faq-head p {
  color: var(--muted);
}

.contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}

.contact-faq-card {
  padding: 20px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.contact-faq-card p {
  color: var(--muted);
}

.contact-cta {
  padding: 60px 24px 90px;
}

.contact-cta-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
  padding: 48px;
  border-radius: 28px;
  color: white;
  background: linear-gradient(120deg, rgba(79, 70, 229, 0.9), rgba(168, 85, 247, 0.88), rgba(34, 211, 238, 0.85));
  box-shadow: 0 24px 50px rgba(79, 70, 229, 0.3);
}

.contact-cta-inner p {
  margin: 12px 0 22px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

@media (max-width: 980px) {
  .contact-hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-quick {
    grid-template-columns: 1fr;
  }
}


.contact-map {
  padding: 60px 24px;
}

.contact-map-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(260px, 1fr);
  gap: 24px;
  align-items: stretch;
}

.contact-map-card {
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid var(--border);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
}

.contact-map-card p {
  color: var(--muted);
  margin: 8px 0 18px;
}

.contact-addresses {
  display: grid;
  gap: 14px;
}

.contact-address {
  padding: 16px;
  border-radius: 16px;
  background: rgba(79, 70, 229, 0.08);
  border: 1px solid rgba(79, 70, 229, 0.18);
}

.contact-address h4 {
  margin-bottom: 6px;
}

.contact-address p {
  color: var(--muted);
  margin-bottom: 8px;
}

.contact-address span {
  display: block;
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-map-frame {
  border-radius: 22px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.1);
  display: grid;
  place-items: center;
  padding: 18px;
  min-height: 320px;
}

.map-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  border: 1px dashed rgba(79, 70, 229, 0.35);
  background: radial-gradient(circle at 20% 20%, rgba(34, 211, 238, 0.18), transparent 60%),
    radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.18), transparent 60%),
    radial-gradient(circle at 60% 80%, rgba(79, 70, 229, 0.18), transparent 60%);
  display: grid;
  place-items: center;
  text-align: center;
  padding: 24px;
  color: var(--muted);
  position: relative;
  overflow: hidden;
}

.map-placeholder h4 {
  color: var(--text);
  margin-bottom: 6px;
}

.map-pin {
  width: 20px;
  height: 20px;
  border-radius: 50% 50% 50% 0;
  background: var(--primary);
  transform: rotate(-45deg);
  position: absolute;
  top: 32%;
  left: 55%;
  box-shadow: 0 12px 20px rgba(79, 70, 229, 0.25);
}

.map-pin::after {
  content: "";
  width: 8px;
  height: 8px;
  background: white;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 6px;
}

@media (max-width: 980px) {
  .contact-map-inner {
    grid-template-columns: 1fr;
  }

  .contact-map-frame {
    min-height: 260px;
  }
}


/* Demo Page */
.demo-page {
  background: radial-gradient(circle at 15% 20%, #ffffff 0%, #fff2de 35%, #ffe7c2 100%);
}

.demo-main {
  padding-top: 20px;
}

.demo-hero {
  padding: 70px 24px 90px;
  position: relative;
  overflow: hidden;
}

.demo-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.05fr) minmax(280px, 0.95fr);
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.demo-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-weight: 700;
  margin-bottom: 16px;
}

.demo-left h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 3.8vw, 3.6rem);
  line-height: 1.15;
  margin-bottom: 14px;
}

.demo-left p {
  color: #5b5750;
  line-height: 1.7;
  margin-bottom: 22px;
}

.demo-expect {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
  margin-bottom: 22px;
}

.demo-expect h3 {
  margin-bottom: 10px;
}

.demo-expect ul {
  list-style: none;
  display: grid;
  gap: 10px;
  color: #3f3a34;
}

.demo-expect li {
  position: relative;
  padding-left: 26px;
  font-weight: 600;
}

.demo-expect li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: #16a34a;
  font-weight: 800;
}

.demo-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.demo-highlights div {
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 14px;
}

.demo-highlights span {
  display: block;
  color: #8b7c6e;
  font-size: 0.85rem;
  margin-bottom: 4px;
}

.demo-highlights strong {
  color: #1f1b16;
  font-weight: 700;
}

.demo-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.14);
  border: 1px solid rgba(15, 23, 42, 0.08);
}

.demo-card h2 {
  margin-bottom: 6px;
}

.demo-card p {
  color: #6b5f53;
  margin-bottom: 18px;
}

.demo-form {
  display: grid;
  gap: 14px;
}

.demo-form .form-row {
  display: grid;
  gap: 6px;
}

.demo-form label {
  font-weight: 600;
  color: #1f1b16;
  font-size: 0.9rem;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: 12px 14px;
  font-family: inherit;
  background: #fffaf4;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form input:focus,
.demo-form textarea:focus {
  outline: none;
  border-color: rgba(22, 163, 74, 0.5);
  box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

.demo-phone {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 8px;
  align-items: center;
}

.demo-phone span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fffaf4;
  border: 1px solid rgba(15, 23, 42, 0.16);
  border-radius: 12px;
  padding: 10px 12px;
  font-weight: 700;
}

.demo-note {
  font-size: 0.78rem;
  color: #8b7c6e;
  margin-top: 10px;
}

.demo-illustration {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.demo-spark {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.3), transparent 70%);
  top: 60px;
  right: 30%;
}

.demo-cloud {
  position: absolute;
  width: 140px;
  height: 60px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 999px;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
}

.cloud-one {
  left: 12%;
  top: 120px;
}

.cloud-two {
  right: 18%;
  bottom: 80px;
}

@media (max-width: 980px) {
  .demo-inner {
    grid-template-columns: 1fr;
  }
}


/* Blog Page */
.blog-page {
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, #f0f6ff 35%, #e5efff 100%);
}

.blog-main {
  padding: 20px 24px 80px;
}

.blog-breadcrumb {
  max-width: 1200px;
  margin: 0 auto 18px;
  display: flex;
  gap: 8px;
  color: var(--muted);
  font-weight: 600;
}

.blog-breadcrumb a {
  color: var(--secondary);
}

.blog-hero {
  padding: 30px 0 50px;
}

.blog-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 1.1fr) minmax(280px, 0.9fr);
  gap: 36px;
  align-items: center;
}

.blog-pill {
  display: inline-block;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  font-weight: 700;
  margin-bottom: 16px;
}

.blog-hero-text h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.4rem, 3.6vw, 3.4rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.blog-hero-text p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.blog-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 18px;
}

.blog-search input {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px 14px;
  background: white;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.filter-chip.active,
.filter-chip:hover {
  background: rgba(37, 99, 235, 0.12);
  color: #1d4ed8;
  border-color: rgba(37, 99, 235, 0.3);
}

.blog-hero-visual {
  display: grid;
  gap: 16px;
}

.blog-hero-card {
  padding: 12px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.blog-hero-card img {
  width: 100%;
  border-radius: 18px;
}

.blog-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.blog-hero-stats div {
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 14px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.blog-hero-stats span {
  color: var(--muted);
  font-size: 0.85rem;
}

.blog-hero-stats strong {
  display: block;
  margin-top: 6px;
  font-weight: 700;
}

.blog-toolbar {
  padding: 0 0 30px;
}

.blog-toolbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.blog-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-toolbar select {
  padding: 8px 12px;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.blog-spotlight {
  padding: 0 0 40px;
}

.blog-spotlight-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 24px;
  align-items: start;
}

.blog-spotlight-side {
  position: relative;
}

.blog-trending.compact {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.blog-trending.compact .blog-section-head {
  text-align: left;
  margin-bottom: 14px;
}

.blog-trending.compact .trending-item {
  grid-template-columns: 70px 1fr;
  padding: 10px;
}

.blog-trending.compact .trending-item img {
  height: 56px;
}

@media (max-width: 980px) {
  .blog-spotlight-inner {
    grid-template-columns: 1fr;
  }
}

.blog-featured {
  padding: 10px 0 24px;
}

.blog-featured-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 28px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 28px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.featured-media img {
  width: 100%;
  border-radius: 20px;
  height: 100%;
  object-fit: cover;
}

.featured-content h2 {
  margin-bottom: 12px;
}

.featured-content p {
  color: var(--muted);
  margin-bottom: 16px;
}

.badge-chip {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(34, 197, 94, 0.12);
  color: #15803d;
  font-weight: 700;
  margin-bottom: 10px;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.blog-grid {
  padding: 12px 0 60px;
}

.blog-grid-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.blog-card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
  display: grid;
  gap: 12px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
}

.blog-card img {
  width: 100%;
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.blog-card h3 {
  margin: 4px 0;
}

.blog-card p {
  color: var(--muted);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 46px rgba(37, 99, 235, 0.16);
}

.blog-load {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.blog-categories {
  padding: 50px 0 60px;
}

.blog-categories-inner,
.blog-trending-inner,
.blog-preview-inner,
.blog-authors-inner,
.blog-testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.blog-section-head {
  text-align: center;
  margin-bottom: 24px;
}

.blog-section-head p {
  color: var(--muted);
}

.blog-category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
}

.category-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.12);
}

.blog-trending {
  padding: 50px 0 60px;
}

.trending-list {
  display: grid;
  gap: 16px;
}

.trending-item {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
}

.trending-item img {
  width: 100%;
  border-radius: 12px;
  height: 70px;
  object-fit: cover;
}

.trending-item span {
  color: var(--muted);
  font-size: 0.85rem;
}

.blog-preview {
  padding: 50px 0 60px;
}

.blog-preview-card {
  background: rgba(255, 255, 255, 0.82);
  border-radius: 22px;
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
  display: grid;
  gap: 16px;
}

.blog-preview-card blockquote {
  border-left: 4px solid rgba(37, 99, 235, 0.5);
  padding-left: 14px;
  color: var(--muted);
  font-style: italic;
}

.blog-preview-card ul {
  list-style: disc;
  padding-left: 18px;
  color: var(--muted);
}

.highlight-box {
  background: rgba(34, 197, 94, 0.1);
  border-radius: 14px;
  padding: 14px;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.blog-preview-card img {
  width: 100%;
  border-radius: 16px;
}

.blog-authors {
  padding: 50px 0 60px;
}

.author-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.author-card {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  border: 1px solid var(--border);
  padding: 18px;
  text-align: center;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.author-card img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
}

.author-card span {
  display: block;
  color: var(--muted);
  margin-bottom: 8px;
}

.blog-newsletter {
  padding: 50px 0 60px;
}

.blog-newsletter-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 26px 28px;
  border-radius: 24px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.9), rgba(34, 197, 94, 0.85));
  color: white;
  display: grid;
  gap: 16px;
  align-items: center;
  grid-template-columns: 1.2fr 0.8fr;
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-form input {
  border-radius: 12px;
  border: none;
  padding: 12px 14px;
}

.blog-testimonials {
  padding: 50px 0 60px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-chip {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.testimonial-chip span {
  display: block;
  margin-top: 10px;
  color: var(--muted);
  font-weight: 600;
}

.blog-cta {
  padding: 50px 0 80px;
}

.blog-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 28px;
  text-align: center;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.92), rgba(14, 165, 233, 0.88));
  color: white;
  box-shadow: 0 24px 50px rgba(37, 99, 235, 0.25);
}

.blog-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

@media (max-width: 980px) {
  .blog-hero-inner,
  .blog-featured-inner {
    grid-template-columns: 1fr;
  }

  .blog-newsletter-inner {
    grid-template-columns: 1fr;
  }

  .blog-toolbar-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Blog Detail Page */
.blog-detail-page {
  background: radial-gradient(circle at 20% 20%, #ffffff 0%, #eef5ff 40%, #e6f0ff 100%);
}

.blog-detail-main {
  padding: 20px 24px 90px;
}

.blog-detail-hero {
  max-width: 1200px;
  margin: 0 auto 30px;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(260px, 0.9fr);
  gap: 28px;
  align-items: center;
}

.blog-detail-hero-media img {
  width: 100%;
  border-radius: 26px;
  border: 1px solid var(--border);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.12);
}

.blog-detail-hero-content h1 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(2.2rem, 3.4vw, 3.2rem);
  margin: 12px 0;
}

.blog-detail-hero-content p {
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 18px;
}

.author-mini {
  display: flex;
  gap: 12px;
  align-items: center;
}

.author-mini img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.author-mini span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.meta-chips {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 600;
}

.blog-share {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.blog-share .social-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.8);
  display: grid;
  place-items: center;
}

.blog-share .social-icon img {
  width: 18px;
  height: 18px;
}

.blog-detail-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) 300px;
  gap: 24px;
  align-items: start;
}

.blog-detail-toc {
  position: sticky;
  top: 90px;
  align-self: start;
}

.toc-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.toc-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.toc-card a {
  color: var(--muted);
  font-weight: 600;
}

.blog-detail-content {
  display: grid;
  gap: 24px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 22px 44px rgba(15, 23, 42, 0.1);
}

.blog-detail-content p,
.blog-detail-content li {
  color: var(--muted);
  line-height: 1.7;
}

.blog-detail-content h2 {
  margin-bottom: 10px;
}

.blog-detail-content figure img {
  width: 100%;
  border-radius: 18px;
  margin-top: 10px;
}

.blog-detail-content figcaption {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 6px;
}

.summary-box {
  background: rgba(37, 99, 235, 0.08);
  border: 1px solid rgba(37, 99, 235, 0.2);
  border-radius: 18px;
  padding: 18px;
}

.callout-box {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 16px;
  padding: 14px;
}

.mid-cta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(14, 165, 233, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--muted);
}

.tag-list.small span {
  font-size: 0.8rem;
}

.share-bottom {
  display: grid;
  gap: 12px;
}

.share-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.author-detail {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 18px;
}

.author-detail img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-socials {
  display: flex;
  gap: 12px;
  margin-top: 8px;
}

.related-posts h3 {
  margin-bottom: 10px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.comment-section {
  display: grid;
  gap: 16px;
}

.comment {
  padding: 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
}

.comment span {
  display: block;
  color: var(--muted);
  font-size: 0.85rem;
}

.comment-form {
  display: grid;
  gap: 12px;
}

.blog-detail-newsletter {
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 18px;
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.12), rgba(34, 197, 94, 0.12));
  border: 1px solid rgba(37, 99, 235, 0.2);
}

.post-navigation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.nav-card {
  padding: 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  gap: 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.nav-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.1);
}

.blog-detail-sidebar {
  position: sticky;
  top: 90px;
  display: grid;
  gap: 16px;
}

.sidebar-card {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.08);
}

.sidebar-card p {
  color: var(--muted);
  margin-top: 10px;
}

.sidebar-card.cta {
  background: linear-gradient(120deg, rgba(37, 99, 235, 0.15), rgba(14, 165, 233, 0.15));
}

.mini-post {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 10px;
  align-items: center;
  margin-top: 12px;
}

.mini-post img {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(37, 99, 235, 0.9);
  color: white;
  display: grid;
  place-items: center;
  text-decoration: none;
  box-shadow: 0 16px 30px rgba(37, 99, 235, 0.3);
}

@media (max-width: 1100px) {
  .blog-detail-layout {
    grid-template-columns: 1fr;
  }

  .blog-detail-toc,
  .blog-detail-sidebar {
    position: static;
  }
}

@media (max-width: 980px) {
  .blog-detail-hero {
    grid-template-columns: 1fr;
  }

  .mid-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Blog Detail Comment Enhancements */
.blog-detail-page .comment-section {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 18px 36px rgba(15, 23, 42, 0.08);
}

.blog-detail-page .comment {
  padding: 16px 16px 14px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.06), rgba(34, 197, 94, 0.05));
  border: 1px solid rgba(37, 99, 235, 0.12);
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.06);
  position: relative;
}

.blog-detail-page .comment strong {
  display: block;
  font-weight: 700;
  color: var(--text);
}

.blog-detail-page .comment span {
  display: inline-block;
  margin: 6px 0 10px;
  color: var(--muted);
  font-size: 0.85rem;
  padding: 4px 10px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 999px;
  border: 1px solid var(--border);
}

.blog-detail-page .comment p {
  color: var(--muted);
  line-height: 1.6;
}

.blog-detail-page .comment-form {
  margin-top: 16px;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.blog-detail-page .comment-form input,
.blog-detail-page .comment-form textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  background: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.blog-detail-page .comment-form input:focus,
.blog-detail-page .comment-form textarea:focus {
  outline: none;
  border-color: rgba(37, 99, 235, 0.45);
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.12);
}
