    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --navy:        #0B1628;
      --navy-mid:    #112040;
      --navy-light:  #1A3260;
      --gold:        #C9954C;
      --gold-light:  #E8B872;
      --gold-pale:   #FDF4E7;
      --white:       #FFFFFF;
      --gray-100:    #F7F8FA;
      --gray-200:    #E8EBF0;
      --gray-500:    #7B8499;
      --gray-700:    #3D4560;
      --radius-sm:   8px;
      --radius-md:   16px;
      --radius-lg:   24px;
      --shadow-card: 0 4px 32px rgba(11,22,40,.12);
      --shadow-gold: 0 8px 40px rgba(201,149,76,.25);
    }

    html {
      scroll-behavior: smooth;
      width: 100%;
      max-width: 100%;
      overflow-x: clip;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--white);
      color: var(--navy);
      line-height: 1.6;
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
    }

    /* ── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 5%; height: 72px;
      background: rgba(11,22,40,.92);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(201,149,76,.2);
      transition: background .3s;
    }

    .nav-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--white);
      letter-spacing: -0.5px;
    }
    .nav-logo span { color: var(--gold); }

    .nav-links {
      display: flex; gap: 2rem; list-style: none;
      flex: 1; justify-content: center;
    }
    .nav-links a {
      color: rgba(255,255,255,.75);
      text-decoration: none;
      font-size: .875rem;
      font-weight: 500;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--gold); }

    .nav-cta {
      background: var(--gold);
      color: var(--navy);
      padding: .55rem 1.5rem;
      border-radius: 50px;
      font-size: .875rem;
      font-weight: 700;
      text-decoration: none;
      transition: background .2s, transform .2s;
    }
    .nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

    .nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
    .nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: .3s; }

    /* ── HERO ── */
    #hero {
      min-height: 80vh;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D2044 100%);
      display: flex; align-items: center;
      position: relative; overflow: hidden;
      padding: 0 5%;
    }

    .hero-bg-grid {
      position: absolute; inset: 0;
      background-image:
        linear-gradient(rgba(201,149,76,.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(201,149,76,.06) 1px, transparent 1px);
      background-size: 60px 60px;
      animation: gridFloat 20s linear infinite;
    }

    @keyframes gridFloat {
      0%   { transform: translateY(0); }
      100% { transform: translateY(60px); }
    }

    .hero-glow {
      position: absolute;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(201,149,76,.15) 0%, transparent 70%);
      top: -100px; right: -100px;
      pointer-events: none;
    }

    .hero-glow-2 {
      position: absolute;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(26,50,96,.8) 0%, transparent 70%);
      bottom: -50px; left: 20%;
      pointer-events: none;
    }

    .hero-inner {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 4rem;
      width: 100%; max-width: 1280px; margin: 0 auto;
      padding-top: 72px;
    }

    .hero-badge {
      display: inline-flex; align-items: center; gap: .5rem;
      background: rgba(201,149,76,.15);
      border: 1px solid rgba(201,149,76,.4);
      padding: .35rem 1rem;
      border-radius: 50px;
      font-size: .8rem;
      font-weight: 600;
      color: var(--gold-light);
      letter-spacing: .5px;
      margin-bottom: 1.5rem;
    }
    .hero-badge .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; animation: pulse 2s infinite; }

    @keyframes pulse {
      0%, 100% { opacity: 1; transform: scale(1); }
      50%       { opacity: .5; transform: scale(1.3); }
    }

    .hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.2rem, 4vw, 3.8rem);
      font-weight: 900;
      color: var(--white);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -1px;
    }
    .hero-title em { color: var(--gold); font-style: normal; }

    .hero-sub {
      color: rgba(255,255,255,.7);
      font-size: 1.125rem;
      font-weight: 400;
      line-height: 1.75;
      margin-bottom: 2.5rem;
      max-width: 540px;
    }

    .hero-actions {
      display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    }

    .btn-primary {
      background: var(--gold);
      color: var(--navy);
      padding: .9rem 2rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      transition: all .25s;
      box-shadow: var(--shadow-gold);
    }
    .btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 12px 48px rgba(201,149,76,.35); }

    .btn-ghost {
      color: var(--white);
      padding: .9rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: .5rem;
      border: 1.5px solid rgba(255,255,255,.3);
      transition: all .25s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,.7); background: rgba(255,255,255,.05); }

    .hero-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }

    .dashboard-mock {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      width: 100%;
      max-width: 520px;
      backdrop-filter: blur(10px);
      box-shadow: 0 32px 80px rgba(0,0,0,.4);
      animation: floatCard 4s ease-in-out infinite;
    }

    @keyframes floatCard {
      0%, 100% { transform: translateY(0); }
      50%       { transform: translateY(-12px); }
    }

    .mock-topbar {
      display: flex; align-items: center; gap: .5rem;
      margin-bottom: 1rem; padding-bottom: .75rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .mock-dot { width: 10px; height: 10px; border-radius: 50%; }
    .mock-dot.red   { background: #FF5F57; }
    .mock-dot.yellow{ background: #FEBC2E; }
    .mock-dot.green { background: #28C840; }
    .mock-title { color: rgba(255,255,255,.5); font-size: .75rem; margin-left: .5rem; }

    .mock-stats {
      display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem;
      margin-bottom: 1rem;
    }

    .mock-stat {
      background: rgba(255,255,255,.05);
      border-radius: var(--radius-sm);
      padding: .75rem;
      text-align: center;
    }
    .mock-stat .val {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.25rem;
      color: var(--gold);
    }
    .mock-stat .lbl {
      font-size: .65rem;
      color: rgba(255,255,255,.5);
      margin-top: .15rem;
    }

    .mock-bar-row {
      display: flex; flex-direction: column; gap: .5rem;
      margin-bottom: 1rem;
    }

    .mock-bar-item {
      display: flex; align-items: center; gap: .75rem;
    }
    .mock-bar-label { color: rgba(255,255,255,.6); font-size: .7rem; width: 60px; flex-shrink: 0; }
    .mock-bar-bg { flex: 1; height: 8px; background: rgba(255,255,255,.07); border-radius: 4px; overflow: hidden; }
    .mock-bar-fill { height: 100%; border-radius: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }

    .mock-modules {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem;
    }
    .mock-module {
      background: rgba(255,255,255,.05);
      border-radius: var(--radius-sm);
      padding: .6rem .4rem;
      text-align: center;
      transition: background .2s;
    }
    .mock-module:hover { background: rgba(201,149,76,.15); }
    .mock-module .ico { font-size: 1.2rem; margin-bottom: .25rem; }
    .mock-module .lbl { font-size: .6rem; color: rgba(255,255,255,.5); }

    .hero-stats-bar {
      display: flex; align-items: center; gap: 2.5rem;
      margin-top: 3rem;
    }
    .hs-item { text-align: left; }
    .hs-num {
      font-family: 'Montserrat', sans-serif;
      font-size: 1.75rem;
      font-weight: 900;
      color: var(--gold);
    }
    .hs-lbl { font-size: .8rem; color: rgba(255,255,255,.5); }
    .hs-divider { width: 1px; height: 40px; background: rgba(255,255,255,.15); }

    /* ── SECTIONS GENERIC ── */
    section { padding: 80px 5%; }

    .section-label {
      display: inline-block;
      font-size: .75rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 1rem;
    }

    .section-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.75rem);
      font-weight: 800;
      color: var(--navy);
      line-height: 1.2;
      letter-spacing: -0.5px;
      max-width: 640px;
    }
    .section-title em { color: var(--gold); font-style: normal; }

    .section-sub {
      color: var(--gray-500);
      font-size: 1.05rem;
      margin-top: 1rem;
      max-width: 580px;
      line-height: 1.75;
    }

    .section-header { margin-bottom: 4rem; }
    .section-header.center { text-align: center; }
    .section-header.center .section-title { margin: 0 auto; }
    .section-header.center .section-sub  { margin: 1rem auto 0; }

    /* ── FEATURES ── */
    #features { background: var(--gray-100); }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 1.5rem;
    }

    .feature-card {
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 2rem;
      box-shadow: var(--shadow-card);
      border: 1px solid var(--gray-200);
      transition: transform .25s, box-shadow .25s;
      position: relative;
      overflow: hidden;
    }
    .feature-card::before {
      content: '';
      position: absolute; top: 0; left: 0;
      width: 4px; height: 100%;
      background: var(--gold);
      opacity: 0;
      transition: opacity .25s;
    }
    .feature-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(11,22,40,.12); }
    .feature-card:hover::before { opacity: 1; }

    .fc-icon {
      width: 56px; height: 56px;
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .fc-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: 1.05rem;
      color: var(--navy);
      margin-bottom: .5rem;
    }

    .fc-desc { color: var(--gray-500); font-size: .9rem; line-height: 1.65; }

    .fc-tags {
      display: flex; flex-wrap: wrap; gap: .4rem;
      margin-top: 1rem;
    }
    .fc-tag {
      font-size: .7rem;
      font-weight: 600;
      color: var(--gold);
      background: var(--gold-pale);
      padding: .2rem .6rem;
      border-radius: 50px;
    }

    /* ── MODULES SHOWCASE ── */
    #modules {
      background: var(--navy);
      color: var(--white);
    }
    #modules .section-title { color: var(--white); }
    #modules .section-sub   { color: rgba(255,255,255,.6); }

    .modules-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
      gap: 1rem;
    }

    .module-card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.08);
      border-radius: var(--radius-md);
      padding: 1.75rem;
      transition: all .25s;
      position: relative;
      overflow: hidden;
    }
    .module-card:hover {
      background: rgba(201,149,76,.08);
      border-color: rgba(201,149,76,.3);
      transform: translateY(-3px);
    }

    .module-card.extra {
      border-color: rgba(201,149,76,.2);
    }
    .module-card.extra .module-badge {
      display: inline-block;
      font-size: .65rem;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: var(--gold);
      background: rgba(201,149,76,.15);
      padding: .2rem .6rem;
      border-radius: 50px;
      margin-bottom: .75rem;
    }

    .module-icon { font-size: 1.75rem; margin-bottom: .75rem; }
    .module-name {
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .95rem;
      color: var(--white);
      margin-bottom: .5rem;
    }
    .module-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.6; }

    /* ── INTEGRATIONS ── */
    #integrations { background: var(--white); }

    .integrations-logos {
      display: flex; flex-wrap: wrap;
      align-items: center; justify-content: center;
      gap: 1.5rem;
      margin-top: 3rem;
    }

    .int-logo {
      display: flex; flex-direction: column; align-items: center; gap: .5rem;
      background: var(--gray-100);
      border: 1px solid var(--gray-200);
      border-radius: var(--radius-md);
      padding: 1.25rem 1.75rem;
      transition: all .25s;
      min-width: 100px;
    }
    .int-logo:hover {
      border-color: var(--gold);
      box-shadow: 0 4px 20px rgba(201,149,76,.15);
      transform: translateY(-2px);
    }
    .int-logo .il-icon { font-size: 2rem; }
    .int-logo .il-name { font-size: .75rem; font-weight: 600; color: var(--gray-500); }

    /* ── AI SECTION ── */
    #ia {
      background: linear-gradient(135deg, var(--navy-mid) 0%, var(--navy) 100%);
      color: var(--white);
      position: relative; overflow: hidden;
    }

    .ia-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }

    .ia-visual {
      position: relative;
      display: flex; align-items: center; justify-content: center;
    }

    .ia-chat-mock {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      width: 100%;
      max-width: 400px;
    }

    .chat-header {
      display: flex; align-items: center; gap: .75rem;
      margin-bottom: 1.25rem; padding-bottom: .75rem;
      border-bottom: 1px solid rgba(255,255,255,.07);
    }
    .chat-avatar {
      width: 36px; height: 36px;
      background: linear-gradient(135deg, var(--gold), var(--gold-light));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; font-weight: 700; color: var(--navy);
    }
    .chat-name { font-weight: 600; font-size: .9rem; }
    .chat-status { font-size: .72rem; color: var(--gold); }

    .chat-messages { display: flex; flex-direction: column; gap: .75rem; }

    .chat-msg {
      max-width: 85%;
      padding: .65rem .9rem;
      border-radius: 12px;
      font-size: .82rem;
      line-height: 1.5;
      animation: fadeInUp .4s ease both;
    }
    .chat-msg.ai {
      background: rgba(201,149,76,.15);
      border: 1px solid rgba(201,149,76,.2);
      color: rgba(255,255,255,.9);
      align-self: flex-start;
    }
    .chat-msg.user {
      background: rgba(255,255,255,.1);
      color: rgba(255,255,255,.8);
      align-self: flex-end;
    }

    @keyframes fadeInUp {
      from { opacity:0; transform: translateY(10px); }
      to   { opacity:1; transform: translateY(0); }
    }

    .ia-features { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 2rem; }
    .ia-feature {
      display: flex; align-items: flex-start; gap: 1rem;
      padding: 1.25rem;
      background: rgba(255,255,255,.04);
      border-radius: var(--radius-sm);
      border: 1px solid rgba(255,255,255,.06);
    }
    .ia-feature .iaf-icon { font-size: 1.5rem; flex-shrink: 0; }
    .ia-feature h4 { font-weight: 600; font-size: .9rem; margin-bottom: .25rem; }
    .ia-feature p  { font-size: .8rem; color: rgba(255,255,255,.55); }

    /* ── MOBILE APP ── */
    #app { background: var(--gray-100); }

    .app-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

    .app-phone-wrap {
      display: flex; justify-content: center; align-items: center;
      position: relative;
    }

    .app-phone {
      width: 220px;
      background: var(--navy);
      border-radius: 36px;
      border: 6px solid #1A2A44;
      box-shadow: 0 32px 80px rgba(11,22,40,.25);
      overflow: hidden;
      position: relative;
    }

    .app-phone-screen {
      background: linear-gradient(180deg, var(--navy-mid) 0%, var(--navy) 100%);
      min-height: 420px;
      padding: 1rem .75rem;
    }

    .phone-notch {
      width: 60px; height: 18px;
      background: #0B1628;
      border-radius: 0 0 12px 12px;
      margin: 0 auto .75rem;
    }

    .phone-status { display: flex; justify-content: space-between; margin-bottom: .75rem; }
    .phone-status span { color: rgba(255,255,255,.5); font-size: .55rem; }

    .phone-hero-text {
      color: var(--white);
      font-family: 'Montserrat', sans-serif;
      font-size: .75rem;
      font-weight: 700;
      margin-bottom: .5rem;
    }
    .phone-sub { color: rgba(255,255,255,.5); font-size: .6rem; margin-bottom: 1rem; }

    .phone-cards { display: flex; flex-direction: column; gap: .5rem; }
    .phone-card {
      background: rgba(255,255,255,.06);
      border-radius: 10px;
      padding: .65rem .75rem;
      display: flex; align-items: center; gap: .6rem;
    }
    .phone-card .pci { font-size: 1rem; }
    .phone-card .pct { font-size: .62rem; color: rgba(255,255,255,.7); }
    .phone-card .pcv {
      margin-left: auto;
      font-family: 'Montserrat', sans-serif;
      font-weight: 700;
      font-size: .7rem;
      color: var(--gold);
    }

    .phone-badge {
      position: absolute;
      top: -8px; right: -20px;
      background: var(--gold);
      color: var(--navy);
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: .65rem;
      padding: .3rem .65rem;
      border-radius: 50px;
      box-shadow: var(--shadow-gold);
    }

    .app-features-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 2rem; }
    .app-feature {
      display: flex; align-items: center; gap: 1rem;
    }
    .app-feature .af-check {
      width: 28px; height: 28px; flex-shrink: 0;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--navy); font-size: .75rem; font-weight: 700;
    }
    .app-feature p { font-size: .9rem; color: var(--gray-700); }

    .app-store-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 1rem;
      margin-top: 2rem;
    }
    .app-store-badges img { height: 54px; width: auto; display: block; }
    .app-store-note {
      font-size: .8rem;
      color: var(--gray-500);
      margin-top: .75rem;
      max-width: 320px;
    }

    /* ── TESTIMONIAL ── */
    #testimonial {
      background: var(--gold-pale);
      text-align: center;
    }

    .testimonial-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 1.5rem;
      max-width: 1160px;
      margin: 0 auto;
    }

    .testimonial-card {
      width: 100%;
      background: var(--white);
      border-radius: var(--radius-lg);
      padding: 2.2rem;
      box-shadow: var(--shadow-card);
      text-align: left;
    }

    .testimonial-quote {
      font-size: 4rem;
      color: var(--gold);
      font-family: Georgia, serif;
      line-height: 1;
      margin-bottom: .75rem;
    }

    .testimonial-text {
      font-size: 1rem;
      color: var(--gray-700);
      line-height: 1.75;
      margin-bottom: 1.5rem;
      font-style: italic;
    }

    .testimonial-author {
      display: flex; align-items: center; gap: 1rem;
    }
    .ta-avatar {
      width: 52px; height: 52px;
      background: linear-gradient(135deg, var(--navy), var(--navy-light));
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: var(--gold); font-weight: 700; font-size: 1.1rem;
    }
    .ta-name { font-weight: 700; font-size: 1rem; color: var(--navy); }
    .ta-role { font-size: .85rem; color: var(--gray-500); }

    .testimonial-logos {
      display: flex; align-items: center; gap: 1.5rem; justify-content: center;
      margin-top: 3rem; flex-wrap: wrap;
    }
    .tl-tag {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: 50px;
      padding: .4rem 1.2rem;
      font-size: .8rem;
      font-weight: 600;
      color: var(--gray-700);
    }

    /* ── PRICING ── */
    #pricing { background: var(--white); }

    .pricing-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 1.5rem; max-width: 1000px; margin: 0 auto;
    }

    .pricing-card {
      background: var(--gray-100);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 2.5rem 2rem;
      position: relative;
      transition: all .25s;
    }
    .pricing-card.featured {
      background: var(--navy);
      border-color: var(--gold);
      color: var(--white);
      transform: scale(1.03);
    }
    .pricing-card:hover { box-shadow: 0 16px 48px rgba(11,22,40,.12); }

    .pricing-card .popular-badge {
      position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
      background: var(--gold);
      color: var(--navy);
      font-size: .72rem;
      font-weight: 800;
      letter-spacing: 1px;
      text-transform: uppercase;
      padding: .3rem 1rem;
      border-radius: 50px;
      white-space: nowrap;
    }

    .pc-plan { font-size: .8rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: .75rem; }
    .pc-price { font-family: 'Montserrat', sans-serif; font-weight: 900; font-size: 2.5rem; margin-bottom: .25rem; }
    .pc-price span { font-size: 1rem; font-weight: 400; }
    .pc-price-annual { font-size: .82rem; color: var(--gray-500); margin-bottom: .4rem; }
    .pc-price-annual strong { color: var(--navy); }
    .pc-impl { font-size: .8rem; color: var(--gray-500); margin-bottom: 1.5rem; padding: .45rem .75rem; background: var(--gray-200); border-radius: 6px; display: inline-block; }
    .pricing-card.featured .pc-price-annual { color: rgba(255,255,255,.55); }
    .pricing-card.featured .pc-price-annual strong { color: var(--gold); }
    .pricing-card.featured .pc-impl { background: rgba(255,255,255,.08); color: rgba(255,255,255,.6); }
    .pc-desc { font-size: .85rem; color: var(--gray-500); margin-bottom: 1.5rem; }
    .pricing-card.featured .pc-desc { color: rgba(255,255,255,.6); }

    .pc-features { list-style: none; display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.25rem; }
    .pc-features li { display: flex; align-items: center; gap: .65rem; font-size: .88rem; }
    .pc-features li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
    .pc-ideal { font-size: .78rem; color: var(--gray-500); font-style: italic; margin-bottom: 2rem; line-height: 1.5; border-left: 2px solid var(--gold); padding-left: .75rem; }

    .pc-impl-btn {
      width: 100%; background: none; border: none; color: var(--gold);
      font-size: .8rem; font-weight: 600; cursor: pointer; padding: .6rem 0 0;
      text-align: center; letter-spacing: .5px; text-decoration: underline;
      text-underline-offset: 3px; opacity: .85; transition: opacity .2s;
    }
    .pc-impl-btn:hover { opacity: 1; }
    .pricing-card.featured .pc-impl-btn { opacity: 1; }

    /* ── Modal ── */
    .modal-overlay {
      display: none; position: fixed; inset: 0; z-index: 9000;
      background: rgba(11,22,40,.72); backdrop-filter: blur(4px);
      align-items: center; justify-content: center; padding: 1.5rem;
    }
    .modal-overlay.active { display: flex; animation: fadeIn .2s ease; }
    @keyframes fadeIn { from { opacity: 0 } to { opacity: 1 } }

    .modal-card {
      background: var(--white); border-radius: var(--radius-lg);
      max-width: 660px; width: 100%; max-height: 90vh; overflow-y: auto;
      padding: 2.5rem 2rem; position: relative;
      animation: slideUp .25s ease;
    }
    @keyframes slideUp { from { transform: translateY(20px); opacity: 0 } to { transform: translateY(0); opacity: 1 } }

    .modal-close {
      position: absolute; top: 1rem; right: 1.25rem;
      background: var(--gray-100); border: none; border-radius: 50%;
      width: 32px; height: 32px; font-size: 1.1rem; cursor: pointer;
      color: var(--gray-500); display: flex; align-items: center; justify-content: center;
      transition: background .15s;
    }
    .modal-close:hover { background: var(--gray-200); color: var(--navy); }

    .modal-label { font-size: .75rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: .5rem; }
    .modal-title { font-family: 'Montserrat', sans-serif; font-size: 1.5rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
    .modal-subtitle { font-size: .88rem; color: var(--gray-500); margin-bottom: 2rem; line-height: 1.6; }

    .impl-timeline { display: flex; flex-direction: column; gap: 0; margin-bottom: 2rem; }
    .impl-step {
      display: flex; gap: 1.25rem; align-items: flex-start;
      padding-bottom: 1.75rem; position: relative;
    }
    .impl-step:not(:last-child)::before {
      content: ''; position: absolute; left: 17px; top: 36px;
      width: 2px; bottom: 0; background: var(--gray-200);
    }
    .impl-step-num {
      flex-shrink: 0; width: 36px; height: 36px; border-radius: 50%;
      background: var(--navy); color: var(--gold); font-family: 'Montserrat', sans-serif;
      font-weight: 800; font-size: .85rem; display: flex; align-items: center;
      justify-content: center; position: relative; z-index: 1;
    }
    .impl-step-body { padding-top: .3rem; flex: 1; }
    .impl-step-header { display: flex; align-items: baseline; gap: .75rem; margin-bottom: .4rem; flex-wrap: wrap; }
    .impl-step-title { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: .95rem; color: var(--navy); }
    .impl-step-week { font-size: .72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); background: rgba(201,149,76,.1); padding: .15rem .55rem; border-radius: 50px; }
    .impl-step-desc { font-size: .83rem; color: var(--gray-500); line-height: 1.6; }
    .impl-step-desc ul { margin: .4rem 0 0 .25rem; padding: 0; list-style: none; display: flex; flex-direction: column; gap: .3rem; }
    .impl-step-desc ul li::before { content: '·'; color: var(--gold); font-weight: 700; margin-right: .4rem; }

    .impl-note {
      background: var(--gray-100); border-radius: 10px; padding: 1rem 1.25rem;
      font-size: .8rem; color: var(--gray-500); line-height: 1.6;
      margin-bottom: 1.75rem; border-left: 3px solid var(--gold);
    }
    .impl-note strong { color: var(--navy); }

    .pc-cta {
      width: 100%;
      padding: .85rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .9rem;
      cursor: pointer;
      border: none;
      text-align: center;
      text-decoration: none;
      display: block;
      transition: all .25s;
    }
    .pc-cta.outlined {
      background: transparent;
      border: 2px solid var(--gold);
      color: var(--gold);
    }
    .pc-cta.outlined:hover { background: var(--gold); color: var(--navy); }
    .pc-cta.solid { background: var(--gold); color: var(--navy); }
    .pc-cta.solid:hover { background: var(--gold-light); }

    /* ── CTA ── */
    #cta {
      background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
      text-align: center;
      padding: 80px 5%;
      position: relative; overflow: hidden;
    }

    .cta-glow {
      position: absolute;
      width: 800px; height: 400px;
      background: radial-gradient(ellipse, rgba(201,149,76,.12) 0%, transparent 70%);
      top: 50%; left: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cta-inner { position: relative; z-index: 2; max-width: 680px; margin: 0 auto; }
    .cta-title {
      font-family: 'Montserrat', sans-serif;
      font-weight: 900;
      font-size: clamp(2rem, 4vw, 3rem);
      color: var(--white);
      margin-bottom: 1rem;
      line-height: 1.2;
    }
    .cta-title em { color: var(--gold); font-style: normal; }
    .cta-sub { color: rgba(255,255,255,.65); font-size: 1.05rem; margin-bottom: 2.5rem; }

    /* ── CONTACT FORM ── */
    #contacto { background: var(--white); }

    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }

    .contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; margin-top: 2rem; }
    .ci-item { display: flex; align-items: flex-start; gap: 1rem; }
    .ci-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: var(--gold-pale);
      border-radius: var(--radius-sm);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.1rem;
    }
    .ci-label { font-size: .78rem; color: var(--gray-500); margin-bottom: .2rem; }
    .ci-value { font-weight: 600; color: var(--navy); font-size: .95rem; }

    .contact-form {
      background: var(--gray-100);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
    }

    .demo-steps { display: flex; align-items: flex-start; margin: 0 0 1.5rem; }
    .demo-step { display: flex; align-items: center; gap: .5rem; color: var(--gray-500); }
    .demo-step span {
      width: 28px; height: 28px;
      display: inline-flex; align-items: center; justify-content: center;
      border: 1.5px solid var(--gray-200); border-radius: 50%;
      background: var(--white); font-size: .78rem; font-weight: 700;
    }
    .demo-step small { font-size: .75rem; font-weight: 600; white-space: nowrap; }
    .demo-step.active { color: var(--navy); }
    .demo-step.active span { border-color: var(--gold); background: var(--gold); color: var(--navy); }
    .demo-step.complete span { border-color: #16a34a; background: #16a34a; color: var(--white); }
    .demo-step-line { flex: 1; height: 1px; margin: 14px .75rem 0; background: var(--gray-200); }

    .form-step { min-width: 0; margin: 0; padding: 0; border: 0; }
    .form-step[hidden] { display: none; }
    .form-step-intro { margin: 0 0 1.25rem; color: var(--gray-500); font-size: .84rem; line-height: 1.55; }
    .questionnaire-group-title {
      margin: 1.5rem 0 .85rem; padding-bottom: .45rem;
      border-bottom: 1px solid var(--gray-200);
      color: var(--navy); font-size: .78rem; font-weight: 800;
      letter-spacing: .08em; text-transform: uppercase;
    }
    .questionnaire-help { margin: -.45rem 0 1rem; color: var(--gray-500); font-size: .76rem; }
    .form-status { min-height: 1.3rem; margin: .9rem 0 0; font-size: .84rem; line-height: 1.5; }
    .form-status.error { color: #b91c1c; }
    .form-status.success { color: #15803d; font-weight: 600; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

    .form-group { display: flex; flex-direction: column; gap: .5rem; margin-bottom: 1rem; }
    .form-group label { font-size: .82rem; font-weight: 600; color: var(--navy); }
    .form-group input,
    .form-group select,
    .form-group textarea {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-sm);
      padding: .75rem 1rem;
      font-size: .9rem;
      color: var(--navy);
      font-family: 'Inter', sans-serif;
      transition: border-color .2s;
      outline: none;
      width: 100%;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
      border-color: var(--gold);
      box-shadow: 0 0 0 3px rgba(201,149,76,.1);
    }
    .form-group textarea { resize: vertical; min-height: 100px; }

    .form-submit {
      width: 100%;
      padding: .9rem;
      background: var(--gold);
      color: var(--navy);
      border: none;
      border-radius: 50px;
      font-weight: 700;
      font-size: 1rem;
      cursor: pointer;
      transition: all .25s;
      font-family: 'Inter', sans-serif;
    }
    .form-submit:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: var(--shadow-gold); }
    .form-submit:disabled { cursor: wait; opacity: .7; transform: none; box-shadow: none; }

    /* ── FOOTER ── */
    footer {
      background: var(--navy);
      color: rgba(255,255,255,.6);
      padding: 4rem 5% 2rem;
    }

    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }

    .footer-brand .fb-logo {
      font-family: 'Montserrat', sans-serif;
      font-weight: 800;
      font-size: 1.5rem;
      color: var(--white);
      margin-bottom: .75rem;
    }
    .footer-brand .fb-logo span { color: var(--gold); }
    .footer-brand p { font-size: .85rem; line-height: 1.7; max-width: 280px; }

    .footer-col h4 {
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 1rem;
    }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .6rem; }
    .footer-col ul a { color: rgba(255,255,255,.55); font-size: .85rem; text-decoration: none; transition: color .2s; }
    .footer-col ul a:hover { color: var(--gold); }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding-top: 2rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem;
    }
    .footer-bottom p { font-size: .8rem; }
    .footer-bottom a { color: var(--gold); text-decoration: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 900px) {
      .hero-inner    { grid-template-columns: 1fr; text-align: center; }
      .hero-visual   { display: none; }
      .hero-actions  { justify-content: center; }
      .hero-stats-bar{ justify-content: center; }
      .ia-grid       { grid-template-columns: 1fr; }
      .ia-visual     { display: none; }
      .app-grid      { grid-template-columns: 1fr; }
      .app-phone-wrap{ display: none; }
      .contact-grid  { grid-template-columns: 1fr; }
      .footer-grid   { grid-template-columns: 1fr 1fr; }
      .nav-links     { display: none; }
      .nav-hamburger { display: flex; }
      .hero-bg-grid,
      .hero-glow,
      .hero-glow-2,
      .cta-glow { display: none; }
    }

    @media (max-width: 600px) {
      section     { padding: 64px 5%; }
      .footer-grid{ grid-template-columns: 1fr; }
      .form-row   { grid-template-columns: 1fr; }
      .pricing-card.featured { transform: scale(1); }
      .nav-logo   { font-size: 1.2rem; }
      .nav-cta    { padding: .45rem .9rem; font-size: .76rem; white-space: nowrap; }
      .hero-title { font-size: clamp(2rem, 11vw, 2.7rem); }
      .hero-sub   { max-width: 100%; font-size: 1rem; }
      .hero-stats-bar { gap: 1rem; }
      .hs-num     { font-size: 1.4rem; }
      .hs-lbl     { font-size: .72rem; }
      .testimonial-grid { grid-template-columns: 1fr; }
      .testimonial-card { padding: 1.6rem; }
      .testimonial-logos { gap: .75rem; }
      .pricing-grid { grid-template-columns: 1fr; }
      .pricing-card .popular-badge { white-space: normal; max-width: calc(100% - 2rem); }
    }

    /* ── SCROLL ANIMATIONS ── */
    .reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity .6s ease, transform .6s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ── WHATSAPP FLOAT ── */
    .wa-float {
      position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
      width: 56px; height: 56px;
      background: #25D366;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem;
      box-shadow: 0 4px 20px rgba(37,211,102,.4);
      text-decoration: none;
      transition: transform .25s;
    }
    .wa-float:hover { transform: scale(1.1); }

    /* ── VIDEO SECTION ── */
    #video { background: var(--navy-mid); padding: 80px 5%; }
    .video-inner { max-width: 900px; margin: 0 auto; }
    .video-wrapper {
      position: relative;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--navy);
      aspect-ratio: 16/9;
      display: flex; align-items: center; justify-content: center;
      border: 1px solid rgba(255,255,255,.1);
    }
    .video-placeholder {
      text-align: center; color: rgba(255,255,255,.5);
    }
    .video-play-btn {
      width: 72px; height: 72px;
      background: var(--gold);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.8rem;
      margin: 0 auto 1rem;
      cursor: pointer;
      transition: transform .25s;
    }
    .video-play-btn:hover { transform: scale(1.1); }

    /* ── Plataformas ── */
    #plataformas { background: var(--white); }
    .plataformas-grid {
      display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
      gap: 1.5rem; max-width: 1100px; margin: 0 auto;
    }
    .plataforma-card {
      border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
      padding: 2rem 1.75rem; transition: box-shadow .25s;
    }
    .plataforma-card:hover { box-shadow: 0 12px 40px rgba(11,22,40,.09); }
    .plat-icon {
      width: 48px; height: 48px; border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; margin-bottom: 1rem;
    }
    .plat-icon.admin { background: #e8f4fd; }
    .plat-icon.web   { background: #e8fdf0; }
    .plat-icon.movil { background: #fdf6e8; }
    .plat-label { font-size: .7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: .3rem; }
    .plat-name  { font-family: 'Montserrat', sans-serif; font-size: 1.2rem; font-weight: 800; color: var(--navy); margin-bottom: .5rem; }
    .plat-desc  { font-size: .84rem; color: var(--gray-500); line-height: 1.6; margin-bottom: 1.25rem; border-bottom: 1px solid var(--gray-200); padding-bottom: 1.25rem; }
    .plat-modules { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
    .plat-modules li { font-size: .82rem; color: #374151; display: flex; align-items: center; gap: .5rem; }
    .plat-modules li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

    /* ── Flujo del negocio ── */
    #flujo { background: var(--gray-100); }
    .flujo-grid {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1.25rem; max-width: 1100px; margin: 0 auto;
    }
    .flujo-step {
      background: var(--white); border-radius: var(--radius-lg);
      border: 1.5px solid var(--gray-200); padding: 1.5rem;
      position: relative; transition: box-shadow .25s;
    }
    .flujo-step:hover { box-shadow: 0 10px 32px rgba(11,22,40,.09); }
    .flujo-step.wip { opacity: .75; }
    .flujo-wip-badge {
      position: absolute; top: -10px; right: 1rem;
      background: #f59e0b; color: #fff; font-size: .65rem; font-weight: 800;
      letter-spacing: 1px; text-transform: uppercase; padding: .2rem .65rem;
      border-radius: 50px;
    }
    .flujo-step-num {
      font-size: .65rem; font-weight: 800; letter-spacing: 2px;
      text-transform: uppercase; color: var(--gold); margin-bottom: .6rem;
    }
    .flujo-step-icon { font-size: 1.6rem; margin-bottom: .5rem; }
    .flujo-step-title { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 1rem; color: var(--navy); margin-bottom: .5rem; }
    .flujo-step-desc { font-size: .8rem; color: var(--gray-500); line-height: 1.55; margin-bottom: .85rem; }
    .flujo-step-tools { list-style: none; display: flex; flex-direction: column; gap: .3rem; }
    .flujo-step-tools li { font-size: .78rem; color: #374151; display: flex; align-items: center; gap: .45rem; }
    .flujo-step-tools li::before { content: '·'; color: var(--gold); font-weight: 900; font-size: 1.1rem; line-height: 0; }
    @media (max-width: 768px) {
      .flujo-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .flujo-grid { grid-template-columns: 1fr; }
      .plataformas-grid { grid-template-columns: 1fr; }
    }

    /* ── Modal contrato ── */
    .contrato-modal-card { max-width: 820px !important; }

    .contrato-toolbar {
      display: flex; justify-content: flex-end; margin-bottom: 1.25rem;
    }
    .contrato-download {
      font-size: .78rem; font-weight: 600; color: var(--gold);
      text-decoration: none; border: 1.5px solid var(--gold);
      padding: .3rem .85rem; border-radius: 50px;
      transition: all .15s;
    }
    .contrato-download:hover { background: var(--gold); color: var(--navy); }

    .contrato-content {
      font-size: .84rem; line-height: 1.8; color: #374151;
      min-height: 120px;
    }
    .contrato-content h1 {
      font-family: 'Montserrat', sans-serif; font-size: 1rem; font-weight: 800;
      color: var(--navy); margin: 2rem 0 .75rem; padding-top: 1.25rem;
      border-top: 1.5px solid var(--gray-200); text-transform: uppercase;
      letter-spacing: .5px;
    }
    .contrato-content h1:first-child { border-top: none; padding-top: 0; margin-top: 0; }
    .contrato-content h2 {
      font-family: 'Montserrat', sans-serif; font-size: .9rem; font-weight: 700;
      color: var(--navy); margin: 1.5rem 0 .5rem;
    }
    .contrato-content h3 {
      font-size: .85rem; font-weight: 700; color: var(--navy); margin: 1rem 0 .35rem;
    }
    .contrato-content hr { border: none; border-top: 1px solid var(--gray-200); margin: 1.25rem 0; }
    .contrato-content p { margin-bottom: .65rem; }
    .contrato-content strong { color: var(--navy); font-weight: 700; }
    .contrato-content ol, .contrato-content ul { padding-left: 1.4rem; margin-bottom: .65rem; }
    .contrato-content li { margin-bottom: .25rem; }
    .contrato-content table {
      width: 100%; border-collapse: collapse; font-size: .8rem; margin: 1rem 0;
    }
    .contrato-content th {
      background: var(--navy); color: var(--white); padding: .55rem .75rem;
      text-align: left; font-weight: 700;
    }
    .contrato-content td {
      padding: .45rem .75rem; border-bottom: 1px solid var(--gray-200); vertical-align: top;
    }
    .contrato-content tr:nth-child(even) td { background: var(--gray-100); }
    .contrato-content .spinner {
      text-align: center; padding: 2.5rem; color: var(--gray-500); font-size: .85rem;
    }
    .contrato-footer {
      text-align: center; padding-top: 1.5rem;
      border-top: 1px solid var(--gray-200); margin-top: 2rem;
    }
