/* ============================================================
   WE Orihuela — Hoja de Estilos Principal
   Diseño corporativo profesional · v2.0
   ============================================================ */

/* ─── DESIGN TOKENS ─────────────────────────────────────────── */
:root {
  /* Paleta corporativa: azul marino profundo + dorado sobrio */
  --primary:        #0B1F3A;   /* azul marino oscuro */
  --primary-mid:    #122B52;   /* azul marino medio */
  --primary-light:  #1C3F78;   /* azul marino claro */
  --accent:         #C8A84B;   /* dorado corporativo */
  --accent-hover:   #A8882F;   /* dorado oscuro */
  --accent-light:   #F5EDD3;   /* dorado muy claro */
  --surface:        #FFFFFF;
  --surface-alt:    #F7F8FA;   /* gris casi blanco */
  --surface-mid:    #EEF1F6;   /* gris claro */
  --border:         #DDE3EC;
  --text-primary:   #0D1B2E;
  --text-secondary: #4A5568;
  --text-muted:     #8A96A8;
  --success:        #1D7A4C;
  --radius-sm:      4px;
  --radius:         8px;
  --radius-lg:      14px;
  --shadow-xs:      0 1px 3px rgba(11,31,58,.08);
  --shadow-sm:      0 2px 8px rgba(11,31,58,.10);
  --shadow:         0 4px 18px rgba(11,31,58,.12);
  --shadow-lg:      0 10px 40px rgba(11,31,58,.16);
  --shadow-xl:      0 20px 64px rgba(11,31,58,.20);
  --transition:     0.22s ease;
  --font-sans:      'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --max-w:          1180px;
}

/* ─── RESET & BASE ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.78;
  color: var(--text-primary);
  background: var(--surface);
}

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

/* ─── TIPOGRAFÍA ─────────────────────────────────────────────── */
h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
h2 {
  font-size: clamp(1.5rem, 3vw, 2.15rem);
  font-weight: 700;
  line-height: 1.28;
  letter-spacing: -0.015em;
}
h3 {
  font-size: clamp(1.1rem, 2vw, 1.42rem);
  font-weight: 600;
  line-height: 1.35;
  letter-spacing: -0.01em;
}
h4 { font-size: 1.08rem; font-weight: 600; }

p        { margin-bottom: 1.1rem; }
strong   { font-weight: 700; color: var(--primary); }
ul       { padding-left: 1.4rem; margin-bottom: 1.1rem; }
li       { margin-bottom: .45rem; }

.lead {
  font-size: 1.17rem;
  color: var(--text-secondary);
  font-weight: 400;
  line-height: 1.7;
  margin-bottom: 1.8rem;
}

/* ─── LAYOUT ─────────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 80px 0; }
.section-alt { background: var(--surface-alt); }
.bg-white   { background: var(--surface); }
.bg-dark    { background: var(--primary); }
.bg-light   { background: var(--surface-alt); }
.text-center { text-align: center; }
.text-white  { color: #fff; }

/* ─── SECTION HEADER ─────────────────────────────────────────── */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: transparent;
  border: 1.5px solid var(--accent);
  color: var(--accent-hover);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: .3rem .9rem;
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
}
.section-title   { margin-bottom: .9rem; }
.section-sub {
  color: var(--text-secondary);
  font-size: 1.08rem;
  max-width: 640px;
  margin: 0 auto 2.8rem;
  line-height: 1.68;
}

