/* ============================================================
   VIRALYTICS — Global Stylesheet
   ============================================================ */

:root {
  --bg: #0a0a0f;
  --bg2: #0d0d16;
  --purple: #7B2FFF;
  --purple-dim: rgba(123,47,255,0.25);
  --cyan: #00D4FF;
  --cyan-dim: rgba(0,212,255,0.2);
  --white: #ffffff;
  --gray: rgba(255,255,255,0.65);
  --gray-dim: rgba(255,255,255,0.3);
  --glass: rgba(255,255,255,0.045);
  --glass-hover: rgba(255,255,255,0.08);
  --border: rgba(255,255,255,0.09);
  --border-purple: rgba(123,47,255,0.45);
}

/* === RESET === */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior:smooth; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { display:block; max-width:100%; }
::-webkit-scrollbar { width:5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--purple); border-radius:3px; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2.6rem,6.5vw,5.2rem); font-weight:900; line-height:1.08; letter-spacing:-0.02em; }
h2 { font-size: clamp(1.9rem,4.5vw,3.2rem); font-weight:900; line-height:1.15; }
h3 { font-size:1.25rem; font-weight:700; }
p  { line-height:1.75; color: var(--gray); }

.gradient-text {
  background: linear-gradient(135deg, var(--purple) 0%, var(--cyan) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-center { text-align:center; }

/* === LIVE TICKER === */
.ticker {
  background: var(--purple);
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1001;
  height: 36px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.ticker-track {
  display: flex;
  gap: 56px;
  white-space: nowrap;
  animation: ticker-scroll 35s linear infinite;
  will-change: transform;
}
.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  flex-shrink: 0;
  letter-spacing: 0.01em;
}
.ticker-dot {
  width: 7px; height: 7px;
  background: var(--cyan);
  border-radius: 50%;
  flex-shrink: 0;
  animation: blink 1.8s ease-in-out infinite;
}
@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes blink {
  0%,100% { opacity:1; transform:scale(1); }
  50%     { opacity:0.4; transform:scale(0.75); }
}

/* === NAV === */
nav {
  position: fixed;
  top: 36px; left:0; right:0;
  z-index: 1000;
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(10,10,15,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.nav-links { display:flex; gap:32px; list-style:none; }
.nav-links a { color:var(--gray); font-size:0.9rem; font-weight:500; transition:color 0.2s; }
.nav-links a:hover { color:white; }
.nav-cta {
  background: var(--purple) !important;
  color: white !important;
  padding: 8px 20px !important;
  border-radius: 8px;
  font-weight: 700 !important;
  transition: background 0.2s, box-shadow 0.2s !important;
}
.nav-cta:hover { background:#8f3fff !important; box-shadow:0 0 24px rgba(123,47,255,0.5) !important; }
.nav-hamburger { display:none; flex-direction:column; gap:5px; cursor:pointer; padding:4px; }
.nav-hamburger span { display:block; width:22px; height:2px; background:white; border-radius:2px; }

/* === HERO === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 160px 40px 100px;
  overflow: hidden;
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
}
.hero-content { position:relative; z-index:2; max-width:820px; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 18px;
  font-size: 0.8rem;
  color: var(--cyan);
  font-weight: 600;
  margin-bottom: 28px;
}
.hero-badge-dot { width:8px; height:8px; background:#22dd66; border-radius:50%; animation:blink 2s infinite; }
.hero h1 { margin-bottom:22px; }
.hero .subhead { font-size:clamp(1rem,2.2vw,1.2rem); margin-bottom:44px; max-width:580px; margin-left:auto; margin-right:auto; }
.hero-btns { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }

/* === BUTTONS === */
.btn-primary {
  background: linear-gradient(135deg, var(--purple) 0%, #9b4fff 100%);
  color: white;
  border: none;
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 32px rgba(123,47,255,0.45);
  white-space: nowrap;
}
.btn-primary:hover { transform:translateY(-2px); box-shadow:0 8px 48px rgba(123,47,255,0.65); }
.btn-secondary {
  background: transparent;
  color: white;
  border: 1px solid var(--border);
  padding: 15px 34px;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
  white-space: nowrap;
}
.btn-secondary:hover { border-color:var(--purple); background:var(--glass); }

/* === SECTIONS === */
.section-wrap { padding:100px 40px; max-width:1200px; margin:0 auto; }
.full-section { padding:100px 40px; }
.full-section > * { max-width:1200px; margin-left:auto; margin-right:auto; }
.section-label {
  font-size:0.72rem;
  font-weight:700;
  letter-spacing:3px;
  text-transform:uppercase;
  color: var(--cyan);
  margin-bottom:14px;
  display:block;
}
.section-title { font-size:clamp(1.9rem,4.5vw,3.2rem); font-weight:900; margin-bottom:16px; }
.section-sub { font-size:1.05rem; color:var(--gray); max-width:580px; margin:0 auto 60px; }

/* === GLASS CARD === */
.glass-card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.glass-card:hover {
  border-color: var(--border-purple);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(123,47,255,0.12);
}

/* === HOW IT WORKS === */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 28px;
  position: relative;
}
.step-connector {
  position: absolute;
  top: 40px;
  left: calc(16.67% + 20px);
  right: calc(16.67% + 20px);
  height: 1px;
  background: linear-gradient(90deg, var(--purple), var(--cyan));
  z-index: 0;
  opacity: 0.5;
}
.step-card { text-align:center; position:relative; z-index:1; }
.step-number {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--purple), var(--cyan));
  display: flex; align-items:center; justify-content:center;
  font-size: 1.5rem; font-weight:900;
  margin: 0 auto 22px;
  box-shadow: 0 0 40px rgba(123,47,255,0.45);
}

/* === NICHE SELECTOR === */
.niche-buttons { display:flex; flex-wrap:wrap; gap:12px; justify-content:center; margin-bottom:44px; }
.niche-btn {
  background: var(--glass);
  border: 1px solid var(--border);
  color: var(--gray);
  padding: 11px 26px;
  border-radius: 50px;
  cursor: pointer;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: inherit;
  transition: all 0.2s;
}
.niche-btn.active, .niche-btn:hover { background:var(--purple); border-color:var(--purple); color:white; }

.phone-mockup {
  width: 290px;
  margin: 0 auto;
  background: #15152a;
  border-radius: 42px;
  border: 2px solid rgba(255,255,255,0.1);
  padding: 28px 14px 24px;
  box-shadow: 0 0 80px rgba(123,47,255,0.25), inset 0 0 30px rgba(0,0,0,0.3);
}
.phone-notch { width:72px; height:18px; background:var(--bg); border-radius:10px; margin:0 auto 18px; }
.phone-posts { transition:opacity 0.3s, transform 0.3s; }
.phone-post {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 11px;
  margin-bottom: 10px;
}
.post-header { display:flex; align-items:center; gap:8px; margin-bottom:8px; }
.post-avatar { width:26px; height:26px; border-radius:50%; background:linear-gradient(135deg,var(--purple),var(--cyan)); flex-shrink:0; }
.post-name { font-size:0.73rem; font-weight:700; }
.post-platform { font-size:0.65rem; color:var(--cyan); margin-left:auto; font-weight:700; }
.post-img {
  width:100%; height:110px; border-radius:8px; margin-bottom:8px;
  background: linear-gradient(135deg, rgba(123,47,255,0.35), rgba(0,212,255,0.25));
  display:flex; align-items:center; justify-content:center;
  font-size:2.2rem;
}
.post-caption { font-size:0.68rem; color:var(--gray); line-height:1.4; }
.post-metric { font-size:0.63rem; color:var(--cyan); margin-top:6px; }

/* === SLEEP SECTION === */
.sleep-section {
  background: linear-gradient(135deg, rgba(123,47,255,0.08), rgba(0,212,255,0.04));
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 72px 64px;
  display: flex;
  gap: 60px;
  align-items: center;
}
#clock-canvas { width:200px; height:200px; flex-shrink:0; }
.notifications-list {}
.notif {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 16px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateX(-16px);
  transition: opacity 0.4s, transform 0.4s;
}
.notif.visible { opacity:1; transform:translateX(0); }
.notif-icon {
  width:38px; height:38px; border-radius:10px;
  background: var(--purple-dim);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; flex-shrink:0;
}
.notif-live { margin-left:auto; font-size:0.72rem; color:var(--cyan); font-weight:700; white-space:nowrap; }

/* === BEFORE / AFTER === */
.ba-grid { display:grid; grid-template-columns:1fr 1fr; gap:28px; }
.ba-card { position:relative; overflow:hidden; }
.ba-card.before { border-color: rgba(255,80,80,0.25); }
.ba-card.after  { border-color: var(--border-purple); box-shadow:0 0 50px rgba(123,47,255,0.15); }
.ba-label {
  position:absolute; top:14px; left:14px;
  padding:4px 12px; border-radius:6px;
  font-size:0.72rem; font-weight:800; letter-spacing:0.03em; text-transform:uppercase;
}
.before .ba-label { background:rgba(255,80,80,0.15); color:#ff6464; }
.after  .ba-label { background:rgba(123,47,255,0.2); color:#9b6fff; }
.profile-row { display:flex; align-items:center; gap:14px; margin:44px 0 18px; }
.profile-avatar { width:56px; height:56px; border-radius:50%; flex-shrink:0; }
.before .profile-avatar { background:linear-gradient(135deg,#2a2a2a,#444); }
.after  .profile-avatar { background:linear-gradient(135deg,var(--purple),var(--cyan)); }
.profile-handle { font-weight:700; font-size:0.95rem; margin-bottom:2px; }
.profile-sub { font-size:0.72rem; color:var(--gray-dim); }
.after .profile-sub { color:var(--cyan); }
.profile-stats { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin-bottom:18px; text-align:center; }
.stat-val { font-size:1.4rem; font-weight:900; }
.before .stat-val { color:var(--gray-dim); }
.after  .stat-val { color:var(--cyan); }
.stat-lbl { font-size:0.68rem; color:var(--gray-dim); }
.posts-mini { display:grid; grid-template-columns:repeat(3,1fr); gap:5px; }
.post-mini { aspect-ratio:1; border-radius:6px; background:rgba(255,255,255,0.04); }
.after .post-mini { background:linear-gradient(135deg,rgba(123,47,255,0.28),rgba(0,212,255,0.2)); }
.before .post-mini:nth-child(n+4) { opacity:0.12; }

/* === COST COMPARISON === */
.cost-grid { display:grid; grid-template-columns:1fr 1fr; gap:36px; }
.cost-without { position:relative; overflow:hidden; }
.cost-big-x {
  position:absolute; top:50%; left:50%;
  transform:translate(-50%,-50%);
  font-size:220px; font-weight:900;
  color:rgba(255,50,50,0.07);
  pointer-events:none;
  opacity:0; transition:opacity 0.6s;
  line-height:1;
}
.cost-item {
  display:flex; justify-content:space-between; align-items:center;
  padding:15px 0;
  border-bottom:1px solid var(--border);
  font-size:0.95rem;
  opacity:0; transform:translateX(-16px);
  transition:opacity 0.4s, transform 0.4s, text-decoration 0.3s;
}
.cost-item.visible { opacity:1; transform:translateX(0); }
.cost-price { font-weight:700; color:var(--gray); }
.cost-item.struck .cost-lbl,
.cost-item.struck .cost-price { text-decoration:line-through; color:rgba(255,80,80,0.55); }
.cost-total {
  display:flex; justify-content:space-between;
  font-size:1.4rem; font-weight:900;
  margin-top:18px; padding-top:18px;
  border-top:1px solid var(--border);
}
.cost-without .cost-total { transition:color 0.4s; }
.cost-without .cost-total.struck { color:rgba(255,80,80,0.6); text-decoration:line-through; }
.cost-with h3 { margin-bottom:24px; color:var(--cyan); }
.cost-with .cost-item .cost-lbl { color:var(--cyan); }
.cost-with .cost-item .cost-price { color:var(--cyan); }
.cost-with .cost-total { color:var(--purple); }

/* === ROI CALCULATOR === */
.roi-card {
  background: linear-gradient(135deg,rgba(123,47,255,0.09),rgba(0,212,255,0.04));
  border: 1px solid rgba(123,47,255,0.3);
  border-radius: 24px;
  padding: 52px;
  box-shadow: 0 0 80px rgba(123,47,255,0.08);
}
.slider-group { margin-bottom:30px; }
.slider-label { display:flex; justify-content:space-between; margin-bottom:12px; font-weight:600; font-size:0.95rem; }
.slider-val { color:var(--cyan); font-weight:800; }
input[type=range] {
  width:100%; height:6px;
  -webkit-appearance:none;
  background:var(--border);
  border-radius:3px;
  outline:none; cursor:pointer;
}
input[type=range]::-webkit-slider-thumb {
  -webkit-appearance:none;
  width:20px; height:20px; border-radius:50%;
  background:var(--purple);
  cursor:pointer;
  box-shadow:0 0 12px rgba(123,47,255,0.7);
}
input[type=range]::-moz-range-thumb {
  width:20px; height:20px; border-radius:50%;
  background:var(--purple); border:none;
  cursor:pointer;
}
.roi-results { display:grid; grid-template-columns:repeat(4,1fr); gap:20px; margin-top:40px; }
.roi-metric {
  background:var(--glass); border:1px solid var(--border);
  border-radius:14px; padding:22px 16px; text-align:center;
}
.roi-metric.highlight { background:rgba(123,47,255,0.1); border-color:rgba(123,47,255,0.35); }
.roi-val { font-size:1.75rem; font-weight:900; color:var(--cyan); margin-bottom:6px; display:block; }
.roi-metric.highlight .roi-val { color:var(--purple); }
.roi-lbl { font-size:0.75rem; color:var(--gray-dim); line-height:1.3; }

/* === SERVICES === */
.services-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.svc-icon { font-size:2.4rem; margin-bottom:16px; }

/* === PRICING === */
.pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; align-items:start; }
.pricing-card { text-align:center; }
.pricing-card.featured {
  border-color:var(--purple);
  box-shadow:0 0 70px rgba(123,47,255,0.2);
  position:relative;
}
.pricing-badge {
  position:absolute; top:-14px; left:50%; transform:translateX(-50%);
  background:linear-gradient(135deg,var(--purple),var(--cyan));
  padding:4px 22px; border-radius:50px;
  font-size:0.72rem; font-weight:800;
  white-space:nowrap; letter-spacing:0.02em;
}
.pricing-name { font-size:1rem; font-weight:700; color:var(--gray); margin-bottom:8px; }
.pricing-price { font-size:2.2rem; font-weight:900; margin-bottom:4px; }
.pricing-period { font-size:0.8rem; color:var(--gray-dim); margin-bottom:24px; display:block; }
.pricing-features { list-style:none; margin-bottom:32px; text-align:left; }
.pricing-features li {
  padding:9px 0;
  border-bottom:1px solid var(--border);
  font-size:0.88rem; color:var(--gray);
  display:flex; gap:10px; align-items:flex-start;
}
.pricing-features li::before { content:'✓'; color:var(--cyan); font-weight:800; flex-shrink:0; }

/* === PORTFOLIO === */
.portfolio-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.port-thumb {
  height:190px; border-radius:12px; margin-bottom:16px;
  background:linear-gradient(135deg,rgba(123,47,255,0.3),rgba(0,212,255,0.18));
  display:flex; align-items:center; justify-content:center;
  font-size:3rem; transition:transform 0.3s;
}
.glass-card:hover .port-thumb { transform:scale(1.02); }
.port-niche { font-size:0.72rem; font-weight:800; letter-spacing:2.5px; text-transform:uppercase; color:var(--cyan); margin-bottom:8px; }
.port-platforms { display:flex; gap:7px; margin-top:12px; flex-wrap:wrap; }
.port-badge {
  background:var(--glass); border:1px solid var(--border);
  border-radius:5px; padding:3px 9px;
  font-size:0.65rem; font-weight:700;
}

/* === TESTIMONIALS === */
.testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testi-stars { color:#FFD700; font-size:0.9rem; letter-spacing:2px; margin-bottom:16px; }
.testi-text { font-size:0.93rem; line-height:1.65; margin-bottom:20px; }
.testi-author { display:flex; align-items:center; gap:12px; }
.testi-avatar { width:42px; height:42px; border-radius:50%; flex-shrink:0; }
.testi-name { font-weight:700; font-size:0.88rem; margin-bottom:2px; }
.testi-biz { font-size:0.72rem; color:var(--gray-dim); }

/* === CTA === */
.cta-section {
  text-align:center;
  background:linear-gradient(135deg,rgba(123,47,255,0.12),rgba(0,212,255,0.06));
  border:1px solid rgba(123,47,255,0.2);
  border-radius:24px;
  padding:100px 60px;
}

/* === FOOTER === */
footer {
  background:#060609;
  border-top:1px solid var(--border);
  padding:64px 48px 32px;
}
.footer-inner { max-width:1200px; margin:0 auto; }
.footer-grid { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:48px; margin-bottom:48px; }
.footer-logo { font-size:1.4rem; font-weight:900; background:linear-gradient(135deg,var(--purple),var(--cyan)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; background-clip:text; margin-bottom:12px; display:block; }
.footer-desc { font-size:0.88rem; max-width:260px; margin-bottom:14px; }
.footer-domain { font-size:0.82rem; color:var(--gray-dim); }
.footer-col-title { font-weight:700; font-size:0.9rem; margin-bottom:18px; }
.footer-links { list-style:none; }
.footer-links li { margin-bottom:10px; }
.footer-links a { color:var(--gray); font-size:0.87rem; transition:color 0.2s; }
.footer-links a:hover { color:white; }
.footer-bottom {
  border-top:1px solid var(--border);
  padding-top:28px;
  display:flex; justify-content:space-between;
  font-size:0.82rem; color:var(--gray-dim);
}

/* === SCROLL REVEAL === */
.reveal { opacity:0; transform:translateY(28px); transition:opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity:1; transform:translateY(0); }

/* === PAGE HERO (portfolio / contact) === */
.page-hero {
  padding: 160px 40px 64px;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* === CONTACT FORM === */
.contact-wrap { max-width:660px; margin:0 auto; }
.form-group { margin-bottom:22px; }
.form-label { display:block; font-size:0.84rem; font-weight:600; margin-bottom:8px; color:var(--gray); }
.form-input {
  width:100%;
  background:var(--glass);
  border:1px solid var(--border);
  border-radius:10px;
  padding:14px 16px;
  color:white;
  font-size:0.97rem;
  font-family:inherit;
  outline:none;
  transition:border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance:none;
}
.form-input:focus { border-color:var(--purple); box-shadow:0 0 20px rgba(123,47,255,0.12); }
.form-input::placeholder { color:var(--gray-dim); }
select.form-input { cursor:pointer; }
option { background:#1a1a2e; }
.checkbox-row { display:flex; flex-wrap:wrap; gap:10px; }
.check-label {
  display:flex; align-items:center; gap:7px;
  background:var(--glass); border:1px solid var(--border);
  border-radius:8px; padding:9px 16px;
  cursor:pointer; font-size:0.88rem; font-weight:600;
  transition:border-color 0.2s, background 0.2s;
}
.check-label:has(input:checked) { border-color:var(--purple); background:rgba(123,47,255,0.1); color:white; }
.check-label input { display:none; }
.success-block {
  display:none; text-align:center; padding:48px 32px;
  background:rgba(0,212,255,0.07); border:1px solid rgba(0,212,255,0.25);
  border-radius:18px;
}
.success-block.show { display:block; }
.success-icon { font-size:3.5rem; margin-bottom:20px; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width:960px) {
  .services-grid { grid-template-columns:repeat(2,1fr); }
  .roi-results { grid-template-columns:repeat(2,1fr); }
  .footer-grid { grid-template-columns:1fr 1fr; }
}

@media (max-width:768px) {
  nav { padding:0 20px; }
  .nav-links { display:none; }
  .nav-hamburger { display:flex; }

  .hero { padding:120px 20px 80px; }

  .section-wrap, .full-section { padding:64px 20px; }

  .steps-grid { grid-template-columns:1fr; gap:20px; }
  .step-connector { display:none; }

  .sleep-section { flex-direction:column; gap:36px; padding:44px 28px; }
  #clock-canvas { width:160px; height:160px; }

  .ba-grid { grid-template-columns:1fr; }

  .cost-grid { grid-template-columns:1fr; }
  .cost-big-x { font-size:140px; }

  .roi-card { padding:28px 20px; }
  .roi-results { grid-template-columns:1fr 1fr; }

  .pricing-grid { grid-template-columns:1fr; }

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

  .testi-grid { grid-template-columns:1fr; }

  .cta-section { padding:60px 24px; }

  .footer-grid { grid-template-columns:1fr; gap:32px; }
  .footer-bottom { flex-direction:column; gap:10px; }

  .page-hero { padding:120px 20px 48px; }
}

@media (max-width:480px) {
  h1 { font-size:2.3rem; }
  .portfolio-grid { grid-template-columns:1fr; }
  .roi-results { grid-template-columns:1fr; }
}
