/* ============================================
   RepararElPC Benidorm — CSS Principal
   Colores marca: morado #7C3AED / blanco / negro
   ============================================ */



:root {
  /* ── Colores marca RepararElPC ── */
  --purple:      #7C3AED;
  --purple-dark: #6D28D9;
  --purple-light:#f5f3ff;
  --purple-mid:  #ede9fe;
  --text-on-purple: #3b0764;
  --cta-bg:      #f3e8ff;
  --navy:        #1a1a1a;
  --navy-dark:   #111111;
  --green:       #25D366;
  --green-dark:  #1ea952;
  --orange:      #f59e0b;
  --red:         #e63946;
  --white:       #ffffff;
  --gray-50:     #fafafa;
  --gray-100:    #f5f5f5;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-600:    #6b7280;
  --gray-800:    #374151;
  --text:        #1a1a1a;
  --text-muted:  #6b7280;
  --radius:      8px;
  --radius-lg:   12px;
  --shadow:      0 2px 12px rgba(0,0,0,.08);
  --shadow-lg:   0 8px 32px rgba(0,0,0,.12);
  --transition:  .2s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: #fff;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple); text-decoration: none; }
a:hover { color: var(--purple-dark); }

h1, h2, h3, h4 {
  font-family: 'Barlow', sans-serif;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(1.7rem, 4vw, 2.6rem); font-weight: 800; }
h2 { font-size: clamp(1.3rem, 3vw, 1.9rem); font-weight: 700; margin-bottom: .75rem; }
h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: .5rem; }
p  { margin-bottom: 1rem; }
ul, ol { padding-left: 1.4rem; margin-bottom: 1rem; }
li { margin-bottom: .4rem; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
.container-sm { max-width: 780px; margin: 0 auto; padding: 0 20px; }

/* ── HEADER TOP ── */
.header-top {
  background: #fff;
  border-bottom: 1px solid var(--gray-200);
  padding: 10px 0;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-contacts { display: flex; gap: 28px; align-items: center; }
.header-contact-item { display: flex; align-items: center; gap: 10px; }
.header-contact-icon { font-size: 22px; }
.header-contact-label { font-size: .72rem; color: var(--gray-600); text-transform: uppercase; font-weight: 600; letter-spacing: .05em; }
.header-contact-num { font-size: .95rem; font-weight: 700; color: var(--purple); }
.header-contact-num.green { color: var(--green-dark); }

/* ── HEADER NAV ── */
.site-header-nav {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
}
nav.main-nav {
  display: flex;
  gap: 0;
  align-items: center;
}
nav.main-nav a {
  color: rgba(255,255,255,.75);
  padding: 12px 16px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .03em;
  text-transform: uppercase;
  border-right: 1px solid rgba(255,255,255,.06);
  transition: var(--transition);
}
nav.main-nav a:hover,
nav.main-nav a.active {
  background: rgba(255,255,255,.08);
  color: #fff;
}

/* hamburger mobile */
.hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  padding: 5px; background: none; border: none;
}
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }
.mobile-nav { display: none; background: var(--navy-dark); padding: 8px 0; }
.mobile-nav a { display: block; color: rgba(255,255,255,.8); padding: 11px 20px; font-size: .9rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,.05); }
.mobile-nav a:hover { color: #fff; background: rgba(255,255,255,.06); }
.mobile-nav.open { display: block; }

/* ── HERO (estilo repararelpc: blanco, features laterales) ── */
.hero {
  background: #fff;
  padding: 48px 0 20px;
}
.hero h1 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--navy);
}
.hero-layout { min-height: 320px;
  display: grid;
  grid-template-columns: 1fr 280px 1fr;
  gap: 16px;
  align-items: center;
  margin-bottom: 40px;
}
.hero-features { display: flex; flex-direction: column; gap: 22px; }
.hero-feature { display: flex; align-items: flex-start; gap: 10px; }
.hero-feature.right { flex-direction: row; }
.hero-feature.left  { flex-direction: row-reverse; text-align: right; }
.feat-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--purple); flex-shrink: 0; margin-top: 5px;
}
.feat-title { font-size: .82rem; font-weight: 700; text-transform: uppercase; letter-spacing: .04em; color: var(--navy); margin-bottom: 4px; }
.feat-desc  { font-size: .85rem; color: var(--text-muted); line-height: 1.5; }
.hero-img-wrap { text-align: center; }
.hero-img-wrap img { max-width: 100%; border-radius: var(--radius); }
.hero-img-placeholder {
  background: var(--gray-100);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 64px;
}