/* ─── BOTONES ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .78rem 2rem;
  border-radius: var(--radius);
  font-size: .97rem;
  font-weight: 700;
  letter-spacing: .01em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(200,168,75,.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  box-shadow: 0 6px 20px rgba(200,168,75,.45);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.btn-primary-dark {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}
.btn-primary-dark:hover {
  background: var(--primary-mid);
  border-color: var(--primary-mid);
  transform: translateY(-1px);
}

.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
  box-shadow: 0 4px 14px rgba(200,168,75,.35);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-lg   { padding: 1.05rem 2.6rem; font-size: 1.05rem; }
.btn-nav  {
  background: var(--accent);
  color: var(--primary) !important;
  border-radius: var(--radius);
  padding: .45rem 1.2rem !important;
  font-weight: 700;
}
.btn-nav:hover { background: var(--accent-hover) !important; }

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,.07);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 20px rgba(0,0,0,.28);
}

/* Thin top accent line */
.navbar::before {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, #E8C96A 50%, var(--accent) 100%);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 1rem;
}

/* Logo */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-weight: 800;
  font-size: 1.25rem;
  letter-spacing: -.02em;
  color: #fff;
  flex-shrink: 0;
}
.navbar-logo .logo-badge {
  background: var(--accent);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .9rem;
  font-weight: 900;
  letter-spacing: 0;
}
.navbar-logo .logo-text span { color: var(--accent); }

/* Nav links */
.navbar-menu {
  display: flex;
  align-items: center;
  gap: .15rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.navbar-menu > li { position: relative; }
.navbar-menu > li > a,
.navbar-menu > li > span {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .85rem;
  color: rgba(255,255,255,.80);
  font-weight: 500;
  font-size: .93rem;
  letter-spacing: .01em;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}
.navbar-menu > li > a:hover,
.navbar-menu > li > span:hover,
.navbar-menu > li:hover > a,
.navbar-menu > li:hover > span {
  color: var(--accent);
  background: rgba(200,168,75,.10);
}
.navbar-menu > li > a.active { color: var(--accent); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  min-width: 220px;
  padding: .6rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--transition);
  z-index: 100;
}
.navbar-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown a {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .65rem 1.2rem;
  color: var(--text-primary);
  font-size: .93rem;
  font-weight: 500;
  transition: all var(--transition);
}
.dropdown a:hover {
  background: var(--surface-alt);
  color: var(--primary-light);
}
.dropdown a::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* Mobile toggle */
.navbar-toggle, .menu-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: var(--radius-sm);
  cursor: pointer;
  padding: 6px 10px;
  color: #fff;
  font-size: 1.3rem;
  line-height: 1;
  transition: all var(--transition);
}
.navbar-toggle:hover, .menu-toggle:hover {
  background: rgba(255,255,255,.1);
}

/* ─── HERO (Home) ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to right,
      rgba(8,18,35,.88) 0%,
      rgba(11,31,58,.72) 55%,
      rgba(11,31,58,.40) 100%
    ),
    url('https://upload.wikimedia.org/wikipedia/commons/thumb/e/e8/Orihuela_-_Catedral_del_Salvador_y_Santa_Mar%C3%ADa_1.jpg/1280px-Orihuela_-_Catedral_del_Salvador_y_Santa_Mar%C3%ADa_1.jpg')
    center / cover no-repeat;
  padding: 110px 0 90px;
  color: #fff;
}

/* Subtle bottom divider */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.hero-content { max-width: 700px; }
.hero h1 {
  color: #fff;
  margin-bottom: .7rem;
  text-shadow: 0 2px 12px rgba(0,0,0,.35);
}
.hero-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,.82);
  margin-bottom: 2.2rem;
  font-weight: 400;
  line-height: 1.65;
  max-width: 560px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(200,168,75,.15);
  border: 1px solid rgba(200,168,75,.40);
  border-radius: var(--radius-sm);
  padding: .35rem 1rem;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 1.4rem;
  color: var(--accent);
  backdrop-filter: blur(6px);
}

