/* ═══════════════════════════════════════════
   CLICK BOOST — Main Stylesheet
   ═══════════════════════════════════════════ */
:root {
  --black:      #080808;
  --white:      #f2ede6;
  --cream:      #e8e0d4;
  --accent:     #ff4d1c;
  --accent2:    #ffb800;
  --gray:       #1a1a1a;
  --mid:        #2e2e2e;
  --muted:      #6b6560;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { background: var(--black); color: var(--white); font-family: 'DM Sans', sans-serif; overflow-x: hidden; }
img  { display: block; max-width: 100%; }
a    { color: inherit; }

/* ── CURSOR ── */
.cursor, .cursor-ring { display: none; }
@media (hover: hover) and (pointer: fine) {
  body        { cursor: none; }
  .cursor     { display: block; width: 12px; height: 12px; background: var(--accent); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999; mix-blend-mode: difference; }
  .cursor-ring{ display: block; width: 36px; height: 36px; border: 1.5px solid rgba(255,77,28,.5); border-radius: 50%; position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9998; transition: all .25s ease; }
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 60px;
}
nav::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(8,8,8,.95) 0%, transparent 100%);
  pointer-events: none;
}
.nav-logo { font-family: 'Bebas Neue', sans-serif; font-size: 26px; letter-spacing: .08em; color: var(--white); text-decoration: none; position: relative; z-index: 1; }
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; list-style: none; position: relative; z-index: 1; }
.nav-links a { font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); text-decoration: none; transition: color .2s; }
.nav-links a:hover { color: var(--white); }
.nav-cta { position: relative; z-index: 1; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); background: var(--accent); padding: 11px 24px; text-decoration: none; clip-path: polygon(8px 0%,100% 0%,calc(100% - 8px) 100%,0% 100%); transition: all .2s; }
.nav-cta:hover { background: var(--white); }
.nav-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; position: relative; z-index: 1; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all .3s; }
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE MENU ── */
.mobile-menu { display: none; position: fixed; inset: 0; z-index: 99; background: rgba(8,8,8,.98); flex-direction: column; align-items: center; justify-content: center; gap: 36px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 46px; letter-spacing: .06em; color: var(--white); text-decoration: none; transition: color .2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .mob-cta { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--black); background: var(--accent); padding: 16px 40px; clip-path: polygon(10px 0%,100% 0%,calc(100% - 10px) 100%,0% 100%); }

/* ── HERO ── */
.hero { min-height: 100vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 120px 60px 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 50% at 75% 40%, rgba(255,77,28,.12) 0%, transparent 70%), radial-gradient(ellipse 40% 60% at 20% 80%, rgba(255,184,0,.06) 0%, transparent 60%); }
.hero-grid { position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px); background-size: 80px 80px; mask-image: radial-gradient(ellipse at center, black 20%, transparent 80%); }
.hero-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(120px,25vw,380px); line-height: .85; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.05); position: absolute; right: -10px; bottom: -20px; pointer-events: none; user-select: none; }
.hero-tag { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); display: flex; align-items: center; gap: 12px; margin-bottom: 28px; opacity: 0; animation: fadeUp .8s .3s forwards; }
.hero-tag::before { content: ''; width: 36px; height: 1px; background: var(--accent); }
h1 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px,11vw,170px); line-height: .9; letter-spacing: -.01em; max-width: 900px; position: relative; opacity: 0; animation: fadeUp .9s .5s forwards; }
h1 em { font-style: normal; color: transparent; -webkit-text-stroke: 1.5px var(--white); }
h1 .accent-word { color: var(--accent); }
.hero-sub { display: flex; align-items: flex-end; justify-content: space-between; margin-top: 36px; gap: 32px; opacity: 0; animation: fadeUp .9s .7s forwards; }
.hero-desc { font-size: 16px; font-weight: 300; line-height: 1.75; color: var(--muted); max-width: 400px; }
.hero-desc strong { color: var(--white); font-weight: 400; }
.hero-actions { display: flex; gap: 16px; align-items: center; flex-shrink: 0; }
.btn-primary { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--black); background: var(--white); padding: 16px 36px; text-decoration: none; display: inline-block; clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%); transition: all .25s; }
.btn-primary:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }
.btn-ghost { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--muted); text-decoration: none; display: flex; align-items: center; gap: 8px; transition: color .2s; white-space: nowrap; }
.btn-ghost:hover { color: var(--white); }
.btn-ghost::after { content: '→'; transition: transform .2s; }
.btn-ghost:hover::after { transform: translateX(4px); }
.hero-scroll { position: absolute; right: 60px; bottom: 80px; display: flex; flex-direction: column; align-items: center; gap: 10px; opacity: 0; animation: fadeIn 1s 1.2s forwards; }
.hero-scroll span { font-family: 'Syne', sans-serif; font-size: 9px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--muted); writing-mode: vertical-rl; }
.scroll-line { width: 1px; height: 60px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s infinite; }

