:root{
      /* Brand palette (tuned to your current site/logo look). You can swap these to exact brand colors. */
      --ink:#081226;
      --muted:#5f6b7a;
      --bg:#ffffff;
      --card:#ffffff;
      --line:#e7edf6;

      --brand-900:#0b1f4a;   /* deep navy */
      --brand-700:#153a7a;   /* primary */
      --brand-500:#2f67c7;   /* accent */
      --brand-100:#e9f1ff;   /* light */

      --radius:22px;
      --shadow: 0 18px 55px rgba(11,31,74,.14);
      --shadow-soft: 0 12px 35px rgba(11,31,74,.10);
    }

    *{ box-sizing:border-box; }
    html{ scroll-behavior:smooth; }
    body{
      margin:0;
      font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color:var(--ink);
      background:var(--bg);
    }

    a{ color:inherit; text-decoration:none; }
    img{ max-width:100%; display:block; }

    .container{ width:min(1120px, calc(100% - 40px)); margin:0 auto; }

    /* Header */
    .header{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:saturate(180%) blur(12px);
      background:rgba(255,255,255,.75);
      border-bottom:1px solid rgba(231,237,246,.85);
    }
    .header-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:14px;
      padding:14px 0;
    }
    .brand{
      display:flex;
      align-items:center;
      gap:10px;
      min-width:210px;
    }
    .brand-mark{
      width:46px;
      height:46px;
      border-radius:14px;
      overflow:hidden;
      border:1px solid rgba(231,237,246,.9);
      background:#fff;
      box-shadow:0 10px 30px rgba(11,31,74,.10);
      display:grid;
      place-items:center;
    }
    .brand-mark img{ width:100%; height:100%; object-fit:cover; }
    .brand-name{
      line-height:1.05;
      font-weight:800;
      letter-spacing:-.02em;
      color:var(--brand-900);
      font-size:14px;
      text-transform:uppercase;
    }
    .brand-sub{ font-size:12px; color:var(--muted); font-weight:500; }

    .nav{
      display:flex;
      align-items:center;
      gap:18px;
      font-weight:600;
      color:rgba(11,31,74,.82);
    }
    .nav a{ padding:10px 10px; border-radius:12px; transition:background .12s ease; }
    .nav a:hover{ background:rgba(233,241,255,.85); }
    .nav a.active{ background:rgba(233,241,255,.95); color:var(--brand-700); font-weight:700; }

    .header-cta{
      display:flex;
      align-items:center;
      gap:10px;
    }

    .btn{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      border-radius:14px;
      padding:12px 14px;
      border:1px solid transparent;
      font-weight:700;
      letter-spacing:-.01em;
      cursor:pointer;
      transition:transform .12s ease, box-shadow .12s ease, background .12s ease, border-color .12s ease;
      user-select:none;
      white-space:nowrap;
    }
    .btn:active{ transform:translateY(1px); }
    .btn:focus-visible{ outline:2px solid var(--brand-500); outline-offset:2px; }

    .btn-primary{
      background:linear-gradient(135deg, var(--brand-700), var(--brand-500));
      color:#fff;
      box-shadow: 0 18px 45px rgba(47,103,199,.18);
    }
    .btn-primary:hover{ 
      box-shadow: 0 22px 58px rgba(47,103,199,.26);
      transform:translateY(-1px);
    }
    .btn-primary:active{ transform:translateY(0); }
    .btn-primary:focus-visible{ outline-color:var(--brand-700); }

    .btn-ghost{
      background:rgba(255,255,255,.75);
      border-color:rgba(231,237,246,.95);
      color:var(--brand-900);
    }
    .btn-ghost:hover{ 
      background:rgba(233,241,255,.85); 
      border-color:rgba(47,103,199,.2);
      transform:translateY(-1px);
      box-shadow: 0 8px 20px rgba(11,31,74,.08);
    }
    .btn-ghost:active{ transform:translateY(0); }
    .btn-ghost:focus-visible{ outline-color:var(--brand-500); }

    .burger{
      display:none;
      width:44px;
      height:44px;
      border-radius:14px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.75);
      align-items:center;
      justify-content:center;
      gap:4px;
      flex-direction:column;
      cursor:pointer;
    }
    .burger span{ width:18px; height:2px; border-radius:10px; background:rgba(11,31,74,.75); }
    .burger:focus-visible{ outline:2px solid var(--brand-500); outline-offset:2px; }

    /* Hero */
    .hero{
      position:relative;
      padding:56px 0 26px;
      overflow:hidden;
    }
    .hero::before{
      content:"";
      position:absolute;
      inset:-10% -20% auto -20%;
      height:520px;
      background:
        radial-gradient(60% 60% at 20% 30%, rgba(47,103,199,.22) 0%, rgba(47,103,199,0) 65%),
        radial-gradient(50% 50% at 85% 15%, rgba(11,31,74,.16) 0%, rgba(11,31,74,0) 70%),
        linear-gradient(180deg, rgba(233,241,255,.75), rgba(255,255,255,0));
      pointer-events:none;
    }

    .hero-grid{
      position:relative;
      display:grid;
      grid-template-columns: 1.15fr .85fr;
      gap:34px;
      align-items:center;
    }
    .eyebrow{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:8px 12px;
      border-radius:999px;
      background:rgba(233,241,255,.75);
      border:1px solid rgba(231,237,246,.95);
      color:rgba(11,31,74,.85);
      font-weight:700;
      font-size:12px;
    }
    .dot{ width:8px; height:8px; border-radius:99px; background:var(--brand-500); box-shadow:0 0 0 4px rgba(47,103,199,.14); }

    h1{
      margin:14px 0 12px;
      font-size: clamp(34px, 3.5vw, 52px);
      line-height:1.02;
      letter-spacing:-.04em;
      color:var(--brand-900);
    }
    .lead{
      margin:0 0 20px;
      font-size:16px;
      line-height:1.7;
      color:rgba(8,18,38,.82);
      max-width:58ch;
    }

    .pill-row{ display:flex; flex-wrap:wrap; gap:10px; margin:18px 0 26px; }
    .pill{
      display:inline-flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:999px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.7);
      box-shadow:0 10px 26px rgba(11,31,74,.06);
      font-weight:700;
      color:rgba(11,31,74,.86);
      font-size:13px;
    }
    .pill svg{ width:16px; height:16px; color:var(--brand-500); }

    .hero-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:20px; }
    .hero-actions .btn-primary{
      padding:16px 32px;
      font-size:16px;
      min-width:200px;
    }

    .trust-strip{
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap:12px;
      margin-top:20px;
      padding-top:20px;
      border-top:1px solid rgba(231,237,246,.75);
    }
    .trust-item{
      display:flex;
      align-items:center;
      gap:10px;
      padding:10px 12px;
      border-radius:14px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.7);
      box-shadow:0 8px 20px rgba(11,31,74,.06);
    }
    .trust-item .icon{
      width:32px;
      height:32px;
      border-radius:10px;
      display:grid;
      place-items:center;
      background:rgba(233,241,255,.75);
      color:var(--brand-500);
      flex:0 0 auto;
    }
    .trust-item span{
      font-size:13px;
      font-weight:600;
      color:rgba(11,31,74,.85);
      line-height:1.4;
    }

    .hero-card{
      border-radius: var(--radius);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.72));
      border:1px solid rgba(231,237,246,.95);
      box-shadow: var(--shadow);
      overflow:hidden;
      position:relative;
    }
    .hero-card::after{
      content:"";
      position:absolute;
      inset:auto -30% -60% -30%;
      height:260px;
      background:radial-gradient(55% 55% at 50% 50%, rgba(47,103,199,.18) 0%, rgba(47,103,199,0) 70%);
      pointer-events:none;
    }

    .hero-card-inner{ padding:18px; position:relative; }
    .hero-card-title{ font-weight:800; color:var(--brand-900); letter-spacing:-.02em; }
    .hero-card-sub{ color:var(--muted); font-weight:600; font-size:13px; margin-top:4px; }
    
    /* Trust strip inside hero card (under video) */
    .hero-card .trust-strip{
      margin-top:16px;
      padding-top:16px;
      border-top:1px solid rgba(231,237,246,.75);
      grid-template-columns: 1fr;
      gap:10px;
    }
    .hero-card .trust-item{
      padding:10px 12px;
      font-size:12px;
    }
    .hero-card .trust-item .icon{
      width:28px;
      height:28px;
    }
    .hero-card .trust-item span{
      font-size:12px;
    }

    .hero-mini-grid{
      margin-top:18px;
      display:grid;
      grid-template-columns:1fr;
      gap:10px;
    }

    .mini{
      border-radius:18px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(233,241,255,.45);
      padding:12px 12px;
      display:flex;
      align-items:flex-start;
      gap:10px;
    }
    .mini b{ display:block; font-size:13px; color:var(--brand-900); }
    .mini span{ display:block; margin-top:3px; font-size:12px; color:rgba(8,18,38,.72); line-height:1.4; }
    .mini .icon{
      width:38px;
      height:38px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:#fff;
      border:1px solid rgba(231,237,246,.95);
      box-shadow:0 12px 30px rgba(11,31,74,.08);
      flex:0 0 auto;
      color:var(--brand-500);
    }

    /* Sections */
    section{ padding:64px 0; }
    .section-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:18px; margin-bottom:32px; }
    .kicker{ font-weight:800; color:var(--brand-700); letter-spacing:-.02em; font-size:12px; }
    .h2{ margin:8px 0 0; font-size: clamp(26px, 2.5vw, 36px); letter-spacing:-.03em; color:var(--brand-900); font-weight:800; line-height:1.15; }
    .sub{ margin:14px 0 0; color:rgba(8,18,38,.72); line-height:1.75; max-width:75ch; font-size:16px; }

    /* About */
    .about-grid{
      display:grid;
      grid-template-columns: 1fr;
      gap:22px;
      align-items:stretch;
      margin-top:18px;
    }

    .panel{
      border-radius: var(--radius);
      border:1px solid rgba(231,237,246,.95);
      background:linear-gradient(180deg, rgba(255,255,255,.92), rgba(255,255,255,.78));
      box-shadow: var(--shadow-soft);
      padding:22px;
    }

    .about-copy p{ margin:0 0 12px; color:rgba(8,18,38,.78); line-height:1.8; }
    .about-copy p:last-child{ margin-bottom:0; }

    .ph{
      min-height:160px;
      background:
        radial-gradient(60% 60% at 20% 30%, rgba(47,103,199,.18) 0%, rgba(47,103,199,0) 70%),
        linear-gradient(135deg, rgba(11,31,74,.08), rgba(255,255,255,0));
      display:flex;
      align-items:center;
      justify-content:center;
      color:rgba(11,31,74,.65);
      font-weight:700;
      letter-spacing:-.02em;
    }

    /* Services */
    .services{
      background:linear-gradient(180deg, rgba(233,241,255,.55), rgba(255,255,255,0));
      border-top:1px solid rgba(231,237,246,.75);
      border-bottom:1px solid rgba(231,237,246,.75);
    }
    .cards{
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap:16px;
      margin-top:18px;
    }
    .card{
      border-radius: var(--radius);
      border:1.5px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.92);
      box-shadow: var(--shadow-soft);
      overflow:hidden;
      display:flex;
      flex-direction:column;
      min-height: 410px;
      transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card:hover{
      transform:translateY(-2px);
      box-shadow: 0 20px 50px rgba(11,31,74,.16);
      border-color:rgba(47,103,199,.25);
    }
    /* Process cards in "How it works" sections should be more compact */
    #how-it-works .card,
    #como-funciona .card {
      min-height: auto;
      height: auto;
    }
    #how-it-works .card-body,
    #como-funciona .card-body {
      padding: 14px 16px;
      gap: 6px;
    }
    #how-it-works .card h3,
    #como-funciona .card h3 {
      margin-bottom: 4px;
    }
    #how-it-works .card p,
    #como-funciona .card p {
      line-height: 1.5;
    }
    .card-body{ padding:18px 18px 16px; display:flex; flex-direction:column; gap:10px; flex:1; }
    .card h3{ margin:0; font-size:19px; letter-spacing:-.02em; color:var(--brand-900); font-weight:800; line-height:1.3; }
    .card p{ margin:0; font-size:13px; line-height:1.65; color:rgba(8,18,38,.72); }
    .meta{ display:flex; flex-direction:column; gap:6px; color:rgba(8,18,38,.74); font-weight:600; font-size:13px; }
    .meta span{ display:flex; align-items:center; gap:10px; }
    .meta svg{ width:16px; height:16px; color:var(--brand-500); }
    .includes{
      margin-top:8px;
      padding-top:12px;
      border-top:1px solid rgba(231,237,246,.75);
    }
    .includes-title{
      font-size:11px;
      font-weight:800;
      color:var(--brand-700);
      text-transform:uppercase;
      letter-spacing:.05em;
      margin-bottom:6px;
    }
    .includes-list{
      display:flex;
      flex-direction:column;
      gap:4px;
      font-size:12px;
      color:rgba(8,18,38,.68);
      font-weight:500;
      line-height:1.5;
    }
    .includes-list li{
      display:flex;
      align-items:flex-start;
      gap:6px;
    }
    .includes-list li::before{
      content:"•";
      color:var(--brand-500);
      font-weight:900;
      flex:0 0 auto;
      margin-top:2px;
    }
    .card-actions{ padding:0 18px 18px; }
    .card-actions .btn{ width:100%; }

    /* Testimonials */
    .test-grid{
      display:grid;
      grid-template-columns: 1.1fr .9fr;
      gap:16px;
      margin-top:18px;
    }
    .quote{
      border-radius: var(--radius);
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.88);
      box-shadow: var(--shadow-soft);
      padding:20px;
      position:relative;
      overflow:hidden;
    }
    .quote::before{
      content:"\"";
      position:absolute;
      top:6px;
      right:16px;
      font-size:64px;
      line-height:1;
      color:rgba(47,103,199,.14);
      font-weight:900;
    }
    .quote p{ margin:0; color:rgba(8,18,38,.78); line-height:1.8; font-weight:600; }
    .quote .who{ margin-top:12px; font-weight:800; color:var(--brand-900); }

    .quote-stack{ display:grid; gap:16px; }

    /* FAQ */
    .faq{
      background:linear-gradient(180deg, rgba(255,255,255,0), rgba(233,241,255,.45));
      border-top:1px solid rgba(231,237,246,.75);
    }
    .accordion{ display:grid; gap:12px; margin-top:18px; }
    details{
      border-radius: var(--radius);
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.88);
      box-shadow: var(--shadow-soft);
      padding:16px 16px;
    }
    summary{ list-style:none; cursor:pointer; display:flex; align-items:center; justify-content:space-between; gap:14px; font-weight:800; color:var(--brand-900); letter-spacing:-.02em; }
    summary::-webkit-details-marker{ display:none; }
    summary:focus-visible{ outline:2px solid var(--brand-500); outline-offset:2px; border-radius:8px; }
    .chev{ width:18px; height:18px; transition:transform .16s ease; color:var(--brand-500); }
    details[open] .chev{ transform:rotate(180deg); }
    details p{ margin:12px 0 0; color:rgba(8,18,38,.76); line-height:1.8; }

    /* Contact */
    .contact-grid{
      display:grid;
      grid-template-columns: 1fr 1.3fr;
      gap:24px;
      margin-top:18px;
      align-items:stretch;
    }
    .contact-card{ padding:22px; }
    
    /* Form panel gets more space and padding */
    #contacto .contact-grid > .panel:last-child {
      padding: 28px;
      min-width: 0; /* Allow flex shrinking */
    }

    .list{ display:grid; gap:10px; margin-top:14px; }
    .item{ display:flex; gap:12px; align-items:flex-start; }
    .item .icon{
      width:40px;
      height:40px;
      border-radius:16px;
      display:grid;
      place-items:center;
      background:rgba(233,241,255,.65);
      border:1px solid rgba(231,237,246,.95);
      color:var(--brand-500);
      flex:0 0 auto;
    }
    .item b{ display:block; font-weight:900; color:var(--brand-900); }
    .item span{ display:block; margin-top:3px; color:rgba(8,18,38,.72); font-weight:600; line-height:1.5; }
    .item a{ color:var(--brand-700); text-decoration:underline; }
    .item a:hover{ color:var(--brand-500); }

    .form{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
      margin-top:16px;
    }
    .field{ 
      display:grid; 
      gap:8px; 
      min-width: 0; /* Prevent overflow */
    }
    label{ 
      font-size:13px; 
      font-weight:800; 
      color:rgba(11,31,74,.8); 
    }
    input, textarea{
      width:100%;
      border-radius:14px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.92);
      padding:14px 16px;
      font:inherit;
      font-size:15px;
      outline:none;
      box-shadow:0 10px 25px rgba(11,31,74,.06);
      transition:border-color .12s ease, box-shadow .12s ease;
    }
    input:focus, textarea:focus{ border-color:rgba(47,103,199,.45); box-shadow:0 14px 30px rgba(47,103,199,.14); }
    textarea{ min-height:120px; resize:vertical; grid-column:1 / -1; }
    .form-actions{ grid-column:1 / -1; display:flex; gap:12px; align-items:center; justify-content:flex-start; flex-wrap:wrap; }
    .form-message{
      grid-column:1 / -1;
      padding:12px 14px;
      border-radius:12px;
      font-size:13px;
      font-weight:600;
      line-height:1.5;
      margin-top:8px;
    }
    .form-message.success{
      background:rgba(233,241,255,.75);
      border:1px solid rgba(47,103,199,.3);
      color:var(--brand-700);
    }
    .form-message.error{
      background:rgba(255,240,240,.75);
      border:1px solid rgba(199,47,47,.3);
      color:#c72f2f;
    }

    .map{
      margin-top:16px;
      border-radius: var(--radius);
      overflow:hidden;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(233,241,255,.45);
      box-shadow: var(--shadow-soft);
      min-height: 260px;
    }
    .map iframe{
      width:100%;
      height:450px;
      display:block;
      border:none;
    }

    .hours{
      margin-top:16px;
      border-radius: var(--radius);
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.88);
      box-shadow: var(--shadow-soft);
      padding:18px;
    }
    .hours h4{ margin:0; font-size:16px; letter-spacing:-.02em; color:var(--brand-900); }
    .hours p{ margin:8px 0 0; color:rgba(8,18,38,.75); line-height:1.8; font-weight:600; }

    .booking-message{
      margin-top:12px;
      padding:12px 14px;
      border-radius:12px;
      background:rgba(233,241,255,.55);
      border:1px solid rgba(47,103,199,.2);
      color:var(--brand-700);
      font-size:13px;
      font-weight:600;
      line-height:1.6;
    }

    /* Portrait helpers (use ONLY client photos) */
    .hero-photo{
      width:100%;
      aspect-ratio: 4 / 3;
      border-radius: 18px;
      overflow:hidden;
      border:1px solid rgba(231,237,246,.95);
      box-shadow:0 18px 55px rgba(11,31,74,.14);
      background:
        radial-gradient(60% 60% at 20% 30%, rgba(47,103,199,.14) 0%, rgba(47,103,199,0) 70%),
        linear-gradient(135deg, rgba(11,31,74,.10), rgba(255,255,255,0));
      position:relative;
    }
    .hero-photo img{ width:100%; height:100%; object-fit:cover; }
    .hero-photo .badge{
      position:absolute;
      left:12px;
      bottom:12px;
      padding:8px 10px;
      border-radius:999px;
      background:rgba(255,255,255,.88);
      border:1px solid rgba(231,237,246,.95);
      box-shadow:0 12px 30px rgba(11,31,74,.10);
      font-weight:900;
      color:rgba(11,31,74,.86);
      font-size:12px;
      letter-spacing:-.02em;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .hero-photo .badge i{
      width:8px;
      height:8px;
      border-radius:99px;
      background:var(--brand-500);
      box-shadow:0 0 0 4px rgba(47,103,199,.14);
      display:inline-block;
    }

    /* Hero Features */
    .hero-features{
      display:flex;
      flex-direction:column;
      gap:14px;
      margin:24px 0 28px;
    }
    .hero-feature-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:12px 14px;
      border-radius:16px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.7);
      box-shadow:0 8px 20px rgba(11,31,74,.06);
    }
    .hero-feature-item .icon{
      width:40px;
      height:40px;
      border-radius:14px;
      display:grid;
      place-items:center;
      background:rgba(233,241,255,.75);
      border:1px solid rgba(231,237,246,.95);
      color:var(--brand-500);
      flex:0 0 auto;
    }
    .hero-feature-item .icon svg{
      width:20px;
      height:20px;
    }
    .hero-feature-item b{
      display:block;
      font-size:14px;
      color:var(--brand-900);
      font-weight:800;
      margin-bottom:4px;
    }
    .hero-feature-item span{
      display:block;
      font-size:13px;
      color:rgba(8,18,38,.72);
      line-height:1.5;
      font-weight:600;
    }

    /* Hero Video */
    .hero-video{
      width:100%;
      max-width:267px;
      margin:0 auto;
      border-radius:18px;
      overflow:hidden;
      border:1px solid rgba(231,237,246,.95);
      box-shadow:0 18px 55px rgba(11,31,74,.14);
      background:rgba(255,255,255,.92);
      position:relative;
    }
    .hero-video iframe{
      width:100%;
      height:476px;
      min-height:476px;
      display:block;
      border:none;
    }



    /* Mobile sticky quick actions */
    .mobile-bar{
      position:fixed;
      left:0;
      right:0;
      bottom:0;
      z-index:60;
      display:none;
      padding:10px 14px calc(10px + env(safe-area-inset-bottom));
      background:rgba(255,255,255,.84);
      backdrop-filter:saturate(180%) blur(12px);
      border-top:1px solid rgba(231,237,246,.85);
    }
    .mobile-bar-inner{
      display:grid;
      grid-template-columns: 1fr 1.1fr 1fr;
      gap:10px;
      width:min(1120px, calc(100% - 0px));
      margin:0 auto;
    }
    .mobile-bar .btn{
      padding:12px 10px;
      border-radius:16px;
      width:100%;
    }
    @media (max-width: 960px){
      body{ padding-bottom:84px; }
      .mobile-bar{ display:block; }
      .trust-strip{ grid-template-columns: 1fr; }
    }


    /* Footer */
    .footer{
      padding:22px 0 34px;
      border-top:1px solid rgba(231,237,246,.8);
    }
    .footer-inner{
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:16px;
      flex-wrap:wrap;
    }
    .conecta-bar {
      border-top: 1px solid rgba(231,237,246,.8);
      padding: 16px 0;
      text-align: center;
      background: rgba(233,241,255,.3);
    }
    .conecta-bar p {
      margin: 0;
      font-size: 13px;
      color: var(--muted);
    }
    .conecta-bar a {
      color: var(--brand-700);
      font-weight: 600;
    }
    .conecta-bar a:hover {
      color: var(--brand-500);
      text-decoration: underline;
    }
    .social{ display:flex; gap:10px; align-items:center; }
    .iconbtn{
      width:44px;
      height:44px;
      border-radius:16px;
      border:1px solid rgba(231,237,246,.95);
      background:rgba(255,255,255,.85);
      display:grid;
      place-items:center;
      box-shadow:0 12px 30px rgba(11,31,74,.08);
      transition:transform .12s ease, box-shadow .12s ease;
    }
    .iconbtn:hover{ transform:translateY(-1px); box-shadow:0 16px 40px rgba(11,31,74,.12); }
    .iconbtn:focus-visible{ outline:2px solid var(--brand-500); outline-offset:2px; }
    .iconbtn svg{ width:18px; height:18px; color:var(--brand-700); }

    .fine{ color:rgba(8,18,38,.58); font-weight:600; font-size:12px; }

    /* Meet Your Tax Pro Section */
    .meet-grid{
      display:grid;
      grid-template-columns: 1fr 1.2fr;
      gap:32px;
      align-items:center;
      margin-top:24px;
    }
    .meet-photo{
      border-radius: var(--radius);
      overflow:hidden;
      border:1.5px solid rgba(231,237,246,.95);
      box-shadow: var(--shadow);
      background:rgba(255,255,255,.92);
      aspect-ratio: 4 / 5;
      position:relative;
    }
    .meet-photo img{
      width:100%;
      height:100%;
      object-fit:cover;
    }
    .meet-content{
      display:flex;
      flex-direction:column;
      gap:20px;
    }
    .meet-content p{
      font-size:16px;
      line-height:1.75;
      color:rgba(8,18,38,.78);
      margin:0;
    }
    .checklist{
      display:flex;
      flex-direction:column;
      gap:12px;
      margin:8px 0;
    }
    .checklist-item{
      display:flex;
      align-items:flex-start;
      gap:12px;
      padding:8px 0;
    }
    .checklist-item svg{
      width:20px;
      height:20px;
      color:var(--brand-500);
      flex:0 0 auto;
      margin-top:2px;
    }
    .checklist-item span{
      font-size:15px;
      line-height:1.6;
      color:rgba(8,18,38,.78);
      font-weight:600;
    }
    .meet-actions{
      display:flex;
      gap:12px;
      flex-wrap:wrap;
      margin-top:8px;
    }

    /* Our Office Gallery */
    .gallery{
      display:grid;
      grid-template-columns: repeat(2, 1fr);
      gap:16px;
      margin-top:24px;
    }
    .gallery-item{
      margin:0;
      border-radius: var(--radius);
      overflow:hidden;
      border:1.5px solid rgba(231,237,246,.95);
      box-shadow: var(--shadow-soft);
      background:rgba(255,255,255,.92);
      aspect-ratio: 4 / 3;
      transition:transform .2s ease, box-shadow .2s ease;
    }
    .gallery-item:hover{
      transform:translateY(-2px);
      box-shadow: 0 20px 50px rgba(11,31,74,.16);
    }
    .gallery-item img{
      width:100%;
      height:100%;
      object-fit:cover;
      display:block;
    }

    /* Reveal animation */
    @media (prefers-reduced-motion: no-preference) {
      .reveal{ opacity:0; transform:translateY(10px); transition:opacity .5s ease, transform .5s ease; }
      .reveal.is-visible{ opacity:1; transform:translateY(0); }
    }
    @media (prefers-reduced-motion: reduce) {
      .reveal{ opacity:1; transform:none; }
    }

    /* Tablet and below */
    @media (max-width: 900px){
      .meet-grid{
        grid-template-columns: 1fr;
        gap: 28px;
      }
      .gallery{
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* Mobile */
    @media (max-width: 960px){
      /* Fix header layout - prevent button cutoff */
      .header-inner {
        flex-wrap: wrap !important;
        gap: 10px !important;
        justify-content: center !important;
      }
      .brand {
        min-width: auto !important;
        flex-shrink: 1;
        flex: 0 1 auto;
        justify-content: center !important;
        width: 100%;
        margin: 0 auto;
      }
      .header-cta {
        flex-wrap: wrap !important;
        gap: 8px !important;
        max-width: 100%;
        justify-content: center !important;
        width: 100%;
        margin-top: 8px;
      }
      .header-cta .btn {
        flex-shrink: 1;
        min-width: 0;
        font-size: 13px;
        padding: 10px 12px;
      }
      
      .hero-grid{ 
        grid-template-columns: 1fr; 
        justify-items: center;
      }
      .hero-video{
        max-width:100%;
      }
      .hero-video iframe{
        height:476px;
        min-height:476px;
      }
      .hero-features{
        margin:20px 0 24px;
      }
      .about-grid{ 
        grid-template-columns: 1fr; 
        justify-items: center;
      }
      .cards{ 
        grid-template-columns: 1fr; 
        justify-items: center;
      }
      .test-grid{ 
        grid-template-columns: 1fr; 
        justify-items: center;
      }
      .contact-grid{ 
        grid-template-columns: 1fr; 
        justify-items: center;
        gap: 20px;
      }
      .meet-grid{
        grid-template-columns: 1fr;
        gap: 24px;
      }
      .meet-photo{
        max-width: 100%;
        margin: 0 auto;
      }
      .gallery{
        grid-template-columns: 1fr;
        gap: 16px;
      }
      /* Form panel full width on mobile with better padding */
      #contacto .contact-grid > .panel:last-child {
        padding: 24px 20px;
        width: 100%;
        max-width: 100%;
      }
      .nav{ display:none; }
      .burger{ display:flex; }
      .form{ 
        grid-template-columns: 1fr; 
        gap: 18px;
      }
      .form input,
      .form textarea {
        padding: 16px;
        font-size: 16px; /* Prevent zoom on iOS */
      }
      
      /* Center container and all its content */
      .container {
        margin-left: auto !important;
        margin-right: auto !important;
        padding-left: 20px;
        padding-right: 20px;
        text-align: center !important;
      }
      
      /* Center all content except form inputs */
      .container > *:not(form):not(input):not(textarea):not(select) {
        text-align: center !important;
      }
      
      /* Form inputs should remain left-aligned for readability */
      form input,
      form textarea,
      form select {
        text-align: left !important;
      }
      
      /* Center section headers - override flex layout */
      .section-head {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
      }
      
      /* Center all headings and text content */
      section h1, section h2, section h3, section h4,
      section .h2, section .h3,
      section p, section .sub, section .lead,
      h1,
      .lead,
      .eyebrow,
      .hero-card-title,
      .kicker {
        text-align: center !important;
      }
      
      /* Center hero content wrapper */
      .hero-grid > div {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
      }
      
      /* Center hero actions */
      .hero-actions {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 12px;
      }
      
      /* Center reveal content */
      .reveal {
        text-align: center !important;
      }
      
      /* Center card content */
      article,
      .card,
      .card-inner,
      .test-card,
      .panel {
        text-align: center !important;
      }
      
      /* Center trust items */
      .trust-strip {
        justify-items: center;
      }
      
      /* Center all sections */
      section {
        text-align: center;
      }
      
      section > .container {
        text-align: center;
      }
      
      /* Center form button container */
      form .btn,
      .form-actions {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 12px;
        margin: 0 auto;
      }
    }

    /* Mobile menu */
    .mobile{
      display:none;
      border-top:1px solid rgba(231,237,246,.85);
      padding:10px 0 14px;
    }
    .mobile.open{ display:block; }
    .mobile a{ display:block; padding:10px 8px; border-radius:12px; font-weight:800; color:rgba(11,31,74,.82); }
    .mobile a:hover{ background:rgba(233,241,255,.85); }
    .mobile a:focus-visible{ outline:2px solid var(--brand-500); outline-offset:2px; }

    /* Tiny helper */
    .sr-only{ position:absolute; width:1px; height:1px; padding:0; margin:-1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0; }

    /* Additional Services Pricing Section */
    .pricing-grid{
      display:grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap:24px;
      margin-top:32px;
    }
    .pricing-category{
      background:rgba(255,255,255,.92);
      border:1.5px solid rgba(231,237,246,.95);
      border-radius:var(--radius);
      padding:24px;
      box-shadow:var(--shadow-soft);
    }
    .pricing-category h3{
      margin:0 0 20px;
      font-size:18px;
      font-weight:800;
      color:var(--brand-900);
      letter-spacing:-.02em;
      padding-bottom:12px;
      border-bottom:2px solid rgba(231,237,246,.95);
    }
    .pricing-list{
      display:flex;
      flex-direction:column;
      gap:12px;
    }
    .pricing-item{
      display:flex;
      justify-content:space-between;
      align-items:flex-start;
      gap:16px;
      padding:12px 0;
      border-bottom:1px solid rgba(231,237,246,.75);
    }
    .pricing-item:last-child{
      border-bottom:none;
    }
    .pricing-name{
      flex:1;
      font-size:14px;
      line-height:1.6;
      color:rgba(8,18,38,.82);
    }
    .pricing-price{
      font-size:15px;
      font-weight:700;
      color:var(--brand-700);
      white-space:nowrap;
    }
    .section-actions{
      display:flex;
      justify-content:center;
      margin-top:40px;
    }
  
