/* ═══════════════════════════════════════
   MYNET — style.css  (redesign v2)
═══════════════════════════════════════ */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@700;800;900&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

/* ── Tokens ── */
:root {
  --ink:       #0b0c10;
  --surface:   #f5f4f0;
  --white:     #ffffff;
  --accent:    #ff4d1c;
  --accent2:   #0057ff;
  --gold:      #f5a623;
  --muted:     #7a7a7a;
  --border:    #e0ddd8;

  --f-display: 'Syne', sans-serif;
  --f-body:    'DM Sans', sans-serif;

  --radius:    18px;
  --shadow:    0 6px 32px rgba(0,0,0,.09);
  --shadow-md: 0 12px 48px rgba(0,0,0,.14);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  font-family: var(--f-body);
  background: var(--surface);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
}
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }

/* Subtle noise texture */
body::before {
  content: '';
  position: fixed; inset: 0;
  pointer-events: none; z-index: 9999; opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 150px;
}

/* ── Section layout helper ── */
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Section header ── */
.sec-head { margin-bottom: 52px; }
.sec-head.centered { text-align: center; }
.sec-kicker {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.sec-title {
  font-family: var(--f-display);
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 900; letter-spacing: -1.5px;
  line-height: 1.1; color: var(--ink);
}
.sec-line {
  width: 48px; height: 4px;
  background: var(--accent); border-radius: 4px; margin-top: 16px;
}
.sec-head.centered .sec-line { margin: 16px auto 0; }
.sec-sub {
  color: var(--muted); max-width: 520px;
  margin-top: 14px; font-size: 1rem;
}
.sec-head.centered .sec-sub { margin-left: auto; margin-right: auto; }


/* ═══════════════════════════════════════
   NAVBAR
═══════════════════════════════════════ */
.nav {
  position: sticky; top: 0; z-index: 900;
  background: rgba(245,244,240,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  height: 68px; display: flex; align-items: center; gap: 32px;
}
.nav-brand {
  font-family: var(--f-display);
  font-size: 1.5rem; font-weight: 900;
  letter-spacing: -1px; white-space: nowrap;
}
.nav-brand span { color: var(--accent); }
.nav-links {
  display: flex; gap: 4px; list-style: none;
  margin-left: auto; align-items: center;
}
.nav-links a {
  font-size: .875rem; font-weight: 500;
  padding: 7px 14px; border-radius: 10px;
  color: var(--muted);
  transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--ink); background: var(--border); }
.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  border-radius: 12px !important;
  padding: 9px 20px !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--accent) !important; }
.nav-toggle {
  display: none; flex-direction: column;
  gap: 5px; padding: 8px; margin-left: auto;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--ink); border-radius: 2px; transition: .3s;
}