/* ── CTA BOX (fondo lila suave, como repararelpc) ── */
.cta-box {
  background: var(--cta-bg);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  margin: 0 0 48px;
}
.cta-box h2 {
  font-style: italic;
  color: var(--navy);
  margin-bottom: 8px;
  font-size: 1.5rem;
}
.cta-box .tagline { color: #374151; font-size: .95rem; margin-bottom: 6px; }
.cta-box .tagline strong { color: var(--navy); }
.cta-stars { font-size: 1.5rem; color: var(--orange); margin: 12px 0 4px; }
.cta-rating-label { font-size: .82rem; color: var(--gray-600); margin-bottom: 22px; }
.btn-wa-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--green); color: #fff;
  padding: 14px 32px; border-radius: var(--radius);
  font-size: 1rem; font-weight: 700; margin-bottom: 10px;
  transition: var(--transition);
}
.btn-wa-cta:hover { background: var(--green-dark); color: #fff; }
.cta-hint { font-size: .78rem; color: var(--gray-600); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 22px; border-radius: var(--radius);
  font-size: .92rem; font-weight: 600;
  cursor: pointer; border: none; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--purple); color: #fff; }
.btn-primary:hover { background: var(--purple-dark); color: #fff; }
.btn-wa { background: var(--green); color: #fff; }
.btn-wa:hover { background: var(--green-dark); color: #fff; }
.btn-outline { background: transparent; border: 2px solid var(--purple); color: var(--purple); }
.btn-outline:hover { background: var(--purple-light); }
.btn-outline-white { background: transparent; border: 2px solid rgba(255,255,255,.5); color: #fff; }
.btn-outline-white:hover { border-color: #fff; }
.btn-lg { padding: 14px 28px; font-size: 1rem; }
.btn-sm { padding: 7px 14px; font-size: .8rem; }

/* ── SECTIONS ── */
section { padding: 56px 0; }
section.bg-gray { background: var(--gray-50); }
section.bg-navy { background: var(--navy); color: #fff; }
section.bg-navy h2, section.bg-navy h3 { color: #fff; }
.section-header { text-align: center; margin-bottom: 40px; }
.section-header p { color: var(--text-muted); font-size: 1rem; max-width: 540px; margin: 0 auto; }
.section-tag {
  display: inline-block;
  background: var(--purple-mid);
  color: var(--purple-dark);
  font-size: .72rem; font-weight: 700;
  letter-spacing: .06em; padding: 4px 12px;
  border-radius: 99px; text-transform: uppercase; margin-bottom: 10px;
}

/* ── SERVICES GRID ── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.service-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 26px 22px;
  transition: var(--transition); position: relative; overflow: hidden;
}
.service-card:hover { border-color: var(--purple); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--purple); opacity: 0; transition: var(--transition);
}
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 46px; height: 46px; background: var(--purple-light);
  border-radius: 11px; display: flex; align-items: center;
  justify-content: center; font-size: 20px; margin-bottom: 14px;
}
.service-card h3 { margin-bottom: 6px; }
.service-card p { color: var(--text-muted); font-size: .88rem; margin-bottom: 12px; }
.service-price { font-size: 1.25rem; font-weight: 800; color: var(--purple); font-family: 'Barlow', sans-serif; }
.service-price span { font-size: .82rem; font-weight: 400; color: var(--text-muted); }

/* ── TRUST BAR ── */
.trust-bar { display: flex; background: var(--purple); flex-wrap: wrap; }
.trust-item { flex: 1; min-width: 150px; padding: 26px 20px; border-right: 1px solid rgba(255,255,255,.15); text-align: center; color: rgba(255,255,255,.9); }
.trust-item:last-child { border-right: none; }
.trust-item .num { font-family: 'Barlow', sans-serif; font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 5px; }
.trust-item p { font-size: .82rem; color: rgba(255,255,255,.85); margin: 0; }

/* ── CTA BAND ── */
.cta-band { background: var(--purple); color: #fff; padding: 48px 0; text-align: center; }
.cta-band h2 { color: #fff; margin-bottom: 10px; }
.cta-band p  { color: rgba(255,255,255,.85); margin-bottom: 26px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-cta-white { background: #fff; color: var(--purple); font-weight: 700; }
.btn-cta-white:hover { background: var(--gray-100); color: var(--purple-dark); }
.btn-cta-ghost { background: transparent; border: 2px solid rgba(255,255,255,.55); color: #fff; font-weight: 600; }
.btn-cta-ghost:hover { border-color: #fff; }

/* ── ZONES ── */
.zones-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; }
.zone-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); padding: 18px; text-align: center;
  transition: var(--transition); color: var(--text); display: block;
}
.zone-card:hover { border-color: var(--purple); background: var(--purple-light); color: var(--purple-dark); transform: translateY(-2px); }
.zone-card .zone-pin { font-size: 20px; margin-bottom: 6px; }
.zone-card h3 { font-size: .9rem; margin-bottom: 0; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; }
.blog-card {
  background: #fff; border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: var(--transition); display: flex; flex-direction: column;
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.blog-card-date { font-size: .76rem; color: var(--gray-600); margin-bottom: 7px; }
.blog-card h3 { font-size: .96rem; margin-bottom: 7px; color: var(--navy); }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--purple); }
.blog-card p { color: var(--text-muted); font-size: .86rem; flex: 1; }
.blog-card-footer { padding: 12px 20px; border-top: 1px solid var(--gray-100); }
.read-more { font-size: .83rem; font-weight: 600; color: var(--purple); display: flex; align-items: center; gap: 5px; }

/* ── FAQ ── */
.faq-list { max-width: 740px; margin: 0 auto; }
.faq-item { border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 9px; overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; text-align: left;
  padding: 15px 18px; font-size: .92rem; font-weight: 600; color: var(--navy);
  cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 10px;
  font-family: 'Poppins', sans-serif;
}
.faq-q:hover { background: var(--gray-50); }
.faq-q .arrow { transition: transform .2s; font-size: 1rem; color: var(--purple); flex-shrink: 0; }
.faq-item.open .faq-q { background: var(--purple-light); }
.faq-item.open .faq-q .arrow { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 18px 14px; font-size: .88rem; color: var(--text-muted); line-height: 1.7; }
.faq-item.open .faq-a { display: block; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
.contact-info-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 22px; }
.contact-info-icon { width: 42px; height: 42px; background: var(--purple-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 18px; flex-shrink: 0; }
.form-group { margin-bottom: 15px; }
.form-group label { display: block; font-size: .83rem; font-weight: 600; color: var(--gray-800); margin-bottom: 5px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 11px 13px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: .9rem; font-family: 'Poppins', sans-serif;
  color: var(--text); transition: var(--transition); background: #fff;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.alert { padding: 13px 16px; border-radius: var(--radius); margin-bottom: 18px; font-size: .9rem; }
.alert-success { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.alert-error   { background: #fef2f2; border: 1px solid #fecaca; color: #7f1d1d; }

/* ── LANDING ── */
.landing-hero { background: var(--purple); color: #fff; padding: 50px 0 42px; }
.landing-hero h1 { color: #fff; margin-bottom: 13px; }
.landing-hero p  { color: rgba(255,255,255,.82); max-width: 580px; }
.landing-hero .hero-actions { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.landing-content { padding: 50px 0; }
.landing-layout { display: grid; grid-template-columns: 1fr 300px; gap: 44px; align-items: start; }
.landing-body h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: .6rem; padding-top: .8rem; border-top: 2px solid var(--gray-100); }
.landing-body h2:first-child { border-top: none; margin-top: 0; }
.landing-body ul li { color: var(--text-muted); }
.sidebar-cta { background: var(--purple); border-radius: var(--radius-lg); padding: 26px 22px; color: #fff; text-align: center; position: sticky; top: 80px; }
.sidebar-cta h3 { color: #fff; margin-bottom: 7px; font-size: 1.05rem; }
.sidebar-cta p  { color: rgba(255,255,255,.75); font-size: .86rem; margin-bottom: 18px; }
.sidebar-cta .btn { width: 100%; justify-content: center; margin-bottom: 8px; }
.sidebar-tel { color: rgba(255,255,255,.9); font-size: 1.15rem; font-weight: 700; font-family: 'Barlow', sans-serif; display: block; margin-top: 14px; }

/* ── BREADCRUMB ── */
.breadcrumb { padding: 9px 0; font-size: .8rem; color: rgba(255,255,255,.55); display: flex; gap: 6px; flex-wrap: wrap; }
.breadcrumb a { color: rgba(255,255,255,.65); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep { opacity: .4; }

/* ── BLOG POST ── */
.post-header { background: var(--purple); color: #fff; padding: 46px 0 38px; }
.post-header h1 { color: #fff; margin-bottom: 12px; }
.post-meta { color: rgba(255,255,255,.6); font-size: .83rem; }
.post-body { padding: 50px 0; }
.post-body .container-sm h2 { font-size: 1.4rem; margin-top: 2rem; margin-bottom: .65rem; padding-top: .8rem; border-top: 2px solid var(--gray-100); color: var(--navy); }
.post-body .container-sm h2:first-child { border-top: none; margin-top: 0; }
.post-body .container-sm h3 { margin-top: 1.4rem; margin-bottom: .45rem; }
.post-body .container-sm ul, .post-body .container-sm ol { color: var(--text-muted); }

/* ── FOOTER ── */
.site-footer { background: var(--navy-dark); color: rgba(255,255,255,.65); padding: 48px 0 22px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-col h4 { color: #fff; font-size: .82rem; font-weight: 600; margin-bottom: 13px; letter-spacing: .05em; text-transform: uppercase; font-family: 'Poppins', sans-serif; }
.footer-col p  { font-size: .86rem; margin-bottom: 12px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col ul li { margin-bottom: 7px; }
.footer-col ul a { color: rgba(255,255,255,.5); font-size: .86rem; transition: var(--transition); }
.footer-col ul a:hover { color: #fff; }
.footer-logo { font-family: 'Barlow', sans-serif; font-size: 1.25rem; font-weight: 800; color: #fff; margin-bottom: 11px; display: flex; align-items: center; gap: 6px; }
.footer-logo-badge { background: var(--purple); color: #fff; border-radius: 50%; width: 26px; height: 26px; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 900; flex-shrink: 0; }
.footer-logo span { color: #a78bfa; }
.footer-contact-item { display: flex; gap: 7px; align-items: center; font-size: .86rem; margin-bottom: 7px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 18px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; font-size: .76rem; color: rgba(255,255,255,.65); }
.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: rgba(255,255,255,.7); }

/* ── WA FLOAT ── */
.wa-float {
  position: fixed; bottom: 24px; right: 24px;
  width: 54px; height: 54px; background: var(--green);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,.4); z-index: 200; transition: transform .2s, box-shadow .2s;
}
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37,211,102,.55); }
.wa-float svg { width: 28px; height: 28px; fill: #fff; }

/* ── ADMIN ── */
.admin-body { background: var(--gray-50); min-height: 100vh; font-size: .9rem; }
.admin-nav { background: var(--navy); padding: 11px 20px; display: flex; align-items: center; gap: 18px; position: sticky; top: 0; z-index: 100; }
.admin-nav a { color: rgba(255,255,255,.75); font-size: .83rem; font-weight: 500; padding: 6px 11px; border-radius: 6px; }
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,.11); color: #fff; }
.admin-nav .brand { font-family: 'Barlow', sans-serif; font-weight: 800; color: #fff; margin-right: 8px; font-size: .96rem; }
.admin-nav .logout { margin-left: auto; color: rgba(255,255,255,.55) !important; }
.admin-main { max-width: 1100px; margin: 0 auto; padding: 30px 20px; }
.admin-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 15px; margin-bottom: 28px; }
.stat-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; }
.stat-card .num { font-family: 'Barlow', sans-serif; font-size: 2.4rem; font-weight: 800; color: var(--purple); line-height: 1; margin-bottom: 4px; }
.stat-card p { color: var(--text-muted); font-size: .83rem; margin: 0; }
.admin-card { background: #fff; border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 22px; margin-bottom: 22px; }
.admin-card h2 { font-size: 1.05rem; margin-bottom: 16px; padding-bottom: 11px; border-bottom: 1px solid var(--gray-100); display: flex; justify-content: space-between; align-items: center; }
.admin-table { width: 100%; border-collapse: collapse; font-size: .85rem; }
.admin-table th { text-align: left; padding: 9px 11px; border-bottom: 2px solid var(--gray-200); color: var(--text-muted); font-weight: 600; font-size: .76rem; text-transform: uppercase; letter-spacing: .04em; }
.admin-table td { padding: 10px 11px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }
.badge-status { display: inline-block; padding: 2px 10px; border-radius: 99px; font-size: .73rem; font-weight: 600; }
.badge-active, .badge-pub   { background: #dcfce7; color: #166534; }
.badge-inactive, .badge-draft { background: #f3f4f6; color: #6b7280; }
.admin-form .form-group { margin-bottom: 17px; }
.admin-form label { display: block; font-size: .83rem; font-weight: 600; margin-bottom: 5px; color: var(--gray-800); }
.admin-form input[type=text],
.admin-form input[type=email],
.admin-form input[type=password],
.admin-form textarea,
.admin-form select {
  width: 100%; padding: 10px 12px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius); font-size: .88rem; font-family: 'Poppins', sans-serif;
  background: #fff; color: var(--text); transition: var(--transition);
}
.admin-form input:focus, .admin-form textarea:focus {
  outline: none; border-color: var(--purple); box-shadow: 0 0 0 3px rgba(124,58,237,.1);
}
.admin-form textarea { min-height: 160px; resize: vertical; }
.admin-form textarea.tall { min-height: 380px; }
.admin-form .hint { font-size: .76rem; color: var(--text-muted); margin-top: 4px; }
.admin-form-actions { display: flex; gap: 10px; flex-wrap: wrap; padding-top: 15px; border-top: 1px solid var(--gray-100); margin-top: 6px; }
.btn-save   { background: var(--purple); color: #fff; }
.btn-save:hover { background: var(--purple-dark); color: #fff; }
.btn-delete { background: #e63946; color: #fff; }
.btn-delete:hover { background: #b91c1c; color: #fff; }
.btn-cancel { background: var(--gray-200); color: var(--gray-800); }
.btn-cancel:hover { background: var(--gray-400); color: #fff; }
.action-link { font-size: .8rem; font-weight: 500; padding: 4px 9px; border-radius: 5px; display: inline-block; }
.action-edit   { color: var(--purple); background: var(--purple-light); }
.action-delete { color: #e63946; background: #fef2f2; }
.action-view   { color: #166534; background: #dcfce7; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-layout { min-height: 320px; grid-template-columns: 1fr; }
  .hero-img-wrap { order: -1; }
  .hero-feature.left { flex-direction: row; text-align: left; }
  .landing-layout { grid-template-columns: 1fr; }
  .sidebar-cta { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  nav.main-nav { display: none; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .trust-bar { flex-direction: column; }
  .admin-stats { grid-template-columns: 1fr; }
  h1 { font-size: 1.7rem; }
  .header-contacts { gap: 14px; }
}
