    :root {
      --primary: #ff5a4c;
      --primary-dark: #e34235;
      --accent: #ffb342;
      --bg: #0b0c10;
      --light: #ffffff;
      --muted: #6e7484;
      --card-bg: #10141f;
      --shadow-soft: 0 14px 40px rgba(0, 0, 0, 0.3);
      --radius-lg: 24px;
      --radius-md: 16px;
      --radius-pill: 999px;
      --transition-fast: 220ms ease-out;
      --max-width: 1120px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    body {
      font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
      background: radial-gradient(circle at top left, #1f2937 0, #020617 40%, #02040a 100%);
      color: var(--light);
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
    }

    .text-center{
        text-align: center;
    }
    .my-3{
        margin: 10px 0;
    }
    .custom-line{
        border-top: 1px solid rgba(148, 163, 184, 0.4);
    }

    img {
      max-width: 100%;
      display: block;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    button {
      font-family: inherit;
    }

    .page {
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }

    .nav {
      position: sticky;
      top: 0;
      z-index: 40;
      backdrop-filter: blur(18px);
      background: linear-gradient(to bottom, rgba(2, 6, 23, 0.92), rgba(2, 6, 23, 0.5));
      border-bottom: 1px solid rgba(148, 163, 184, 0.12);
    }

    .nav-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0.75rem 1.25rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 1.5rem;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 0.6rem;
    }

    .brand-logo {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: conic-gradient(from 200deg, #ff764d, #ffb55e, #ff4d67, #ff764d);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 1.2rem;
      box-shadow: 0 0 32px rgba(248, 113, 113, 0.45);
      transform: translateZ(0);
    }

    .brand-text-main {
      font-weight: 700;
      font-size: 1.05rem;
      letter-spacing: 0.04em;
    }

    .brand-text-sub {
      font-size: 0.7rem;
      color: var(--muted);
      text-transform: uppercase;
      letter-spacing: 0.16em;
      margin-top: -0.1rem;
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.9rem;
      color: var(--muted);
    }

    .nav-links a {
      position: relative;
      padding-bottom: 0.05rem;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -0.25rem;
      width: 0;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, #fb7185, #f97316);
      transition: width var(--transition-fast);
    }

    .nav-links a:hover {
      color: #e5e7eb;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .nav-cta {
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .btn {
      border: none;
      border-radius: var(--radius-pill);
      padding: 0.55rem 1.4rem;
      font-size: 0.85rem;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.4rem;
      white-space: nowrap;
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), color var(--transition-fast), border-color var(--transition-fast);
    }

    .btn-primary {
      background: radial-gradient(circle at 10% 0, #fed7aa, #fb7185);
      color: #111827;
      font-weight: 600;
      box-shadow: 0 18px 40px rgba(248, 113, 113, 0.55);
    }

    .btn-primary:hover {
      transform: translateY(-1px) scale(1.01);
      box-shadow: 0 24px 60px rgba(248, 113, 113, 0.7);
      background: radial-gradient(circle at 0 0, #fed7aa, #f97316);
    }

    .btn-ghost {
      background: transparent;
      border: 1px solid rgba(148, 163, 184, 0.4);
      color: #e5e7eb;
    }

    .btn-ghost:hover {
      background: rgba(15, 23, 42, 0.9);
      border-color: rgba(248, 250, 252, 0.3);
      transform: translateY(-1px);
    }

    .hamburger {
      display: none;
      width: 36px;
      height: 36px;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: rgba(15, 23, 42, 0.7);
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }

    .hamburger span,
    .hamburger span::before,
    .hamburger span::after {
      content: "";
      width: 16px;
      height: 2px;
      border-radius: 999px;
      background: #e5e7eb;
      display: block;
      transition: transform 200ms ease-out, opacity 200ms ease-out;
    }

    .hamburger span::before {
      transform: translateY(-4px);
    }

    .hamburger span::after {
      transform: translateY(4px);
    }

    .hamburger.active span {
      transform: rotate(45deg);
    }

    .hamburger.active span::before {
      transform: rotate(-90deg);
    }

    .hamburger.active span::after {
      opacity: 0;
    }

    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero-inner {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 3.5rem 1.25rem 3rem;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 2.5rem;
      align-items: center;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      padding: 0.25rem 0.75rem 0.25rem 0.25rem;
      border-radius: var(--radius-pill);
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: rgba(15, 23, 42, 0.85);
      backdrop-filter: blur(20px);
      font-size: 0.75rem;
      color: #e5e7eb;
      margin-bottom: 1.3rem;
    }

    .hero-badge-pill {
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      background: linear-gradient(120deg, #22c55e, #a3e635);
      color: #052e16;
      font-size: 0.68rem;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      font-weight: 700;
    }

    .hero-title {
      font-size: clamp(2.2rem, 4vw, 3.1rem);
      font-weight: 800;
      line-height: 1.1;
      letter-spacing: -0.04em;
      margin-bottom: 1rem;
    }

    .hero-highlight {
      background: linear-gradient(135deg, #f97316, #fb7185);
      -webkit-background-clip: text;
      color: transparent;
    }

    .hero-sub {
      font-size: 0.98rem;
      color: var(--muted);
      max-width: 460px;
      margin-bottom: 1.7rem;
    }

    .hero-metrics {
      display: flex;
      flex-wrap: wrap;
      gap: 1.8rem;
      margin-top: 1.4rem;
      font-size: 0.82rem;
      color: #9ca3af;
    }

    .hero-metric strong {
      display: block;
      font-size: 1.15rem;
      color: #f9fafb;
      margin-bottom: 0.15rem;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 0.75rem;
      align-items: center;
    }

    .hero-demo-link {
      display: inline-flex;
      align-items: center;
      gap: 0.3rem;
      font-size: 0.83rem;
      color: #e5e7eb;
      opacity: 0.9;
    }

    .hero-demo-dot {
      width: 6px;
      height: 6px;
      border-radius: 999px;
      background: #a855f7;
      box-shadow: 0 0 22px rgba(168, 85, 247, 0.8);
    }

    .hero-visual {
      position: relative;
    }

    .hero-screen {
      position: relative;
      border-radius: var(--radius-lg);
      padding: 1.2rem;
      background: radial-gradient(circle at 0 0, rgba(251, 113, 133, 0.22), #020617);
      box-shadow: var(--shadow-soft);
      overflow: hidden;
      transform: perspective(1200px) rotateY(-18deg) rotateX(7deg);
      transform-origin: center left;
      animation: floatTilt 7s ease-in-out infinite;
    }

    .hero-screen-inner {
      border-radius: 18px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at top, rgba(15, 23, 42, 1), rgba(15, 23, 42, 0.96));
      padding: 1rem;
      display: grid;
      grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
      gap: 1rem;
      color: #e5e7eb;
      font-size: 0.75rem;
    }

    .hero-screen-topline {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 0.5rem;
    }

    .pill-soft {
      border-radius: 999px;
      padding: 0.15rem 0.55rem;
      background: rgba(34, 197, 94, 0.16);
      color: #bbf7d0;
      font-size: 0.7rem;
      display: inline-flex;
      align-items: center;
      gap: 0.25rem;
    }

    .pill-soft.red {
      background: rgba(248, 113, 113, 0.16);
      color: #fecaca;
    }

    .spark {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      background: #22c55e;
      box-shadow: 0 0 16px rgba(34, 197, 94, 0.9);
    }

    .hero-screen-main-number {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.06em;
    }

    .hero-chart {
      margin-top: 0.5rem;
      height: 70px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(251, 113, 133, 0.12), rgba(248, 250, 252, 0.04));
      position: relative;
      overflow: hidden;
    }

    .hero-chart-line {
      position: absolute;
      inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='200' height='70' viewBox='0 0 200 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline fill='none' stroke='%23fb7185' stroke-width='2' points='0,60 30,50 60,52 90,32 120,38 150,16 180,20 200,6'/%3E%3Cpolyline fill='none' stroke='%23fbbf24' stroke-width='2' points='0,52 30,42 60,40 90,22 120,26 150,8 180,10 200,4'/%3E%3C/svg%3E");
      background-size: 200px 70px;
      animation: chartScroll 12s linear infinite;
      opacity: 0.9;
    }

    .hero-screen-right-card {
      border-radius: 14px;
      border: 1px solid rgba(148, 163, 184, 0.38);
      background: radial-gradient(circle at 0 0, rgba(247, 171, 10, 0.45), rgba(15, 23, 42, 0.98));
      padding: 0.75rem;
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .hero-tag {
      font-size: 0.7rem;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: #111827;
      background: rgba(248, 250, 252, 0.92);
      border-radius: 999px;
      padding: 0.15rem 0.6rem;
      align-self: flex-start;
    }

    .hero-ava {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 0.8rem;
      font-size: 0.7rem;
    }

    .hero-ava-main {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .hero-avatar {
      width: 32px;
      height: 32px;
      border-radius: 10px;
      background: radial-gradient(circle at 20% 0, #fde68a, #fb7185);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #111827;
      font-weight: 700;
      box-shadow: 0 0 24px rgba(252, 211, 77, 0.7);
    }

    .hero-status-badge {
      border-radius: 999px;
      padding: 0.15rem 0.6rem;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(148, 163, 184, 0.6);
      color: #e5e7eb;
    }

    .hero-orbit {
      position: absolute;
      inset: -40px;
      border-radius: 50%;
      border: 1px dashed rgba(148, 163, 184, 0.25);
      pointer-events: none;
    }

    .hero-orbit-dot {
      position: absolute;
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: radial-gradient(circle at 0 0, #22c55e, #16a34a);
      box-shadow: 0 0 22px rgba(22, 163, 74, 0.9);
      animation: orbit 18s linear infinite;
    }

    .hero-orbit-dot:nth-child(1) {
      top: 20%;
      left: 6%;
    }

    .hero-orbit-dot:nth-child(2) {
      top: 78%;
      right: 2%;
      animation-delay: -4s;
      background: radial-gradient(circle at 0 0, #fb7185, #f97316);
    }

    .hero-orbit-dot:nth-child(3) {
      top: 15%;
      right: 10%;
      animation-delay: -9s;
      background: radial-gradient(circle at 0 0, #38bdf8, #6366f1);
    }

    .section {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 3.2rem 1.25rem 3.3rem;
    }

    .section-heading {
      font-size: 1.6rem;
      font-weight: 700;
      letter-spacing: -0.03em;
      margin-bottom: 0.6rem;
    }

    .section-sub {
      font-size: 0.9rem;
      color: var(--muted);
      max-width: 540px;
    }

    .split-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
      gap: 2.5rem;
      align-items: center;
      margin-top: 1.7rem;
    }

    .pill-stack {
      display: inline-flex;
      flex-wrap: wrap;
      gap: 0.4rem;
      margin-bottom: 1rem;
      font-size: 0.72rem;
      color: #e5e7eb;
    }

    .pill-stack span {
      padding: 0.18rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.45);
      background: rgba(15, 23, 42, 0.8);
    }

    .story-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: radial-gradient(circle at 0 0, rgba(251, 113, 133, 0.2), rgba(15, 23, 42, 0.98));
      padding: 1.2rem 1.3rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.88rem;
      max-width: 520px;
    }

    .story-highlight {
      font-weight: 600;
      color: #fed7aa;
    }

    .story-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.2rem;
      margin-top: 1.1rem;
      font-size: 0.8rem;
      color: #cbd5f5;
    }

    .story-meta span strong {
      display: block;
      font-size: 1.05rem;
      color: #fbbf24;
    }

    .mavi-badge {
      display: inline-flex;
      align-items: center;
      gap: 0.4rem;
      border-radius: 999px;
      padding: 0.2rem 0.7rem 0.2rem 0.2rem;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.5);
      font-size: 0.7rem;
      margin-bottom: 0.8rem;
    }

    .mavi-pill {
      border-radius: 999px;
      padding: 0.15rem 0.55rem;
      background: linear-gradient(135deg, #6366f1, #a855f7);
      color: #e0f2fe;
      font-weight: 600;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .mavi-avatar {
      width: 32px;
      height: 32px;
      border-radius: 999px;
      background: radial-gradient(circle at 20% 0, #a855f7, #0f172a);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f9fafb;
      font-weight: 700;
      box-shadow: 0 0 22px rgba(129, 140, 248, 0.9);
    }

    .mavi-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(129, 140, 248, 0.6);
      background: radial-gradient(circle at 0 0, rgba(76, 106, 254, 0.45), rgba(15, 23, 42, 0.98));
      padding: 1.1rem 1.2rem;
      color: #e5e7eb;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .mavi-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% -10%, rgba(248, 250, 252, 0.12), transparent 50%);
      opacity: 0.8;
      pointer-events: none;
    }

    .mavi-card h3 {
      font-size: 1.1rem;
      margin-bottom: 0.35rem;
    }

    .mavi-card p {
      font-size: 0.85rem;
      color: #e5e7eb;
      max-width: 320px;
    }

    .mavi-steps {
      margin-top: 0.75rem;
      font-size: 0.8rem;
      display: grid;
      gap: 0.4rem;
    }

    .mavi-step {
      display: flex;
      gap: 0.45rem;
      align-items: flex-start;
      color: #dbeafe;
    }

    .mavi-step span {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.85);
      border: 1px solid rgba(191, 219, 254, 0.7);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.7rem;
    }

    .mavi-floating {
      position: absolute;
      right: 1rem;
      bottom: 1.1rem;
      font-size: 0.78rem;
      padding: 0.3rem 0.7rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.7);
      border: 1px solid rgba(129, 140, 248, 0.7);
      backdrop-filter: blur(16px);
    }

    .section-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 0.5rem;
      font-size: 0.7rem;
      margin-top: 0.9rem;
      color: #e5e7eb;
    }

    .section-badges span {
      padding: 0.16rem 0.7rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: rgba(15, 23, 42, 0.8);
    }

    .features-grid {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 1.3rem;
    }

    .feature-card {
      position: relative;
      border-radius: var(--radius-md);
      background: radial-gradient(circle at 0 0, rgba(251, 113, 133, 0.18), rgba(15, 23, 42, 0.96));
      border: 1px solid rgba(148, 163, 184, 0.35);
      padding: 1rem 0.95rem 1rem;
      box-shadow: 0 12px 28px rgba(15, 23, 42, 0.8);
      font-size: 0.8rem;
      overflow: hidden;
      transform: translateY(0);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    }

    .feature-card:nth-child(2n) {
      background: radial-gradient(circle at 0 0, rgba(56, 189, 248, 0.18), rgba(15, 23, 42, 0.96));
    }

    .feature-card:nth-child(3n) {
      background: radial-gradient(circle at 0 0, rgba(129, 140, 248, 0.18), rgba(15, 23, 42, 0.96));
    }

    .feature-card:hover {
      transform: translateY(-6px);
      border-color: rgba(248, 250, 252, 0.55);
      box-shadow: 0 20px 50px rgba(15, 23, 42, 0.95);
      background: radial-gradient(circle at 0 0, rgba(251, 146, 60, 0.3), rgba(15, 23, 42, 1));
    }

    .feature-kicker {
      font-size: 0.7rem;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      color: #9ca3af;
      margin-bottom: 0.45rem;
    }

    .feature-title {
      font-size: 0.95rem;
      font-weight: 600;
      margin-bottom: 0.25rem;
    }

    .feature-desc {
      font-size: 0.78rem;
      color: #e5e7eb;
    }

    .feature-meta {
      margin-top: 0.6rem;
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 0.72rem;
      color: #9ca3af;
    }

    .feature-icon-blob {
      position: absolute;
      right: -18px;
      top: -18px;
      width: 70px;
      height: 70px;
      border-radius: 30px;
      background: radial-gradient(circle at 20% 0, rgba(248, 250, 252, 0.5), rgba(248, 113, 113, 0.7), transparent 65%);
      opacity: 0.7;
    }

    .feature-icon-blob::after {
      content: "";
      position: absolute;
      inset: 14px;
      border-radius: inherit;
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.7), transparent 55%);
    }

    .feature-chip {
      padding: 0.15rem 0.55rem;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(148, 163, 184, 0.7);
    }

    .pricing-section {
      position: relative;
    }

    .pricing-shell {
      margin-top: 2rem;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1.4rem;
    }

    .pricing-card {
      position: relative;
      border-radius: var(--radius-lg);
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 1), rgba(2, 6, 23, 1));
      border: 1px solid rgba(148, 163, 184, 0.42);
      padding: 1.4rem 1.2rem 1.35rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.85rem;
      overflow: hidden;
      transform: translateY(0);
      transition: transform var(--transition-fast), box-shadow var(--transition-fast), border-color var(--transition-fast), background var(--transition-fast);
    }

    .pricing-card.popular {
      background: radial-gradient(circle at 0 -40%, rgba(248, 113, 113, 0.6), rgba(15, 23, 42, 1));
      border-color: rgba(248, 250, 252, 0.7);
      transform: translateY(-6px);
    }

    .pricing-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 26px 70px rgba(15, 23, 42, 0.95);
      border-color: rgba(248, 250, 252, 0.75);
    }

    .pricing-tag {
      font-size: 0.7rem;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: #9ca3af;
      margin-bottom: 0.25rem;
    }

    .pricing-name {
      font-size: 1.05rem;
      font-weight: 600;
    }

    .pricing-price {
      margin: 0.85rem 0 0.35rem;
      display: flex;
      align-items: baseline;
      gap: 0.2rem;
      color: #f9fafb;
    }

    .pricing-price span {
      font-size: 1.4rem;
      font-weight: 700;
    }

    .pricing-note {
      font-size: 0.7rem;
      color: #9ca3af;
    }

    .pricing-features {
      margin: 0.9rem 0 1rem;
      list-style: none;
      display: grid;
      gap: 0.45rem;
      font-size: 0.78rem;
      color: #e5e7eb;
    }

    .pricing-features li {
      display: flex;
      gap: 0.35rem;
      align-items: flex-start;
    }

    .pricing-check {
      width: 18px;
      height: 18px;
      border-radius: 999px;
      border: 1px solid rgba(248, 250, 252, 0.6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.65rem;
      color: #bbf7d0;
      background: rgba(15, 23, 42, 0.9);
    }

    .pricing-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.7rem;
      color: #9ca3af;
    }

    .badge-popular {
      font-size: 0.65rem;
      padding: 0.16rem 0.6rem;
      border-radius: 999px;
      background: rgba(251, 191, 36, 0.1);
      border: 1px solid rgba(251, 191, 36, 0.7);
      color: #facc15;
      text-transform: uppercase;
      letter-spacing: 0.14em;
    }

    .pricing-orbit {
      position: absolute;
      inset: -30px;
      border-radius: 50%;
      border: 1px dashed rgba(148, 163, 184, 0.25);
      pointer-events: none;
    }

    .faq-grid {
      margin-top: 1.9rem;
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: radial-gradient(circle at 0 0, rgba(15, 23, 42, 0.96), rgba(2, 6, 23, 0.98));
      box-shadow: var(--shadow-soft);
      padding: 1.2rem 1.1rem;
      display: grid;
      grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
      gap: 1.4rem;
    }

    .faq-intro {
      font-size: 0.86rem;
      color: #e5e7eb;
    }

    .faq-intro small {
      display: block;
      margin-top: 0.7rem;
      font-size: 0.75rem;
      color: #9ca3af;
    }

    .faq-accordion {
      border-radius: 16px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: rgba(15, 23, 42, 0.92);
      max-height: 280px;
      overflow: auto;
    }

    details {
      border-bottom: 1px solid rgba(30, 64, 175, 0.5);
    }

    details:last-child {
      border-bottom: none;
    }

    summary {
      padding: 0.7rem 0.9rem;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.8rem;
      color: #e5e7eb;
    }

    summary::-webkit-details-marker {
      display: none;
    }

    .summary-icon {
      font-size: 1rem;
      color: #9ca3af;
    }

    details[open] .summary-icon {
      transform: rotate(90deg);
    }

    details[open] summary {
      background: rgba(15, 23, 42, 0.96);
    }

    details p {
      padding: 0.1rem 0.9rem 0.7rem;
      font-size: 0.78rem;
      color: #9ca3af;
    }

    .cta-section {
      padding-bottom: 3.7rem;
    }

    .cta-shell {
      margin-top: 1.8rem;
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
      gap: 2rem;
      align-items: stretch;
    }

    .cta-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.6);
      background: radial-gradient(circle at 0 0, rgba(251, 146, 60, 0.4), rgba(15, 23, 42, 0.98));
      padding: 1.4rem 1.3rem;
      box-shadow: var(--shadow-soft);
      font-size: 0.86rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 1.1rem;
      position: relative;
      overflow: hidden;
    }

    .cta-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 100% 0, rgba(248, 250, 252, 0.15), transparent 55%);
      pointer-events: none;
    }

    .cta-list {
      margin-top: 0.6rem;
      display: grid;
      gap: 0.3rem;
      font-size: 0.8rem;
    }

    .cta-list li {
      display: flex;
      gap: 0.4rem;
      align-items: baseline;
    }

    .cta-bullet {
      width: 10px;
      height: 10px;
      border-radius: 999px;
      background: rgba(15, 23, 42, 0.9);
      border: 1px solid rgba(248, 250, 252, 0.75);
      margin-top: 0.18rem;
    }

    .note-tag {
      font-size: 0.7rem;
      color: #111827;
      background: rgba(248, 250, 252, 0.86);
      border-radius: 999px;
      padding: 0.15rem 0.6rem;
      align-self: flex-start;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .cta-form-card {
      border-radius: var(--radius-lg);
      border: 1px solid rgba(148, 163, 184, 0.5);
      background: radial-gradient(circle at 0 0, rgba(79, 70, 229, 0.5), rgba(15, 23, 42, 0.98));
      padding: 1.4rem 1.3rem 1.5rem;
      box-shadow: var(--shadow-soft);
      position: relative;
      overflow: hidden;
    }

    .cta-form-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 80% 0, rgba(248, 250, 252, 0.16), transparent 50%);
      pointer-events: none;
    }

    .cta-form-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 0.9rem;
      font-size: 0.8rem;
    }

    .field {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .field label {
      font-size: 0.78rem;
      color: #e5e7eb;
    }

    .field input,
    .field select,
    .field textarea {
      border-radius: 0.75rem;
      border: 1px solid rgba(148, 163, 184, 0.8);
      padding: 0.45rem 0.65rem;
      font-size: 0.8rem;
      font-family: inherit;
      background: rgba(15, 23, 42, 0.88);
      color: #e5e7eb;
      outline: none;
      transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast), transform var(--transition-fast);
    }

    .field input::placeholder,
    .field textarea::placeholder {
      color: #6b7280;
    }

    .field textarea {
      min-height: 76px;
      resize: vertical;
    }

    .field input:focus,
    .field select:focus,
    .field textarea:focus {
      border-color: rgba(247, 171, 10, 0.8);
      box-shadow: 0 0 0 1px rgba(248, 250, 252, 0.3);
      background: rgba(15, 23, 42, 0.96);
      transform: translateY(-1px);
    }

    .cta-form-bottom {
      margin-top: 0.9rem;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.74rem;
      color: #9ca3af;
      flex-wrap: wrap;
    }

    .cta-pill {
      padding: 0.16rem 0.65rem;
      border-radius: 999px;
      border: 1px solid rgba(148, 163, 184, 0.7);
      background: rgba(15, 23, 42, 0.9);
    }

    .footer {
        margin-top: auto;
        background: #020617;
        border-top: 1px solid rgba(148, 163, 184, 0.4);
      }

      .footer-inner {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 2rem 1.25rem;
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 2rem;
        font-size: 0.85rem;
        color: #9ca3af;
      }

      .footer-brand {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .footer-logo {
        width: 48px;
        height: 48px;
        background: conic-gradient(
          from 200deg,
          #ff764d,
          #ffb55e,
          #ff4d67,
          #ff764d
        );
        border-radius: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--light);
        font-weight: 700;
        font-size: 1.3rem;
      }

      .footer-brand-text {
        font-size: 1rem;
        font-weight: 600;
        color: var(--light);
      }

      .quick-links {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
      }

      .quick-links a {
        color: #e5e7eb;
        text-decoration: none;
        font-size: 0.9rem;
        transition: color var(--transition-fast);
      }

      .quick-links a:hover {
        color: var(--accent);
      }

      .contact-details {
        display: flex;
        flex-direction: column;
        gap: 1rem;
      }

      .contact-item {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.9rem;
      }

      .contact-icon {
        width: 20px;
        height: 20px;
        background: rgba(148, 163, 184, 0.3);
        border-radius: 4px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 0.75rem;
      }

      .social-links {
        display: flex;
        gap: 0.75rem;
        margin-top: 0.5rem;
      }

      .social-links a {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(148, 163, 184, 0.2);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #e5e7eb;
        text-decoration: none;
        transition: all var(--transition-fast);
      }

      .social-links a:hover {
        background: var(--primary);
        transform: translateY(-1px);
      }

      @media (max-width: 768px) {
        .footer-inner {
          grid-template-columns: 1fr;
          gap: 1.5rem;
          text-align: center;
        }

        .content {
          padding: 2rem 1rem;
        }

        h1 {
          font-size: 1.8rem;
        }

        .meta {
          flex-direction: column;
          align-items: center;
          gap: 0.75rem;
        }
      }

    
    @keyframes floatTilt {
      0% {
        transform: perspective(1200px) rotateY(-18deg) rotateX(7deg) translateY(0);
      }
      50% {
        transform: perspective(1200px) rotateY(-21deg) rotateX(9deg) translateY(-6px);
      }
      100% {
        transform: perspective(1200px) rotateY(-18deg) rotateX(7deg) translateY(0);
      }
    }

    @keyframes chartScroll {
      0% {
        background-position-x: 0;
      }
      100% {
        background-position-x: -200px;
      }
    }

    @keyframes orbit {
      0% {
        transform: rotate(0deg) translateX(0);
      }
      100% {
        transform: rotate(360deg) translateX(0);
      }
    }

    @media (max-width: 960px) {
      .nav-inner {
        padding-inline: 1rem;
      }
      .nav-links {
        position: fixed;
        left: 0;
        right: 0;
        top: 55px;
        background: rgba(15, 23, 42, 0.98);
        border-bottom: 1px solid rgba(148, 163, 184, 0.4);
        padding: 0.7rem 1.2rem 0.8rem;
        display: none;
      }
      .nav-links.open {
        display: flex;
      }
      .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.7rem;
      }
      .nav-cta {
        display: none;
      }
      .hamburger {
        display: inline-flex;
      }
      .hero-inner {
        grid-template-columns: minmax(0, 1fr);
        padding-top: 2.4rem;
      }
      .hero-visual {
        order: -1;
      }
      .hero-badge {
        margin-bottom: 1.1rem;
      }
      .hero-title {
        font-size: clamp(2rem, 5vw, 2.4rem);
      }
      .split-grid {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 1.5rem;
      }
      .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
      .pricing-shell {
        grid-template-columns: repeat(1, minmax(0, 1fr));
      }
      .pricing-card.popular {
        transform: translateY(0);
      }
      .faq-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .cta-shell {
        grid-template-columns: minmax(0, 1fr);
      }
    }

    @media (max-width: 640px) {
      .hero-inner {
        padding-inline: 1.1rem;
      }
      .section {
        padding-inline: 1.1rem;
        padding-top: 2.6rem;
        padding-bottom: 2.7rem;
      }
      .features-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-metrics {
        gap: 1.1rem;
      }
      .cta-form-grid {
        grid-template-columns: minmax(0, 1fr);
      }
      .hero-screen {
        transform: none;
        animation: floatTilt 9s ease-in-out infinite;
      }
    }



    /* TERMS ADDITIONAL CSS */
    /* TERMS PAGE SPECIFIC STYLES */