/* ═══════════════════════════════════════
   HERO  (slider.html)
═══════════════════════════════════════ */
.hero {
  min-height: 92vh; display: flex; align-items: center;
  background: var(--ink);
  overflow: hidden; position: relative; padding: 80px 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
  animation: gridScroll 18s linear infinite;
}
@keyframes gridScroll {
  from { background-position: 0 0; }
  to   { background-position: 48px 48px; }
}
.hero-glow {
  position: absolute; top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,77,28,.18) 0%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite;
}
.hero-glow2 {
  position: absolute; bottom: -300px; left: -100px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,87,255,.15) 0%, transparent 70%);
  animation: glowPulse 8s ease-in-out infinite reverse;
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1); opacity: .8; }
  50%       { transform: scale(1.1); opacity: 1; }
}
.hero-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: grid; grid-template-columns: 1fr 480px;
  gap: 80px; align-items: center;
  position: relative; z-index: 2;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,77,28,.12);
  border: 1px solid rgba(255,77,28,.3);
  border-radius: 30px; padding: 5px 14px;
  font-size: .78rem; font-weight: 700;
  color: #ff9070; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 24px;
}
.hero h1 {
  font-family: var(--f-display);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  font-weight: 900; color: var(--white);
  line-height: 1.0; letter-spacing: -2px; margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, #ff4d1c, #ff8c42);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,.6);
  max-width: 500px; margin-bottom: 40px; line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-hero-primary {
  background: var(--accent); color: var(--white);
  padding: 14px 30px; border-radius: 14px;
  font-weight: 700; font-size: 1rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 8px 28px rgba(255,77,28,.4);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(255,77,28,.5);
  color: var(--white);
}
.btn-hero-secondary {
  background: rgba(255,255,255,.08); color: var(--white);
  border: 1px solid rgba(255,255,255,.15);
  padding: 14px 30px; border-radius: 14px;
  font-weight: 600; font-size: 1rem;
  transition: background .2s;
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-hero-secondary:hover { background: rgba(255,255,255,.14); color: var(--white); }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,.1);
  flex-wrap: wrap;
}
.hero-stat-num {
  font-family: var(--f-display); font-size: 2.2rem;
  font-weight: 900; color: var(--white); line-height: 1;
}
.hero-stat-num span { color: var(--accent); }
.hero-stat-label {
  font-size: .8rem; color: rgba(255,255,255,.45);
  text-transform: uppercase; letter-spacing: 1px; margin-top: 4px;
}
/* Speed card */
.hero-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.hero-card-label {
  font-size: .75rem; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin-bottom: 16px;
}
.speed-ring-wrap { display: flex; justify-content: center; margin-bottom: 24px; }
.speed-ring { position: relative; width: 180px; height: 180px; }
.speed-ring svg { width: 100%; height: 100%; transform: rotate(-90deg); }
.speed-ring-bg   { fill: none; stroke: rgba(255,255,255,.06); stroke-width: 12; }
.speed-ring-fill {
  fill: none; stroke: url(#speedGrad); stroke-width: 12;
  stroke-linecap: round; stroke-dasharray: 502; stroke-dashoffset: 290;
  transition: stroke-dashoffset 1.2s ease;
}
.speed-ring-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%); text-align: center;
}
.speed-ring-num {
  font-family: var(--f-display); font-size: 2.6rem;
  font-weight: 900; color: var(--white); line-height: 1;
}
.speed-ring-unit { font-size: .8rem; color: rgba(255,255,255,.4); }
.plan-chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.plan-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; padding: 5px 12px;
  font-size: .82rem; color: rgba(255,255,255,.65);
  font-weight: 500; cursor: pointer; transition: all .2s;
}
.plan-chip.active {
  background: rgba(255,77,28,.15);
  border-color: rgba(255,77,28,.4); color: #ff9070;
}

/* ── Ticker bar ── */
.ticker {
  background: var(--accent); padding: 12px 0;
  overflow: hidden; border-top: 1px solid rgba(0,0,0,.08);
}
.ticker-track {
  display: flex; white-space: nowrap;
  animation: tickScroll 30s linear infinite;
  width: max-content;
}
.ticker-track span {
  font-weight: 700; font-size: .88rem; color: var(--white);
  padding: 0 32px; letter-spacing: .5px; text-transform: uppercase;
}
.ticker-track span::after { content: '•'; margin-left: 32px; opacity: .6; }
@keyframes tickScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ═══════════════════════════════════════
   ABOUT
═══════════════════════════════════════ */
#about {
  padding: 100px 0;
  background: var(--white);
}
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.about-img-wrap { position: relative; }
.about-img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 24px;
}
.about-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--accent); color: var(--white);
  border-radius: 16px; padding: 18px 22px;
  font-family: var(--f-display);
}
.about-badge-num  { font-size: 2.4rem; font-weight: 900; line-height: 1; }
.about-badge-text { font-size: .78rem; opacity: .8; letter-spacing: .5px; }
.about-features {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin: 28px 0;
}
.about-feat {
  display: flex; align-items: center; gap: 10px;
  background: var(--surface); border-radius: 12px;
  padding: 12px 14px; font-size: .9rem; font-weight: 500;
}
.about-feat i { color: var(--accent); font-size: 1rem; }
.mission-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin-top: 32px;
}
.mission-card {
  border-radius: 16px; padding: 24px;
  border-bottom: 4px solid; background: var(--surface);
}
.mission-card.vision  { border-color: var(--accent2); }
.mission-card.mission-c { border-color: var(--gold); }
.mission-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; margin-bottom: 12px;
}
.vision   .mission-icon { background: rgba(0,87,255,.1);   color: var(--accent2); }
.mission-c .mission-icon { background: rgba(245,166,35,.1); color: var(--gold); }
.mission-title { font-family: var(--f-display); font-weight: 800; font-size: 1rem; margin-bottom: 6px; }
.mission-text  { font-size: .85rem; color: var(--muted); line-height: 1.6; }


