:root {
      --brand-dark: #324243;
      --brand-dark-2: #1f2a2b;
      --brand-orange: #F5A623;
      --brand-red: #D34E2A;
      --brand-blue: #2A7BD3;
      --brand-teal: #009E8E;
      --bg: #FAFAF9;
      --bg-soft: #F1F2F3;
      --surface: #FFFFFF;
      --text: #1F2A2B;
      --text-soft: #5C6B6C;
      --border: #E5E7EB;
      --radius: 16px;
      --shadow-sm: 0 1px 2px rgba(20,30,30,.04), 0 2px 6px rgba(20,30,30,.05);
      --shadow-md: 0 8px 24px rgba(20,30,30,.07), 0 2px 6px rgba(20,30,30,.05);
      --shadow-lg: 0 24px 60px rgba(20,30,30,.10), 0 8px 16px rgba(20,30,30,.05);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }

    body {
      margin: 0;
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      color: var(--text);
      background: var(--bg);
      -webkit-font-smoothing: antialiased;
      line-height: 1.6;
    }

    h1,h2,h3,h4 {
      font-family: 'Space Grotesk', 'Inter', sans-serif;
      letter-spacing: -.02em;
      color: var(--brand-dark);
      line-height: 1.15;
      margin: 0 0 .5em;
    }

    p { margin: 0 0 1em; color: var(--text-soft); }
    a { text-decoration: none; color: inherit; }

    .container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* ============ NAVBAR ============ */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(250,250,249,.85);
      backdrop-filter: saturate(180%) blur(14px);
      -webkit-backdrop-filter: saturate(180%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: border-color .3s ease, box-shadow .3s ease;
    }
    .nav.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 2px 16px rgba(20,30,30,.04);
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 104px;
    }
    .nav-logo img { height: 72px; display: block; }
    .nav-links {
      display: flex;
      gap: 32px;
      align-items: center;
    }
    .nav-links > a:not(.btn) {
      font-weight: 500;
      font-size: 15px;
      color: var(--text);
      transition: color .2s ease;
    }
    .nav-links > a:not(.btn):hover { color: var(--brand-blue); }
    .nav-links > a.btn-primary { color: #fff; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 22px;
      font-weight: 600;
      font-size: 15px;
      border-radius: 999px;
      border: 1px solid transparent;
      cursor: pointer;
      transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
      white-space: nowrap;
    }
    .btn-primary {
      background: var(--brand-dark);
      color: #fff;
    }
    .btn-primary:hover {
      background: var(--brand-dark-2);
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }
    .btn-outline {
      background: transparent;
      color: var(--brand-dark);
      border-color: var(--brand-dark);
    }
    .btn-outline:hover {
      background: var(--brand-dark);
      color: #fff;
    }
    .btn-ghost {
      background: var(--bg-soft);
      color: var(--brand-dark);
    }
    .btn-ghost:hover { background: #E5E7EB; }

    .nav-toggle {
      display: none;
      background: transparent;
      border: 0;
      font-size: 24px;
      color: var(--brand-dark);
      cursor: pointer;
    }

    /* ============ HERO ============ */
    .hero {
      position: relative;
      padding: 48px 0 72px;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -200px; right: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(42,123,211,.10), transparent 60%);
      pointer-events: none;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -200px; left: -200px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,158,142,.08), transparent 60%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-dark);
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }
    .eyebrow .dot {
      width: 8px; height: 8px;
      background: var(--brand-teal);
      border-radius: 50%;
      box-shadow: 0 0 0 4px rgba(0,158,142,.18);
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { box-shadow: 0 0 0 4px rgba(0,158,142,.18); }
      50% { box-shadow: 0 0 0 8px rgba(0,158,142,0); }
    }

    .hero h1 {
      font-size: clamp(1.9rem, 3.4vw, 3rem);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.01em;
      max-width: 640px;
      margin-bottom: 18px;
    }
    .hero h1 .highlight {
      background: linear-gradient(120deg, var(--brand-blue), var(--brand-teal));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .hero p.lead {
      font-size: 19px;
      color: var(--text-soft);
      max-width: 540px;
      margin-bottom: 32px;
    }
    .hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 12px; }
    .hero-response {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 600;
      color: var(--brand-teal);
      margin-bottom: 28px;
    }
    .hero-response i { font-size: 16px; }
    .hero-trust {
      display: flex;
      gap: 24px;
      flex-wrap: wrap;
      font-size: 14px;
      color: var(--text-soft);
    }
    .hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
    .hero-trust i { color: var(--brand-teal); font-size: 18px; }

    /* Hero visual: tech card stack */
    .hero-visual {
      position: relative;
      max-width: 520px;
      margin-left: auto;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }
    .hero-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 22px 26px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 18px;
      width: 100%;
      transition: transform .3s ease, box-shadow .3s ease;
    }
    .hero-card:hover {
      transform: translateX(-4px);
      box-shadow: 0 28px 70px rgba(20,30,30,.14), 0 10px 20px rgba(20,30,30,.06);
    }
    .hero-card:nth-child(2) { margin-left: 32px; }
    .hero-card:nth-child(3) { margin-left: 64px; }
    .hero-card .ic {
      width: 56px; height: 56px;
      border-radius: 14px;
      display: grid; place-items: center;
      font-size: 26px;
      color: #fff;
      flex-shrink: 0;
    }
    .hero-card .t1 { font-weight: 700; color: var(--brand-dark); font-size: 17px; margin-bottom: 2px; }
    .hero-card .t2 { font-size: 14px; color: var(--text-soft); }
    .hc-1 .ic { background: linear-gradient(135deg, var(--brand-blue), #4FA0E5); }
    .hc-2 .ic { background: linear-gradient(135deg, var(--brand-orange), #F8C062); }
    .hc-3 .ic { background: linear-gradient(135deg, var(--brand-teal), #2BB8A8); }

    /* ============ SECTION BASE ============ */
    section { padding: 96px 0; }
    .section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
    .section-eyebrow {
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 16px;
    }
    .section-head h2 {
      font-size: clamp(2rem, 3.5vw, 2.8rem);
      font-weight: 700;
    }
    .section-head p {
      font-size: 17px;
      color: var(--text-soft);
    }

    /* ============ STATS ============ */
    .stats {
      padding: 32px 0 16px;
    }
    .stats-row {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      padding: 32px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-sm);
    }
    .stat { text-align: center; }
    .stat .num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(2rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--brand-dark);
      line-height: 1;
    }
    .stat .lbl {
      font-size: 14px;
      color: var(--text-soft);
      margin-top: 6px;
    }

    /* ============ SERVICES ============ */
    .services { background: var(--bg); }
    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .service-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
      position: relative;
      overflow: hidden;
    }
    .service-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: transparent;
    }
    .service-card .ic {
      width: 52px; height: 52px;
      border-radius: 14px;
      display: grid; place-items: center;
      font-size: 24px;
      margin-bottom: 20px;
      color: #fff;
    }
    .ic-blue   { background: linear-gradient(135deg, var(--brand-blue), #4FA0E5); }
    .ic-orange { background: linear-gradient(135deg, var(--brand-orange), #F8C062); }
    .ic-teal   { background: linear-gradient(135deg, var(--brand-teal), #2BB8A8); }
    .ic-red    { background: linear-gradient(135deg, var(--brand-red), #E47352); }
    .ic-dark   { background: linear-gradient(135deg, var(--brand-dark), #4A5C5D); }
    .ic-mix    { background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal)); }
    .ic-warm   { background: linear-gradient(135deg, var(--brand-orange), var(--brand-red)); }

    .service-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
    .service-card p { font-size: 15px; margin-bottom: 16px; }
    .service-card ul { list-style: none; padding: 0; margin: 0 0 20px; }
    .service-card li {
      display: flex; align-items: center; gap: 8px;
      font-size: 14px; color: var(--text); padding: 4px 0;
    }
    .service-card li i { color: var(--brand-teal); font-size: 14px; }
    .card-link {
      display: inline-flex; align-items: center; gap: 6px;
      font-weight: 600; font-size: 14px;
      color: var(--brand-blue);
    }
    .card-link i { transition: transform .2s ease; }
    .card-link:hover i { transform: translateX(4px); }

    /* ============ FEATURED BLOCKS ============ */
    .feature-block { padding: 100px 0; position: relative; overflow: hidden; }
    .fb-light { background: var(--bg); }
    .fb-soft { background: var(--bg-soft); }
    .fb-dark { background: linear-gradient(135deg, var(--brand-dark), var(--brand-dark-2)); color: #fff; }
    .fb-dark h2, .fb-dark h3 { color: #fff; }
    .fb-dark p { color: rgba(255,255,255,.78); }
    .fb-dark .fb-eyebrow { color: var(--brand-orange); }

    .fb-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      position: relative;
      z-index: 1;
    }
    .fb-grid.reverse { direction: rtl; }
    .fb-grid.reverse > * { direction: ltr; }

    .fb-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: var(--brand-blue);
      margin-bottom: 18px;
    }
    .fb-eyebrow i { font-size: 16px; }
    .feature-block h2 {
      font-size: clamp(2rem, 3.6vw, 2.8rem);
      font-weight: 700;
      margin-bottom: 16px;
    }
    .feature-block .fb-text > p {
      font-size: 17px;
      max-width: 540px;
      margin-bottom: 24px;
    }
    .fb-features {
      list-style: none;
      padding: 0;
      margin: 0 0 32px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px 24px;
    }
    .fb-features li {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: inherit;
    }
    .fb-features li i {
      color: var(--brand-teal);
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 2px;
    }
    .fb-dark .fb-features li i { color: var(--brand-orange); }
    .fb-cta { display: flex; gap: 12px; flex-wrap: wrap; }

    .btn-wa {
      background: #25D366;
      color: #fff;
    }
    .btn-wa:hover { background: #20bd5f; transform: translateY(-1px); box-shadow: var(--shadow-md); }

    /* ----- Mockup: Software dashboard ----- */
    .mockup {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      aspect-ratio: 4/3;
    }
    .mock-dashboard {
      background: #fff;
      border: 1px solid var(--border);
      display: grid;
      grid-template-columns: 70px 1fr;
      grid-template-rows: 38px 1fr;
    }
    .mock-dashboard .mock-side {
      grid-row: 1 / span 2;
      background: var(--brand-dark);
      padding: 16px 10px;
      display: flex; flex-direction: column; gap: 10px;
    }
    .mock-dashboard .mock-side div {
      width: 100%; height: 32px; border-radius: 8px;
      background: rgba(255,255,255,.08);
    }
    .mock-dashboard .mock-side div.active {
      background: var(--brand-blue);
    }
    .mock-dashboard .mock-top {
      background: var(--bg-soft);
      border-bottom: 1px solid var(--border);
      display: flex; align-items: center; gap: 8px; padding: 0 14px;
    }
    .mock-dashboard .mock-top span {
      width: 10px; height: 10px; border-radius: 50%;
      background: #d4d4d4;
    }
    .mock-dashboard .mock-top span:nth-child(1) { background: #FF5F57; }
    .mock-dashboard .mock-top span:nth-child(2) { background: #FEBC2E; }
    .mock-dashboard .mock-top span:nth-child(3) { background: #28C840; }
    .mock-dashboard .mock-body {
      padding: 18px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      grid-template-rows: 64px 1fr;
      gap: 12px;
    }
    .mock-stat {
      background: var(--bg-soft);
      border-radius: 10px;
      padding: 10px;
      display: flex; flex-direction: column; justify-content: center; gap: 4px;
    }
    .mock-stat .v { font-family: 'Space Grotesk'; font-weight: 700; font-size: 18px; color: var(--brand-dark); }
    .mock-stat .l { font-size: 9px; color: var(--text-soft); }
    .mock-chart {
      grid-column: 1 / -1;
      background: linear-gradient(180deg, var(--bg-soft), #fff);
      border-radius: 10px;
      padding: 14px;
      position: relative;
      overflow: hidden;
    }
    .mock-chart svg { width: 100%; height: 100%; }

    /* ----- Mockup: E-commerce store ----- */
    .mock-store {
      background: var(--brand-dark);
      padding: 24px;
      display: grid;
      grid-template-columns: 60% 40%;
      gap: 16px;
      align-items: stretch;
    }
    .mock-browser {
      background: #fff;
      border-radius: 12px;
      overflow: hidden;
      display: flex; flex-direction: column;
      box-shadow: 0 12px 30px rgba(0,0,0,.30);
    }
    .mock-browser .bar {
      height: 26px; background: var(--bg-soft);
      display: flex; align-items: center; gap: 6px; padding: 0 10px;
      border-bottom: 1px solid var(--border);
    }
    .mock-browser .bar span {
      width: 8px; height: 8px; border-radius: 50%;
    }
    .mock-browser .bar span:nth-child(1) { background: #FF5F57; }
    .mock-browser .bar span:nth-child(2) { background: #FEBC2E; }
    .mock-browser .bar span:nth-child(3) { background: #28C840; }
    .mock-browser .content {
      flex: 1;
      display: grid;
      grid-template-rows: 30% 1fr;
    }
    .mock-browser .hero-mini {
      background: linear-gradient(135deg, var(--brand-orange), var(--brand-red));
      display: flex; align-items: center; justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 14px;
      letter-spacing: .1em;
    }
    .mock-browser .grid-products {
      padding: 10px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
    }
    .mock-product {
      background: var(--bg-soft);
      border-radius: 6px;
      aspect-ratio: 1/1.2;
      display: flex; flex-direction: column;
      overflow: hidden;
    }
    .mock-product .img { flex: 1; background: linear-gradient(135deg, #d8e1e8, #aec3cf); }
    .mock-product:nth-child(2) .img { background: linear-gradient(135deg, #f5d4b8, #e8a574); }
    .mock-product:nth-child(3) .img { background: linear-gradient(135deg, #c8e0d4, #7fbfa0); }
    .mock-product:nth-child(4) .img { background: linear-gradient(135deg, #e5c5d8, #b87aa3); }
    .mock-product:nth-child(5) .img { background: linear-gradient(135deg, #d4d8e5, #7a8bb8); }
    .mock-product:nth-child(6) .img { background: linear-gradient(135deg, #e8e3c0, #c2b860); }
    .mock-product .meta {
      padding: 4px 5px;
      font-size: 7px;
      color: var(--text);
      background: #fff;
    }
    .mock-cart {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: 12px;
      padding: 18px;
      display: flex; flex-direction: column; gap: 12px;
      color: #fff;
    }
    .mock-cart h5 { color: #fff; font-family: 'Inter'; font-size: 13px; margin: 0 0 4px; font-weight: 700; }
    .mock-cart .ci {
      display: flex; gap: 10px; align-items: center;
      padding: 8px; background: rgba(255,255,255,.05); border-radius: 8px;
    }
    .mock-cart .ci .img {
      width: 32px; height: 32px; border-radius: 6px;
      background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue));
      flex-shrink: 0;
    }
    .mock-cart .ci .info { font-size: 11px; }
    .mock-cart .ci .info .n { font-weight: 700; }
    .mock-cart .ci .info .p { color: rgba(255,255,255,.65); font-size: 10px; }
    .mock-cart .total {
      margin-top: auto;
      padding-top: 10px;
      border-top: 1px dashed rgba(255,255,255,.20);
      display: flex; justify-content: space-between;
      font-size: 12px; font-weight: 700;
    }
    .mock-cart .total b { font-family: 'Space Grotesk'; font-size: 16px; color: var(--brand-orange); }

    /* ----- Mockup: Phone ----- */
    .mock-phone-wrap {
      display: flex; justify-content: center;
      aspect-ratio: 4/3;
      position: relative;
    }
    .mock-phone {
      width: 240px;
      max-width: 70%;
      aspect-ratio: 9/19;
      background: #1a1f20;
      border-radius: 32px;
      padding: 10px;
      box-shadow: 0 30px 60px rgba(0,0,0,.30), 0 0 0 2px rgba(255,255,255,.08) inset;
      position: relative;
    }
    .mock-phone::before {
      content: '';
      position: absolute;
      top: 18px; left: 50%;
      transform: translateX(-50%);
      width: 60px; height: 6px;
      background: #000;
      border-radius: 3px;
      z-index: 2;
    }
    .mock-phone-screen {
      width: 100%; height: 100%;
      background: linear-gradient(180deg, var(--brand-blue), var(--brand-teal));
      border-radius: 24px;
      overflow: hidden;
      display: flex; flex-direction: column;
      padding: 36px 14px 14px;
      gap: 10px;
    }
    .mock-phone-screen .greet { color: #fff; font-size: 11px; opacity: .8; }
    .mock-phone-screen .name { color: #fff; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
    .mock-phone-screen .tile {
      background: rgba(255,255,255,.92);
      border-radius: 12px;
      padding: 10px;
      display: flex; align-items: center; gap: 8px;
    }
    .mock-phone-screen .tile .ic {
      width: 28px; height: 28px; border-radius: 8px;
      display: grid; place-items: center;
      color: #fff; font-size: 14px;
      flex-shrink: 0;
    }
    .mock-phone-screen .tile:nth-child(3) .ic { background: var(--brand-orange); }
    .mock-phone-screen .tile:nth-child(4) .ic { background: var(--brand-red); }
    .mock-phone-screen .tile:nth-child(5) .ic { background: var(--brand-teal); }
    .mock-phone-screen .tile:nth-child(6) .ic { background: var(--brand-blue); }
    .mock-phone-screen .tile .label { font-size: 10px; color: var(--brand-dark); }
    .mock-phone-screen .tile .val { font-size: 12px; color: var(--brand-dark); font-weight: 700; }
    .mock-phone-screen .grid-tiny {
      margin-top: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 6px;
      padding: 8px;
      background: rgba(255,255,255,.95);
      border-radius: 16px;
    }
    .mock-phone-screen .grid-tiny div {
      aspect-ratio: 1;
      border-radius: 6px;
      background: var(--bg-soft);
      display: grid; place-items: center;
      color: var(--brand-dark);
      font-size: 11px;
    }
    .mock-phone-screen .grid-tiny div:nth-child(1) { background: var(--brand-blue); color: #fff; }

    /* Floating tag near visuals */
    .visual-tag {
      position: absolute;
      background: var(--surface);
      border-radius: 14px;
      padding: 14px 18px;
      box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 12px;
      z-index: 2;
    }
    .visual-tag .ic {
      width: 36px; height: 36px;
      border-radius: 10px;
      display: grid; place-items: center;
      color: #fff;
      font-size: 18px;
      flex-shrink: 0;
    }
    .visual-tag .t { font-size: 12px; color: var(--text-soft); }
    .visual-tag .v { font-weight: 700; font-size: 15px; color: var(--brand-dark); }

    /* ============ PRODUCTS ============ */
    .products { background: var(--bg-soft); }
    .product-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      display: flex;
      flex-direction: column;
      transition: transform .25s ease, box-shadow .25s ease;
    }
    .product-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }
    .product-banner {
      height: 140px;
      display: grid;
      place-items: center;
      color: #fff;
      position: relative;
      overflow: hidden;
    }
    .product-banner i {
      font-size: 56px;
      opacity: .9;
    }
    .pb-stock { background: linear-gradient(135deg, var(--brand-orange), var(--brand-red)); }
    .pb-ins   { background: linear-gradient(135deg, var(--brand-blue), var(--brand-dark)); }
    .pb-rsv   { background: linear-gradient(135deg, var(--brand-teal), var(--brand-blue)); }
    .product-banner::after {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(transparent 95%, rgba(255,255,255,.10) 95%),
        linear-gradient(90deg, transparent 95%, rgba(255,255,255,.10) 95%);
      background-size: 24px 24px;
      opacity: .5;
    }
    .product-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
    .product-body h3 { font-size: 22px; margin-bottom: 8px; }
    .product-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      color: var(--brand-blue);
      background: rgba(42,123,211,.10);
      padding: 4px 10px;
      border-radius: 999px;
      margin-bottom: 12px;
      align-self: flex-start;
    }
    .product-body p { font-size: 15px; flex: 1; }
    .product-body ul { list-style: none; padding: 0; margin: 0 0 20px; }
    .product-body li { font-size: 14px; color: var(--text); padding: 3px 0; display: flex; gap: 8px; align-items: center; }
    .product-body li::before { content: '→'; color: var(--brand-orange); font-weight: 700; }

    /* ============ PROCESS ============ */
    .process { background: var(--bg); }
    .grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .step {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      position: relative;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .step:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .step-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 48px;
      font-weight: 700;
      line-height: 1;
      background: linear-gradient(135deg, var(--brand-blue), var(--brand-teal));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
      margin-bottom: 12px;
    }
    .step h4 { font-size: 17px; margin-bottom: 6px; }
    .step p { font-size: 14px; margin: 0; }

    /* ============ TECH ============ */
    .tech { background: var(--brand-dark); color: #fff; }
    .tech h2 { color: #fff; }
    .tech .section-head p { color: rgba(255,255,255,.75); }
    .tech .section-eyebrow { color: var(--brand-orange); }
    .tech-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 16px;
    }
    .tech-pill {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 14px;
      padding: 22px 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
      transition: background .2s ease, transform .2s ease;
    }
    .tech-pill:hover {
      background: rgba(255,255,255,.10);
      transform: translateY(-3px);
    }
    .tech-pill i { font-size: 28px; }
    .tech-pill span { font-size: 13px; font-weight: 500; color: rgba(255,255,255,.85); }
    .tp-php    i { color: #777BB4; }
    .tp-js     i { color: #F0DB4F; }
    .tp-react  i { color: #61DBFB; }
    .tp-node   i { color: #8CC84B; }
    .tp-html   i { color: #E34C26; }
    .tp-mysql  i { color: #00758F; }
    .tp-shop   i { color: #95BF47; }
    .tp-laravel i { color: #FF2D20; }
    .tp-bs     i { color: #7952B3; }
    .tp-cloud  i { color: #FF9900; }
    .tp-android i { color: #3DDC84; }
    .tp-apple  i { color: #BBBBBB; }

    /* ============ CASES ============ */
    .cases { background: var(--bg); }
    .case-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .case-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .case-tag {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      color: var(--brand-teal);
      background: rgba(0,158,142,.10);
      padding: 4px 10px; border-radius: 999px;
      margin-bottom: 14px;
    }
    .case-card h4 { font-size: 18px; margin-bottom: 8px; }
    .case-card p { font-size: 14px; }
    .case-card .metric {
      display: flex; gap: 18px; margin-top: 14px; padding-top: 14px;
      border-top: 1px dashed var(--border);
    }
    .case-card .metric div span:first-child {
      display: block; font-family: 'Space Grotesk', sans-serif; font-size: 22px;
      font-weight: 700; color: var(--brand-dark);
    }
    .case-card .metric div span:last-child {
      font-size: 12px; color: var(--text-soft);
    }

    /* ============ TESTIMONIOS ============ */
    .testimonials { background: var(--bg); }
    .grid-3-test {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .testimonial-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 32px;
      display: flex;
      flex-direction: column;
      gap: 16px;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
    .stars { color: var(--brand-orange); font-size: 16px; letter-spacing: 2px; }
    .testimonial-card blockquote {
      margin: 0;
      font-size: 15px;
      color: var(--text);
      line-height: 1.7;
      flex: 1;
    }
    .testimonial-card blockquote::before { content: '"'; color: var(--brand-blue); font-size: 32px; line-height: 0; vertical-align: -10px; margin-right: 4px; font-family: 'Space Grotesk'; }
    .testimonial-author {
      display: flex;
      align-items: center;
      gap: 12px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .testimonial-avatar {
      width: 44px; height: 44px;
      border-radius: 50%;
      display: grid; place-items: center;
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      flex-shrink: 0;
    }
    .testimonial-author .name { font-weight: 700; font-size: 14px; color: var(--brand-dark); }
    .testimonial-author .role { font-size: 13px; color: var(--text-soft); }

    /* ============ FAQ ============ */
    .faq { background: var(--bg-soft); }
    .faq-list {
      max-width: 820px;
      margin: 0 auto;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }
    .faq-item {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      overflow: hidden;
      transition: box-shadow .2s ease;
    }
    .faq-item[open] { box-shadow: var(--shadow-md); }
    .faq-item summary {
      padding: 22px 26px;
      cursor: pointer;
      list-style: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      font-weight: 600;
      font-size: 16px;
      color: var(--brand-dark);
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '+';
      font-size: 26px;
      font-weight: 400;
      color: var(--brand-blue);
      transition: transform .2s ease;
      flex-shrink: 0;
      line-height: 1;
    }
    .faq-item[open] summary::after { transform: rotate(45deg); }
    .faq-answer {
      padding: 0 26px 24px;
      font-size: 15px;
      color: var(--text-soft);
      line-height: 1.7;
    }

    /* ============ ABOUT ============ */
    .about { background: var(--bg-soft); }
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
    }
    .about-grid h2 { font-size: clamp(2rem, 3.5vw, 2.6rem); }
    .about-points {
      display: grid; gap: 20px; margin-top: 24px;
    }
    .about-point { display: flex; gap: 16px; align-items: flex-start; }
    .about-point .ic {
      width: 44px; height: 44px; border-radius: 12px;
      display: grid; place-items: center; flex-shrink: 0;
      font-size: 20px; color: #fff;
    }
    .about-point h4 { font-size: 16px; margin-bottom: 4px; }
    .about-point p { font-size: 14px; margin: 0; }

    .about-visual {
      position: relative;
      aspect-ratio: 4/5;
      background: linear-gradient(135deg, var(--brand-dark), var(--brand-dark-2));
      border-radius: 24px;
      overflow: hidden;
      display: grid; place-items: center;
    }
    .about-visual img { max-width: 70%; opacity: .9; }
    .about-visual::before {
      content: '';
      position: absolute; inset: 0;
      background-image:
        linear-gradient(transparent 95%, rgba(255,255,255,.06) 95%),
        linear-gradient(90deg, transparent 95%, rgba(255,255,255,.06) 95%);
      background-size: 28px 28px;
    }

    /* ============ CTA ============ */
    .cta-band {
      background: linear-gradient(135deg, var(--brand-dark), var(--brand-dark-2));
      color: #fff;
      border-radius: 24px;
      padding: 56px 48px;
      display: grid;
      grid-template-columns: 2fr 1fr;
      align-items: center;
      gap: 32px;
      position: relative;
      overflow: hidden;
    }
    .cta-band::before {
      content: '';
      position: absolute;
      top: -100px; right: -100px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(245,166,35,.20), transparent 60%);
    }
    .cta-band h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 8px; }
    .cta-band p { color: rgba(255,255,255,.80); font-size: 17px; margin: 0; }
    .cta-actions { display: flex; gap: 12px; flex-wrap: wrap; justify-content: flex-end; position: relative; z-index: 1; }
    .btn-orange { background: var(--brand-orange); color: var(--brand-dark); }
    .btn-orange:hover { background: #F8B850; transform: translateY(-1px); box-shadow: var(--shadow-md); }
    .btn-light { background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.2); }
    .btn-light:hover { background: rgba(255,255,255,.18); }

    /* ============ MERCADOPAGO PARTNER BLOCK ============ */
    .mp-partner {
      padding: 96px 0;
      background:
        radial-gradient(circle at 20% 20%, rgba(0,158,142,.06), transparent 55%),
        radial-gradient(circle at 80% 80%, rgba(42,123,211,.06), transparent 55%),
        var(--bg);
      position: relative;
      overflow: hidden;
    }
    .mp-card {
      position: relative;
      background: linear-gradient(135deg, #FFF8E1 0%, #FFFFFF 55%, #E8F4FF 100%);
      border: 1px solid #FFE08A;
      border-radius: 28px;
      padding: 56px 48px;
      box-shadow: 0 24px 60px rgba(20,30,30,.08), 0 6px 16px rgba(245,166,35,.10);
      display: grid;
      grid-template-columns: auto 1fr auto;
      align-items: center;
      gap: 48px;
      overflow: hidden;
    }
    .mp-card::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(0,158,142,.10), transparent 65%);
      pointer-events: none;
    }
    .mp-card::after {
      content: '';
      position: absolute;
      bottom: -120px; left: -120px;
      width: 360px; height: 360px;
      background: radial-gradient(circle, rgba(255,224,138,.35), transparent 65%);
      pointer-events: none;
    }
    .mp-badge {
      position: relative;
      z-index: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .mp-badge img {
      width: 180px;
      height: auto;
      filter: drop-shadow(0 12px 24px rgba(0,158,142,.18));
      transition: transform .35s ease;
    }
    .mp-badge:hover img { transform: scale(1.04) rotate(-2deg); }
    .mp-content {
      position: relative;
      z-index: 1;
    }
    .mp-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 6px 14px;
      background: #fff;
      border: 1px solid #FFD75A;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #00A6B6;
      margin-bottom: 16px;
      box-shadow: var(--shadow-sm);
    }
    .mp-eyebrow i { color: #009EE3; font-size: 14px; }
    .mp-content h2 {
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700;
      margin-bottom: 12px;
    }
    .mp-content h2 .mp-highlight {
      background: linear-gradient(120deg, #009EE3, #00A6B6);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }
    .mp-content > p {
      font-size: 16px;
      max-width: 560px;
      margin-bottom: 20px;
      color: var(--text-soft);
    }
    .mp-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 0;
    }
    .mp-tag {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 12px;
      background: rgba(255,255,255,.8);
      border: 1px solid var(--border);
      border-radius: 999px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand-dark);
    }
    .mp-tag i { color: var(--brand-teal); font-size: 14px; }

    .mp-download {
      position: relative;
      z-index: 1;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 20px;
      padding: 24px;
      width: 280px;
      box-shadow: var(--shadow-md);
      display: flex;
      flex-direction: column;
      gap: 14px;
      flex-shrink: 0;
    }
    .mp-download-head {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .mp-download-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, #009EE3, #00A6B6);
      display: grid;
      place-items: center;
      color: #fff;
      font-size: 22px;
      flex-shrink: 0;
    }
    .mp-download-meta .t1 {
      font-weight: 700;
      color: var(--brand-dark);
      font-size: 14px;
      line-height: 1.2;
      margin-bottom: 2px;
    }
    .mp-download-meta .t2 {
      font-size: 12px;
      color: var(--text-soft);
    }
    .mp-download p {
      font-size: 13px;
      color: var(--text-soft);
      margin: 0;
      line-height: 1.5;
    }
    .btn-mp {
      background: #009EE3;
      color: #fff;
      width: 100%;
      justify-content: center;
    }
    .btn-mp:hover {
      background: #0089C7;
      transform: translateY(-1px);
      box-shadow: var(--shadow-md);
    }

    /* Footer mini-badge */
    .footer-mp {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 18px;
      padding: 12px 14px;
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.10);
      border-radius: 12px;
      width: fit-content;
      transition: background .2s ease, border-color .2s ease;
    }
    .footer-mp:hover {
      background: rgba(255,255,255,.10);
      border-color: rgba(255,255,255,.18);
    }
    .footer-mp img {
      width: 44px;
      height: auto;
      flex-shrink: 0;
    }
    .footer-mp .fmp-t1 {
      font-size: 12px;
      font-weight: 700;
      color: #fff;
      line-height: 1.2;
    }
    .footer-mp .fmp-t2 {
      font-size: 11px;
      color: rgba(255,255,255,.65);
      margin-top: 2px;
    }

    /* ============ FOOTER ============ */
    footer {
      background: var(--brand-dark-2);
      color: rgba(255,255,255,.75);
      padding: 64px 0 24px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-grid h5 {
      color: #fff;
      font-size: 13px;
      letter-spacing: .12em;
      text-transform: uppercase;
      margin-bottom: 16px;
      font-family: 'Inter', sans-serif;
      font-weight: 700;
    }
    .footer-grid a {
      display: block;
      color: rgba(255,255,255,.65);
      font-size: 14px;
      padding: 4px 0;
      transition: color .2s ease;
    }
    .footer-grid a:hover { color: var(--brand-orange); }
    .footer-brand img { height: 96px; width: auto; max-width: 280px; margin-bottom: 20px; display: block; }
    .footer-brand p { font-size: 14px; color: rgba(255,255,255,.65); max-width: 300px; }
    .socials { display: flex; gap: 12px; margin-top: 16px; }
    .socials a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.08);
      display: grid; place-items: center;
      transition: background .2s ease, transform .2s ease;
      padding: 0;
    }
    .socials a:hover { background: var(--brand-orange); color: var(--brand-dark); transform: translateY(-2px); }
    .footer-bottom {
      padding-top: 24px;
      border-top: 1px solid rgba(255,255,255,.10);
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: 13px;
      color: rgba(255,255,255,.55);
    }

    /* ============ WHATSAPP WIDGET ============ */
    #wa-widget {
      position: fixed;
      bottom: 24px; right: 24px;
      z-index: 9999;
    }
    #wa-toggle {
      background: #25D366;
      color: #fff;
      padding: 14px 22px;
      border-radius: 999px;
      cursor: pointer;
      box-shadow: 0 8px 24px rgba(37,211,102,.40);
      display: flex; align-items: center; gap: 10px;
      font-weight: 600;
      font-size: 14px;
      border: 0;
      transition: transform .2s ease;
    }
    #wa-toggle:hover { transform: translateY(-2px); }
    #wa-toggle i { font-size: 20px; }
    #wa-form {
      display: none;
      margin-top: 12px;
      width: 320px;
      background: #fff;
      border-radius: 18px;
      padding: 20px;
      box-shadow: 0 24px 60px rgba(20,30,30,.20);
      border: 1px solid var(--border);
    }
    #wa-form h4 { font-size: 16px; margin-bottom: 4px; }
    #wa-form p { font-size: 13px; margin-bottom: 14px; }
    #wa-form input, #wa-form select, #wa-form textarea {
      width: 100%;
      padding: 10px 12px;
      border: 1px solid var(--border);
      border-radius: 10px;
      font-family: inherit;
      font-size: 14px;
      margin-bottom: 10px;
      background: var(--bg);
      color: var(--text);
    }
    #wa-form input:focus, #wa-form select:focus, #wa-form textarea:focus {
      outline: none;
      border-color: var(--brand-blue);
    }
    #wa-form button {
      width: 100%;
      background: #25D366;
      color: #fff;
      border: 0;
      padding: 12px;
      font-weight: 600;
      border-radius: 10px;
      cursor: pointer;
      transition: background .2s ease;
    }
    #wa-form button:hover { background: #20bd5f; }

    /* ============ RESPONSIVE ============ */
    @media (max-width: 992px) {
      .hero { padding: 28px 0 44px; }
      .hero-grid, .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { max-width: 380px; margin: 0 auto; }
      .grid-3, .grid-4, .grid-3-test { grid-template-columns: repeat(2, 1fr); }
      .stats-row { grid-template-columns: 1fr; }
      .hero-card:nth-child(2) { margin-left: 0; }
      .hero-card:nth-child(3) { margin-left: 0; }
      .fb-grid { grid-template-columns: 1fr; gap: 40px; }
      .fb-grid.reverse { direction: ltr; }
      .feature-block { padding: 64px 0; }
      .fb-features { grid-template-columns: 1fr; }
      .tech-grid { grid-template-columns: repeat(4, 1fr); }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .cta-band { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; }
      .cta-actions { justify-content: center; }
      .mp-card { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; gap: 28px; }
      .mp-content > p { margin-left: auto; margin-right: auto; }
      .mp-tags { justify-content: center; }
      .mp-download { width: 100%; max-width: 380px; margin: 0 auto; text-align: left; }
      .mp-badge img { width: 150px; }
    }

    @media (max-width: 640px) {
      section { padding: 64px 0; }
      .nav-links { display: none; }
      .nav-links.open {
        display: flex;
        position: absolute;
        top: 104px; left: 0; right: 0;
        background: var(--surface);
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow-md);
      }
      .nav-toggle { display: block; }
      .grid-3, .grid-4, .stats-row, .grid-3-test { grid-template-columns: 1fr; }
      .tech-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-grid { grid-template-columns: 1fr; }
      .footer-bottom { justify-content: center; text-align: center; }
      .hero-visual { max-width: 320px; }
      .hero-card { padding: 12px 14px; }
      .hero-card .ic { width: 36px; height: 36px; font-size: 18px; }
      .hero-card .t1 { font-size: 13px; }
      .hero-card .t2 { font-size: 11px; }
      #wa-form { width: calc(100vw - 48px); max-width: 320px; }
    }

    /* Reveal on scroll */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity .7s ease, transform .7s ease;
    }
    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

/* ============ DIFERENCIAL / POR QUÉ AMASYS ============ */
.diff { background: var(--surface); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.diff-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.diff-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.diff-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: transparent; }
.diff-card .ic {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid; place-items: center;
  font-size: 24px;
  color: #fff;
  margin-bottom: 18px;
}
.diff-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.diff-card p { font-size: 14px; margin: 0; }
@media (max-width: 900px) { .diff-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .diff-grid { grid-template-columns: 1fr; } }

/* ============ LANDING PAGES ============ */
.lp-check { list-style: none; padding: 0; margin: 0 0 28px; display: grid; gap: 12px; }
.lp-check li { display: flex; gap: 10px; align-items: flex-start; font-size: 15px; color: var(--text); }
.lp-check li i { color: var(--brand-teal); font-size: 18px; margin-top: 2px; flex-shrink: 0; }
.lp-faq { max-width: 760px; margin: 0 auto; display: grid; gap: 12px; }
.lp-faq details { background: var(--surface); border: 1px solid var(--border); border-radius: 14px; padding: 18px 22px; }
.lp-faq summary { font-weight: 600; cursor: pointer; color: var(--brand-dark); list-style: none; display: flex; justify-content: space-between; gap: 12px; }
.lp-faq summary::-webkit-details-marker { display: none; }
.lp-faq summary::after { content: "\F282"; font-family: "bootstrap-icons"; color: var(--brand-blue); transition: transform .2s ease; }
.lp-faq details[open] summary::after { transform: rotate(180deg); }
.lp-faq details[open] summary { margin-bottom: 12px; }
.lp-faq p { margin: 0; font-size: 15px; }

/* ============ FORMULARIO CONTACTO ============ */
.contact { background: var(--bg-soft); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-info h2 { font-size: clamp(1.9rem, 3vw, 2.6rem); margin-bottom: 14px; }
.contact-info p { font-size: 17px; }
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
}
.form-card .field { margin-bottom: 16px; }
.form-card label { display: block; font-size: 13px; font-weight: 600; color: var(--brand-dark); margin-bottom: 6px; }
.form-card input, .form-card textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: var(--bg);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.form-card textarea { resize: vertical; }
.form-card input:focus, .form-card textarea:focus {
  outline: none;
  border-color: var(--brand-teal);
  box-shadow: 0 0 0 3px rgba(0,158,142,.14);
}
.form-card .btn-wa { width: 100%; justify-content: center; margin-top: 6px; }
.form-note { font-size: 13px; color: var(--text-soft); text-align: center; margin: 12px 0 0; }
@media (max-width: 820px) { .contact-grid { grid-template-columns: 1fr; gap: 32px; } }
