:root{
  /* Paleta profesional FTC: navy + slate + verde + dorado discreto */
  --bg:#f8fafc;
  --panel:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:rgba(15,23,42,.10);

  --accent:#16a34a;        /* verde profesional */
  --accent2:#15803d;       /* verde oscuro */
  --blue:#071a2f;          /* navy principal */
  --slate:#0f253a;         /* slate corporativo */
  --gold:#d4af37;          /* acento premium controlado */
  --green-soft:#dcfce7;

  --radius:18px;
  --shadow:0 14px 35px rgba(0,0,0,.08);
}

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

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height:1.55;
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(7,26,47,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(22,163,74,.10), transparent 60%),
    var(--bg);
  color:var(--text);
}

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

.container{width:min(1100px, 92%); margin-inline:auto}

/* Header */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  font-weight:900;
  letter-spacing:.2px;
  display:flex;
  align-items:center;
  gap:10px;
  white-space:nowrap;
}
.brand__logo{
  width:36px;
  height:36px;
  border-radius:999px;
  object-fit:cover;
  box-shadow:0 8px 18px rgba(0,0,0,.12);
  border:2px solid #fff;
}

.nav{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
  align-items:center;
}
.nav a{
  font-weight:700;
  padding:8px 10px;
  border-radius:10px;
  color:var(--muted);
}
.nav a:hover{color:var(--blue)}
.nav a.active{
  color:var(--accent);
  background:rgba(22,163,74,.10);
}

/* Botones */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  border:1px solid rgba(22,163,74,.35);
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#fff;
  font-weight:800;
  box-shadow:0 10px 25px rgba(22,163,74,.18);
  cursor:pointer;
}
.btn--ghost{
  background:transparent;
  color:var(--blue);
  border:1px solid var(--line);
  box-shadow:none;
}
.btn--sm{
  padding:8px 12px;
  font-size:.9rem;
}

/* Tipografía */
h1{margin:0 0 10px; font-size: clamp(28px, 3.2vw, 50px); line-height:1.08}
h2{margin:0 0 10px; font-size: 1.8rem}
h3{margin:0 0 8px; font-size: 1.1rem}
p{margin:0 0 12px}
.lead{color:var(--muted); font-size:1.05rem}
.mini{color:var(--muted); font-size:.95rem}

.badge{
  display:inline-block;
  padding:8px 14px;
  border-radius:999px;
  font-weight:800;
  background:rgba(7,26,47,.08);
  color:var(--blue);
  margin-bottom:14px;
}

.highlight{color:var(--gold)}

/* Secciones (one page) */
.section{
  padding:100px 0;
}
.section-light{
  background: rgba(255,255,255,.65);
}

/* Grid / cards */
.grid{display:grid; gap:18px}
.grid--2{grid-template-columns:repeat(2,1fr)}
.grid--3{grid-template-columns:repeat(3,1fr)}

.card{
  background:var(--panel);
  border-radius:var(--radius);
  padding:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  transition: transform .25s ease, box-shadow .25s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow:0 18px 45px rgba(0,0,0,.12);
}

/* Formularios */
form{margin-top:18px}
input, textarea, select{
  width:100%;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--line);
  margin:10px 0;
  background:#fff;
  font: inherit;
}
textarea{min-height:140px; resize:vertical}
input:focus, textarea:focus, select:focus{
  border-color: rgba(22,163,74,.55);
  outline:none;
}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background:#fff;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:12px;
  color:var(--muted);
}


/* ===== HERO full-screen con fondo difuminado + foto ===== */
.hero-full{
  position:relative;
  height:100vh;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
  padding:0;
}

/* Fondo pantalla completa (usa tu imagen) */
.hero-bg{
  position:absolute;
  inset:0;
  background:url("../img/brand.jpg") center/cover no-repeat;
  transform:scale(1.08);
}

/* Overlay claro + blur */
.hero-overlay{
  position:absolute;
  inset:0;
  background: linear-gradient(
    rgba(255,255,255,.90),
    rgba(255,255,255,.94)
  );
  backdrop-filter: blur(10px);
}