/* ── MARQUEE ── */
.marquee-wrap { border-top: 1px solid var(--mid); border-bottom: 1px solid var(--mid); overflow: hidden; padding: 16px 0; background: var(--gray); }
.marquee-track { display: flex; width: max-content; animation: marquee 18s linear infinite; }
.marquee-item { font-family: 'Bebas Neue', sans-serif; font-size: 17px; letter-spacing: .12em; color: var(--muted); white-space: nowrap; padding: 0 36px; display: flex; align-items: center; gap: 36px; }
.marquee-item span { color: var(--accent); font-size: 9px; }

/* ── STATS ── */
.stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 1px; background: var(--mid); }
.stat-box { background: var(--black); padding: 50px 36px; position: relative; overflow: hidden; transition: background .3s; }
.stat-box:hover { background: #0f0f0f; }
.stat-box::before { content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 2px; background: var(--accent); transition: width .4s; }
.stat-box:hover::before { width: 100%; }
.stat-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(48px,6vw,72px); line-height: 1; color: var(--white); }
.stat-num sup { font-size: 28px; color: var(--accent); vertical-align: super; }
.stat-label { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* ── SHARED SECTION STYLES ── */
.section-tag { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 14px; }
h2 { font-family: 'Bebas Neue', sans-serif; font-size: clamp(42px,6.5vw,90px); line-height: .95; letter-spacing: .01em; }
h2 em { font-style: normal; color: var(--muted); }
.section-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 60px; gap: 24px; }
.section-desc { font-size: 14px; font-weight: 300; line-height: 1.8; color: var(--muted); max-width: 300px; }

/* ── OFFER SECTION ── */
.offer { padding: 100px 60px; background: var(--gray); position: relative; overflow: hidden; }
.offer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,77,28,.07) 0%, transparent 70%); }
.offer-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--mid); margin-top: 0; }
.offer-card { background: var(--gray); padding: 50px 40px; position: relative; overflow: hidden; transition: background .3s; display: flex; flex-direction: column; }
.offer-card:hover { background: #202020; }
.offer-card.featured { background: var(--accent); }
.offer-card.featured:hover { background: #ff3a05; }
.offer-badge { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; display: flex; align-items: center; gap: 8px; }
.offer-card.featured .offer-badge { color: rgba(0,0,0,.6); }
.offer-badge::before { content: ''; width: 24px; height: 1px; background: currentColor; }
.offer-num { font-family: 'Bebas Neue', sans-serif; font-size: clamp(60px,8vw,100px); line-height: .9; color: var(--white); margin-bottom: 4px; }
.offer-card.featured .offer-num { color: var(--black); }
.offer-unit { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: .08em; color: var(--muted); margin-bottom: 24px; }
.offer-card.featured .offer-unit { color: rgba(0,0,0,.55); }
.offer-title { font-family: 'Syne', sans-serif; font-size: 22px; font-weight: 800; color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.offer-card.featured .offer-title { color: var(--black); }
.offer-body { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--muted); flex: 1; }
.offer-card.featured .offer-body { color: rgba(0,0,0,.65); }
.offer-perks { list-style: none; margin-top: 28px; display: flex; flex-direction: column; gap: 10px; }
.offer-perks li { font-size: 13px; font-weight: 300; color: var(--muted); display: flex; align-items: flex-start; gap: 10px; }
.offer-card.featured .offer-perks li { color: rgba(0,0,0,.65); }
.offer-perks li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }
.offer-card.featured .offer-perks li::before { color: var(--black); }
.offer-cta { margin-top: 36px; font-family: 'Syne', sans-serif; font-size: 12px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; text-decoration: none; display: flex; align-items: center; gap: 8px; color: var(--accent); transition: gap .2s; }
.offer-card.featured .offer-cta { color: var(--black); }
.offer-cta::after { content: '→'; transition: transform .2s; }
.offer-card:hover .offer-cta::after { transform: translateX(6px); }
.offer-note { text-align: center; margin-top: 32px; font-size: 13px; color: var(--muted); font-weight: 300; }
.offer-note strong { color: var(--white); font-weight: 600; }

/* ── SERVICES ── */
.services { padding: 100px 60px; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1px; background: var(--mid); }
.service-card { background: var(--black); padding: 44px 36px; position: relative; transition: background .3s; overflow: hidden; }
.service-card:hover { background: #0d0d0d; }
.service-card::after { content: ''; position: absolute; top: 0; right: 0; width: 0; height: 100%; background: linear-gradient(to left, rgba(255,77,28,.05), transparent); transition: width .4s; }
.service-card:hover::after { width: 100%; }
.service-num { font-family: 'Bebas Neue', sans-serif; font-size: 12px; letter-spacing: .2em; color: var(--accent); margin-bottom: 28px; display: block; }
.service-icon { width: 44px; height: 44px; margin-bottom: 24px; opacity: .7; }
.service-title { font-family: 'Syne', sans-serif; font-size: 20px; font-weight: 800; line-height: 1.2; margin-bottom: 14px; color: var(--white); }
.service-body { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--muted); }
.service-arrow { margin-top: 28px; font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); text-decoration: none; display: flex; align-items: center; gap: 8px; }
.service-arrow::after { content: '→'; transition: transform .2s; }
.service-card:hover .service-arrow::after { transform: translateX(6px); }