.terms-header {
    text-align: center;
    padding: 4rem 1.25rem 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 3rem;
}

.terms-logo {
    width: 80px;
    height: 80px;
    background: conic-gradient(from 200deg, #ff764d, #ffb55e, #ff4d67, #ff764d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
    font-size: 2.5rem;
    box-shadow: 0 0 40px rgba(248, 113, 113, 0.5);
    margin: 0 auto 1.5rem;
}

.terms-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.terms-meta {
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.terms-meta span {
    opacity: 0.9;
}

.terms-meta a {
    color: #f97316;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.terms-meta a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.terms-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.terms-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.terms-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--light);
}

.terms-content p,
.terms-content li {
    font-size: 0.98rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.terms-content ul {
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0;
}

.terms-content li {
    position: relative;
    margin-bottom: 0.75rem;
}

.terms-content li::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.refund-highlight {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #facc15;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    position: relative;
}

.refund-highlight strong {
    color: #fbbf24;
    font-weight: 700;
}

.refund-highlight code {
    background: rgba(251, 191, 36, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: #111827;
}

.terms-contact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.terms-contact h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.terms-contact p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.terms-contact a {
    color: #f97316;
    font-weight: 500;
}

@media (max-width: 768px) {
    .terms-header {
        padding: 3rem 1rem 2.5rem;
    }
    
    .terms-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .terms-content {
        padding: 0 1rem 3rem;
    }
    
    .refund-highlight {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
        margin: 1.25rem -1rem;
        border-radius: 0;
        border-left: 3px solid #facc15;
    }
}




/* REFUND PAGE SPECIFIC STYLES */
.refund-header {
    text-align: center;
    padding: 4rem 1.25rem 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 3rem;
}

.refund-logo {
    width: 80px;
    height: 80px;
    background: conic-gradient(from 200deg, #ff764d, #ffb55e, #ff4d67, #ff764d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
    font-size: 2.5rem;
    box-shadow: 0 0 40px rgba(248, 113, 113, 0.5);
    margin: 0 auto 1.5rem;
}

.refund-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.refund-meta {
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.refund-meta span {
    opacity: 0.9;
}

.refund-meta a {
    color: #f97316;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.refund-meta a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.refund-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.refund-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.refund-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.refund-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--light);
}

.refund-content p,
.refund-content li {
    font-size: 0.98rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.refund-content ul {
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0;
}

.refund-content li {
    position: relative;
    margin-bottom: 0.75rem;
}

.refund-content li::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.calculation-highlight {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
    position: relative;
}

.calculation-highlight strong {
    color: #16a34a;
    font-weight: 700;
}

.calculation-highlight code {
    background: rgba(34, 197, 94, 0.2);
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    font-family: 'Monaco', 'Menlo', monospace;
    font-size: 0.9rem;
    color: #065f46;
}

.no-refund-highlight {
    background: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.no-refund-highlight strong {
    color: #dc2626;
}

.refund-contact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.refund-contact h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.refund-contact p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.refund-contact a {
    color: #f97316;
    font-weight: 500;
}

@media (max-width: 768px) {
    .refund-header {
        padding: 3rem 1rem 2.5rem;
    }
    
    .refund-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .refund-content {
        padding: 0 1rem 3rem;
    }
    
    .calculation-highlight,
    .no-refund-highlight {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
        margin: 1.25rem -1rem;
        border-radius: 0;
        border-left-width: 3px;
    }
}


/* PRIVACY POLICY SPECIFIC STYLES */
.privacy-header {
    text-align: center;
    padding: 4rem 1.25rem 3rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    margin-bottom: 3rem;
}

.privacy-logo {
    width: 80px;
    height: 80px;
    background: conic-gradient(from 200deg, #ff764d, #ffb55e, #ff4d67, #ff764d);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
    font-size: 2.5rem;
    box-shadow: 0 0 40px rgba(248, 113, 113, 0.5);
    margin: 0 auto 1.5rem;
}

.privacy-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.privacy-meta {
    font-size: 0.95rem;
    color: var(--muted);
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.privacy-meta span {
    opacity: 0.9;
}

.privacy-meta a {
    color: #f97316;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.privacy-meta a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.privacy-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 4rem;
}

.privacy-section {
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.privacy-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.section-number {
    display: block;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.privacy-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin: 2rem 0 1rem;
    color: var(--light);
}

.privacy-content p,
.privacy-content li {
    font-size: 0.98rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-content ul {
    margin: 1rem 0 1rem 1.5rem;
    padding-left: 0;
}

.privacy-content li {
    position: relative;
    margin-bottom: 0.75rem;
}

.privacy-content li::before {
    content: "→";
    position: absolute;
    left: -1.5rem;
    color: var(--accent);
    font-weight: 700;
    font-size: 0.9rem;
}

.data-highlight {
    background: rgba(59, 130, 246, 0.1);
    border-left: 4px solid #3b82f6;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.data-highlight strong {
    color: #1d4ed8;
}

.security-highlight {
    background: rgba(34, 197, 94, 0.1);
    border-left: 4px solid #22c55e;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.security-highlight strong {
    color: #16a34a;
}

.rights-highlight {
    background: rgba(251, 191, 36, 0.1);
    border-left: 4px solid #facc15;
    padding: 1.5rem 1.5rem 1.5rem 2rem;
    border-radius: 0 12px 12px 0;
    margin: 1.5rem 0;
}

.rights-highlight strong {
    color: #d97706;
}

.privacy-contact {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.privacy-contact h4 {
    color: var(--light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.privacy-contact p {
    font-size: 1rem;
    margin-bottom: 1rem;
}

.privacy-contact a {
    color: #f97316;
    font-weight: 500;
}

@media (max-width: 768px) {
    .privacy-header {
        padding: 3rem 1rem 2.5rem;
    }
    
    .privacy-meta {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .privacy-content {
        padding: 0 1rem 3rem;
    }
    
    .data-highlight,
    .security-highlight,
    .rights-highlight {
        padding: 1.25rem 1.25rem 1.25rem 1.5rem;
        margin: 1.25rem -1rem;
        border-radius: 0;
        border-left-width: 3px;
    }
}


/* CONTACT PAGE SPECIFIC STYLES */
.contact-hero {
    text-align: center;
    padding: 5rem 1.25rem 4rem;
    background: radial-gradient(circle at center, rgba(251, 113, 133, 0.15), transparent 60%);
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 20%, rgba(249, 115, 22, 0.2), transparent 50%);
    animation: heroPulse 8s ease-in-out infinite;
}

.contact-logo {
    width: 100px;
    height: 100px;
    background: conic-gradient(from 200deg, #ff764d, #ffb55e, #ff4d67, #ff764d);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
    font-size: 3rem;
    box-shadow: 0 0 50px rgba(248, 113, 113, 0.6);
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.contact-hero-title {
    font-size: clamp(2.5rem, 6vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--light), #e5e7eb);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    position: relative;
    z-index: 1;
}

.contact-hero-subtitle {
    font-size: 1.2rem;
    color: #cbd5f5;
    max-width: 600px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 1;
}

.contact-grid {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 5rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-card {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all var(--transition-fast);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(148, 163, 184, 0.6);
}

.contact-icon-c {
    width: 48px;
    height: 48px;
    background: radial-gradient(circle at 30% 30%, var(--primary), var(--primary-dark));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem; /* Reduced from 2.5rem */
    margin: 0 auto 1.2rem;
    box-shadow: 0 8px 20px rgba(255, 90, 76, 0.25);
    transition: all var(--transition-fast);
}

.contact-card:hover .contact-icon {
    transform: scale(1.05) rotate(3deg); /* Subtle animation */
    box-shadow: 0 12px 30px rgba(255, 90, 76, 0.35);
}

.contact-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
}

.contact-info {
    font-size: 1.1rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-link {
    color: #f97316;
    font-weight: 600;
    font-size: 1.15rem;
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

.contact-form-section {
    margin-top: 5rem;
    padding-top: 4rem;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.contact-form-container {
    max-width: 700px;
    margin: 0 auto;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(148, 163, 184, 0.3);
    border-radius: var(--radius-lg);
    padding: 3rem;
}

.form-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
}

.form-subtitle {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 2.5rem;
    font-size: 1.05rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.95rem;
    color: #e5e7eb;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.4);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    font-size: 1rem;
    color: var(--light);
    transition: all var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255, 90, 76, 0.1);
    transform: translateY(-1px);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #6b7280;
}

.submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: var(--light);
    border: none;
    border-radius: var(--radius-pill);
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-fast);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 40px rgba(255, 90, 76, 0.4);
}

@keyframes heroPulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.05); }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 1rem 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .contact-form-container {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
}


/* ABOUT PAGE SPECIFIC STYLES */
.about-hero {
    text-align: center;
    padding: 6rem 1.25rem 5rem;
    background: linear-gradient(135deg, rgba(251, 113, 133, 0.1), rgba(249, 115, 22, 0.1));
    position: relative;
    overflow: hidden;
}

.about-logo {
    width: 120px;
    height: 120px;
    background: conic-gradient(from 200deg, #ff764d, #ffb55e, #ff4d67, #ff764d);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    font-weight: 800;
    font-size: 3.5rem;
    box-shadow: 0 0 60px rgba(248, 113, 113, 0.6);
    margin: 0 auto 2.5rem;
}

.about-hero-title {
    font-size: clamp(2.8rem, 7vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--light), #f8fafc);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-hero-subtitle {
    font-size: 1.25rem;
    color: #d1d5db;
    max-width: 700px;
    margin: 0 auto 4rem;
    line-height: 1.7;
}

.about-content {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem 6rem;
}

.about-section {
    margin-bottom: 6rem;
}

.about-section:last-child {
    margin-bottom: 0;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: -0.03em;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.story-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(148, 163, 184, 0.2);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.story-card:hover {
    transform: translateY(-6px);
    background: rgba(15, 23, 42, 0.8);
    border-color: rgba(148, 163, 184, 0.4);
    box-shadow: var(--shadow-soft);
}

.story-number {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--light);
    margin: 0 auto 1.5rem;
    box-shadow: 0 12px 30px rgba(255, 90, 76, 0.3);
}

.story-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: 1rem;
}

.story-text {
    color: #d1d5db;
    font-size: 1rem;
    line-height: 1.7;
}

.usps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.usp-card {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
    padding: 2rem;
    background: rgba(15, 23, 42, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.15);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.usp-card:hover {
    background: rgba(15, 23, 42, 0.8);
    border-color: var(--primary);
    transform: translateX(8px);
}

.usp-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #4ade80);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(34, 197, 94, 0.3);
}

.usp-card:nth-child(2) .usp-icon {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
}

.usp-card:nth-child(3) .usp-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.usp-card:nth-child(4) .usp-icon {
    background: linear-gradient(135deg, #ec4899, #f472b6);
}

.usp-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--light);
    margin-bottom: .75rem;
}

.usp-content p {
    color: #d1d5db;
    font-size: .95rem;
    line-height: 1.6;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    text-align: center;
}

.stat-item {
    padding: 2rem 1.5rem;
    background: rgba(15, 23, 42, 0.6);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(148, 163, 184, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    margin-bottom: .5rem;
}

.stat-label {
    color: #9ca3af;
    font-size: .95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .05em;
}

@media (max-width: 768px) {
    .about-hero {
        padding: 4rem 1rem 3.5rem;
    }
    
    .about-content {
        padding: 0 1rem 4rem;
    }
    
    .story-grid,
    .usps-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .team-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}