/* ═══════════════════════════════════════
   PACKAGES
═══════════════════════════════════════ */
#plans {
  padding: 100px 0;
  background: var(--surface);
}
.pkg-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 16px;
}
.pkg-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 22px; border: 2px solid transparent;
  transition: all .3s; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
}
.pkg-card:hover {
  border-color: var(--border);
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}
.pkg-card.popular {
  background: var(--ink); color: var(--white);
  border-color: var(--accent) !important;
  transform: scale(1.04);
}
.pkg-card.popular:hover { transform: scale(1.04) translateY(-4px); }
.popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--accent); color: var(--white);
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 14px; border-radius: 0 var(--radius) 0 12px;
}
.pkg-name {
  font-size: .8rem; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 8px;
}
.pkg-card.popular .pkg-name { color: rgba(255,255,255,.5); }
.pkg-speed {
  font-family: var(--f-display); font-size: 3.2rem;
  font-weight: 900; line-height: 1; color: var(--ink); letter-spacing: -2px;
}
.pkg-card.popular .pkg-speed { color: var(--white); }
.pkg-unit { font-size: .9rem; color: var(--muted); font-weight: 500; margin-bottom: 18px; }
.pkg-card.popular .pkg-unit { color: rgba(255,255,255,.5); }
.pkg-features { list-style: none; margin-bottom: 20px; flex: 1; }
.pkg-features li {
  font-size: .85rem; padding: 5px 0;
  display: flex; align-items: center; gap: 8px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}
