:root{
    --white:#FFFFFF;
    --paper:#F7FAF8;
    --ink:#5D6675;
    --ink-soft:#667085;
    --green:#1FAF62;
    --green-deep:#17874D;
    --green-soft:#EBF7F0;
    --green-accent:#1AA357;
    --navy:#0B2149;
    --navy-deep:#0D2149;
    --navy-soft:#eef2f7;
    --line:#e2e8e3;
    --gold:#c9a24b;
    --radius:14px;
    --shadow-lg: 0 30px 80px rgba(16,24,40,.10);
    --shadow-sm: 0 8px 24px -12px rgba(16,24,40,0.08);
  }

  *{box-sizing:border-box; margin:0; padding:0;}
  html{scroll-behavior:smooth;}
  body{
    background:var(--paper);
    color:var(--ink);
    font-family:'Manrope',sans-serif;
    font-weight:500;
    line-height:1.5;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{color:inherit; text-decoration:none;}
  ul{list-style:none;}
  .mono{
    font-family:'JetBrains Mono', monospace;
    letter-spacing:0.06em;
    text-transform:uppercase;
  }
  h1,h2,h3,h4{
    font-family:'DM Serif Display', serif;
    color:var(--navy);
    font-weight:400;
    line-height:1.08;
    letter-spacing:-0.01em;
  }
  .container{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:0 32px;
  }
  .eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    font-size:12.5px;
    font-weight:600;
    color:var(--green-deep);
    margin-bottom:18px;
  }
  .eyebrow::before{
    content:"";
    width:26px; height:1.5px;
    background:var(--green);
  }
  .accent{color:var(--green);}
  .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding:15px 28px;
    border-radius:999px;
    font-weight:600;
    font-size:15px;
    font-family:'Inter',sans-serif;
    cursor:pointer;
    border:1.5px solid transparent;
    transition:transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
    white-space:nowrap;
  }
  .btn-primary{
    background:#25D366;
    color:#ffffff;
    box-shadow:0 14px 30px -10px rgba(37,211,102,0.55);
  }
  .btn-primary:hover{ transform:translateY(-2px); box-shadow:0 18px 34px -8px rgba(37,211,102,0.65);}
  .btn-navy{
    background:var(--navy);
    color:#fff;
    box-shadow:0 14px 30px -12px rgba(11,35,64,0.55);
  }
  .btn-navy:hover{ transform:translateY(-2px); }
  .btn-outline{
    background:transparent;
    border-color:rgba(255,255,255,0.5);
    color:#fff;
  }
  .btn-outline:hover{ background:rgba(255,255,255,0.12); border-color:#fff; }
  .btn-outline-navy{
    background:transparent;
    border-color:var(--navy);
    color:var(--navy);
  }
  .btn-outline-navy:hover{ background:var(--navy); color:#fff; }

  /* ===== HEADER ===== */
  header {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1200px;
    z-index: 500;
    background: #FFFFFF;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05); /* soft shadow matching screenshot */
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(16, 24, 40, 0.06);
    transition: background 0.35s ease, box-shadow 0.35s ease, top 0.35s ease;
  }
  header.scrolled {
    top: 10px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }
  .nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    padding: 0 32px;
  }
  .logo {
    display: flex;
    align-items: center;
  }
  .logo-img {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
  }
  nav ul {
    display: flex;
    gap: 38px;
    align-items: center;
  }
  nav a {
    font-size: 14.5px;
    font-weight: 600;
    color: var(--ink);
    position: relative;
    padding: 6px 0;
  }
  nav a::after {
    content: "";
    position: absolute; left: 0; bottom: 0;
    width: 0; height: 2px;
    background: var(--green);
    transition: width .25s ease;
  }
  nav a:hover::after { width: 100%; }
  .nav-cta { display: flex; align-items: center; gap: 22px; }
  .nav-phone {
    display: flex; align-items: center; gap: 8px;
    font-size: 14px; font-weight: 600; color: var(--navy);
  }
  .menu-toggle {
    display: none;
    width: 42px; height: 42px;
    border-radius: 50%;
    border: 1px solid rgba(16, 24, 40, 0.1);
    background: #fff;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.25s ease, border-color 0.25s ease;
  }
  .menu-toggle:hover {
    background: var(--navy-soft);
    border-color: rgba(16, 24, 40, 0.2);
  }
  .menu-toggle svg { width: 20px; height: 20px; }
  .mobile-nav {
    display: none;
    position: fixed;
    top: 106px; left: 20px; right: 20px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(11, 35, 64, 0.12);
    z-index: 499;
    padding: 10px 24px 26px;
    transition: transform 0.35s ease, opacity 0.35s ease;
  }
  .mobile-nav.open { display: block; }
  .mobile-nav a {
    display: block;
    padding: 14px 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--navy);
  }
  .menu-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
  }

  /* ===== HERO ===== */
  .hero {
    position: relative;
    height: 860px; /* height constraint set to 860px */
    overflow: hidden;
    background-color: #FFFFFF;
    box-sizing: border-box;
    isolation: isolate; /* z-index and blend isolation */
  }

  /* Layer 1: Background Layer (z-index: 0) */
  .hero-bg-layer {
    position: absolute;
    inset: 0;
    background-color: #FFFFFF;
    z-index: 0;
  }

  /* Layer 2: Overlay Layer (z-index: 1) */
  .hero-overlay-layer {
    display: none !important; /* disabled for clean white layout */
  }

  /* Layer 3: Atmosphere Layer (z-index: 2) */
  .hero-atmosphere-layer {
    display: none !important; /* disabled for clean white layout */
  }

  /* Layer 4: Photo Layer (z-index: 3) */
  .hero-photo {
    position: absolute;
    top: 0; /* touch the top edge of the hero */
    right: 0; /* touch the right edge of the viewport */
    left: auto;
    transform: none !important;
    width: 760px; /* 760px width */
    height: 100%; /* height covering the entire 860px vertical space */
    border-top-left-radius: 60%; /* custom elliptical border radius */
    border-bottom-left-radius: 60%;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    object-fit: cover;
    object-position: 30% center; /* landscape framing */
    z-index: 3;
    clip-path: none !important;
    filter: contrast(1.08) saturate(1.12) brightness(.98); /* dar vida a la foto */
  }

  /* Layer 5: Circle Border & Arc (z-index: 4) */
  .hero-circle-border {
    position: absolute;
    left: calc(76% - 545px); /* 40px left of the circle leftmost edge */
    top: calc(50% - 60px);
    transform: translate(-50%, -50%);
    width: 290px; /* reduced radius by 45% (290px diameter) */
    height: 290px;
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
    box-shadow: none !important; /* remove shadow */
  }
  .hero-circle-border::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid #22C55E; /* stroke 4px #22C55E */
    /* Show right segment vertical curve and clip bottom to never touch card */
    clip-path: polygon(50% 0, 100% 0, 100% 70%, 50% 70%);
  }

  /* Layer 6: Hero Transition Layer (z-index: 7) */
  .hero-transition-layer {
    display: none !important; /* disabled for clean white layout */
  }

  /* Layer 7: Topographic Decoration & Dot Grid (z-index: 5) */
  .hero-decorations-layer {
    position: absolute;
    inset: 0;
    z-index: 2; /* always behind the circle photo */
    pointer-events: none;
  }
  .decor-svg {
    position: absolute;
    top: 0; /* top 0 */
    right: -60px; /* right -60px */
    width: 520px; /* width 520px */
    height: auto;
    opacity: 0.18; /* opacity 18% */
    pointer-events: none;
    stroke: #22C55E !important; /* color stroke */
    stroke-width: 1.5px !important; /* stroke 1.5px */
  }
  .decor-dot-grid {
    display: none !important; /* disabled for clean white layout */
  }

  /* Layer 8: Glow Layer (z-index: 6) */
  .hero-glow-layer {
    display: none !important; /* disabled for clean white layout */
  }

  /* Layer 9: Content Layer (z-index: 10) */
  .hero-content-layer {
    position: relative;
    z-index: 10;
    width: 100%;
    height: 100%;
    max-width: 1280px; /* container max-width 1280px */
    margin: 0 auto;
    padding: 39px 120px 60px 120px; /* padding-top 39px (shifted 35px up) */
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* aligned left, not centered vertically */
    box-sizing: border-box;
    pointer-events: none;
  }

  /* Left Column: Typography & Actions */
  .hero-copy {
    pointer-events: auto;
    max-width: 620px; /* max-width 620px constraint */
    display: flex;
    flex-direction: column;
    gap: 0; /* gap reset for custom margins */
    transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
    will-change: transform, opacity;
  }

  .hero-copy .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px; /* espacio vertical de 40px */
  }
  .hero-copy .eyebrow::before {
    content: '';
    display: inline-block;
    width: 28px;
    height: 1.8px;
    background-color: var(--green);
    border-radius: 2px;
  }
  .hero-copy .eyebrow span {
    font-family: 'Manrope', sans-serif;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--green-deep);
    text-transform: uppercase;
  }
  .hero-copy h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(38px, 4.2vw, 58px);
    font-weight: 400;
    line-height: 0.98;
    letter-spacing: -2px;
    color: var(--navy);
    margin-bottom: 36px; /* espacio vertical de 36px */
  }
  .hero-copy h1 .accent {
    color: var(--green-accent);
    font-family: 'DM Serif Display', serif;
  }
  .title-separator {
    display: none; /* oculta para la precisión de espacio vertical Figma */
  }
  .hero-copy p.lead {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 15.5px;
    color: var(--ink);
    line-height: 1.7;
    max-width: 560px; /* descripción limitada a 560px */
    margin-bottom: 40px; /* espacio vertical de 40px */
  }

  /* Buttons styling */
  .hero-actions {
    display: flex;
    gap: 20px; /* separación horizontal de 20px */
    margin-bottom: 48px; /* espacio vertical de 48px */
  }
  .hero-btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px; /* altura de 60px */
    padding: 0 28px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1FAF62 0%, #17874D 100%);
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22); /* botón verde shadow */
    transition: transform 0.35s ease, box-shadow 0.35s ease, opacity 0.35s ease;
    white-space: nowrap;
    will-change: transform, box-shadow;
    box-sizing: border-box;
  }
  .hero-btn-green:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(34, 197, 94, 0.22);
  }
  .hero-btn-green:active {
    transform: translateY(-1px) scale(0.98);
  }
  .hero-btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 60px; /* altura de 60px */
    padding: 0 28px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.6);
    color: var(--navy);
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 15px;
    border: 1.5px solid rgba(11, 33, 73, 0.15); /* translucent border */
    cursor: pointer;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(11, 33, 73, 0.03);
    transition: transform 0.35s ease, background-color 0.35s ease, color 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
    white-space: nowrap;
    will-change: transform, box-shadow;
    box-sizing: border-box;
  }
  .hero-btn-outline:hover {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(11, 33, 73, 0.15);
  }
  .hero-btn-outline:active {
    transform: translateY(-1px) scale(0.98);
  }
  .hero-btn-green .arrow-icon,
  .hero-btn-outline .arrow-icon {
    transition: transform .35s ease;
  }
  .hero-btn-green:hover .arrow-icon,
  .hero-btn-outline:hover .arrow-icon {
    transform: translateX(4px);
  }

  /* 3-Benefits Card Row: Suspended card with backdrop blur and border separation */
  .hero-features {
    display: flex;
    background: rgba(255, 255, 255, 0.90);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09); /* card premium shadow */
    border: 1px solid rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    margin-top: -28px; /* subir la tarjeta 28px */
    margin-bottom: 48px; /* espacio vertical de 48px a las coordenadas */
    gap: 0; /* items separated by lines, no gap */
    max-width: 600px;
    position: relative;
    box-sizing: border-box;
    transition: transform .35s ease, box-shadow .35s ease, opacity .35s ease;
    will-change: transform;
  }
  .hero-features:hover {
    transform: translateY(-3px);
    box-shadow: 0 30px 70px rgba(20, 30, 60, 0.15);
  }
  .feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    flex: 1;
    position: relative;
    padding: 0 15px;
  }
  .feature-item:first-child {
    padding-left: 0;
  }
  .feature-item:last-child {
    padding-right: 0;
  }
  .feature-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background-color: rgba(0, 0, 0, 0.08); /* lines of rgba(0,0,0,.08) */
  }
  .feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--green-deep);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .feature-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
  }
  .feature-content h3 {
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.35;
    margin-bottom: 2px;
  }
  .feature-content p {
    font-family: 'Manrope', sans-serif;
    font-size: 11.5px;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.35;
    margin: 0;
  }

  /* Coordinates footer of Hero */
  .hero-coords-wrap {
    border-top: 1px solid rgba(16, 24, 40, 0.08);
    padding-top: 20px;
    margin-top: 0;
    max-width: 600px;
    width: 100%;
    transition: transform .35s ease, opacity .35s ease;
  }
  .hero-coords {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    letter-spacing: 0.03em;
    font-weight: 600;
    color: var(--ink-soft);
  }
  .coords-pin {
    color: var(--ink-soft);
    flex-shrink: 0;
  }
  .coords-numbers {
    color: var(--ink-soft);
    font-weight: 600;
  }
  .coords-divider {
    color: rgba(16, 24, 40, 0.2);
    font-weight: 300;
  }
  .coords-text {
    font-weight: 600;
    color: var(--ink-soft);
  }

  @keyframes floatGlow {
    0%, 100% {
      transform: translate(0, 0) scale(1);
    }
    50% {
      transform: translate(-30px, 20px) scale(1.05);
    }
  }

  /* ===== ON-LOAD INTERACTIVE ANIMATIONS ===== */
  .hero-copy h1 {
    opacity: 0;
    transform: translateY(24px);
    animation: premiumFadeUp 800ms cubic-bezier(.2,.8,.2,1) forwards;
  }
  .title-separator {
    opacity: 0;
    animation: premiumFadeIn 1000ms cubic-bezier(.2,.8,.2,1) 100ms forwards;
  }
  .hero-copy p.lead {
    opacity: 0;
    transform: translateY(24px);
    animation: premiumFadeUp 800ms cubic-bezier(.2,.8,.2,1) 150ms forwards;
  }
  .hero-actions {
    opacity: 0;
    transform: translateY(24px);
    animation: premiumFadeUp 800ms cubic-bezier(.2,.8,.2,1) 300ms forwards;
  }
  .hero-features {
    opacity: 0;
    transform: translateY(24px);
    animation: premiumFadeUp 800ms cubic-bezier(.2,.8,.2,1) 450ms forwards;
  }
  .hero-coords-wrap {
    opacity: 0;
    animation: premiumFadeIn 1000ms cubic-bezier(.2,.8,.2,1) 600ms forwards;
  }

  @keyframes premiumFadeUp {
    from {
      opacity: 0;
      transform: translateY(24px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes premiumFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  /* ===== TRUST BAR ===== */
  .trustbar {
    background: var(--navy);
    padding: 24px 0;
    position: relative;
    border-top-left-radius: 32px; /* rounded top corners matching the screenshot */
    border-top-right-radius: 32px;
    margin-top: 24px; /* independent block below the hero */
    z-index: 20;
    box-shadow: 0 30px 80px rgba(20, 30, 60, 0.08), 0 4px 12px rgba(20, 30, 60, 0.02); /* elegant double shadow */
  }
  .trustbar::before {
    content: "";
    position: absolute; inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 46px 46px;
    opacity: 0.5;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
  }
  .trust-grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }
  .trust-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
  }
  .trust-item .ico {
    width: 44px; height: 44px;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .trust-item .ico svg { width: 22px; height: 22px; stroke: #8fe3b0; }
  .trust-item strong { display: block; font-size: 14.5px; font-weight: 700; }
  .trust-item span { font-size: 12px; color: rgba(255, 255, 255, 0.62); }

  /* ===== SECTION GENERIC ===== */
  section{ padding:118px 0; position:relative; }
  .section-head{
    max-width:640px;
    margin-bottom:64px;
  }
  .section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
  .section-head h2{ font-size:clamp(30px,3.4vw,44px); }
  .section-head p{ color:var(--ink-soft); font-size:16.5px; margin-top:16px; }

  /* ===== SERVICES ===== */
  .services{ background:var(--paper); }
  
  .tabs{
    display: flex;
    flex-wrap: wrap;
    align-self: flex-start;
    background: #FFFFFF;
    padding: 6px;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 32px;
    gap: 4px;
    border: 1px solid rgba(11, 33, 73, 0.05);
  }
  .tab-btn{
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 14px;
    color: var(--ink-soft);
    cursor: pointer;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    transition: all .25s ease;
  }
  .tab-btn.active{
    background-color: var(--green-deep);
    color: #ffffff;
  }
  .tab-icon {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
  }
  
  .tab-panel{ display:none; }
  .tab-panel.active{ display:block; animation:fadein .5s ease; }
  @keyframes fadein{ from{opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }

  .service-layout{
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 40px;
    align-items: stretch;
  }
  .service-visual{
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.6);
  }
  .service-visual .visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .visual-gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13, 33, 73, 0.45) 0%, rgba(255, 255, 255, 0) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .visual-dots-overlay {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 220px;
    height: 220px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 14px 14px;
    mask-image: radial-gradient(circle at bottom left, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
    -webkit-mask-image: radial-gradient(circle at bottom left, rgba(0,0,0,1) 20%, rgba(0,0,0,0) 80%);
    pointer-events: none;
    z-index: 1;
  }
  .visual-survey-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
  }
  .visual-floating-card {
    position: absolute;
    left: 20px;
    bottom: 20px;
    z-index: 10;
    background: rgba(13, 33, 73, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 18px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: calc(100% - 40px);
  }
  .floating-card-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--green);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .floating-card-icon svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
  }
  .floating-card-content strong {
    display: block;
    color: var(--white);
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .floating-card-content p {
    color: rgba(255, 255, 255, 0.8);
    font-family: 'Manrope', sans-serif;
    font-size: 11px;
    margin: 0;
    line-height: 1.35;
  }

  .service-list{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .service-card{
    position: relative;
    background: #FFFFFF;
    border: 1px solid rgba(16, 24, 40, 0.05);
    border-radius: 20px;
    padding: 20px 24px;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.02);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: transform 300ms cubic-bezier(.2,.8,.2,1), box-shadow 300ms cubic-bezier(.2,.8,.2,1), border-color 300ms cubic-bezier(.2,.8,.2,1);
    cursor: pointer;
  }
  .service-card:hover{
    transform: translateY(-3px);
    border-color: rgba(31, 175, 98, 0.15);
    box-shadow: 0 15px 35px rgba(16, 24, 40, 0.05), 0 5px 15px rgba(31, 175, 98, 0.02);
  }
  .service-card .ico{
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background-color: rgba(31, 175, 98, 0.07);
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    transition: background-color 300ms ease, color 300ms ease;
  }
  .service-card:hover .ico {
    background-color: var(--green);
    color: var(--white);
  }
  .service-card .ico svg{
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
  }
  .service-card .card-main {
    width: 100%;
  }
  .service-card h4{
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
    line-height: 1.35;
    padding-right: 20px;
  }
  .service-card p{
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--ink-soft);
    line-height: 1.45;
    margin: 0;
  }
  .service-card .card-arrow {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--green);
    opacity: 0.6;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 300ms cubic-bezier(.2,.8,.2,1), opacity 300ms cubic-bezier(.2,.8,.2,1);
  }
  .service-card:hover .card-arrow {
    transform: translate(4px, -50%);
    opacity: 1;
  }
  .service-card .card-arrow svg {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    fill: none;
  }

  /* ===== SERVICES DESKTOP VIEWPORT LIMIT ===== */
  @media (min-width: 1025px) {
    .services {
      height: calc(100vh - 84px);
      min-height: 650px;
      padding: 40px 0;
      display: flex;
      flex-direction: column;
      justify-content: center;
      box-sizing: border-box;
    }
    .services .container {
      display: flex;
      flex-direction: column;
      justify-content: center;
      height: 100%;
    }
    .services .section-head {
      margin-bottom: 20px;
    }
    .services .tabs {
      margin-bottom: 24px;
    }
    .service-layout {
      height: 480px;
      gap: 40px;
      align-items: stretch;
    }
    .service-visual {
      height: 100%;
      position: relative;
      top: auto;
      aspect-ratio: auto;
    }
    .service-list {
      height: 100%;
      max-height: 100%;
      gap: 14px;
    }
    .service-card {
      height: 100%;
      justify-content: center;
    }
  }

  /* ===== WHY US ===== */
  .why-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1px;
    background:var(--line);
    border:1px solid var(--line);
    border-radius:20px;
    overflow:hidden;
  }
  .why-card{
    background:#fff;
    padding:40px 34px;
    transition:background .25s ease;
  }
  .why-card:hover{ background:var(--green-soft); }
  .why-card .ico{
    width:52px; height:52px;
    border-radius:14px;
    background:var(--navy-soft);
    display:flex; align-items:center; justify-content:center;
    margin-bottom:22px;
  }
  .why-card .ico svg{ width:26px; height:26px; stroke:var(--navy); }
  .why-card h4{ font-size:18px; margin-bottom:10px; }
  .why-card p{ color:var(--ink-soft); font-size:14.5px; }

  /* ===== PROCESS ===== */
  .process {
    background-color: #071527;
    color: #ffffff;
    overflow: hidden;
    position: relative;
    padding: 100px 0;
  }
  .process-bg-decorations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
  }
  .process-decor-topo {
    position: absolute;
    right: -100px;
    top: -50px;
    width: 600px;
    height: 600px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50,150 Q150,80 250,150 T450,150 M30,220 Q150,130 270,220 T470,220 M10,290 Q150,180 290,290 T490,290 M0,360 Q150,230 310,360 T500,360' fill='none' stroke='rgba(31, 175, 98, 0.08)' stroke-width='2.2' stroke-dasharray='10,8'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    opacity: 0.85;
  }
  .process-decor-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: 0.7;
  }

  .process .section-head h2, .process .section-head p {
    color: #ffffff;
  }
  .process .section-head p {
    color: rgba(255, 255, 255, 0.65);
  }
  .process .eyebrow {
    color: var(--green);
  }

  .process-track-wrapper {
    position: relative;
    margin-top: 60px;
    padding-top: 20px;
    z-index: 1;
  }

  .timeline-line {
    position: absolute;
    top: 26px;
    left: 8%;
    right: 8%;
    height: 1px;
    background-image: linear-gradient(to right, transparent, rgba(31, 175, 98, 0.4) 10%, rgba(31, 175, 98, 0.4) 90%, transparent);
    background-size: auto;
    z-index: 0;
  }
  .timeline-line::before {
    content: "";
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, rgba(31, 175, 98, 0.6) 0 6px, transparent 6px 12px);
  }
  .timeline-start-dot, .timeline-end-dot {
    position: absolute;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green);
    top: 50%;
    transform: translateY(-50%);
    box-shadow: 0 0 8px var(--green);
  }
  .timeline-start-dot {
    left: 0;
  }
  .timeline-end-dot {
    right: 0;
  }

  .process-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    position: relative;
    z-index: 2;
  }

  .process-column {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .timeline-node-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 24px;
    position: relative;
  }

  .step-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: #071527;
    border: 1px solid rgba(31, 175, 98, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'JetBrains Mono', monospace;
    font-size: 15px;
    font-weight: 700;
    color: var(--green);
    z-index: 3;
    box-shadow: 0 0 20px rgba(7, 21, 39, 0.9);
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  }

  .step-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--green);
    margin-top: 14px;
    box-shadow: 0 0 10px var(--green);
    position: relative;
    transition: transform 0.3s ease;
  }

  .process-card {
    background: rgba(11, 30, 54, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(31, 175, 98, 0.12);
    border-radius: 20px;
    padding: 24px 20px;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: all 0.3s cubic-bezier(.2,.8,.2,1);
  }

  .process-card:hover {
    background: rgba(11, 30, 54, 0.7);
    border-color: rgba(31, 175, 98, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), 0 0 15px rgba(31, 175, 98, 0.05);
  }

  .process-column:hover .step-num {
    border-color: var(--green);
    color: #ffffff;
    background-color: var(--green-deep);
    box-shadow: 0 0 25px rgba(31, 175, 98, 0.35);
    transform: scale(1.08);
  }

  .process-column:hover .step-dot {
    transform: scale(1.4);
    background-color: #ffffff;
    box-shadow: 0 0 12px #ffffff;
  }

  .card-icon-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background-color: rgba(31, 175, 98, 0.06);
    border: 1px solid rgba(31, 175, 98, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green);
    transition: all 0.3s ease;
  }

  .process-card:hover .card-icon-badge {
    background-color: var(--green-deep);
    border-color: var(--green);
    color: #ffffff;
    box-shadow: 0 0 15px rgba(31, 175, 98, 0.2);
  }

  .card-icon-badge svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    fill: none;
  }

  .process-card h4 {
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.35;
    margin-bottom: 0;
  }

  .process-card-line {
    width: 20px;
    height: 2px;
    background-color: var(--green);
    margin: 12px 0 14px 0;
    border-radius: 1px;
    transition: width 0.3s ease;
  }

  .process-card:hover .process-card-line {
    width: 32px;
  }

  .process-card p {
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.45;
    margin: 0;
  }

  /* ===== CTA BANNER ===== */
  .cta-banner {
    background: linear-gradient(135deg, #053b1e 0%, #0d5e34 50%, #1da35b 100%);
    border-radius: 28px;
    padding: 48px 50px 38px 50px; /* reduced height */
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
    max-width: 1240px;
    box-sizing: border-box;
    box-shadow: 0 40px 100px rgba(11, 35, 64, 0.12); /* soft premium shadow */
  }
  /* Lighter green concentric circular shapes & glow outlines from mockup */
  .cta-circle-shape-1 {
    position: absolute;
    right: -100px;
    top: -100px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1.5px solid rgba(32, 191, 105, 0.22);
    pointer-events: none;
    z-index: 1;
  }
  .cta-circle-shape-2 {
    position: absolute;
    right: -180px;
    top: -180px;
    width: 640px;
    height: 640px;
    border-radius: 50%;
    border: 1px solid rgba(32, 191, 105, 0.14);
    pointer-events: none;
    z-index: 1;
  }
  .cta-circle-shape-3 {
    position: absolute;
    right: -50px;
    top: -50px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(32, 191, 105, 0.22) 0%, rgba(32, 191, 105, 0) 70%);
    pointer-events: none;
    z-index: 1;
  }
  /* Custom dot grid block next to divider line */
  .cta-dots-pattern {
    position: absolute;
    right: 37%;
    top: 15%;
    width: 72px;
    height: 140px;
    background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1.2px, transparent 1.2px);
    background-size: 10px 10px;
    pointer-events: none;
    z-index: 1;
  }
  .cta-bg-lines {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.06) 1.5px, transparent 1.5px);
    background-size: 24px 24px;
    opacity: 0.35;
    mask-image: radial-gradient(circle at right, black, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at right, black, transparent 80%);
    pointer-events: none;
    z-index: 0;
  }
  .cta-topo-svg {
    position: absolute;
    left: -50px;
    top: -50px;
    width: 500px;
    height: 500px;
    opacity: 0.15; /* subtle topo curves */
    pointer-events: none;
    z-index: 0;
  }
  .cta-left-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    z-index: 2; /* above background circles */
    flex: 1;
  }
  .cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 999px;
    margin-bottom: 18px; /* reduced */
    color: #FFFFFF; /* badge text is white */
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .cta-badge svg {
    fill: #20C76A; /* lightning icon is bright green */
  }
  .cta-banner h3 {
    color: #FFFFFF;
    font-family: 'DM Serif Display', serif;
    font-size: clamp(28px, 3.2vw, 42px);
    line-height: 1.15;
    margin: 0;
  }
  .cta-banner h3 .accent-green {
    color: #20C76A;
    font-family: 'DM Serif Display', serif;
  }
  .cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    margin-top: 10px; /* reduced */
    margin-bottom: 24px; /* reduced */
    font-family: 'Manrope', sans-serif;
    font-size: 15.5px;
    line-height: 1.6;
    max-width: 620px;
  }
  .cta-banner p .accent-green {
    color: #20C76A;
    font-weight: 600;
  }
  .cta-features-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: auto;
    width: 100%;
  }
  .cta-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
  }
  .feature-icon-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #20C76A;
    flex-shrink: 0;
  }
  .feature-icon-circle svg {
    stroke-width: 2;
  }
  .cta-feature-item strong {
    display: block;
    color: #FFFFFF;
    font-family: 'Manrope', sans-serif;
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .cta-feature-item span {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    font-family: 'Manrope', sans-serif;
    font-size: 11.5px;
  }
  .cta-feature-separator {
    width: 1px;
    height: 28px;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
  }
  .cta-vertical-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin: 0 40px;
    align-self: stretch;
    flex-shrink: 0;
  }
  .cta-right-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 2; /* above background circles */
    flex-shrink: 0;
  }
  .cta-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #FFFFFF;
    color: #0C5E35;
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 16px;
    padding: 18px 36px;
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2), 0 10px 24px rgba(32, 191, 105, 0.25); /* mockup matching drop shadow */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .cta-whatsapp-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.25), 0 14px 30px rgba(32, 191, 105, 0.35);
  }
  .cta-whatsapp-btn:active {
    transform: translateY(-1px);
  }
  .cta-whatsapp-btn .wa-icon {
    fill: #0C5E35;
  }
  .cta-whatsapp-btn .arrow-icon {
    stroke: #0C5E35;
    transition: transform 0.3s ease;
  }
  .cta-whatsapp-btn:hover .arrow-icon {
    transform: translateX(4px);
  }
  .cta-note-row {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Manrope', sans-serif;
    font-size: 13px;
  }
  .cta-note-row svg {
    color: #20C76A;
  }

  /* ===== FOOTER ===== */
  footer{
    background:var(--navy-deep);
    color:rgba(255,255,255,0.7);
    padding:80px 0 0;
  }
  .footer-grid{
    display:grid;
    grid-template-columns:1.4fr 1fr 1fr 1.2fr;
    gap:40px;
    padding-bottom:56px;
    border-bottom:1px solid rgba(255,255,255,0.1);
  }
  .footer-logo{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
  .footer-logo .logo-text{ color:#fff; }
  .footer-logo .logo-text span{ color:#8fe3b0; }
  footer p.desc{ font-size:14px; max-width:280px; line-height:1.7; }
  .footer-col h5{
    color:#fff; font-size:13px; text-transform:uppercase; letter-spacing:0.08em;
    margin-bottom:20px; font-weight:700;
  }
  .footer-col ul li{ margin-bottom:12px; font-size:14px; }
  .footer-col ul li a:hover{ color:#8fe3b0; }
  .footer-contact li{ display:flex; align-items:center; gap:10px; }
  .footer-contact svg{ width:16px; height:16px; stroke:#8fe3b0; flex-shrink:0; }
  .social-row{ display:flex; gap:10px; margin-top:22px; }
  .social-row a{
    width:38px; height:38px;
    border-radius:10px;
    background:rgba(255,255,255,0.08);
    display:flex; align-items:center; justify-content:center;
    transition:background .25s ease;
  }
  .social-row a:hover{ background:#8fe3b0; }
  .social-row svg{ width:17px; height:17px; stroke:#fff; }
  .social-row a:hover svg{ stroke:var(--navy-deep); }
  .footer-bottom{
    display:flex; justify-content:space-between; align-items:center;
    padding:26px 0;
    font-size:12.5px;
    color:rgba(255,255,255,0.45);
  }

  /* ===== FLOATING WHATSAPP ===== */
  .wa-float{
    position:fixed;
    right:26px; bottom:26px;
    z-index:600;
    width:62px; height:62px;
    border-radius:50%;
    background:#25D366;
    display:flex; align-items:center; justify-content:center;
    box-shadow:0 14px 34px -8px rgba(37,211,102,0.65);
    animation:pulse 2.6s infinite;
  }
  .wa-float svg{ width:30px; height:30px; fill:#fff; }
  @keyframes pulse{
    0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.55), 0 14px 34px -8px rgba(37,211,102,0.65);}
    70%{ box-shadow:0 0 0 16px rgba(37,211,102,0), 0 14px 34px -8px rgba(37,211,102,0.65);}
    100%{ box-shadow:0 0 0 0 rgba(37,211,102,0), 0 14px 34px -8px rgba(37,211,102,0.65);}
  }

  /* ===== reveal on scroll ===== */
  .reveal{ opacity:0; transform:translateY(24px); transition:opacity .7s ease, transform .7s ease; }
  .reveal.show{ opacity:1; transform:translateY(0); }

  @media (prefers-reduced-motion: reduce){
    .reveal{ opacity:1; transform:none; transition:none; }
    .wa-float{ animation:none; }
  }

  /* ===== RESPONSIVE ===== */
  @media (max-width:1024px){
    .hero {
      padding-top: 120px;
      padding-bottom: 80px;
      min-height: 100vh;
    }
    .hero-content-layer {
      min-height: auto;
    }
    .hero-container-flex {
      padding: 0 40px;
    }
    .hero-photo {
      top: 0;
      right: 0;
      left: auto;
      transform: none !important;
      width: 500px;
      height: 100%;
      border-top-left-radius: 60%;
      border-bottom-left-radius: 60%;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
    .hero-circle-border {
      left: calc(76% - 370px);
      top: calc(50% - 40px);
      width: 200px;
      height: 200px;
      max-width: 100%;
      height: auto;
      aspect-ratio: 1 / 1;
    }
    .hero-features {
      padding: 16px 20px;
      gap: 12px;
    }
    .service-layout{ grid-template-columns:1fr; }
    .service-visual{ position:relative; top:0; aspect-ratio:16/9; }
    .why-grid{ grid-template-columns:repeat(2,1fr); }
    .trust-grid{ grid-template-columns:repeat(2,1fr); }
    .footer-grid{ grid-template-columns:1fr 1fr; }
    .timeline-line { display: none; }
    .process-track { grid-template-columns: 1fr; gap: 30px; }
    .process-column { display: flex; flex-direction: row; align-items: flex-start; gap: 16px; width: 100%; }
    .timeline-node-wrap { margin-bottom: 0; flex-shrink: 0; }
    .step-dot { display: none; }
  }
  @media (max-width:768px){
    nav, .nav-phone{ display:none; }
    .menu-toggle{ display:flex; order:-1; margin-right:4px; }
    .nav-cta{ gap:10px; }
    .container{ padding:0 20px; }
    section{ padding:80px 0; }
    
    .hero {
      padding-top: 100px;
      padding-bottom: 60px;
      height: auto;
      min-height: auto;
    }
    .hero-content-layer {
      padding: 100px 20px 40px 20px !important;
    }
    .hero-copy {
      max-width: 100% !important;
      margin: 0 !important;
      gap: 24px;
    }
    /* Disable mask on mobile and position photo at background */
    .hero-photo {
      clip-path: none !important;
      z-index: 0 !important;
      opacity: 0.35 !important;
    }
    .hero-overlay-layer {
      background: rgba(255, 255, 255, 0.88) !important;
    }
    .hero-atmosphere-layer {
      display: none !important;
    }
    .hero-circle-border {
      display: none !important;
    }
    .hero-transition-layer {
      display: none !important;
    }
    .hero-decorations-layer {
      display: none !important;
    }
    .hero-glow-layer {
      display: none !important;
    }
    /* Mobile: title max 48px */
    .hero-copy h1 {
      font-size: 42px;
      letter-spacing: -1px;
      margin-bottom: 18px;
    }
    .hero-copy p.lead {
      font-size: 16px;
      margin-bottom: 28px;
    }
    /* Mobile: buttons full width */
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
      gap: 12px;
      margin-bottom: 30px;
    }
    .hero-btn-green,
    .hero-btn-outline {
      width: 100%;
      justify-content: center;
      padding: 14px 24px;
    }
    /* Mobile: cards in column */
    .hero-features {
      flex-direction: column;
      gap: 16px;
      padding: 20px;
      border-radius: 20px;
    }
    .feature-item {
      padding: 0 !important;
    }
    .feature-item::after {
      display: none !important;
    }
    .hero-coords {
      flex-direction: column;
      align-items: flex-start;
      gap: 10px;
      padding-top: 20px;
    }
    .coords-divider {
      display: none;
    }
    /* Mobile: image below */
    .hero-right {
      order: 2;
      position: relative;
      top: auto;
      bottom: auto;
      right: auto;
      width: 100%;
      height: auto;
    }
    .hero-card-container {
      aspect-ratio: 4 / 4.4;
      border-radius: 24px;
    }
    .hero-gnss-card {
      left: 16px;
      bottom: 16px;
      min-width: calc(100% - 32px);
      padding: 12px 16px;
    }

    .service-list{ grid-template-columns:1fr; }
    .why-grid{ grid-template-columns:1fr; }
    .cta-banner {
      flex-direction: column;
      align-items: flex-start;
      padding: 44px 30px;
    }
    .cta-vertical-divider {
      display: none !important;
    }
    .cta-features-row {
      flex-direction: column;
      align-items: flex-start;
      gap: 20px;
      margin-top: 36px;
    }
    .cta-feature-separator {
      display: none !important;
    }
    .cta-right-content {
      width: 100%;
      align-items: center;
      margin-top: 40px;
    }
    .footer-grid{ grid-template-columns:1fr; }
    .footer-bottom{ flex-direction:column; gap:10px; text-align:center; }
  }

  /* ===== GALERÍA HORIZONTAL AUTO-SCROLL ===== */
  .gallery-section {
    padding: 80px 0;
    background-color: var(--white);
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(16, 24, 40, 0.04);
  }

  .gallery-marquee-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    /* Premium fade-out effect on the sides */
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
  }

  .gallery-marquee-track {
    display: flex;
    width: max-content;
    animation: scrollMarquee 45s linear infinite;
  }

  /* Pause auto-scroll on hover for desktop */
  @media (hover: hover) {
    .gallery-marquee-container:hover .gallery-marquee-track {
      animation-play-state: paused;
    }
  }

  .gallery-marquee-group {
    display: flex;
    gap: 24px;
    padding: 10px 12px;
  }

  .gallery-item {
    width: 320px;
    height: 220px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(16, 24, 40, 0.05);
    border: 1.5px solid rgba(16, 24, 40, 0.06);
    flex-shrink: 0;
    transition: transform 400ms cubic-bezier(.2,.8,.2,1), box-shadow 400ms cubic-bezier(.2,.8,.2,1), border-color 400ms cubic-bezier(.2,.8,.2,1);
    background-color: var(--navy-soft);
    cursor: pointer;
  }

  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 600ms cubic-bezier(.2,.8,.2,1);
  }

  .gallery-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 40px rgba(16, 24, 40, 0.12);
    border-color: rgba(31, 175, 98, 0.3);
  }

  .gallery-item:hover img {
    transform: scale(1.05);
  }

  @keyframes scrollMarquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-50%);
    }
  }

  /* Responsive styles for mobile gallery */
  @media (max-width: 768px) {
    .gallery-section {
      padding: 60px 0;
    }
    .gallery-item {
      width: 260px;
      height: 180px;
      border-radius: 16px;
    }
    .gallery-marquee-group {
      gap: 16px;
    }
    .gallery-marquee-container {
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }
  }