/* ── WORK ── */
.work { padding: 0 60px 100px; }
.work-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.work-card { aspect-ratio: 16/10; background: var(--gray); position: relative; overflow: hidden; }
.work-card:nth-child(3) { grid-column: span 2; aspect-ratio: 21/9; }
.work-deco { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.work-deco::before { content: ''; position: absolute; width: 200%; height: 200%; background: repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(255,255,255,.015) 40px, rgba(255,255,255,.015) 41px); }
.wp-1 { background: linear-gradient(135deg,#111 0%,#1e1a16 100%); }
.wp-2 { background: linear-gradient(135deg,#12100e 0%,#1a1515 100%); }
.wp-3 { background: linear-gradient(135deg,#0c0e12 0%,#10141c 100%); }
.work-title-inner { font-family: 'Bebas Neue', sans-serif; font-size: clamp(28px,4vw,60px); color: rgba(255,255,255,.06); letter-spacing: .08em; z-index: 1; }
.work-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(8,8,8,.9) 0%, transparent 50%); display: flex; flex-direction: column; justify-content: flex-end; padding: 30px; transform: translateY(20px); opacity: 0; transition: all .4s; }
.work-card:hover .work-overlay { transform: translateY(0); opacity: 1; }
.work-cat { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: 6px; }
.work-name { font-family: 'Syne', sans-serif; font-size: 18px; font-weight: 800; color: var(--white); }

/* ── PROCESS ── */
.process { padding: 100px 60px; background: var(--gray); position: relative; overflow: hidden; }
.process::before { content: 'HOW'; font-family: 'Bebas Neue', sans-serif; font-size: 260px; color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.03); position: absolute; right: -20px; top: 50%; transform: translateY(-50%); pointer-events: none; }
.process-steps { display: grid; grid-template-columns: repeat(4,1fr); gap: 32px; margin-top: 60px; position: relative; z-index: 1; }
.process-steps::before { content: ''; position: absolute; top: 28px; left: 10%; right: 10%; height: 1px; background: linear-gradient(to right, transparent, var(--mid), var(--mid), transparent); }
.step-dot { width: 56px; height: 56px; border: 1px solid var(--mid); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 24px; background: var(--gray); position: relative; z-index: 1; transition: all .3s; }
.step:hover .step-dot { background: var(--accent); border-color: var(--accent); }
.step-num { font-family: 'Bebas Neue', sans-serif; font-size: 19px; color: var(--muted); transition: color .3s; }
.step:hover .step-num { color: var(--white); }
.step-title { font-family: 'Syne', sans-serif; font-size: 16px; font-weight: 800; margin-bottom: 10px; color: var(--white); }
.step-body { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--muted); }

/* ── TESTIMONIALS ── */
.testimonials { padding: 100px 60px; }
.testi-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 60px; }
.testi-card { padding: 36px; border: 1px solid var(--mid); position: relative; transition: border-color .3s; }
.testi-card:hover { border-color: var(--accent); }
.testi-card::before { content: '"'; font-family: 'Bebas Neue', sans-serif; font-size: 90px; line-height: .6; color: var(--accent); opacity: .3; position: absolute; top: 22px; left: 32px; }
.testi-text { font-size: 14px; font-weight: 300; line-height: 1.85; color: var(--cream); margin-bottom: 24px; padding-top: 38px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--mid); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 16px; color: var(--accent); flex-shrink: 0; }
.testi-name { font-family: 'Syne', sans-serif; font-size: 13px; font-weight: 700; }
.testi-role { font-size: 11px; color: var(--muted); margin-top: 2px; }
.stars { color: var(--accent2); font-size: 11px; margin-bottom: 14px; }