/* Contenido */
.hero-container{
  position:relative;
  z-index:2;
  width:90%;
  max-width:1200px;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:40px;
  align-items:center;
}

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
}

/* Imagen visible */
.hero-image{
  display:flex;
  justify-content:center;
}
.hero-image img{
  width:100%;
  max-width:420px;
  border-radius:28px;
  box-shadow:0 30px 80px rgba(0,0,0,.18);
  border:5px solid #fff;
}

/* Responsive */
@media(max-width:900px){
  .grid--3{grid-template-columns:1fr}
  .grid--2{grid-template-columns:1fr}
  .hero-container{
    grid-template-columns:1fr;
    text-align:center;
  }
  .hero-image{margin-top:24px}
  .hero-full{height:auto; padding:70px 0}
  .nav{gap:8px}
}
/* ===== HERO PRO (inicio más llamativo) ===== */
.hero-pro{
  height:100vh;
}

.hero-pro__container{
  align-items:center;
}

.hero-pro .hero-overlay{
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(7,26,47,.10), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(22,163,74,.10), transparent 60%),
    linear-gradient(rgba(255,255,255,.90), rgba(255,255,255,.95));
  backdrop-filter: blur(10px);
}

.hero-title{
  letter-spacing:-0.02em;
  font-weight:900;
}

.hero-subtitle{
  max-width: 620px;
  margin-top: 10px;
}

.hero-pro__cta{
  margin-top: 18px;
}

/* Métricas */
.hero-metrics{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-top:16px;
}

.metric{
  background: rgba(255,255,255,.70);
  border:1px solid var(--line);
  border-radius: 16px;
  padding: 10px 12px;
  box-shadow: 0 10px 24px rgba(0,0,0,.06);
  display:flex;
  flex-direction:column;
  min-width: 160px;
}

.metric__value{
  font-weight:900;
  color: var(--blue);
  font-size: 1.1rem;
  line-height:1.1;
}

.metric__label{
  color: var(--muted);
  font-weight:700;
  font-size:.85rem;
  margin-top:4px;
}

/* Servicios rápidos */
.hero-services{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  max-width: 760px;
}

.hero-service{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: 18px;
  padding: 14px 14px;
  box-shadow: 0 14px 30px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
}

.hero-service:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(0,0,0,.10);
}

.hero-service h3{
  margin:0 0 6px;
  font-size: 1rem;
  color: var(--blue);
}

.hero-service p{
  margin:0;
  color: var(--muted);
  font-size: .92rem;
}

/* Foto (tarjeta premium) */
.portrait-card{
  background: rgba(255,255,255,.78);
  border:1px solid var(--line);
  border-radius: 24px;
  padding: 14px;
  box-shadow: 0 26px 70px rgba(0,0,0,.14);
}

.portrait-card img{
  width: 100%;
  max-width: 420px;
  border-radius: 999px; /* look circular/premium */
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 5px solid #fff;
  box-shadow: 0 22px 60px rgba(0,0,0,.18);
}

/* Responsive */
@media(max-width: 900px){
  .hero-pro{height:auto; padding: 70px 0;}
  .hero-services{grid-template-columns: 1fr;}
  .metric{min-width: 0; width: 100%;}
  .hero-subtitle{max-width: 100%;}
  .portrait-card img{max-width: 360px;}
}

/* ===== Sobre mí (mejoras visuales) ===== */
.about-tags{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.about-steps{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:12px;
  border-radius:16px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.75);
}

.step__num{
  width:34px;
  height:34px;
  border-radius:12px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  color:#fff;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow: 0 10px 22px rgba(22,163,74,.18);
  flex:0 0 auto;
}
/* ===== Labor Social ===== */
.social__top{
  display:flex;
  gap:12px;
  align-items:flex-start;
}

.social__icon{
  width:42px;
  height:42px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background: rgba(7,26,47,.08);
  border: 1px solid var(--line);
  flex:0 0 auto;
}