/* ─── HERO páginas internas ──────────────────────────────────── */
.hero-inner {
  padding: 72px 0 64px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.hero-inner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.hero-inner h1     { color: #fff; margin-bottom: .65rem; }
.hero-inner .hero-subtitle { font-size: 1.1rem; color: rgba(255,255,255,.78); }

.hero-autonomos {
  background: linear-gradient(135deg, #080F1E 0%, #0F2040 50%, #132A58 100%);
}
.hero-pymes {
  background: linear-gradient(135deg, #07131E 0%, #0B2035 50%, #0F2D50 100%);
}
.hero-seo {
  background: linear-gradient(135deg, #100818 0%, #1E1230 50%, #291950 100%);
}
.hero-diseno {
  background: linear-gradient(135deg, #071810 0%, #0A2016 50%, #102E1E 100%);
}
.hero-zona {
  background: linear-gradient(135deg, #1A1408 0%, #26200E 50%, #2E2A12 100%);
}
.hero-contacto {
  background: linear-gradient(135deg, #080F1A 0%, #0B1F38 50%, #0F2952 100%);
}

/* Hero inner decorative element */
.hero-inner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  opacity: .5;
}

/* ─── TRUST CARDS ────────────────────────────────────────────── */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.trust-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.6rem;
  text-align: center;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.trust-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
}
.trust-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.trust-card .icon { font-size: 2rem; margin-bottom: .9rem; }
.trust-card h3    { margin-bottom: .4rem; font-size: 1.08rem; }
.trust-card p     { color: var(--text-secondary); font-size: .93rem; margin: 0; }

/* ─── PRICING ────────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 2rem;
  margin-top: 2.5rem;
}
.price-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.4rem 2rem 2.2rem;
  position: relative;
  transition: all var(--transition);
}
.price-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.price-card.featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(200,168,75,.22);
}
.price-card.featured:hover {
  box-shadow: 0 12px 44px rgba(200,168,75,.30);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--primary);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .26rem 1rem;
  border-radius: 99px;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(200,168,75,.40);
}
.price-name {
  font-size: .78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .7rem;
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -.03em;
  margin-bottom: .3rem;
}
.price-amount span { font-size: 1.4rem; vertical-align: top; margin-top: .45rem; display: inline-block; }
.price-consult     { font-size: 1.2rem; font-weight: 700; color: var(--text-secondary); margin-bottom: .3rem; }
.price-period      { font-size: .85rem; color: var(--text-muted); margin-bottom: 1.6rem; }

.price-features        { list-style: none; padding: 0; margin: 0 0 2rem; }
.price-features li {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
  padding: .55rem 0;
  font-size: .95rem;
  border-bottom: 1px solid var(--surface-mid);
}
.price-features li:last-child { border-bottom: none; }
.price-features li::before {
  content: '';
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: var(--success);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='white'%3E%3Cpath d='M2 6l3 3 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}
.price-features li.no::before {
  background: var(--surface-mid);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' fill='%238A96A8'%3E%3Cpath d='M2 2l8 8M10 2l-8 8' stroke='%238A96A8' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 8px;
}

/* ─── STATS ──────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-number {
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  display: block;
  letter-spacing: -.03em;
}
.stat-item .stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  margin-top: .5rem;
  font-weight: 400;
  line-height: 1.45;
}

/* ─── DIFFERENTIALS ──────────────────────────────────────────── */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(248px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.diff-item {
  display: flex;
  gap: 1.1rem;
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: all var(--transition);
}
.diff-item:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}
.diff-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--accent-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-hover);
}
.diff-text h3  { margin-bottom: .3rem; font-size: 1.02rem; }
.diff-text p   { font-size: .92rem; color: var(--text-secondary); margin: 0; }

/* ─── SPECIALTY CARDS ────────────────────────────────────────── */
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.spec-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.8rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.spec-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
}
.spec-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--accent);
}
.spec-card h3   { margin-bottom: .6rem; color: var(--primary); font-size: 1.1rem; }
.spec-card p    { font-size: .95rem; color: var(--text-secondary); margin-bottom: 1.1rem; }
.spec-card .arrow-link { font-weight: 700; color: var(--accent-hover); font-size: .93rem; }
.spec-card .arrow-link:hover { color: var(--primary); }

/* ─── ZONE CARDS ─────────────────────────────────────────────── */
.zones-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
  margin-top: 2rem;
}
.zone-card {
  background: var(--primary-mid);
  color: #fff;
  border: 1px solid rgba(200,168,75,.15);
  border-radius: var(--radius-lg);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.zone-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  opacity: 0;
  transition: opacity var(--transition);
}
.zone-card:hover {
  background: var(--primary-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.zone-card:hover::before { opacity: 1; }
.zone-card .zone-icon   { font-size: 1.8rem; margin-bottom: .7rem; }
.zone-card h3           { color: #fff; margin-bottom: .45rem; font-size: 1.05rem; }
.zone-card p            { font-size: .9rem; color: rgba(255,255,255,.65); margin: 0; }

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
  margin-top: 2rem;
}
.testi-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  position: relative;
  transition: all var(--transition);
}
.testi-card:hover { box-shadow: var(--shadow-lg); border-color: var(--accent); }
.testi-card::before {
  content: '"';
  position: absolute;
  top: 1rem; right: 1.4rem;
  font-size: 4.5rem;
  color: var(--accent-light);
  font-family: Georgia, serif;
  line-height: 1;
}
.stars              { color: var(--accent); font-size: .9rem; margin-bottom: .85rem; letter-spacing: .05em; }
.testi-author {
  display: flex;
  align-items: center;
  gap: .9rem;
  margin-top: 1.3rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-author img {
  width: 46px; height: 46px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}
.testi-author .author-info strong { display: block; font-size: .97rem; }
.testi-author .author-info span   { font-size: .85rem; color: var(--text-muted); }

/* ─── PROCESS ────────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0;
  margin-top: 2.5rem;
  position: relative;
}
.process-step {
  text-align: center;
  padding: 1.6rem 1.2rem;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -10px;
  top: 2.2rem;
  font-size: 1.4rem;
  color: var(--accent);
  z-index: 1;
}
.step-num {
  width: 54px; height: 54px;
  background: var(--accent);
  color: var(--primary);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  box-shadow: 0 4px 14px rgba(200,168,75,.40);
}
.process-step h3 { font-size: 1rem; margin-bottom: .4rem; }
.process-step p  { font-size: .9rem; color: var(--text-secondary); margin: 0; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq-list   { margin-top: 2rem; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .9rem;
  overflow: hidden;
  transition: border-color var(--transition);
}
.faq-item:has(.faq-question.open) { border-color: var(--accent); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.2rem 1.5rem;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  transition: background var(--transition);
  font-family: var(--font-sans);
}
.faq-question:hover { background: var(--surface-alt); }
.faq-question .faq-icon {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.3rem;
  color: var(--text-secondary);
  font-size: .97rem;
  line-height: 1.72;
  border-top: 1px solid var(--surface-mid);
}
.faq-answer.open { display: block; }

/* details/summary FAQ (blog articles) */
details.faq-item { cursor: pointer; }
details.faq-item summary {
  padding: 1.1rem 1.5rem;
  font-weight: 600;
  color: var(--primary);
  font-size: 1rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
details.faq-item summary::-webkit-details-marker { display: none; }
details.faq-item summary::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}
details.faq-item[open] summary::after { content: '×'; }
details.faq-item p {
  padding: .5rem 1.5rem 1.2rem;
  color: var(--text-secondary);
  font-size: .97rem;
  line-height: 1.7;
  border-top: 1px solid var(--surface-mid);
  margin: 0;
}

/* ─── CTA SECTION ────────────────────────────────────────────── */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
  padding: 88px 0;
  position: relative;
  overflow: hidden;
}
/* subtle dot pattern overlay */
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(200,168,75,.08) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}
.cta-section h2    { color: #fff; margin-bottom: 1rem; }
.cta-section p     { color: rgba(255,255,255,.78); font-size: 1.08rem; margin-bottom: 2.2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ─── MAP ────────────────────────────────────────────────────── */
.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 2rem;
  border: 1px solid var(--border);
}
.map-container iframe { display: block; width: 100%; height: 420px; border: none; }

/* ─── CONTACT CARDS ──────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--transition);
}
.contact-card:hover {
  border-color: var(--accent);
  box-shadow: var(--shadow);
}
.contact-card .c-icon { font-size: 2.2rem; margin-bottom: 1rem; }
.contact-card h3      { margin-bottom: .45rem; }
.contact-card a       { color: var(--primary-light); font-weight: 600; }
.contact-card a:hover { color: var(--accent-hover); }

/* ─── PHASES ─────────────────────────────────────────────────── */
.phases-list  { margin-top: 2rem; }
.phase-item {
  display: flex;
  gap: 1.2rem;
  padding: 1.4rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: .9rem;
  transition: all var(--transition);
}
.phase-item:hover { border-color: var(--accent); box-shadow: var(--shadow-sm); }
.phase-num {
  width: 42px; height: 42px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.phase-content h3 { margin-bottom: .25rem; font-size: 1.02rem; }
.phase-content p  { color: var(--text-secondary); font-size: .94rem; margin: 0; }

/* ─── FLOATING CTA ───────────────────────────────────────────── */
.floating-cta {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  box-shadow: 0 4px 18px rgba(0,0,0,.30);
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  position: relative;
}
.float-btn:hover { transform: scale(1.10); }
.float-phone { background: var(--accent); color: var(--primary); }
.float-wa    { background: #25D366; color: #fff; }

.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  width: 54px; height: 54px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0,0,0,.28);
  transition: all var(--transition);
}
.whatsapp-float:hover {
  background: #20b95d;
  transform: scale(1.10);
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
}

.float-tooltip {
  position: absolute;
  left: 66px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--primary);
  color: #fff;
  font-size: .8rem;
  font-weight: 600;
  padding: .32rem .8rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.float-btn:hover .float-tooltip { opacity: 1; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer,
footer {
  background: var(--primary);
  color: rgba(255,255,255,.65);
  padding: 52px 0 28px;
  border-top: 3px solid var(--accent);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
footer h4, .footer h4 { color: rgba(255,255,255,.90); margin-bottom: .9rem; font-size: .95rem; letter-spacing: .04em; text-transform: uppercase; }
footer ul, .footer ul { list-style: none; padding: 0; }
footer ul li, .footer ul li { margin-bottom: .45rem; }
footer ul li a, .footer ul li a {
  color: rgba(255,255,255,.55);
  font-size: .92rem;
  transition: color var(--transition);
}
footer ul li a:hover, .footer ul li a:hover { color: var(--accent); }
.footer-brand p { font-size: .9rem; line-height: 1.65; margin-top: .7rem; color: rgba(255,255,255,.55); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.10);
  padding-top: 1.2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  font-size: .85rem;
  color: rgba(255,255,255,.40);
}
footer p a { color: rgba(255,255,255,.80); }
footer p a:hover { color: var(--accent); }

/* ─── RICH TEXT ──────────────────────────────────────────────── */
.rich-text h3 { margin-top: 1.8rem; margin-bottom: .6rem; color: var(--primary); }
.rich-text h2 { margin-top: 2.5rem; margin-bottom: .9rem; }
.rich-text p  { margin-bottom: 1rem; }

/* ─── BLOG CARDS ─────────────────────────────────────────────── */
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
  transform: translateY(-4px);
}
.blog-card-img { width: 100%; height: 200px; object-fit: cover; display: block; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { font-size: .8rem; color: var(--text-muted); margin-bottom: .5rem; }
.blog-card-title {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: .6rem;
  line-height: 1.38;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: var(--primary-light); }
.blog-card-excerpt { font-size: .92rem; color: var(--text-secondary); margin-bottom: 1rem; line-height: 1.6; }
.blog-card-tags { display: flex; flex-wrap: wrap; gap: .4rem; margin-bottom: 1rem; }
.tag {
  background: var(--accent-light);
  color: var(--accent-hover);
  font-size: .72rem;
  font-weight: 700;
  padding: .22rem .65rem;
  border-radius: var(--radius-sm);
  letter-spacing: .03em;
}
.read-more {
  font-weight: 700;
  color: var(--accent-hover);
  font-size: .9rem;
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  transition: color var(--transition);
}
.read-more:hover { color: var(--primary); }

/* ─── ARTICLE STYLES ─────────────────────────────────────────── */
.article-hero {
  background: var(--primary) !important;
  padding: 60px 0 50px;
  color: #fff;
  position: relative;
}
.article-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.article-hero h1 { color: #fff; margin-bottom: .6rem; }
.article-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}
.article-img img { width: 100%; height: 420px; object-fit: cover; display: block; }
.article-body { max-width: 820px; margin: 0 auto; }
.article-body h2 { margin-top: 2.5rem; margin-bottom: .8rem; color: var(--primary); }
.article-body h3 { margin-top: 1.8rem; margin-bottom: .5rem; color: var(--primary-mid); }
.article-body p  { margin-bottom: 1.1rem; }
.article-body ul, .article-body ol { margin-bottom: 1.2rem; }
.article-body li { margin-bottom: .5rem; }
.breadcrumb { font-size: .86rem; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: var(--accent); }

.tip-box {
  background: var(--accent-light);
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}
.tip-box strong { color: var(--accent-hover); }

.warning-box {
  background: #FFF8E6;
  border-left: 3px solid var(--accent);
  padding: 1.2rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 1.5rem 0;
}

.article-cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  margin: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover), var(--accent));
}
.article-cta h3  { color: #fff; margin-bottom: .6rem; }
.article-cta p   { color: rgba(255,255,255,.78); margin-bottom: 1.4rem; }

/* Related posts */
.related-posts { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 1.5rem; margin-top: 2rem; }
.related-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.related-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--accent); }
.related-card img   { width: 100%; height: 140px; object-fit: cover; }
.related-card-body  { padding: 1rem 1.1rem; }
.related-card h4    { font-size: .95rem; margin-bottom: .4rem; color: var(--primary); }
.related-card a     { font-weight: 700; font-size: .86rem; color: var(--accent-hover); }
.related-card a:hover { color: var(--primary); }