/* ── CTA ── */
.cta-section { padding: 0 60px 60px; }
.cta-box { background: var(--accent); padding: 70px 80px; display: flex; justify-content: space-between; align-items: center; position: relative; overflow: hidden; gap: 32px; clip-path: polygon(20px 0%,100% 0%,calc(100% - 20px) 100%,0% 100%); }
.cta-box::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='40' height='40' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='1' cy='1' r='1' fill='rgba(0,0,0,0.08)'/%3E%3C/svg%3E"); }
.cta-eyebrow { font-family: 'Syne', sans-serif; font-size: 10px; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: rgba(0,0,0,.5); margin-bottom: 14px; position: relative; }
.cta-heading { font-family: 'Bebas Neue', sans-serif; font-size: clamp(38px,5.5vw,76px); line-height: .95; color: var(--black); position: relative; }
.cta-right { position: relative; flex-shrink: 0; }
.btn-dark { font-family: 'Syne', sans-serif; font-size: 14px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--white); background: var(--black); padding: 18px 44px; text-decoration: none; display: inline-block; clip-path: polygon(12px 0%,100% 0%,calc(100% - 12px) 100%,0% 100%); transition: all .25s; white-space: nowrap; }
.btn-dark:hover { background: var(--gray); transform: translateY(-2px); }

/* ── FOOTER ── */
footer { padding: 70px 60px 36px; border-top: 1px solid var(--mid); }
.footer-top { display: grid; grid-template-columns: 1.2fr 2fr; gap: 60px; margin-bottom: 60px; }
.footer-logo { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: .08em; color: var(--white); margin-bottom: 16px; }
.footer-logo span { color: var(--accent); }
.footer-desc { font-size: 13px; font-weight: 300; line-height: 1.85; color: var(--muted); max-width: 280px; }
.footer-cols { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; }
.footer-col-title { font-family: 'Syne', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 13px; font-weight: 300; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; border-top: 1px solid var(--mid); padding-top: 28px; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 12px; color: var(--muted); }
.footer-legal { list-style: none; display: flex; gap: 24px; }
.footer-legal a { font-size: 12px; color: var(--muted); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: var(--white); }

/* ── ANIMATIONS ── */
@keyframes fadeUp   { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity: 0; }  to { opacity: 1; } }
@keyframes marquee  { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity: .3; } 50% { opacity: 1; } }
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ════════════════════════════
   RESPONSIVE
════════════════════════════ */
@media (max-width: 900px) {
  nav { padding: 20px 28px; }
  .nav-links, .nav-cta { display: none; }
  .nav-burger { display: flex; }

  .hero { padding: 110px 28px 70px; }
  .hero-sub { flex-direction: column; align-items: flex-start; gap: 24px; }
  .hero-desc { max-width: 100%; }
  .hero-scroll { display: none; }

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

  .offer { padding: 70px 28px; }
  .offer-grid { grid-template-columns: 1fr; }

  .services { padding: 70px 28px; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .section-desc { max-width: 100%; }
  .services-grid { grid-template-columns: repeat(2,1fr); }

  .work { padding: 0 28px 80px; }

  .process { padding: 70px 28px; }
  .process::before { display: none; }
  .process-steps { grid-template-columns: repeat(2,1fr); }
  .process-steps::before { display: none; }

  .testimonials { padding: 70px 28px; }
  .testi-grid { grid-template-columns: 1fr 1fr; }

  .cta-section { padding: 0 28px 48px; }
  .cta-box { padding: 50px 40px; flex-direction: column; align-items: flex-start; clip-path: none; }

  footer { padding: 50px 28px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-cols { grid-template-columns: repeat(3,1fr); }
}

@media (max-width: 600px) {
  nav { padding: 18px 20px; }

  .hero { padding: 100px 20px 60px; min-height: 100svh; }
  .hero-num { display: none; }
  h1 { font-size: clamp(52px,15vw,80px); }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 12px; width: 100%; }
  .btn-primary { width: 100%; text-align: center; }

  .marquee-item { font-size: 15px; padding: 0 24px; gap: 24px; }
  .stats { grid-template-columns: repeat(2,1fr); }
  .stat-box { padding: 30px 18px; }

  .offer { padding: 60px 20px; }
  .offer-card { padding: 40px 28px; }

  .services { padding: 60px 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 36px 24px; }

  .work { padding: 0 20px 70px; }
  .work-grid { grid-template-columns: 1fr; }
  .work-card { aspect-ratio: 16/10 !important; grid-column: span 1 !important; }
  .work-overlay { opacity: 1; transform: translateY(0); }

  .process { padding: 60px 20px; }
  .process-steps { grid-template-columns: 1fr; gap: 32px; }

  .testimonials { padding: 60px 20px; }
  .testi-grid { grid-template-columns: 1fr; }

  .cta-section { padding: 0 20px 40px; }
  .cta-box { padding: 40px 24px; }
  .cta-heading { font-size: 44px; }
  .btn-dark { width: 100%; text-align: center; }

  footer { padding: 40px 20px 24px; }
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