.social__list{
  margin:12px 0 0;
  padding-left:18px;
  color: var(--muted);
  line-height:1.7;
}
/* ===== Publicaciones: Reels Facebook ===== */
.reels-grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.reel-card{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.reel-frame{
  width:100%;
  aspect-ratio: 9 / 16;     /* vertical */
  border-radius:18px;
  overflow:hidden;
  border:1px solid var(--line);
  background: rgba(255,255,255,.65);
}

.reel-meta{
  display:flex;
  flex-direction:column;
  gap:6px;
}

/* Responsive */
@media (max-width: 1200px){
  .reels-grid{ grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 900px){
  .reels-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .reels-grid{ grid-template-columns: 1fr; }
}

/* ===================================
   REDES SOCIALES PROFESIONALES
=================================== */

.social{
  position:fixed;
  right:22px;
  width:50px;
  height:50px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:#ffffff;
  color:#111;
  box-shadow:0 10px 25px rgba(0,0,0,.12);
  transition:all .35s cubic-bezier(.4,0,.2,1);
  z-index:1000;
  border:1px solid rgba(0,0,0,.05);
}

.social svg{
  width:22px;
  height:22px;
}

.social:hover{
  transform:translateY(-6px) scale(1.08);
  color:#fff;
  box-shadow:0 18px 40px rgba(0,0,0,.25);
}

/* === COLORES OFICIALES EN HOVER === */

.whatsapp:hover{ background:#25D366; }
.facebook:hover{ background:#1877F2; }
.instagram:hover{ 
  background: radial-gradient(circle at 30% 107%,
    #fdf497 0%, #fdf497 5%,
    #fd5949 45%, #d6249f 60%,
    #285AEB 90%);
}
.youtube:hover{ background:#FF0000; }
.x:hover{ background:#000000; }
.tiktok:hover{ background:#000000; }

/* === ORDEN VERTICAL === */

.whatsapp{ bottom:20px; }
.facebook{ bottom:85px; }
.instagram{ bottom:150px; }
.youtube{ bottom:215px; }
.x{ bottom:280px; }
.tiktok{ bottom:345px; }

/* === RESPONSIVE === */

@media (max-width:768px){
  .social{
    width:44px;
    height:44px;
    right:14px;
  }
}
/* =========================
   RESPONSIVE (MÓVIL)
   Pegar al final del styles.css
========================= */

/* Evita desbordes horizontales típicos en móvil */
html, body { width: 100%; overflow-x: hidden; }
img, iframe { max-width: 100%; height: auto; display: block; }

/* Contenedor */
.container{
  width: min(1100px, 100%);
  padding-left: 16px;
  padding-right: 16px;
  margin-left: auto;
  margin-right: auto;
}

/* Header / nav */
.header{
  position: sticky;
  top: 0;
  z-index: 2000;
  backdrop-filter: blur(10px);
}

.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color: var(--text);
  font-weight: 800;
  line-height: 1.1;
}

.brand__logo{
  width: 34px;
  height: 34px;
  border-radius: 10px;
  object-fit: cover;
}

/* Nav en desktop */
.nav{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap: wrap;
}

.nav a{
  text-decoration:none;
  color: var(--text);
  font-weight: 600;
  opacity: .9;
}

.nav a.btn{
  opacity: 1;
}

/* HERO */
.hero-full{
  padding-top: 28px;
  padding-bottom: 28px;
}

.hero-container{
  width: min(1100px, 100%);
  margin: 0 auto;
  padding-left: 16px;
  padding-right: 16px;
}

.hero-pro__container{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 22px;
  align-items: center;
}

.hero-title{
  font-size: clamp(28px, 4.8vw, 54px);
  line-height: 1.05;
  margin: 10px 0 0;
}

.hero-subtitle{
  margin-top: 12px;
}

.hero__cta{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.hero-metrics{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.metric{
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
}

.metric__value{
  display:block;
  font-weight: 900;
  line-height: 1.1;
}

.metric__label{
  font-size: 12px;
  opacity: .8;
}

.portrait-card img{
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* Bloque de servicios compactos del hero */
.hero-services{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
  margin-top: 18px;
}

.hero-service{
  padding: 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.7);
  border: 1px solid rgba(0,0,0,.06);
}

.hero-service h3{
  margin: 0 0 6px;
  font-size: 14px;
}

.hero-service p{
  margin: 0;
  font-size: 12px;
  opacity: .85;
}

/* Grids generales */
.grid{
  display:grid;
  gap: 14px;
}

.grid--2{ grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid--3{ grid-template-columns: repeat(3, minmax(0,1fr)); }

/* Publicaciones / reels */
.reels-grid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 14px;
}

.reel-frame{
  width: 100%;
  aspect-ratio: 9 / 16;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
}

.reel-frame iframe{
  width: 100%;
  height: 100%;
  display:block;
  border: 0;
}

/* Cards: evita padding enorme en móvil */
.card{
  border-radius: 18px;
}

/* Botones flotantes (separación menor en móvil) */
.social{
  right: 14px;
}

@media (max-width: 980px){
  .hero-pro__container{
    grid-template-columns: 1fr;
  }
  .hero-services{
    grid-template-columns: 1fr;
  }
  .grid--3{ grid-template-columns: repeat(2, minmax(0,1fr)); }
  .reels-grid{ grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 720px){
  /* Nav: se vuelve “scroll horizontal” para no romper */
  .nav{
    width: 100%;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
    gap: 8px;
  }
  .nav a{
    display:inline-flex;
    align-items:center;
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,.65);
    border: 1px solid rgba(0,0,0,.06);
    font-size: 13px;
  }
  .nav a.btn{
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    border: 0;
    color: #fff;
  }

  .grid--2{ grid-template-columns: 1fr; }
  .grid--3{ grid-template-columns: 1fr; }
  .reels-grid{ grid-template-columns: 1fr; }

  .hero__cta a.btn{
    width: 100%;
    justify-content: center;
  }

  /* Mejora lectura */
  .lead{
    font-size: 15px;
    line-height: 1.6;
  }

  /* Botones flotantes: más compactos */
  .social{
    width: 46px;
    height: 46px;
    padding: 0;
    border-radius: 999px;
    display:flex;
    align-items:center;
    justify-content:center;
  }
  .social svg{
    width: 22px;
    height: 22px;
  }

  /* Ajusta posiciones en columna */
  .whatsapp{ bottom: 14px; }
  .facebook{ bottom: 70px; }
  .instagram{ bottom: 126px; }
  .youtube{ bottom: 182px; }
  .x{ bottom: 238px; }
  .tiktok{ bottom: 294px; }
}
/* =========================
   MENÚ MÓVIL PRO (HAMBURGER)
========================= */

.nav-toggle{
  display:none;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.08);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
  cursor:pointer;
}

.nav-toggle svg{
  width:22px;
  height:22px;
  color: var(--text);
}

/* Overlay */
.mobile-nav{
  display:none;
}

@media (max-width: 820px){

  /* Header más compacto */
  .header__inner{
    gap:10px;
  }

  /* Oculta el nav normal en móvil */
  .nav{
    display:none;
  }

  /* Muestra botón hamburguesa */
  .nav-toggle{
    display:flex;
  }

  /* Overlay + panel */
  .mobile-nav{
    position: fixed;
    inset: 0;
    z-index: 4000;
    display: none; /* se activa con .is-open */
  }

  .mobile-nav.is-open{
    display:block;
  }

  .mobile-nav__backdrop{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.35);
  }

  .mobile-nav__panel{
    position:absolute;
    top: 12px;
    left: 12px;
    right: 12px;
    border-radius: 22px;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 20px 60px rgba(0,0,0,.18);
    padding: 14px;
  }

  .mobile-nav__top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(0,0,0,.08);
  }

  .mobile-nav__title{
    font-weight: 900;
    letter-spacing: .2px;
  }

  .mobile-nav__close{
    width: 40px;
    height: 40px;
    border-radius: 14px;
    border: 1px solid rgba(0,0,0,.08);
    background: rgba(255,255,255,.85);
    cursor:pointer;
    display:flex;
    align-items:center;
    justify-content:center;
  }

  .mobile-nav__close svg{
    width: 20px;
    height: 20px;
  }

  .mobile-nav__links{
    display:grid;
    gap: 10px;
    padding-top: 12px;
  }

  .mobile-nav__links a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding: 12px 14px;
    border-radius: 16px;
    text-decoration:none;
    font-weight: 800;
    color: var(--text);
    background: rgba(255,255,255,.75);
    border: 1px solid rgba(0,0,0,.08);
  }

  .mobile-nav__links a:hover{
    transform: translateY(-1px);
  }

  .mobile-nav__links a .chev{
    opacity:.6;
    font-weight: 900;
  }

  /* Botón principal dentro del menú */
  .mobile-nav__links a.cta{
    background: linear-gradient(135deg, var(--accent), var(--accent2));
    color:#fff;
    border: 0;
  }

  .mobile-nav__links a.cta .chev{
    opacity: .9;
  }
}

/* =====================================================
   AJUSTE FINAL FTC - PALETA PROFESIONAL
   Nota: no modifica los botones flotantes de redes sociales.
   Las clases .social, .whatsapp, .facebook, .instagram,
   .youtube, .x y .tiktok conservan su comportamiento original.
===================================================== */

body{
  background:
    radial-gradient(900px 520px at 20% 8%, rgba(7,26,47,.10), transparent 60%),
    radial-gradient(820px 480px at 85% 10%, rgba(22,163,74,.10), transparent 60%),
    linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color:var(--text);
}

.header{
  background:rgba(7,26,47,.96);
  border-bottom:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 34px rgba(7,26,47,.22);
}

.brand,
.nav a{
  color:#e2e8f0;
}

.brand:hover,
.nav a:hover{
  color:#ffffff;
}

.nav a.active{
  color:var(--gold);
  background:rgba(212,175,55,.12);
}

.brand__logo{
  border:2px solid rgba(212,175,55,.65);
  box-shadow:0 8px 22px rgba(212,175,55,.20);
}

.btn,
.nav a.btn{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  color:#ffffff;
  border:1px solid rgba(22,163,74,.38);
  box-shadow:0 12px 24px rgba(22,163,74,.22);
}

.btn:hover,
.nav a.btn:hover{
  background:linear-gradient(135deg, #22c55e, var(--accent2));
  color:#ffffff;
  transform:translateY(-1px);
}

.btn--ghost{
  background:#ffffff;
  color:var(--blue);
  border:1px solid rgba(15,23,42,.12);
  box-shadow:none;
}

.btn--ghost:hover{
  background:rgba(22,163,74,.08);
  color:var(--accent2);
  border-color:rgba(22,163,74,.32);
}

.btn--admin{
  background:linear-gradient(135deg, var(--blue), var(--slate)) !important;
  color:#ffffff !important;
  border:1px solid rgba(212,175,55,.40) !important;
  box-shadow:0 12px 28px rgba(7,26,47,.28) !important;
}

.btn--admin:hover{
  filter:brightness(1.06);
}

.hero-full,
.hero-pro{
  background:
    radial-gradient(circle at 18% 12%, rgba(22,163,74,.20), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(212,175,55,.14), transparent 28%),
    linear-gradient(135deg, #071a2f 0%, #0f253a 54%, #14532d 100%);
}

.hero-pro .hero-overlay,
.hero-overlay{
  background:
    radial-gradient(900px 520px at 20% 10%, rgba(22,163,74,.12), transparent 60%),
    radial-gradient(900px 520px at 80% 10%, rgba(212,175,55,.10), transparent 60%),
    linear-gradient(90deg, rgba(7,26,47,.92), rgba(7,26,47,.68), rgba(20,83,45,.50));
  backdrop-filter:blur(10px);
}

.hero-title,
.hero-subtitle,
.hero-text,
.hero-pro__text{
  color:#ffffff;
}

.hero-subtitle,
.hero-pro .lead{
  color:#dbeafe;
}

.hero-pro .badge,
.hero-full .badge{
  background:rgba(220,252,231,.12);
  color:#bbf7d0;
  border:1px solid rgba(187,247,208,.24);
}

.badge{
  background:rgba(7,26,47,.08);
  color:var(--blue);
  border:1px solid rgba(7,26,47,.10);
}

.highlight{
  color:var(--gold);
}

.metric,
.hero-service,
.portrait-card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(226,232,240,.90);
  box-shadow:0 18px 42px rgba(15,23,42,.12);
}

.metric__value,
.hero-service h3{
  color:var(--blue);
}

.card{
  background:#ffffff;
  border:1px solid rgba(148,163,184,.24);
  box-shadow:0 18px 40px rgba(15,23,42,.08);
}

.card:hover{
  box-shadow:0 22px 52px rgba(15,23,42,.13);
}

.section-light{
  background:linear-gradient(180deg, #f8fafc 0%, #eef7f1 100%);
}

.pill{
  background:var(--green-soft);
  color:#166534;
  border:1px solid rgba(22,163,74,.22);
}

.step__num{
  background:linear-gradient(135deg, var(--accent), var(--accent2));
  box-shadow:0 10px 22px rgba(22,163,74,.20);
}

.social__icon{
  background:rgba(7,26,47,.08);
  border:1px solid rgba(15,23,42,.10);
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(22,163,74,.55);
  box-shadow:0 0 0 4px rgba(22,163,74,.10);
}

.footer{
  background:var(--blue);
  color:#dbeafe;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer__inner{
  color:#dbeafe;
}

.nav-toggle{
  color:#ffffff;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.08);
}

.nav-toggle svg{
  color:#ffffff;
}

@media (max-width:820px){
  .mobile-nav__panel{
    background:linear-gradient(180deg, #071a2f 0%, #0f253a 100%);
    color:#ffffff;
    border:1px solid rgba(255,255,255,.12);
  }

  .mobile-nav__title{
    color:#ffffff;
  }

  .mobile-nav__close{
    background:rgba(255,255,255,.10);
    border:1px solid rgba(255,255,255,.14);
    color:#ffffff;
  }

  .mobile-nav__links a{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.10);
    color:#e2e8f0;
  }

  .mobile-nav__links a:hover{
    background:rgba(22,163,74,.16);
    color:#ffffff;
  }

  .mobile-nav__links a.cta{
    background:linear-gradient(135deg, var(--accent), var(--accent2));
    color:#ffffff;
  }

  .mobile-nav__links .mobile-admin{
    border-color:rgba(212,175,55,.30);
    color:#ffffff;
  }
}

@media (max-width:720px){
  .nav a{
    background:rgba(255,255,255,.08);
    color:#e2e8f0;
    border:1px solid rgba(255,255,255,.10);
  }

  .nav a.btn{
    background:linear-gradient(135deg, var(--accent), var(--accent2));
    color:#ffffff;
  }
}

.footer-admin-link {
  color: inherit;
  opacity: .65;
  font-size: .9rem;
  font-weight: 700;
}

.footer-admin-link:hover {
  opacity: 1;
  color: var(--accent);
}

.mobile-nav__section-title {
  margin-top: 10px;
  padding: 8px 4px 2px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.58);
}

.mobile-nav__links .mobile-client {
  border: 1px solid rgba(212, 175, 55, 0.28);
  background: rgba(212, 175, 55, 0.10);
}

.mobile-nav__links .mobile-admin {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  opacity: 0.86;
}

.footer-admin-link {
  color: inherit;
  opacity: .65;
  font-size: .9rem;
  font-weight: 700;
}

.footer-admin-link:hover {
  opacity: 1;
  color: var(--accent);
}