﻿    /* =========================================================
       DESIGN TOKENS — G.E.T. · APOSTILLAS EXPRESS OK
       Negro Profundo + Carmín Institucional + Blanco
    ========================================================= */
    :root {
      --black:          #0A0A0A;
      --black-mid:      #141414;
      --black-light:    #1E1E1E;
      --crimson:        #891828;
      --crimson-mid:    #A82030;
      --crimson-light:  #C42840;
      --crimson-pale:   #FFF0F2;
      --crimson-dark:   #6B1320;
      --bg-light:       #F7F7F7;
      --bg-white:       #FFFFFF;
      --text-dark:      #0A0A0A;
      --text-gray:      #4A4A4A;
      --text-light:     #7A7A7A;
      --border:         #E0E0E0;

      --shadow-sm:      0 1px 3px rgba(0,0,0,.08);
      --shadow-md:      0 4px 16px rgba(0,0,0,.10);
      --shadow-lg:      0 10px 40px rgba(0,0,0,.14);
      --shadow-xl:      0 20px 60px rgba(0,0,0,.20);
      --shadow-crimson: 0 4px 20px rgba(137,24,40,.30);

      --radius-sm:      6px;
      --radius-md:      12px;
      --radius-lg:      20px;
      --radius-xl:      32px;
      --radius-full:    9999px;

      --transition:     all .3s cubic-bezier(.4,0,.2,1);
      --font:           'Montserrat', sans-serif;
      --font-display:   'Playfair Display', serif;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: var(--font);
      background: var(--bg-white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
    }
    img { display: block; max-width: 100%; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    .container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 24px; }

    /* ── TOPBAR ──────────────────────────────────────────── */
    .topbar {
      background: var(--black);
      color: rgba(255,255,255,.72);
      font-size: 12px;
      font-weight: 500;
      letter-spacing: .3px;
      padding: 8px 0;
    }
    .topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
    .topbar-links { display: flex; gap: 20px; align-items: center; }
    .topbar-links a { color: rgba(255,255,255,.72); display: flex; align-items: center; gap: 6px; transition: var(--transition); }
    .topbar-links a:hover { color: #fff; }
    .topbar-links i { font-size: 11px; }

    /* ── HEADER / NAV ────────────────────────────────────── */
    header {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 900;
      box-shadow: var(--shadow-md);
    }
    .nav-wrap {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px 0;
      gap: 24px;
    }
    .logo { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
    .logo-img { width: 52px; height: 52px; object-fit: contain; flex-shrink: 0; }
    .logo-text { line-height: 1.2; }
    .logo-name { font-size: 17px; font-weight: 800; color: var(--black); letter-spacing: -.2px; }
    .logo-name span { color: var(--crimson); }
    .logo-sub { font-size: 10px; font-weight: 600; color: var(--text-light); letter-spacing: .8px; text-transform: uppercase; }

    nav { display: flex; align-items: center; gap: 4px; }
    nav a { font-size: 13px; font-weight: 600; color: var(--text-gray); padding: 8px 13px; border-radius: var(--radius-sm); transition: var(--transition); white-space: nowrap; }
    nav a:hover { color: var(--black); background: var(--bg-light); }
    nav a.active { color: var(--black); }

    .nav-cta {
      background: var(--crimson) !important;
      color: #fff !important;
      padding: 10px 20px !important;
      border-radius: var(--radius-full) !important;
      font-weight: 700 !important;
      font-size: 13px !important;
      letter-spacing: .3px;
      box-shadow: var(--shadow-crimson);
      transition: var(--transition) !important;
    }
    .nav-cta:hover {
      background: var(--crimson-mid) !important;
      transform: translateY(-1px);
      box-shadow: 0 6px 20px rgba(137,24,40,.45) !important;
    }

    .nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
    .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--black); border-radius: 2px; transition: var(--transition); }

    /* ── URGENCY BAR ─────────────────────────────────────── */
    .urgency-bar {
      background: linear-gradient(90deg, var(--crimson) 0%, var(--crimson-dark) 100%);
      color: #fff;
      text-align: center;
      padding: 11px;
      font-size: 13.5px;
      font-weight: 700;
      letter-spacing: .2px;
    }
    .urgency-bar span { opacity: .88; font-weight: 400; }
    .urgency-bar a { color: #ffd0d8; text-decoration: underline; font-weight: 800; }

    /* ── HERO ────────────────────────────────────────────── */
    .hero {
      background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 55%, #1a0608 100%);
      color: #fff;
      min-height: 92vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
      padding: 80px 0;
    }
    .hero::before {
      content: '';
      position: absolute;
      top: -120px; right: -120px;
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(137,24,40,.20) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero::after {
      content: '';
      position: absolute;
      bottom: -80px; left: -80px;
      width: 400px; height: 400px;
      background: radial-gradient(circle, rgba(137,24,40,.12) 0%, transparent 70%);
      border-radius: 50%;
    }
    .hero-dots { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
    .hero-dots span {
      position: absolute; width: 4px; height: 4px;
      background: rgba(137,24,40,.55);
      border-radius: 50%;
      animation: float 6s infinite ease-in-out;
    }
    .hero-dots span:nth-child(1) { top:15%; left:10%; animation-delay:0s; }
    .hero-dots span:nth-child(2) { top:25%; left:80%; animation-delay:1s; }
    .hero-dots span:nth-child(3) { top:60%; left:5%;  animation-delay:2s; }
    .hero-dots span:nth-child(4) { top:75%; left:90%; animation-delay:.5s; }
    .hero-dots span:nth-child(5) { top:45%; left:50%; animation-delay:1.5s; }
    .hero-dots span:nth-child(6) { top:80%; left:40%; animation-delay:2.5s; }
    @keyframes float {
      0%,100% { transform: translateY(0) scale(1); opacity:.4; }
      50%      { transform: translateY(-12px) scale(1.5); opacity:.8; }
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(137,24,40,.18);
      border: 1px solid rgba(137,24,40,.45);
      color: #ffc0cb;
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: 1.2px;
      text-transform: uppercase;
      padding: 8px 16px;
      border-radius: var(--radius-full);
      margin-bottom: 20px;
    }
    .hero-badge i { font-size: 10px; }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(36px, 5vw, 60px);
      font-weight: 900;
      line-height: 1.1;
      margin-bottom: 20px;
      letter-spacing: -.5px;
    }
    .hero-title .highlight { color: #ffc0cb; }
    .hero-title .express { color: var(--crimson-light); font-style: italic; }

    .hero-desc { font-size: 17px; line-height: 1.75; color: rgba(255,255,255,.78); margin-bottom: 36px; max-width: 480px; }

    .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--crimson);
      color: #fff;
      font-size: 15px;
      font-weight: 800;
      padding: 16px 32px;
      border-radius: var(--radius-full);
      box-shadow: var(--shadow-crimson);
      transition: var(--transition);
      border: none;
      cursor: pointer;
      letter-spacing: .3px;
    }
    .btn-primary:hover {
      background: var(--crimson-mid);
      transform: translateY(-2px);
      box-shadow: 0 8px 30px rgba(137,24,40,.5);
    }
    .btn-outline {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: transparent;
      color: #fff;
      font-size: 15px;
      font-weight: 700;
      padding: 16px 32px;
      border-radius: var(--radius-full);
      border: 2px solid rgba(255,255,255,.30);
      transition: var(--transition);
      cursor: pointer;
    }
    .btn-outline:hover {
      border-color: rgba(255,255,255,.65);
      background: rgba(255,255,255,.07);
      transform: translateY(-2px);
    }

    .hero-stats { display: flex; gap: 32px; flex-wrap: wrap; }
    .stat-num { font-size: 32px; font-weight: 900; color: #ffc0cb; line-height: 1; font-family: var(--font-display); }
    .stat-label { font-size: 12px; color: rgba(255,255,255,.55); font-weight: 500; margin-top: 4px; letter-spacing: .3px; }

    /* Hero card */
    .hero-visual { display: flex; justify-content: center; align-items: center; }
    .hero-card {
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.12);
      border-radius: var(--radius-xl);
      padding: 36px;
      backdrop-filter: blur(16px);
      width: 100%;
      max-width: 400px;
      box-shadow: var(--shadow-xl);
    }
    .hero-card-title {
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1px;
      text-transform: uppercase;
      color: #ffc0cb;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .hero-card-title::before { content: ''; display: block; width: 20px; height: 2px; background: var(--crimson); }
    .service-pill {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 11px 15px;
      background: rgba(255,255,255,.05);
      border: 1px solid rgba(255,255,255,.09);
      border-radius: var(--radius-md);
      margin-bottom: 9px;
      transition: var(--transition);
      cursor: pointer;
    }
    .service-pill:hover {
      background: rgba(137,24,40,.15);
      border-color: rgba(137,24,40,.40);
      transform: translateX(4px);
    }
    .service-pill i { color: #ffc0cb; font-size: 15px; width: 20px; flex-shrink: 0; }
    .service-pill span { font-size: 13.5px; font-weight: 600; color: rgba(255,255,255,.88); }
    .service-pill .badge {
      margin-left: auto;
      background: var(--crimson);
      color: #fff;
      font-size: 9.5px;
      font-weight: 700;
      padding: 3px 8px;
      border-radius: var(--radius-full);
      white-space: nowrap;
      letter-spacing: .5px;
    }
    .service-pill .badge-new { background: var(--black-light); }

    /* ── TRUST BAR ───────────────────────────────────────── */
    .trust-bar { background: var(--bg-light); border-bottom: 1px solid var(--border); padding: 20px 0; }
    .trust-items { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
    .trust-item { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; color: var(--text-gray); }
    .trust-item i { font-size: 18px; color: var(--crimson); }
    .trust-item strong { color: var(--black); }

    /* ── SECTION HEADERS ─────────────────────────────────── */
    .section-header { text-align: center; margin-bottom: 56px; }
    .section-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 800;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--crimson);
      margin-bottom: 12px;
    }
    .section-title {
      font-family: var(--font-display);
      font-size: clamp(28px, 4vw, 42px);
      font-weight: 900;
      color: var(--black);
      line-height: 1.2;
      margin-bottom: 16px;
    }
    .section-title span { color: var(--crimson); }
    .section-desc { font-size: 16px; color: var(--text-gray); max-width: 560px; margin: 0 auto; line-height: 1.7; }

    /* ── SERVICES ────────────────────────────────────────── */
    .services { padding: 96px 0; background: var(--bg-white); }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

    .service-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 32px;
      position: relative;
      overflow: hidden;
      transition: var(--transition);
      box-shadow: var(--shadow-sm);
    }
    .service-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--crimson), var(--crimson-mid));
      opacity: 0;
      transition: var(--transition);
    }
    .service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
    .service-card:hover::before { opacity: 1; }

    .service-card.featured {
      background: linear-gradient(135deg, var(--black) 0%, var(--black-mid) 100%);
      border-color: transparent;
      color: #fff;
    }
    .service-card.featured::before { background: linear-gradient(90deg, var(--crimson), var(--crimson-mid)); opacity: 1; }
    .service-card.featured .service-icon { background: rgba(137,24,40,.18); }
    .service-card.featured .service-icon i { color: #ffc0cb; }
    .service-card.featured .service-title { color: #fff; }
    .service-card.featured .service-desc { color: rgba(255,255,255,.68); }
    .service-card.featured .service-link { color: #ffc0cb; }
    .service-card.featured .service-link:hover { color: #fff; }
    .service-card.featured .service-time-note {
      background: rgba(137,24,40,.25);
      border-color: rgba(137,24,40,.45);
      color: #ffc0cb;
    }

    .service-card-top { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 20px; }
    .service-icon { width: 54px; height: 54px; background: var(--bg-light); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .service-icon i { font-size: 23px; color: var(--crimson); }

    .urgent-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--crimson);
      color: #fff;
      font-size: 10px;
      font-weight: 800;
      letter-spacing: .8px;
      text-transform: uppercase;
      padding: 4px 10px;
      border-radius: var(--radius-full);
    }
    .new-tag { background: var(--black-light); }

    .service-title { font-size: 18px; font-weight: 800; color: var(--black); margin-bottom: 10px; line-height: 1.3; }
    .service-desc { font-size: 14px; color: var(--text-gray); line-height: 1.65; margin-bottom: 12px; }

    /* Horario badge */
    .service-time-note {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--crimson-pale);
      border: 1px solid rgba(137,24,40,.25);
      color: var(--crimson-dark);
      font-size: 11.5px;
      font-weight: 700;
      padding: 5px 11px;
      border-radius: var(--radius-full);
      margin-bottom: 16px;
    }
    .service-time-note i { font-size: 10px; }

    .service-langs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
    .lang-chip {
      background: var(--bg-light);
      border: 1px solid var(--border);
      font-size: 11px;
      font-weight: 600;
      color: var(--black);
      padding: 4px 10px;
      border-radius: var(--radius-full);
    }
    .service-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--crimson);
      transition: var(--transition);
    }
    .service-link:hover { gap: 10px; color: var(--crimson-dark); }

    /* ── WHY SECTION ─────────────────────────────────────── */
    .why { padding: 96px 0; background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%); }
    .why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

    .why-card-main {
      background: var(--black);
      color: #fff;
      border-radius: var(--radius-xl);
      padding: 40px;
      position: relative;
      overflow: hidden;
      box-shadow: var(--shadow-xl);
    }
    .why-card-main::before {
      content: '';
      position: absolute;
      top: -60px; right: -60px;
      width: 200px; height: 200px;
      background: radial-gradient(circle, rgba(137,24,40,.22) 0%, transparent 70%);
      border-radius: 50%;
    }
    .why-globe { font-size: 72px; margin-bottom: 20px; position: relative; z-index: 1; }
    .why-card-headline { font-family: var(--font-display); font-size: 26px; font-weight: 900; margin-bottom: 12px; position: relative; z-index: 1; }
    .why-card-headline span { color: #ffc0cb; }
    .why-card-text { font-size: 14px; color: rgba(255,255,255,.72); line-height: 1.7; position: relative; z-index: 1; }

    .why-badge-float {
      position: absolute;
      bottom: -20px;
      right: 40px;
      background: var(--crimson);
      color: #fff;
      border-radius: var(--radius-lg);
      padding: 16px 24px;
      font-weight: 800;
      font-size: 13px;
      box-shadow: var(--shadow-crimson);
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap;
    }
    .why-badge-float i { font-size: 18px; }

    .why-features { padding-top: 20px; }
    .why-feature { display: flex; gap: 20px; margin-bottom: 32px; align-items: flex-start; }
    .why-feature-icon {
      width: 52px; height: 52px;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      font-size: 22px;
    }
    .icon-dark   { background: rgba(10,10,10,.07);    color: var(--black); }
    .icon-crimson{ background: rgba(137,24,40,.10);   color: var(--crimson); }
    .icon-red    { background: rgba(168,32,48,.08);   color: var(--crimson-mid); }
    .icon-blue   { background: rgba(42,74,158,.09);   color: #2a4a9e; }
    .icon-green  { background: rgba(45,158,107,.09);  color: #2d9e6b; }

    .why-feature-body h4 { font-size: 16px; font-weight: 800; color: var(--black); margin-bottom: 6px; }
    .why-feature-body p  { font-size: 14px; color: var(--text-gray); line-height: 1.65; }

    /* ── PROCESS ─────────────────────────────────────────── */
    .process { padding: 96px 0; background: var(--bg-white); }
    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
      margin-top: 16px;
    }
    .process-steps::before {
      content: '';
      position: absolute;
      top: 32px;
      left: calc(12.5%);
      right: calc(12.5%);
      height: 2px;
      background: linear-gradient(90deg, var(--crimson), rgba(137,24,40,.3), var(--crimson));
    }
    .step { text-align: center; padding: 0 16px; position: relative; }
    .step-num {
      width: 64px; height: 64px;
      border-radius: 50%;
      background: var(--black);
      color: #fff;
      font-size: 22px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      position: relative;
      z-index: 1;
      box-shadow: var(--shadow-md);
      transition: var(--transition);
    }
    .step:hover .step-num { background: var(--crimson); transform: scale(1.1); }
    .step-title { font-size: 15px; font-weight: 800; color: var(--black); margin-bottom: 8px; }
    .step-desc { font-size: 13px; color: var(--text-gray); line-height: 1.6; }

    /* ── LANGUAGES ───────────────────────────────────────── */
    .languages { padding: 64px 0; background: var(--black); color: #fff; }
    .lang-header { text-align: center; margin-bottom: 40px; }
    .lang-header .section-eyebrow { color: #ffc0cb; }
    .lang-header .section-title { color: #fff; }
    .lang-header .section-title span { color: #ffc0cb; }
    .lang-header .section-desc { color: rgba(255,255,255,.60); }
    .lang-grid { display: flex; justify-content: center; flex-wrap: wrap; gap: 16px; }
    .lang-card {
      background: rgba(255,255,255,.06);
      border: 1px solid rgba(255,255,255,.11);
      border-radius: var(--radius-lg);
      padding: 20px 28px;
      text-align: center;
      transition: var(--transition);
    }
    .lang-card:hover {
      background: rgba(137,24,40,.18);
      border-color: rgba(137,24,40,.40);
      transform: translateY(-4px);
    }
    .lang-flag { font-size: 36px; margin-bottom: 8px; }
    .lang-name { font-size: 14px; font-weight: 700; color: rgba(255,255,255,.88); }

    /* ── CONTACT ─────────────────────────────────────────── */
    .contact { padding: 96px 0; background: var(--bg-light); }
    .contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }

    .contact-info h2 { font-family: var(--font-display); font-size: 36px; font-weight: 900; color: var(--black); margin-bottom: 16px; line-height: 1.2; }
    .contact-info h2 span { color: var(--crimson); }
    .contact-info p { font-size: 15px; color: var(--text-gray); margin-bottom: 36px; line-height: 1.7; }

    .contact-item { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 24px; }
    .contact-item-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
    .ci-wa    { background: #e8f5e9; color: #25d366; }
    .ci-email { background: rgba(10,10,10,.07); color: var(--black); }
    .ci-map   { background: rgba(137,24,40,.08); color: var(--crimson); }
    .ci-ig    { background: #fce4ec; color: #e91e8c; }
    .contact-item-body a { transition: var(--transition); }
    .contact-item-body a:hover { color: var(--crimson); }
    .contact-item-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--text-light); margin-bottom: 4px; }
    .contact-item-value { font-size: 15px; font-weight: 700; color: var(--text-dark); line-height: 1.4; }

    .contact-form-card {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-xl);
      padding: 40px;
      box-shadow: var(--shadow-md);
    }
    .form-title { font-size: 20px; font-weight: 800; color: var(--black); margin-bottom: 24px; }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .form-group { margin-bottom: 16px; }
    .form-group label { display: block; font-size: 12px; font-weight: 700; color: var(--text-gray); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 6px; }
    .form-group input,
    .form-group select,
    .form-group textarea {
      width: 100%;
      padding: 12px 16px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius-md);
      font-family: var(--font);
      font-size: 14px;
      color: var(--text-dark);
      background: var(--bg-light);
      transition: var(--transition);
      outline: none;
    }
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus { border-color: var(--crimson); background: var(--bg-white); box-shadow: 0 0 0 3px rgba(137,24,40,.10); }
    .form-group textarea { resize: vertical; min-height: 100px; }
    .form-submit {
      width: 100%;
      padding: 16px;
      background: var(--black);
      color: #fff;
      border: none;
      border-radius: var(--radius-full);
      font-family: var(--font);
      font-size: 15px;
      font-weight: 800;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: var(--transition);
    }
    .form-submit:hover { background: var(--crimson); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
    .form-note { font-size: 12px; color: var(--text-light); text-align: center; margin-top: 12px; }

    .file-upload-label {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 12px 16px;
      border: 1.5px dashed var(--border);
      border-radius: var(--radius-md);
      background: var(--bg-light);
      font-size: 14px;
      color: var(--text-gray);
      cursor: pointer;
      transition: var(--transition);
    }
    .file-upload-label:hover { border-color: var(--crimson); background: var(--bg-white); }
    .file-upload-label input[type=file] { display: none; }

    /* ── FOOTER ──────────────────────────────────────────── */
    footer { background: var(--black); color: rgba(255,255,255,.65); padding: 64px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
    .footer-brand .logo-name { color: #fff; font-size: 20px; }
    .footer-brand .logo-sub { color: rgba(255,255,255,.45); }
    .footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,.50); margin: 16px 0 24px; }
    .footer-socials { display: flex; gap: 10px; }
    .social-btn {
      width: 40px; height: 40px;
      border-radius: var(--radius-md);
      background: rgba(255,255,255,.07);
      border: 1px solid rgba(255,255,255,.10);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: rgba(255,255,255,.65);
      transition: var(--transition);
    }
    .social-btn:hover { background: var(--crimson); color: #fff; border-color: var(--crimson); transform: translateY(-2px); }
    .footer-col h4 { font-size: 13px; font-weight: 800; letter-spacing: 1px; text-transform: uppercase; color: #ffc0cb; margin-bottom: 20px; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { font-size: 14px; color: rgba(255,255,255,.55); transition: var(--transition); display: flex; align-items: center; gap: 8px; }
    .footer-links a i { font-size: 11px; color: var(--crimson); }
    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
    .footer-contact-item i { color: var(--crimson); font-size: 14px; margin-top: 2px; flex-shrink: 0; }
    .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.60); line-height: 1.5; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.07);
      padding: 20px 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
    }
    .footer-bottom p { font-size: 13px; }
    .footer-bottom-links { display: flex; gap: 20px; }
    .footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,.35); transition: var(--transition); }
    .footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

    /* ── WHATSAPP FLOAT ──────────────────────────────────── */
    .wa-float { position: fixed; bottom: 28px; right: 28px; z-index: 1000; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
    .wa-bubble {
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      padding: 14px 18px;
      font-size: 14px;
      font-weight: 600;
      color: var(--text-dark);
      box-shadow: var(--shadow-lg);
      max-width: 220px;
      line-height: 1.4;
      position: relative;
      display: none;
    }
    .wa-bubble::after {
      content: '';
      position: absolute;
      bottom: -8px; right: 22px;
      width: 16px; height: 16px;
      background: var(--bg-white);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      transform: rotate(45deg);
    }
    .wa-btn {
      width: 60px; height: 60px;
      background: #25d366;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 28px;
      color: #fff;
      box-shadow: 0 4px 20px rgba(37,211,102,.40);
      transition: var(--transition);
      position: relative;
    }
    .wa-btn::before {
      content: '';
      position: absolute;
      inset: -4px;
      border: 2px solid rgba(37,211,102,.25);
      border-radius: 50%;
      animation: wa-ring 2.5s infinite;
    }
    .wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.55); }
    .wa-float:hover .wa-bubble { display: block; }
    @keyframes wa-ring {
      0%   { transform: scale(1); opacity:.55; }
      50%  { transform: scale(1.2); opacity:.15; }
      100% { transform: scale(1); opacity:.55; }
    }

    /* ── ANIMATIONS ──────────────────────────────────────── */
    .fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
    .fade-in.visible { opacity: 1; transform: translateY(0); }

    /* ── RESPONSIVE ──────────────────────────────────────── */
    @media (max-width: 1024px) {
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .why-grid { gap: 40px; }
      .process-steps { grid-template-columns: repeat(2,1fr); gap: 32px; }
      .process-steps::before { display: none; }
    }
    @media (max-width: 768px) {
      .topbar-links { gap: 12px; font-size: 11px; }
      nav { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--bg-white); padding: 16px 24px; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
      nav.open { display: flex; }
      nav a { padding: 10px 0; border-bottom: 1px solid var(--border); }
      .nav-toggle { display: flex; }
      .hero { padding: 60px 0; min-height: auto; }
      .hero-grid { grid-template-columns: 1fr; gap: 40px; }
      .hero-visual { order: -1; }
      .hero-card { max-width: 100%; }
      .hero-stats { gap: 20px; }
      .stat-num { font-size: 26px; }
      .services-grid { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .why-badge-float { position: static; margin-top: 20px; display: inline-flex; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; text-align: center; }
    }
    @media (max-width: 480px) {
      .process-steps { grid-template-columns: 1fr; }
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-outline { width: 100%; justify-content: center; }
      .trust-items { gap: 20px; }
    }