:root{
  --primary:#1a5276;
  --secondary:#2e86c1;
  --accent:#17a589;
  --light:#f8f9fa;
  --dark:#2c3e50;
  --gray:#7f8c8d;
  --bg:#f0f3f5;
  --shadow: 0 10px 30px rgba(0,0,0,.08);
  --r: 12px;
  --r2: 16px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
body{
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: var(--bg);
  color: var(--dark);
  line-height:1.6;
  overflow-x:hidden;
}

.container{ max-width:1200px; margin:0 auto; padding:0 20px; }
a{ color:inherit; text-decoration:none; }
.muted{ color: var(--gray); }
.fx{ box-shadow: var(--shadow); border-radius: var(--r); }

/* Topbar */
.topbar{ background:#fff; border-bottom:1px solid rgba(0,0,0,.06); }
.topbar__inner{ display:flex; justify-content:space-between; align-items:center; padding:10px 0; gap:12px; flex-wrap:wrap; }
.topbar__item{ font-weight:600; color: var(--primary); }
.topbar__link{ color: var(--dark); font-weight:700; }

/* Header / Nav */
.navwrap{
  background:#fff;
  position: sticky; top:0; z-index:1000;
  box-shadow: var(--shadow);
}
.navwrap__inner{ display:flex; justify-content:space-between; align-items:center; padding:16px 0; gap:14px; }

.brand{ display:flex; flex-direction:column; gap:6px; }
.brand__row{ display:flex; align-items:center; gap:10px; }
.brand__mark{
  width:40px; height:40px; border-radius:8px;
  background: var(--primary);
  display:flex; align-items:center; justify-content:center;
}
.brand__mark svg{ width:22px; height:22px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.brand__name{ font-size:22px; font-weight:800; color: var(--primary); }
.brand__desc{ font-size:13px; color: var(--gray); }

.nav-toggle{
  display:none;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  padding:10px 12px;
  border-radius:10px;
  cursor:pointer;
}
.nav-toggle__bars{
  display:inline-block; width:18px; height:2px; background:var(--primary);
  position:relative; margin-left:10px; top:-2px;
}
.nav-toggle__bars:before,.nav-toggle__bars:after{
  content:""; position:absolute; left:0; width:18px; height:2px; background:var(--primary);
}
.nav-toggle__bars:before{ top:-6px; }
.nav-toggle__bars:after{ top:6px; }

.site-nav{ display:flex; align-items:center; gap:12px; }
.menu{ list-style:none; display:flex; gap:8px; align-items:center; }
.menu li{ position:relative; }
.menu > li > a{
  display:inline-flex; align-items:center;
  padding:10px 12px;
  border-radius:10px;
  font-weight:700;
  color: var(--dark);
  transition: background .2s ease, transform .2s ease;
}
.menu > li > a:hover{ background: rgba(26,82,118,.08); transform: translateY(-1px); }

/* Dropdown */
.menu li ul{
  position:absolute; top: calc(100% + 10px); left:0;
  min-width: 240px;
  background:#fff;
  border-radius:12px;
  box-shadow: var(--shadow);
  padding:10px;
  opacity:0; transform: translateY(10px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.menu li:hover > ul,
.menu li:focus-within > ul{
  opacity:1; transform: translateY(0);
  pointer-events:auto;
}
.menu li ul li a{
  display:block;
  padding:10px 12px;
  border-radius:10px;
  font-weight:700;
  color: var(--dark);
}
.menu li ul li a:hover{ background: rgba(46,134,193,.10); }

/* Account dropdown */
.account{ position:relative; }
.account__btn{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:10px;
  border: 2px solid rgba(23,165,137,.25);
  background: rgba(23,165,137,.08);
  cursor:pointer;
  font-weight:800;
  color: var(--primary);
  transition: transform .2s ease, box-shadow .2s ease;
}
.account__btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow); }
.account__icon{ width:18px; height:18px; display:inline-flex; }
.account__icon svg{ width:18px; height:18px; fill:none; stroke: var(--primary); stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.caret{
  width:0;height:0;
  border-left:5px solid transparent;
  border-right:5px solid transparent;
  border-top:6px solid var(--primary);
  opacity:.8;
}

.account__menu{
  position:absolute; right:0; top: calc(100% + 10px);
  background:#fff;
  min-width: 220px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  padding:10px;
  opacity:0; transform: translateY(10px);
  pointer-events:none;
  transition: opacity .18s ease, transform .18s ease;
}
.account.is-open .account__menu{
  opacity:1; transform: translateY(0);
  pointer-events:auto;
}
.account__item{
  display:block; padding:10px 12px;
  border-radius:10px;
  font-weight:800;
}
.account__item:hover{ background: rgba(26,82,118,.08); }

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding: 12px 18px;
  border-radius: 10px;
  font-weight: 800;
  border:2px solid transparent;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary{
  background: var(--primary);
  color:#fff;
}
.btn-ghost{
  background:#fff;
  border-color: rgba(26,82,118,.22);
  color: var(--primary);
}
.btn-accent{
  background: var(--accent);
  color:#fff;
}
.btn-wa{
  background: #25d366;
  color:#fff;
}

/* ===== NUEVO HERO CON IMAGEN CLARA ===== */
.hero {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  background-repeat: no-repeat !important;
  background-attachment: fixed !important;
  background-size: cover !important;
}

/* Overlay MÁS CLARO (solo 20% oscuro) */
.hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
}

.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

/* BADGE ELIMINADO - ya no existe */

.hero h1 {
  font-size: 3.2rem;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.1;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-text {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 26px;
  max-width: 740px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Botones con mejor contraste sobre imagen clara */
.hero .btn-primary {
  background: var(--primary);
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero .btn-ghost {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(26, 82, 118, 0.3);
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero .btn-ghost:hover {
  background: #ffffff;
}

/* Ajuste para móviles */
@media (max-width: 768px) {
  .hero {
    background-attachment: scroll !important;
    min-height: 500px;
  }
  
  .hero h1 {
    font-size: 2rem;
  }
  
  .hero-text {
    font-size: 1rem;
  }
}

/* Services */
.services{ padding: 80px 0; background:#fff; }
.section-title{ text-align:center; font-size:2.4rem; color: var(--primary); margin-bottom: 46px; }
.section-title.left{ text-align:left; margin-bottom: 10px; }

.services-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 26px;
}
.service-card{
  background:#fff;
  border-radius: 12px;
  padding: 28px;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
  text-align:center;
}
.service-card:hover{ transform: translateY(-10px); box-shadow: 0 18px 40px rgba(0,0,0,.12); }
.service-icon{
  width: 70px; height: 70px;
  background: rgba(26,82,118,.10);
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 18px;
}
.service-icon svg{
  width: 30px; height: 30px;
  fill:none; stroke: var(--primary);
  stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
.service-title{ font-size:1.35rem; color: var(--primary); margin-bottom: 10px; }

/* Ecosystem */
.ecosystem{
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #154360 100%);
  color:#fff;
}
.ecosystem-content{ text-align:center; max-width: 900px; margin:0 auto; }
.ecosystem-title{ font-size:2.4rem; margin-bottom: 16px; }
.ecosystem-text{ font-size:1.1rem; opacity:.92; margin-bottom: 34px; }

.features{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 22px;
}
.feature{
  background: rgba(255,255,255,.12);
  padding: 22px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
}
.feature-ico{
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(23,165,137,.20);
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 12px;
}
.feature-ico svg{
  width: 26px; height: 26px;
  fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
.feature h3{ margin-bottom: 6px; }

/* Location */
.location{
  padding: 80px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
}
.location-container{ display:flex; flex-wrap:wrap; gap: 42px; align-items:center; }
.location-info{ flex:1; min-width: 300px; }
.location-title{ font-size:2.3rem; color: var(--primary); margin-bottom: 24px; }

.address{
  background:#fff;
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
  margin-bottom: 22px;
}
.address-line{ display:flex; gap:14px; margin-bottom: 14px; align-items:flex-start; }
.addr-ico{ width:22px; height:22px; margin-top: 2px; }
.addr-ico svg{
  width:22px; height:22px;
  fill:none; stroke: var(--accent);
  stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}

.how-to{
  background: var(--light);
  padding: 22px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}
.how-ico svg{ width: 26px; height: 26px; fill:none; stroke: var(--primary); stroke-width:2; }
.how-title{ color: var(--primary); margin: 10px 0; }

.map-container{
  flex:1; min-width: 300px;
  border-radius: 12px;
  overflow:hidden;
  box-shadow: var(--shadow);
  height: 420px;
}
#enblumc-map{ width:100%; height:100%; }

/* Blog latest */
.blog-latest{ padding: 80px 0; background:#fff; }
.blog-head{ display:flex; justify-content:space-between; align-items:flex-end; gap:14px; margin-bottom: 20px; flex-wrap:wrap; }

.blog-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}

.post-card{
  background:#fff;
  border-radius: 14px;
  overflow:hidden;
  box-shadow: var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.post-card:hover{ transform: translateY(-6px); box-shadow: 0 18px 44px rgba(0,0,0,.12); }
.post-card__media{ display:block; }
.post-card__media img{ width:100%; height: 190px; object-fit:cover; display:block; }
.post-card__ph{
  height: 190px;
  background: linear-gradient(135deg, rgba(26,82,118,.18), rgba(23,165,137,.14));
}
.post-card__body{ padding: 18px; }
.post-card__meta{ display:flex; gap:10px; align-items:center; color: var(--gray); font-weight:700; font-size:.92rem; }
.post-card__meta .dot{ width:5px; height:5px; border-radius:999px; background: rgba(26,82,118,.35); }
.post-card__title{ margin: 10px 0 10px; font-size: 1.15rem; color: var(--primary); }
.link{ color: var(--accent); font-weight: 800; }
.link:hover{ text-decoration: underline; }

/* Article */
.content-layout{ display:grid; grid-template-columns: 1fr 320px; gap: 22px; align-items:start; }
.article{ background:#fff; padding: 26px; border-radius: 14px; box-shadow: var(--shadow); }
.article__title{ color: var(--primary); font-size: 2.1rem; margin-bottom: 10px; }
.article__meta{ color: var(--gray); font-weight:700; margin-bottom: 12px; display:flex; gap:10px; align-items:center; }
.article__meta .dot{ width:5px; height:5px; border-radius:999px; background: rgba(26,82,118,.35); }
.article__hero img{ width:100%; height:auto; border-radius: 12px; margin: 14px 0; }
.article__content{ font-size: 1.05rem; }
.article__content a{ color: var(--accent); font-weight: 800; }

.sidebar{ background:#fff; padding: 18px; border-radius: 14px; box-shadow: var(--shadow); }
.widget{ margin-bottom: 18px; }
.widget__title{ color: var(--primary); margin-bottom: 10px; }
.mini-list{ list-style:none; display:grid; gap:10px; }
.mini-list a{ font-weight: 800; color: var(--dark); }
.mini-list a:hover{ color: var(--primary); }

/* Contact */
.contact{ padding: 80px 0; background:#fff; }
.contact-cards{ display:flex; justify-content:center; flex-wrap:wrap; gap:22px; margin-top: 26px; }
.contact-card{
  background: var(--light);
  border-radius: 12px;
  padding: 26px;
  width: 320px;
  text-align:center;
  box-shadow: var(--shadow);
  transition: transform .25s ease;
}
.contact-card:hover{ transform: translateY(-5px); }
.contact-icon{
  width: 60px; height: 60px;
  background: var(--primary);
  color:#fff;
  border-radius: 50%;
  display:flex; align-items:center; justify-content:center;
  margin: 0 auto 16px;
}
.contact-icon svg{ width: 26px; height: 26px; fill:none; stroke:#fff; stroke-width:2; stroke-linecap:round; stroke-linejoin:round; }
.contact-title{ font-size: 1.25rem; color: var(--primary); margin-bottom: 10px; }
.contact-info{ font-size: 1.1rem; color: var(--dark); font-weight: 900; }
.whatsapp{ background: rgba(37, 211, 102, 0.08); border: 2px solid #25d366; }
.whatsapp .contact-icon{ background:#25d366; }

/* Footer */
.site-footer{
  background: var(--dark);
  color:#fff;
  padding: 50px 0 18px;
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.2fr repeat(3, 1fr);
  gap: 20px;
}
.footer__logo{ font-size: 26px; font-weight: 900; margin-bottom: 10px; }
.site-footer a{ display:block; color: rgba(255,255,255,.92); margin: 8px 0; font-weight: 700; }
.site-footer a:hover{ color:#fff; text-decoration: underline; }
.footer__bottom{
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.12);
}

/* Pagination */
.pagination{ margin-top: 22px; }
.pagination .page-numbers{ display:inline-block; padding:10px 12px; border-radius:10px; background:#fff; box-shadow: var(--shadow); margin-right:8px; font-weight:900; }
.pagination .current{ background: rgba(26,82,118,.10); }

/* Responsive */
@media (max-width: 980px){
  .content-layout{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}

@media (max-width: 840px){
  .nav-toggle{ display:inline-flex; }
  .site-nav{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:stretch;
    padding: 12px 0;
    gap:12px;
  }
  .site-nav.is-open{ display:flex; }
  .menu{ flex-direction:column; align-items:stretch; }
  .menu li ul{ position:static; opacity:1; transform:none; pointer-events:auto; box-shadow:none; padding:0; margin-left:12px; }
}

@media (max-width: 520px){
  .hero h1{ font-size: 2.2rem; }
  .contact-card{ width:100%; }
}

/* Search in header */
.nav-search{ display:flex; align-items:center; }
.nav-search__form{
  display:flex; align-items:center;
  background:#fff;
  border:1px solid rgba(26,82,118,.18);
  border-radius: 12px;
  overflow:hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,.06);
}
.nav-search__input{
  width: 220px;
  padding: 10px 12px;
  border:0; outline:none;
  font-weight:700;
  color: var(--dark);
}
.nav-search__btn{
  width:44px; height:42px;
  border:0; cursor:pointer;
  background: rgba(23,165,137,.10);
  display:flex; align-items:center; justify-content:center;
}
.nav-search__btn svg{
  width:18px; height:18px;
  fill:none; stroke: var(--primary); stroke-width:2; stroke-linecap:round; stroke-linejoin:round;
}
@media (max-width: 980px){
  .nav-search__input{ width:100%; }
  .nav-search{ width:100%; }
  .nav-search__form{ width:100%; }
}

/* Mega menu */
.menu > li.is-mega{
  position: static;
}
.menu > li.is-mega > ul{
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: min(1040px, calc(100vw - 40px));
  padding: 18px;
  border-radius: 16px;
  background:
    radial-gradient(900px 300px at 20% 0%, rgba(23,165,137,.10), transparent 60%),
    radial-gradient(900px 300px at 80% 0%, rgba(46,134,193,.12), transparent 60%),
    #fff;
  box-shadow: 0 18px 60px rgba(0,0,0,.14);
  display:grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 14px;
}
.menu > li.is-mega:hover > ul,
.menu > li.is-mega:focus-within > ul{
  transform: translateX(-50%) translateY(0);
}
.menu > li.is-mega > ul > li{
  border:1px solid rgba(26,82,118,.10);
  border-radius: 14px;
  padding: 12px;
}
.menu > li.is-mega > ul > li > a{
  font-weight: 900;
  color: var(--primary);
  display:block;
  margin-bottom: 8px;
}
.menu > li.is-mega > ul > li > ul{
  position: static;
  opacity: 1;
  transform: none;
  pointer-events: auto;
  box-shadow: none;
  padding: 0;
  margin: 0;
  background: transparent;
}
.menu > li.is-mega > ul > li > ul > li > a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 10px 10px;
  border-radius: 12px;
  font-weight: 800;
  color: var(--dark);
  background: rgba(26,82,118,.04);
  margin-bottom: 8px;
}
.menu > li.is-mega > ul > li > ul > li > a:hover{
  background: rgba(23,165,137,.10);
  color: var(--primary);
}
.menu > li.is-mega > ul > li:first-child{
  background: linear-gradient(135deg, rgba(26,82,118,.06), rgba(23,165,137,.06));
  border-color: rgba(23,165,137,.18);
}
.menu > li.is-mega > ul > li:first-child::after{
  content:"Asesoría integral • Orden • Cumplimiento";
  display:block;
  margin-top: 8px;
  color: var(--gray);
  font-weight: 800;
  font-size: 12px;
}
@media (max-width: 840px){
  .menu > li.is-mega > ul{
    width: 100%;
    transform:none;
    left:auto;
    display:block;
    padding: 0;
    box-shadow:none;
    background: transparent;
    border-radius: 0;
  }
  .menu > li.is-mega > ul > li{
    padding: 0;
    border:0;
    margin: 8px 0;
  }
}

/* Enterprise blog */
.enterprise-blog{
  display:grid;
  grid-template-columns: 1.4fr .9fr;
  gap: 22px;
  align-items:start;
}
.enterprise-blog__main{ background:#fff; overflow:hidden; border-radius: 16px; }
.post-featured{ display:grid; grid-template-columns: 1.2fr .9fr; gap: 0; }
.post-featured__media img{ width:100%; height:100%; min-height: 320px; object-fit:cover; display:block; }
.post-featured__ph{ min-height: 320px; background: linear-gradient(135deg, rgba(26,82,118,.18), rgba(23,165,137,.14)); }
.post-featured__body{ padding: 18px; }
.post-featured__title{ font-size: 1.35rem; color: var(--primary); margin: 10px 0; }
.enterprise-blog__side{ display:grid; gap: 18px; }
.enterprise-side__block{
  background:#fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: var(--shadow);
}
.enterprise-side__title{
  color: var(--primary);
  font-weight: 900;
  margin-bottom: 12px;
}
.enterprise-side__list{ display:grid; gap: 12px; }
.mini-card{ display:flex; gap: 12px; align-items:center; }
.mini-card__thumb img{ width: 74px; height: 58px; object-fit:cover; border-radius: 12px; display:block; }
.mini-card__ph{
  width: 74px; height: 58px;
  border-radius: 12px;
  display:block;
  background: linear-gradient(135deg, rgba(26,82,118,.16), rgba(46,134,193,.12));
}
.mini-card__meta{ color: var(--gray); font-weight: 800; font-size: 12px; margin-bottom: 3px; }
.mini-card__title{ font-weight: 900; color: var(--dark); line-height: 1.2; }
.mini-card__title:hover{ color: var(--primary); }
.quick-links{ display:grid; gap: 10px; }
.quick-link{
  display:block;
  padding: 11px 12px;
  border-radius: 12px;
  font-weight: 900;
  background: rgba(26,82,118,.05);
  border: 1px solid rgba(26,82,118,.10);
}
.quick-link:hover{
  background: rgba(23,165,137,.10);
  border-color: rgba(23,165,137,.22);
  color: var(--primary);
}
@media (max-width: 980px){
  .enterprise-blog{ grid-template-columns: 1fr; }
  .post-featured{ grid-template-columns: 1fr; }
  .post-featured__media img, .post-featured__ph{ min-height: 240px; }
}

/* Search results */
#search-results {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: var(--shadow);
  max-height: 400px;
  overflow-y: auto;
  z-index: 1000;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}
#search-results.active {
  display: block;
}
.search-results__item {
  display: flex;
  align-items: center;
  padding: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  transition: background 0.3s ease;
  cursor: pointer;
}
.search-results__item:hover {
  background: rgba(26, 82, 118, 0.05);
}
.search-results__image {
  width: 60px;
  height: 60px;
  margin-right: 12px;
  border-radius: 8px;
  overflow: hidden;
}
.search-results__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.search-results__content {
  flex-grow: 1;
}
.search-results__post-title {
  font-size: 1.1rem;
  color: var(--primary);
  margin-bottom: 4px;
}
.search-results__post-excerpt {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 4px;
}
.search-results__post-meta {
  font-size: 0.8rem;
  color: var(--gray);
}
.search-results__count {
  font-weight: bold;
  color: var(--accent);
}
.search-results__empty {
  text-align: center;
  padding: 30px;
  font-size: 1.1rem;
  color: var(--gray);
}

/* Mobile improvements */
@media (max-width: 840px) {
  .mobile-only { display: block; }
  .desktop-only { display: none; }
  
  .navwrap__inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-areas: 
      "toggle logo account"
      "nav nav nav";
    gap: 15px;
    align-items: center;
    padding: 12px 0;
  }
  
  .nav-toggle {
    grid-area: toggle;
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
    margin: 0;
    padding: 8px 12px;
  }
  
  .brand {
    grid-area: logo;
    order: 2;
    text-align: center;
    margin: 0 auto;
  }
  
  .account-mobile {
    grid-area: account;
    order: 3;
  }
  
  .account-mobile__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(23, 165, 137, 0.1);
    border: 1px solid rgba(23, 165, 137, 0.2);
  }
  
  .account-mobile__btn svg {
    width: 20px;
    height: 20px;
    stroke: var(--primary);
    stroke-width: 2;
  }
  
  .site-nav {
    grid-area: nav;
    display: none;
    flex-direction: column;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-top: 10px;
    order: 4;
  }
  
  .site-nav.is-open {
    display: flex;
  }
  
  .menu {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    margin-bottom: 20px;
  }
  
  .nav-search {
    width: 100%;
    margin: 15px 0;
  }
  
  .nav-search__form {
    width: 100%;
  }
  
  .nav-search__input {
    width: 100%;
    padding: 14px 16px;
  }
  
  .account {
    width: 100%;
    margin-top: 10px;
  }
  
  .account__btn {
    width: 100%;
    justify-content: center;
  }
  
  .account.desktop-only {
    display: none;
  }
}