/* stat-row inside articles */
.stat-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
}
.stat-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.4rem 1.2rem;
  text-align: center;
}
.stat-box .num { font-size: 2.1rem; font-weight: 900; color: var(--accent); letter-spacing: -.02em; display: block; }
.stat-box p    { margin: .4rem 0 0; font-size: .83rem; color: rgba(255,255,255,.70); line-height: 1.45; }

/* steps list */
.steps-list { counter-reset: step-counter; list-style: none; padding: 0; }
.steps-list li {
  counter-increment: step-counter;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
  background: var(--surface-alt);
  padding: 1rem 1.2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.steps-list li::before {
  content: counter(step-counter);
  background: var(--accent);
  color: var(--primary);
  font-weight: 800;
  width: 2rem; height: 2rem;
  min-width: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .88rem;
}

/* speed table */
.speed-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.speed-table th { background: var(--primary); color: #fff; padding: .8rem 1rem; text-align: left; font-size: .92rem; }
.speed-table td { padding: .72rem 1rem; border-bottom: 1px solid var(--border); font-size: .93rem; }
.speed-table tr:nth-child(even) { background: var(--surface-alt); }
.speed-table .good   { color: var(--success); font-weight: 700; }
.speed-table .medium { color: #D97706; font-weight: 700; }
.speed-table .bad    { color: #DC2626; font-weight: 700; }

/* compare grid */
.compare-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin: 2rem 0; }
@media(max-width:600px){ .compare-grid { grid-template-columns: 1fr; } }
.compare-card { border-radius: var(--radius-lg); padding: 1.5rem; border: 2px solid; }
.compare-card.social { border-color: #E1306C; background: #FFF5F8; }
.compare-card.web    { border-color: var(--primary); background: var(--surface-alt); }
.compare-card h3     { margin-top: 0; }
.compare-card.social h3 { color: #C0255A; }
.compare-card.web h3    { color: var(--primary); }
.compare-card .pros { color: var(--success); }
.compare-card .cons { color: #DC2626; }

.verdict-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
  text-align: center;
}
.verdict-box h3 { color: var(--accent); margin-bottom: .6rem; }

/* template box */
.template-box {
  background: var(--surface-alt);
  border: 1.5px dashed var(--border);
  padding: 1.4rem;
  border-radius: var(--radius);
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--text-primary);
}
.template-box strong { font-style: normal; color: var(--primary); display: block; margin-bottom: .5rem; }

/* formula box */
.formula-box {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  margin: 2rem 0;
}
.formula-box h3 { color: var(--accent); margin-bottom: 1rem; }
.formula-box ol { margin: 0; padding-left: 1.3rem; }
.formula-box li { color: rgba(255,255,255,.88); margin-bottom: .6rem; }

/* example box */
.example-box {
  background: var(--surface-alt);
  border-radius: var(--radius);
  padding: 1.4rem;
  margin: 1.5rem 0;
  border-left: 3px solid var(--accent);
}
.example-box .bad  { color: #DC2626; text-decoration: line-through; }
.example-box .good { color: var(--success); font-weight: 700; }

/* faq-section inside blog */
.faq-section { background: var(--surface-alt); padding: 2rem; border-radius: var(--radius-lg); margin: 3rem 0; }

/* article meta */
.article-meta { display: flex; gap: 1rem; flex-wrap: wrap; color: rgba(255,255,255,.60); font-size: .86rem; margin-top: .8rem; }

/* blog index hero */
.blog-hero {
  background: var(--primary) !important;
  padding: 72px 0 64px;
  color: #fff;
  text-align: center;
  position: relative;
}
.blog-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}
.blog-hero h1 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: .7rem; }
.blog-hero p  { color: rgba(255,255,255,.72); font-size: 1.08rem; max-width: 600px; margin: 0 auto; }
.blog-grid    { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 2rem; margin-top: 3rem; }

/* ─── FADE-IN ANIMATION ──────────────────────────────────────── */
.fade-in { opacity: 0; transform: translateY(16px); transition: opacity .5s ease, transform .5s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .navbar-menu, .navbar-cta { display: none; }
  .navbar-toggle, .menu-toggle { display: flex; }

  .navbar-menu.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 68px;
    left: 0; right: 0;
    background: var(--primary);
    padding: .5rem 0 1.2rem;
    gap: 0;
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
    border-top: 1px solid rgba(255,255,255,.08);
  }
  .navbar-menu.open > li { width: 100%; }
  .navbar-menu.open > li > a,
  .navbar-menu.open > li > span {
    border-radius: 0;
    padding: .8rem 1.4rem;
  }
  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.05);
    border-radius: 0;
    border: none;
    padding: 0;
  }
  .dropdown a {
    color: rgba(255,255,255,.65);
    padding: .6rem 2rem;
    font-size: .9rem;
  }
  .dropdown a:hover { background: rgba(255,255,255,.07); color: var(--accent); }
  .dropdown a::before { background: rgba(200,168,75,.6); }

  .process-step:not(:last-child)::after { display: none; }
  .process-grid  { grid-template-columns: 1fr; gap: .8rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 1.6rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  h1 { font-size: 1.9rem; }
  h2 { font-size: 1.52rem; }
  .hero { min-height: 72vh; padding: 80px 0 60px; }
  .hero-btns  { flex-direction: column; align-items: flex-start; }
  .cta-btns   { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .pricing-grid, .diff-grid, .zones-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr 1fr; }
}
