/* ========================================
   VEQTOR AGENCY — v2
   Inspired by clickway.fr
   ======================================== */

:root {
  --cream: #fffdf7;
  --dark: #0a0a0a;
  --dark-2: #111;
  --dark-3: #1a1a1a;
  --gold: #d1a326;
  --gold-light: #e8c560;
  --gold-dim: rgba(209,163,38,0.12);
  --text: #0a0a0a;
  --text-2: #444;
  --text-muted: #999;
  --white-08: rgba(255,255,255,0.08);
  --white-15: rgba(255,255,255,0.15);
  --radius: 20px;
  --radius-sm: 12px;
  --ease: cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(0,.55,.45,1);
  --max-w: 1200px;
  --font-head: 'Space Grotesk', sans-serif;
  --font-serif: 'DM Serif Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body); background: var(--cream); color: var(--text);
  -webkit-font-smoothing: antialiased; overflow-x: hidden; line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width:100%; display:block; }
button { font-family: inherit; cursor: pointer; border:none; background:none; }

/* Typography */
h1,h2,h3 { font-family: var(--font-head); font-weight: 700; line-height: 1.1; letter-spacing: -0.03em; }
h1 { font-size: clamp(3rem, 7vw, 5.5rem); }
h2 { font-size: clamp(2.2rem, 4.5vw, 3.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
.serif { font-family: var(--font-serif); font-weight: 400; font-style: italic; }

.container { max-width: var(--max-w); margin:0 auto; padding:0 32px; }
section { position: relative; }

/* ---- Reveal ---- */
.rv { opacity:0; transform: translateY(50px); transition: opacity .9s var(--ease), transform .9s var(--ease); }
.rv.show { opacity:1; transform:translateY(0); }
.rv-d1 { transition-delay:.1s }
.rv-d2 { transition-delay:.2s }
.rv-d3 { transition-delay:.3s }
.rv-d4 { transition-delay:.4s }

/* ========================================
   NAV
   ======================================== */
.nav {
  position:fixed; top:0; left:0; right:0; z-index:100;
  padding: 22px 0; transition: all .5s var(--ease);
}
.nav.scrolled {
  background: rgba(10,10,10,.92); backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px); padding:16px 0;
}
.nav .container { display:flex; align-items:center; justify-content:space-between; }
.nav-logo { font-family:var(--font-head); font-weight:700; font-size:1.4rem; color:#fff; letter-spacing:.06em; }
.nav-logo i { font-style:normal; color:var(--gold); }
.nav-links { display:flex; gap:36px; align-items:center; }
.nav-links a { font-size:.9rem; font-weight:500; color:rgba(255,255,255,.6); transition: color .3s; }
.nav-links a:hover { color:#fff; }
.nav-cta-wrap {
  position:relative; display:inline-flex; align-items:center; gap:8px;
  padding:12px 28px; border-radius:999px; background:#fff; color:var(--dark);
  font-weight:600; font-size:.9rem; overflow:hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.nav-cta-wrap:hover { transform:translateY(-2px); box-shadow: 0 10px 40px rgba(255,255,255,.15); }
/* Rolling text in CTA */
.roll-wrap { position:relative; overflow:hidden; height:1.2em; display:inline-flex; }
.roll-wrap span { display:block; line-height:1.2em; animation: rollUp 4s var(--ease) infinite; }
@keyframes rollUp {
  0%,30% { transform:translateY(0) }
  40%,70% { transform:translateY(-100%) }
  80%,100% { transform:translateY(-200%) }
}

/* ========================================
   HERO
   ======================================== */
.hero {
  min-height:100vh; display:flex; align-items:center; justify-content:center;
  background:var(--dark); padding:140px 0 100px; overflow:hidden; position:relative;
}
.hero::after {
  content:''; position:absolute; bottom:0; left:0; right:0; height:200px;
  background:linear-gradient(to top, var(--dark), transparent); z-index:2; pointer-events:none;
}
.hero-inner { position:relative; z-index:3; text-align:center; max-width:900px; margin:0 auto; }
.hero-tag {
  display:inline-flex; align-items:center; gap:10px; padding:10px 22px;
  border-radius:999px; border:1px solid var(--white-08);
  font-size:.82rem; font-weight:600; color:var(--gold); text-transform:uppercase;
  letter-spacing:.1em; margin-bottom:40px;
}
.hero-tag .dot { width:7px; height:7px; border-radius:50%; background:var(--gold); animation:blink 2s infinite; }
@keyframes blink { 0%,100%{opacity:1}50%{opacity:.3} }

.hero h1 { color:#fff; margin-bottom:28px; }
.hero h1 .serif { color: var(--gold-light); }

/* Rolling words in hero */
.hero-rolling {
  display:inline-block; position:relative; overflow:hidden;
  height:1.15em; vertical-align:bottom; color:var(--gold-light);
  min-width:280px;
}
.hero-rolling-inner {
  display:flex; flex-direction:column;
  animation: heroRoll 8s var(--ease) infinite;
}
.hero-rolling-inner span {
  display:block; height:1.15em; line-height:1.15em;
  font-family:var(--font-serif); font-style:italic; font-weight:400;
}
@keyframes heroRoll {
  0%,22% { transform:translateY(0) }
  25%,47% { transform:translateY(-33.33%) }
  50%,72% { transform:translateY(-66.66%) }
  75%,100% { transform:translateY(0) }
}

.hero-sub { color:var(--text-muted); font-size:clamp(1rem,1.3vw,1.2rem); max-width:560px; margin:0 auto 48px; line-height:1.7; }
.hero-ctas { display:flex; gap:16px; justify-content:center; flex-wrap:wrap; }
.btn-main {
  display:inline-flex; align-items:center; gap:10px;
  padding:18px 36px; border-radius:999px; background:var(--gold); color:var(--dark);
  font-weight:700; font-size:1rem; letter-spacing:-.01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.btn-main:hover { transform:translateY(-3px) scale(1.02); box-shadow:0 16px 50px rgba(209,163,38,.35); }
.btn-outline {
  display:inline-flex; align-items:center; gap:8px;
  padding:18px 32px; border-radius:999px; border:1px solid var(--white-15); color:#fff;
  font-weight:500; font-size:.95rem;
  transition: border-color .3s, background .3s;
}
.btn-outline:hover { border-color:rgba(255,255,255,.4); background:var(--white-08); }

/* Floating glow behind hero */
.hero-glow {
  position:absolute; width:600px; height:600px; border-radius:50%;
  filter:blur(120px); opacity:.08; pointer-events:none;
}
.hero-glow-1 { top:-100px; left:-100px; background:var(--gold); }
.hero-glow-2 { bottom:-150px; right:-100px; background:#6366f1; }

/* ========================================
   MARQUEE
   ======================================== */
.marquee-section { padding:40px 0; background:var(--dark); border-top:1px solid var(--white-08); border-bottom:1px solid var(--white-08); overflow:hidden; }
.marquee-track {
  display:flex; gap:64px; width:max-content;
  animation: marquee 20s linear infinite;
}
.marquee-item {
  display:flex; align-items:center; gap:12px; white-space:nowrap;
  font-size:.95rem; font-weight:500; color:rgba(255,255,255,.4);
}
.marquee-item .sep { width:6px; height:6px; border-radius:50%; background:var(--gold); opacity:.5; }
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ========================================
   SECTION COMMON
   ======================================== */
.section-dark { background:var(--dark); color:#fff; }
.section-cream { background:var(--cream); color:var(--text); }
.section-pad { padding:140px 0; }
.label {
  font-size:.78rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  margin-bottom:20px; display:flex; align-items:center; gap:10px;
}
.label-gold { color:var(--gold); }
.label-dark { color:var(--text-muted); }
.label::before { content:''; width:24px; height:1.5px; }
.label-gold::before { background:var(--gold); }
.label-dark::before { background:var(--text-muted); }
.section-sub { font-size:clamp(1rem,1.2vw,1.1rem); line-height:1.7; max-width:520px; }
.section-sub-light { color:rgba(255,255,255,.5); }
.section-sub-dark { color:var(--text-2); }

/* ========================================
   PAIN / BENTO GRID
   ======================================== */
.pain { padding:140px 0; background:var(--cream); }
.pain-head { margin-bottom:80px; max-width:650px; }

.bento {
  display:grid; grid-template-columns:1.2fr 1fr; gap:24px;
}
.bento-big {
  background:#fff; border-radius:var(--radius); padding:56px 48px;
  position:relative; overflow:hidden; border:1px solid rgba(0,0,0,.04);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.bento-big:hover {
  border-color:rgba(209,163,38,.2);
  box-shadow:0 24px 60px rgba(0,0,0,.07);
}
.bento-big-inner { position:relative; z-index:1; }
.bento-counter { display:flex; align-items:baseline; margin-bottom:20px; }
.bento-counter-num {
  font-family:var(--font-head); font-size:6rem; font-weight:700;
  line-height:1; letter-spacing:-.05em;
  background:linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text;
}
.bento-counter-suffix {
  font-family:var(--font-head); font-size:3rem; font-weight:700;
  background:linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip:text; -webkit-text-fill-color:transparent;
  background-clip:text; margin-left:4px;
}
.bento-big h3 { font-size:1.4rem; margin-bottom:14px; }
.bento-big p { color:var(--text-2); font-size:.95rem; line-height:1.7; }
.bento-big-accent {
  position:absolute; bottom:-40px; right:-40px; width:200px; height:200px;
  border-radius:50%; background:radial-gradient(circle, rgba(209,163,38,.1) 0%, transparent 70%);
  pointer-events:none;
}

.bento-stack { display:flex; flex-direction:column; gap:24px; }
.bento-small {
  flex:1; padding:36px 32px; background:#fff; border-radius:var(--radius);
  border:1px solid rgba(0,0,0,.04); position:relative; overflow:hidden;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .5s var(--ease);
}
.bento-small:hover {
  border-color:rgba(209,163,38,.2);
  box-shadow:0 16px 48px rgba(0,0,0,.06);
}
.bento-small-icon {
  width:44px; height:44px; border-radius:12px; margin-bottom:20px;
  background:var(--gold-dim); display:flex; align-items:center; justify-content:center;
}
.bento-small-icon svg { width:22px; height:22px; color:var(--gold); }
.bento-small h3 { font-size:1.15rem; margin-bottom:10px; }
.bento-small p { color:var(--text-2); font-size:.9rem; line-height:1.7; }

/* ========================================
   METHOD / TIMELINE
   ======================================== */
.method { padding:140px 0; background:var(--dark); color:#fff; overflow:hidden; }
.method-head {
  text-align:center; max-width:700px; margin:0 auto 80px;
}
.method-head .label { justify-content:center; }
.method-head .section-sub { margin:16px auto 0; }

.timeline {
  position:relative; display:flex; justify-content:space-between; gap:24px;
  padding-top:60px; max-width:960px; margin:0 auto;
}
.timeline-line {
  position:absolute; top:30px; left:40px; right:40px; height:2px;
  background:var(--white-08); z-index:0;
}
.timeline-line-fill {
  position:absolute; top:30px; left:40px; height:2px; width:0;
  background:linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index:1; transition: width 1.2s var(--ease);
}
.timeline.animated .timeline-line-fill {
  width:calc(100% - 80px);
}
.timeline-step {
  flex:1; display:flex; flex-direction:column; align-items:center;
  text-align:center; position:relative; z-index:2;
}
.timeline-dot {
  width:60px; height:60px; border-radius:50%; position:absolute; top:-30px;
  background:var(--dark-2); border:2px solid var(--white-15);
  display:flex; align-items:center; justify-content:center;
  transition: border-color .5s var(--ease), background .5s var(--ease), transform .5s var(--ease);
}
.timeline-dot span {
  font-family:var(--font-head); font-size:1.1rem; font-weight:700;
  color:rgba(255,255,255,.4); transition: color .5s var(--ease);
}
.timeline-step:hover .timeline-dot {
  border-color:var(--gold); background:rgba(209,163,38,.1);
  transform:scale(1.1);
}
.timeline-step:hover .timeline-dot span { color:var(--gold); }
.timeline-dot.active {
  border-color:var(--gold); background:var(--gold);
}
.timeline-dot.active span {
  color:var(--dark); font-weight:700;
}
.timeline-content {
  padding-top:48px;
}
.timeline-content h3 {
  font-size:1.2rem; color:#fff; margin-bottom:12px;
}
.timeline-content p {
  color:rgba(255,255,255,.5); font-size:.9rem; line-height:1.7; max-width:280px; margin:0 auto;
}

/* ========================================
   RESULTS (floating screenshots)
   ======================================== */
.results { padding:140px 0; background:var(--cream); overflow:hidden; }
.results-head { text-align:center; margin-bottom:80px; }
.results-head h2 { margin-bottom:16px; }
.results-head .label { justify-content:center; }
.results-head .section-sub { margin:0 auto; }

.results-float-wrap {
  position:relative; max-width:1000px; margin:0 auto; min-height:500px;
  perspective:1200px;
}
.float-card {
  border-radius:var(--radius); overflow:hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,.12), 0 8px 24px rgba(0,0,0,.06);
  transition: transform .6s var(--ease), box-shadow .6s var(--ease);
  will-change:transform;
}
.float-card:hover {
  transform: perspective(1200px) rotateY(0deg) rotateX(0deg) translateY(-12px) scale(1.02) !important;
  box-shadow: 0 40px 100px rgba(0,0,0,.18), 0 12px 32px rgba(0,0,0,.1);
}
.float-main {
  position:relative; z-index:3; max-width:700px; margin:0 auto;
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
  animation: floatMain 6s ease-in-out infinite;
}
.float-side-1 {
  position:absolute; top:40px; right:-60px; z-index:4; width:240px;
  transform: perspective(1200px) rotateY(-8deg) rotateX(3deg);
  animation: floatSide 7s ease-in-out infinite;
}
.float-side-2 {
  position:absolute; bottom:20px; left:-40px; z-index:2; width:260px;
  transform: perspective(1200px) rotateY(5deg) rotateX(-2deg);
  animation: floatSide 8s ease-in-out infinite reverse;
}
.float-card img { width:100%; display:block; }

@keyframes floatMain {
  0%,100% { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(0) }
  50% { transform: perspective(1200px) rotateY(-2deg) rotateX(1deg) translateY(-16px) }
}
@keyframes floatSide {
  0%,100% { transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(0) }
  50% { transform: perspective(1200px) rotateY(-8deg) rotateX(3deg) translateY(-12px) }
}

/* Stats row below screenshots */
.results-stats {
  display:flex; justify-content:center; gap:48px; margin-top:64px;
  flex-wrap:wrap;
}
.stat-item { text-align:center; }
.stat-num { font-family:var(--font-head); font-size:2.8rem; font-weight:700; line-height:1; letter-spacing:-.03em; }
.stat-label { font-size:.85rem; color:var(--text-muted); margin-top:6px; }

/* ========================================
   PORTFOLIO (floating mockups)
   ======================================== */
.portfolio { padding:140px 0; background:var(--dark); color:#fff; overflow:hidden; }
.portfolio-head { text-align:center; margin-bottom:80px; }
.portfolio-head h2 { margin-bottom:16px; }
.portfolio-head .label { justify-content:center; }
.portfolio-head .section-sub { margin:0 auto; }
.portfolio-grid { display:grid; grid-template-columns:repeat(2,1fr); gap:32px; }
.portfolio-item {
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:var(--dark-3); border:1px solid var(--white-08);
  transition: transform .5s var(--ease), border-color .5s var(--ease);
  cursor:pointer;
}
.portfolio-item:hover { transform:translateY(-6px); border-color:rgba(209,163,38,.3); }
/* Browser mockup top bar */
.mockup-bar {
  display:flex; align-items:center; gap:6px; padding:14px 20px;
  background:var(--dark-2); border-bottom:1px solid var(--white-08);
}
.mockup-dot { width:10px; height:10px; border-radius:50%; background:rgba(255,255,255,.1); }
.mockup-url {
  margin-left:12px; padding:5px 14px; border-radius:6px;
  background:rgba(255,255,255,.06); font-size:.75rem; color:var(--text-muted);
  flex:1; max-width:300px;
}
/* Iframe / screenshot preview */
.mockup-preview {
  width:100%; height:280px; overflow:hidden; position:relative;
}
.mockup-preview img {
  width:100%; height:100%; object-fit:cover; object-position:top;
  transition: transform .8s var(--ease);
}
.portfolio-item:hover .mockup-preview img { transform:scale(1.03); }
.mockup-preview::after {
  content:''; position:absolute; inset:0;
  background:linear-gradient(to bottom, transparent 60%, var(--dark-3));
  pointer-events:none;
}
/* Info overlay */
.portfolio-info {
  padding:28px 28px 32px; display:flex; justify-content:space-between; align-items:flex-end;
}
.portfolio-info h3 { font-size:1.3rem; color:#fff; margin-bottom:4px; }
.portfolio-tag {
  font-size:.75rem; font-weight:600; text-transform:uppercase; letter-spacing:.08em;
  color:var(--gold);
}
.portfolio-arrow {
  width:44px; height:44px; border-radius:50%; border:1px solid var(--white-15);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
  transition: background .3s, border-color .3s;
}
.portfolio-item:hover .portfolio-arrow { background:var(--gold); border-color:var(--gold); }
.portfolio-arrow svg { width:18px; height:18px; stroke:rgba(255,255,255,.6); transition:stroke .3s; }
.portfolio-item:hover .portfolio-arrow svg { stroke:var(--dark); }

/* ========================================
   OFFER
   ======================================== */
.offer { padding:140px 0; background:var(--cream); }
.offer-layout { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
.offer-left { max-width:480px; }
.offer-left h2 { margin-bottom:20px; }
.offer-left .section-sub { margin-bottom:48px; }

.offer-card {
  padding:56px 48px; border-radius:var(--radius); background:var(--dark); color:#fff;
  position:relative; overflow:hidden;
}
.offer-card::before {
  content:''; position:absolute; top:-50%; right:-30%; width:300px; height:300px;
  background:radial-gradient(circle,rgba(209,163,38,.12) 0%,transparent 70%);
  pointer-events:none;
}
.offer-price { display:flex; align-items:baseline; gap:8px; margin-bottom:8px; position:relative; }
.offer-price .amount {
  font-family:var(--font-head); font-size:4rem; font-weight:700; letter-spacing:-.04em;
}
.offer-price .per { font-size:1.1rem; color:var(--text-muted); }
.offer-badge {
  display:inline-flex; padding:7px 18px; border-radius:999px;
  background:var(--gold-dim); color:var(--gold-light);
  font-size:.82rem; font-weight:700; letter-spacing:.04em; margin-bottom:36px;
}
.offer-list { display:flex; flex-direction:column; gap:18px; margin-bottom:44px; position:relative; }
.offer-list-item {
  display:flex; align-items:center; gap:14px; font-size:.95rem; color:rgba(255,255,255,.75);
}
.offer-check {
  width:22px; height:22px; border-radius:6px; background:var(--gold-dim);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.offer-check svg { width:12px; height:12px; stroke:var(--gold); stroke-width:3; }
.offer-btn {
  display:flex; align-items:center; justify-content:center; gap:10px;
  width:100%; padding:20px; border-radius:999px;
  background:var(--gold); color:var(--dark); font-weight:700; font-size:1.05rem;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  position:relative;
}
.offer-btn:hover { transform:translateY(-3px); box-shadow:0 16px 50px rgba(209,163,38,.3); }

/* ========================================
   FAQ
   ======================================== */
.faq { padding:140px 0; background:var(--dark); color:#fff; }
.faq-layout { display:grid; grid-template-columns:.8fr 1fr; gap:80px; align-items:start; }
.faq-left h2 { margin-bottom:14px; }
.faq-left .section-sub { color:rgba(255,255,255,.5); }
.faq-list { border-top:1px solid var(--white-08); }
.faq-item { border-bottom:1px solid var(--white-08); }
.faq-q {
  width:100%; text-align:left; padding:28px 0;
  display:flex; justify-content:space-between; align-items:center; gap:20px;
  font-size:1.05rem; font-weight:600; color:#fff;
  font-family:var(--font-head); letter-spacing:-.01em;
  transition: color .3s;
}
.faq-q:hover { color:var(--gold-light); }
.faq-icon {
  width:32px; height:32px; border-radius:50%; border:1px solid var(--white-15);
  display:flex; align-items:center; justify-content:center; font-size:1.2rem;
  color:rgba(255,255,255,.5); flex-shrink:0;
  transition: transform .4s var(--ease), border-color .3s, color .3s;
}
.faq-item.open .faq-icon { transform:rotate(45deg); border-color:var(--gold); color:var(--gold); }
.faq-a { max-height:0; overflow:hidden; transition: max-height .6s var(--ease); }
.faq-item.open .faq-a { max-height:300px; }
.faq-a p { padding-bottom:28px; color:rgba(255,255,255,.5); font-size:.95rem; line-height:1.8; }

/* ========================================
   FINAL CTA
   ======================================== */
.final-cta {
  padding:120px 0; background:var(--cream); text-align:center;
  position:relative; overflow:hidden;
}
.final-cta::before {
  content:''; position:absolute; top:50%; left:50%;
  width:500px; height:500px; border-radius:50%;
  transform:translate(-50%,-50%); filter:blur(100px); opacity:.06;
  background:var(--gold); pointer-events:none;
}
.final-cta h2 { margin-bottom:14px; position:relative; }
.final-cta p { color:var(--text-2); font-size:1.1rem; margin-bottom:40px; position:relative; }
.final-cta .btn-main { position:relative; font-size:1.1rem; padding:20px 44px; }

/* ========================================
   FOOTER
   ======================================== */
.footer {
  padding:32px 0; background:var(--cream); border-top:1px solid rgba(0,0,0,.06);
  font-size:.82rem; color:var(--text-muted);
}
.footer .container { display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; }

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.wa {
  position:fixed; bottom:28px; right:28px; z-index:90;
  width:60px; height:60px; border-radius:50%; background:#25d366;
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 8px 30px rgba(37,211,102,.35);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.wa:hover { transform:scale(1.1); box-shadow:0 12px 40px rgba(37,211,102,.45); }
.wa svg { width:28px; height:28px; }

/* ========================================
   RESPONSIVE
   ======================================== */
/* ---- Tablet ---- */
@media(max-width:1024px) {
  /* Bento tablet */
  .bento { grid-template-columns:1fr; }
  .bento-stack { flex-direction:row; gap:20px; }

  /* Timeline tablet — vertical with line */
  .timeline { flex-direction:column; padding-top:0; padding-left:56px; gap:48px; }
  .timeline-line { top:0; bottom:0; left:30px; right:auto; width:2px; height:auto; }
  .timeline-line-fill { top:0; left:30px; right:auto; width:2px; height:0; }
  .timeline.animated .timeline-line-fill { width:2px; height:calc(100% - 40px); }
  .timeline-step { flex-direction:row; align-items:flex-start; text-align:left; }
  .timeline-dot { position:relative; top:auto; left:auto; margin-left:-56px; flex-shrink:0; }
  .timeline-content { padding-top:0; padding-left:24px; }
  .timeline-content p { max-width:none; margin:0; }

  /* Method head tablet */
  .method-head { text-align:left; margin:0 0 60px; }
  .method-head .label { justify-content:flex-start; }
  .method-head .section-sub { margin:14px 0 0; }

  /* Grid layouts tablet */
  .portfolio-grid { grid-template-columns:1fr; gap:24px; }
  .offer-layout, .faq-layout { grid-template-columns:1fr; gap:48px; }

  /* Results tablet */
  .float-side-1, .float-side-2 { display:none; }
  .float-main { max-width:100%; }
  .results-stats { gap:32px; }

  /* Nav tablet */
  .nav-links { display:none; }
}

/* ---- Mobile ---- */
@media(max-width:640px) {
  .container { padding:0 20px; }

  /* Typography mobile */
  h1 { font-size:2.2rem; }
  h2 { font-size:1.7rem; line-height:1.15; }
  h3 { font-size:1.1rem; }
  .serif { font-size:inherit; }
  .label { font-size:.72rem; margin-bottom:14px; }
  .section-sub { font-size:.92rem; line-height:1.65; }

  /* Disable tilt on touch */
  [data-tilt] { transform:none !important; }

  /* Nav mobile */
  .nav { padding:14px 0; }
  .nav.scrolled { padding:10px 0; }
  .nav-logo { font-size:1.15rem; }
  .nav-cta-wrap { padding:9px 18px; font-size:.8rem; }

  /* Hero mobile */
  .hero { padding:100px 0 56px; min-height:auto; }
  .hero-tag { font-size:.7rem; padding:8px 14px; margin-bottom:24px; gap:8px; }
  .hero-tag .dot { width:6px; height:6px; }
  .hero h1 { margin-bottom:18px; }
  .hero-rolling { min-width:160px; }
  .hero-sub { font-size:.9rem; margin-bottom:32px; line-height:1.6; }
  .hero-ctas { flex-direction:column; align-items:stretch; gap:12px; }
  .btn-main { justify-content:center; padding:16px 24px; font-size:.95rem; }
  .btn-outline { justify-content:center; padding:14px 24px; font-size:.9rem; }
  .hero-glow { width:250px; height:250px; filter:blur(80px); }
  .hero::after { height:100px; }

  /* Marquee mobile */
  .marquee-section { padding:20px 0; }
  .marquee-item { font-size:.78rem; gap:10px; }
  .marquee-track { gap:32px; }
  .marquee-item .sep { width:5px; height:5px; }

  /* Sections mobile spacing */
  .pain, .method, .results, .portfolio, .offer, .faq, .final-cta { padding:64px 0; }

  /* ---- Bento grid mobile ---- */
  .pain-head { margin-bottom:40px; }
  .bento { gap:14px; }
  .bento-big { padding:32px 24px; border-radius:16px; }
  .bento-counter { margin-bottom:16px; }
  .bento-counter-num { font-size:3.8rem; }
  .bento-counter-suffix { font-size:1.8rem; }
  .bento-big h3 { font-size:1.1rem; margin-bottom:10px; }
  .bento-big p { font-size:.88rem; line-height:1.65; }
  .bento-big-accent { width:140px; height:140px; bottom:-30px; right:-30px; }
  .bento-stack { flex-direction:column; gap:14px; }
  .bento-small { padding:24px 22px; border-radius:16px; }
  .bento-small-icon { width:40px; height:40px; border-radius:10px; margin-bottom:14px; }
  .bento-small-icon svg { width:18px; height:18px; }
  .bento-small h3 { font-size:1.05rem; margin-bottom:8px; }
  .bento-small p { font-size:.85rem; line-height:1.6; }

  /* ---- Timeline mobile ---- */
  .method-head { margin-bottom:44px; text-align:left; }
  .method-head .label { justify-content:flex-start; }
  .method-head .section-sub { margin:14px 0 0; }
  .timeline { gap:0; padding-left:0; }
  .timeline-line,
  .timeline-line-fill { display:none; }
  .timeline-step {
    flex-direction:column; align-items:stretch; text-align:left;
    padding:28px 24px; margin-bottom:14px;
    border-radius:16px; border:1px solid var(--white-08);
    background:rgba(255,255,255,.03);
  }
  .timeline-dot {
    position:static; width:44px; height:44px; margin:0 0 16px 0;
    flex-shrink:0;
  }
  .timeline-dot span { font-size:.9rem; }
  .timeline-content { padding:0; }
  .timeline-content h3 { font-size:1.05rem; margin-bottom:8px; }
  .timeline-content p { font-size:.85rem; max-width:none; margin:0; line-height:1.6; }

  /* ---- Results mobile ---- */
  .results-head { margin-bottom:40px; }
  .results-float-wrap { min-height:auto; perspective:none; }
  .float-main { transform:none !important; animation:none !important; max-width:100%; }
  .float-card { border-radius:var(--radius-sm); box-shadow:0 12px 40px rgba(0,0,0,.1); }
  .float-side-1, .float-side-2 { display:none; }
  .results-stats {
    gap:0; margin-top:36px;
    display:grid; grid-template-columns:1fr 1fr;
    border:1px solid rgba(0,0,0,.06); border-radius:16px; overflow:hidden;
  }
  .stat-item {
    padding:20px 12px; background:#fff;
    border-bottom:1px solid rgba(0,0,0,.06);
    border-right:1px solid rgba(0,0,0,.06);
  }
  .stat-item:nth-child(2n) { border-right:none; }
  .stat-item:nth-child(n+3) { border-bottom:none; }
  .stat-num { font-size:1.6rem; }
  .stat-label { font-size:.75rem; margin-top:4px; }

  /* ---- Portfolio mobile ---- */
  .portfolio-head { margin-bottom:40px; }
  .portfolio-grid { gap:16px; }
  .mockup-bar { padding:10px 14px; gap:5px; }
  .mockup-dot { width:7px; height:7px; }
  .mockup-url { font-size:.68rem; padding:4px 10px; margin-left:8px; }
  .mockup-preview { height:180px; }
  .portfolio-info { padding:18px 18px 22px; }
  .portfolio-info h3 { font-size:1.05rem; }
  .portfolio-tag { font-size:.7rem; }
  .portfolio-arrow { width:36px; height:36px; }
  .portfolio-arrow svg { width:16px; height:16px; }

  /* ---- Offer mobile ---- */
  .offer-left { max-width:100%; }
  .offer-left h2 { margin-bottom:14px; }
  .offer-left .section-sub { margin-bottom:32px; }
  .offer-card { padding:32px 22px; border-radius:16px; }
  .offer-card::before { width:200px; height:200px; }
  .offer-price { margin-bottom:6px; }
  .offer-price .amount { font-size:2.8rem; }
  .offer-price .per { font-size:.95rem; }
  .offer-badge { font-size:.75rem; padding:6px 14px; margin-bottom:28px; }
  .offer-list { gap:12px; margin-bottom:32px; }
  .offer-list-item { font-size:.88rem; gap:10px; }
  .offer-check { width:20px; height:20px; border-radius:5px; }
  .offer-check svg { width:11px; height:11px; }
  .offer-btn { padding:16px; font-size:.95rem; }

  /* ---- FAQ mobile ---- */
  .faq-layout { gap:36px; }
  .faq-q { font-size:.92rem; padding:20px 0; gap:14px; }
  .faq-icon { width:26px; height:26px; font-size:.95rem; }
  .faq-a p { font-size:.87rem; padding-bottom:20px; line-height:1.7; }

  /* ---- Final CTA mobile ---- */
  .final-cta { padding:64px 0; }
  .final-cta::before { width:300px; height:300px; }
  .final-cta p { font-size:.95rem; margin-bottom:28px; }
  .final-cta .btn-main { font-size:1rem; padding:18px 36px; }

  /* Footer mobile */
  .footer { padding:24px 0; }
  .footer .container { flex-direction:column; text-align:center; gap:6px; font-size:.78rem; }

  /* WhatsApp float mobile */
  .wa { width:52px; height:52px; bottom:20px; right:16px; }
  .wa svg { width:24px; height:24px; }
}

/* ---- Ultra small (iPhone SE, etc.) ---- */
@media(max-width:380px) {
  .container { padding:0 16px; }
  h1 { font-size:1.85rem; }
  h2 { font-size:1.5rem; }
  .hero { padding:90px 0 48px; }
  .hero-tag { font-size:.65rem; padding:7px 12px; }
  .hero-rolling { min-width:130px; }
  .hero-sub { font-size:.85rem; }
  .btn-main { padding:14px 20px; font-size:.9rem; }
  .btn-outline { padding:13px 20px; font-size:.85rem; }
  .bento-counter-num { font-size:3.2rem; }
  .bento-counter-suffix { font-size:1.5rem; }
  .bento-big { padding:28px 20px; }
  .bento-small { padding:22px 18px; }
  .timeline-step { padding:24px 20px; }
  .timeline-dot { width:38px; height:38px; }
  .timeline-dot span { font-size:.82rem; }
  .offer-price .amount { font-size:2.4rem; }
  .offer-card { padding:28px 18px; }
  .offer-list-item { font-size:.82rem; }
  .stat-num { font-size:1.4rem; }
  .stat-item { padding:16px 10px; }
  .faq-q { font-size:.85rem; }
  .portfolio-info h3 { font-size:.95rem; }
  .mockup-preview { height:150px; }
}