.pkg-features li:last-child { border: none; }
.pkg-features li i { color: var(--accent); font-size: .85rem; flex-shrink: 0; }
.pkg-card.popular .pkg-features li { color: rgba(255,255,255,.6); border-bottom-color: rgba(255,255,255,.08); }
.pkg-card.popular .pkg-features li i { color: #ff9070; }
.pkg-price {
  font-family: var(--f-display); font-size: 1.6rem;
  font-weight: 900; color: var(--ink); margin-bottom: 14px;
}
.pkg-price span { font-size: .9rem; font-weight: 500; color: var(--muted); }
.pkg-card.popular .pkg-price       { color: var(--white); }
.pkg-card.popular .pkg-price span  { color: rgba(255,255,255,.5); }
.btn-pkg { width: 100%; padding: 11px; border-radius: 12px; font-weight: 700; font-size: .9rem; transition: all .25s; }
.btn-pkg-outline { border: 2px solid var(--border); color: var(--ink); }
.btn-pkg-outline:hover { border-color: var(--accent); color: var(--accent); background: rgba(255,77,28,.05); }
.btn-pkg-solid {
  background: var(--accent); color: var(--white);
  box-shadow: 0 6px 20px rgba(255,77,28,.35);
}
.btn-pkg-solid:hover { background: #e03d0e; transform: translateY(-1px); }


/* ═══════════════════════════════════════
   QUICK SERVICES
═══════════════════════════════════════ */
#quick-services {
  padding: 100px 0;
  background: var(--ink);
  overflow: hidden;
}
#quick-services .sec-title { color: var(--white); }
#quick-services .sec-kicker { color: #ff9070; }
#quick-services .sec-sub { color: rgba(255,255,255,.4); }
.quick-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.qcard {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 24px; padding: 36px;
  position: relative; overflow: hidden; transition: all .3s;
}
.qcard:hover { border-color: rgba(255,255,255,.15); transform: translateY(-4px); }
.qcard::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; border-radius: 24px 24px 0 0;
}
.qcard-pay::before { background: linear-gradient(90deg, #10b981, #059669); }
.qcard-tv::before  { background: linear-gradient(90deg, #ef4444, #8b5cf6); }
.qcard-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.qcard-pay .qcard-icon { background: rgba(16,185,129,.12); color: #34d399; }
.qcard-tv  .qcard-icon { background: rgba(239,68,68,.12);  color: #f87171; }
.qcard-title {
  font-family: var(--f-display); font-size: 1.5rem;
  font-weight: 900; color: var(--white); margin-bottom: 8px;
}
.qcard-desc {
  color: rgba(255,255,255,.45); font-size: .92rem;
  line-height: 1.7; margin-bottom: 20px;
}
.qcard-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px; }
.qcard-chip {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 4px 10px;
  font-size: .78rem; color: rgba(255,255,255,.5); font-weight: 500;
}
.btn-qpay, .btn-qtv {
  width: 100%; padding: 14px 20px; border-radius: 12px;
  font-weight: 700; font-size: .95rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s; margin-bottom: 10px;
}
.btn-qpay {
  background: linear-gradient(135deg, #10b981, #059669);
  color: var(--white); box-shadow: 0 6px 20px rgba(16,185,129,.3);
}
.btn-qpay:hover { opacity: .9; transform: translateY(-1px); color: var(--white); }
.btn-qtv {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: var(--white); box-shadow: 0 6px 20px rgba(239,68,68,.3);
}
.btn-qtv:hover { opacity: .9; transform: translateY(-1px); color: var(--white); }
.btn-qlink {
  width: 100%; padding: 12px 20px; border-radius: 12px;
  font-weight: 600; font-size: .88rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  transition: all .2s;
}
.btn-qlink-blue   { background: rgba(14,165,233,.08); border: 1px solid rgba(14,165,233,.2); color: #38bdf8; }
.btn-qlink-blue:hover  { background: rgba(14,165,233,.16); color: #38bdf8; }
.btn-qlink-purple { background: rgba(139,92,246,.08); border: 1px solid rgba(139,92,246,.2); color: #a78bfa; }
.btn-qlink-purple:hover { background: rgba(139,92,246,.16); color: #a78bfa; }
#televizoManual {
  display: none; margin-top: 12px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.2);
  border-radius: 12px; padding: 14px;
}
.man-title { font-size: .82rem; font-weight: 700; color: #fbbf24; margin-bottom: 8px; }
.man-body  { font-size: .8rem; color: rgba(255,255,255,.5); line-height: 2; }
.m3u-box {
  background: rgba(0,0,0,.25); border-radius: 8px;
  padding: 8px 12px; margin-top: 8px;
  display: flex; align-items: center; gap: 8px;
}
.m3u-box code { color: #38bdf8; font-size: .78rem; flex: 1; word-break: break-all; }
.btn-copy {
  background: #0ea5e9; border: none; border-radius: 6px;
  padding: 5px 12px; color: var(--white);
  font-size: .75rem; font-weight: 700; cursor: pointer; flex-shrink: 0;
}


/* ═══════════════════════════════════════
   COVERAGE
═══════════════════════════════════════ */
#service-area {
  padding: 100px 0;
  background: var(--white);
}
.coverage-form {
  background: var(--surface); border-radius: 24px;
  padding: 40px; border: 1px solid var(--border);
  max-width: 860px; margin: 0 auto;
}
.coverage-selects {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 16px; margin-bottom: 20px;
}
.form-group label {
  font-size: .78rem; font-weight: 700;
  letter-spacing: .5px; text-transform: uppercase;
  color: var(--muted); display: block; margin-bottom: 8px;
}
.form-select-styled {
  width: 100%; padding: 11px 14px; border-radius: 12px;
  border: 2px solid var(--border); background: var(--white);
  font-family: var(--f-body); font-size: .92rem; color: var(--ink);
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a7a7a' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  transition: border-color .2s; cursor: pointer;
}
.form-select-styled:focus  { outline: none; border-color: var(--accent); }
.form-select-styled:disabled { opacity: .5; cursor: not-allowed; background-color: #fafafa; }
.coverage-result-ok,
.coverage-result-no {
  border-radius: 14px; padding: 18px 22px;
  font-size: .95rem; font-weight: 500;
  display: none; align-items: center; gap: 12px;
}
.coverage-result-ok { background: #ecfdf5; border: 1px solid #a7f3d0; color: #065f46; }
.coverage-result-no { background: #fff1f2; border: 1px solid #fecdd3; color: #9f1239; }


/* ═══════════════════════════════════════
   TESTIMONIALS  (feedback.html)
═══════════════════════════════════════ */
#feedback {
  padding: 100px 0;
  background: var(--surface);
}
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.testi-card {
  background: var(--white); border-radius: 20px;
  padding: 28px; border: 1px solid var(--border);
  transition: all .3s;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md); border-color: transparent;
}
.testi-stars { display: flex; gap: 3px; color: var(--gold); margin-bottom: 16px; }
.testi-text {
  font-size: .92rem; color: #444; line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testi-divider { height: 1px; background: var(--border); margin-bottom: 16px; }
.testi-author  { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1rem; color: var(--white); flex-shrink: 0;
}
.testi-name { font-weight: 700; font-size: .92rem; color: var(--ink); }
.testi-role { font-size: .78rem; color: var(--muted); }
.google-review-btn {
  display: inline-flex; align-items: center; gap: 8px;
  border: 2px solid var(--border); border-radius: 12px;
  padding: 10px 22px; font-weight: 600; font-size: .9rem;
  transition: all .2s; color: var(--ink);
}
.google-review-btn:hover { border-color: var(--accent); color: var(--accent); }


/* ═══════════════════════════════════════
   GALLERY
═══════════════════════════════════════ */
#gallery {
  padding: 100px 0;
  background: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  grid-template-rows: 220px 220px;
  gap: 14px;
}
.gallery-grid .gitem:first-child { grid-row: span 2; }
.gitem {
  position: relative; overflow: hidden;
  border-radius: 18px; cursor: pointer; background: var(--border);
}
.gitem img  { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gitem:hover img { transform: scale(1.06); }
.gitem-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
  display: flex; align-items: flex-end; padding: 18px;
}
.gitem:hover .gitem-overlay { opacity: 1; }
.gitem-label { font-size: .85rem; font-weight: 600; color: var(--white); }


/* ═══════════════════════════════════════
   FAQ
═══════════════════════════════════════ */
#faq {
  padding: 100px 0;
  background: var(--surface);
}
.faq-inner-grid {
  display: grid; grid-template-columns: 380px 1fr;
  gap: 80px; align-items: start;
}
.faq-contact-box { margin-top: 28px; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  border: 1px solid var(--border); border-radius: 14px;
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--accent); }
.faq-btn {
  width: 100%; text-align: left; padding: 18px 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: .95rem; font-weight: 600; color: var(--ink);
  background: var(--white); cursor: pointer; gap: 12px;
  transition: background .2s;
}
.faq-btn:hover { background: var(--surface); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  font-size: .7rem; color: var(--muted);
  transition: background .2s, color .2s, transform .3s;
}
.faq-item.open .faq-icon {
  background: var(--accent); color: var(--white); transform: rotate(45deg);
}
.faq-body {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease, padding .35s;
  font-size: .9rem; color: var(--muted); line-height: 1.7;
  padding: 0 20px; background: var(--white);
}
.faq-item.open .faq-body { max-height: 200px; padding: 0 20px 18px; }


/* ═══════════════════════════════════════
   FOOTER
═══════════════════════════════════════ */
footer {
  background: var(--ink);
  padding: 70px 0 30px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px; margin-bottom: 60px;
}
.footer-brand-name {
  font-family: var(--f-display); font-size: 2rem;
  font-weight: 900; color: var(--white);
  letter-spacing: -1px; margin-bottom: 14px;
}
.footer-brand-name span { color: var(--accent); }
.footer-desc {
  font-size: .9rem; color: rgba(255,255,255,.4);
  line-height: 1.7; max-width: 280px; margin-bottom: 20px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); font-size: 1rem; transition: all .2s;
}
.footer-social a:hover {
  background: var(--accent); border-color: var(--accent); color: var(--white);
}
.footer-col-title {
  font-family: var(--f-display); font-size: .95rem;
  font-weight: 800; color: var(--white); margin-bottom: 18px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.4); transition: color .2s; }
.footer-links a:hover { color: var(--white); }
.footer-links li { font-size: .88rem; color: rgba(255,255,255,.4); }
.pay-logos { display: flex; flex-wrap: wrap; gap: 10px; }
.pay-logo {
  background: var(--white); border-radius: 10px;
  padding: 8px 12px; height: 40px;
  display: flex; align-items: center; justify-content: center;
}
.pay-logo img { height: 20px; object-fit: contain; }
.footer-divider { height: 1px; background: rgba(255,255,255,.07); margin-bottom: 24px; }
.footer-bottom {
  display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 10px;
}
.footer-copy, .footer-credit { font-size: .82rem; color: rgba(255,255,255,.3); }
.footer-credit span { color: rgba(255,255,255,.6); }

/* WhatsApp float */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px; z-index: 800;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25d366; color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.4);
  transition: all .3s;
}
.whatsapp-float:hover { transform: scale(1.1); background: #1da851; color: var(--white); }

/* ═══════════════════════════════════════
   ORDER MODAL
═══════════════════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.5);
  z-index: 1000; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--white); border-radius: 24px;
  padding: 40px; width: 100%; max-width: 480px; margin: 20px;
  transform: scale(.95); transition: transform .3s; position: relative;
}
.modal-overlay.open .modal-box { transform: scale(1); }
.modal-close {
  position: absolute; top: 18px; right: 18px;
  width: 36px; height: 36px; border-radius: 10px;
  background: var(--surface); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; color: var(--muted);
  cursor: pointer; transition: background .2s;
}
.modal-close:hover { background: var(--border); }
.modal-title {
  font-family: var(--f-display); font-size: 1.6rem;
  font-weight: 900; margin-bottom: 4px; letter-spacing: -1px;
}
.modal-sub { color: var(--muted); font-size: .9rem; margin-bottom: 28px; }
.modal-field { margin-bottom: 16px; }
.modal-field label {
  display: block; font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .5px;
  color: var(--muted); margin-bottom: 7px;
}
.modal-input {
  width: 100%; padding: 12px 14px;
  border: 2px solid var(--border); border-radius: 12px;
  font-family: var(--f-body); font-size: .95rem; color: var(--ink);
  transition: border-color .2s; background: var(--surface);
}
.modal-input:focus { outline: none; border-color: var(--accent); background: var(--white); }
.btn-modal-submit {
  width: 100%; padding: 14px; border-radius: 14px;
  background: var(--accent); color: var(--white);
  font-weight: 700; font-size: 1rem;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(255,77,28,.35);
  margin-top: 8px; transition: all .2s;
}
.btn-modal-submit:hover { background: #e03d0e; transform: translateY(-1px); }

/* Toast */
.qa-toast {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--ink); border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px; padding: 12px 22px;
  color: var(--white); font-size: .88rem;
  opacity: 0; transition: .3s; z-index: 9000;
  pointer-events: none; white-space: nowrap;
  max-width: 90vw; text-align: center;
}
.qa-toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ═══════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════ */
.reveal {
  opacity: 0; transform: translateY(24px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .1s; }
.reveal-d2 { transition-delay: .2s; }
.reveal-d3 { transition-delay: .3s; }

/* ═══════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-inner   { grid-template-columns: 1fr; gap: 48px; }
  .hero-card    { display: none; }
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner-grid { grid-template-columns: 1fr; }
  .footer-top   { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--surface); border-bottom: 1px solid var(--border); padding: 16px 24px; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero { padding: 60px 0; }
  .pkg-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-card.popular { transform: none; }
  .quick-grid { grid-template-columns: 1fr; }
  .coverage-selects { grid-template-columns: 1fr 1fr; }
  .testi-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-grid .gitem:first-child { grid-row: auto; }
  .footer-top { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .mission-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .pkg-grid { grid-template-columns: 1fr; }
  .coverage-selects { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
