/* ─── RESET & ROOT ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg: #080808;
  --bg2: #0e0e0e;
  --bg3: #141414;
  --surface: #1a1a1a;
  --border: rgba(255,255,255,0.07);
  --text: #f0ece4;
  --text-muted: rgba(240,236,228,0.45);
  --accent: #e8c97e;    /* warm gold */
  --accent2: #c0563a;   /* burnt red */
  --accent3: #4a7c6f;   /* muted teal */
  --font-display: 'Plus Jakarta Sans', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --radius: 12px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  cursor: none;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button { font-family: var(--font-body); cursor: none; }

/* ─── TOUCH / MOBILE CURSOR RESET ───────────────────────────── */
@media (pointer: coarse), (hover: none) {
  body { cursor: auto; }
  button { cursor: pointer; }
  .cursor, .cursor-follower { display: none !important; }
  .vp-big-play { cursor: pointer; }
  .vp-btn { cursor: pointer; }
  .vp-progress { cursor: pointer; }
  .vp-vol-slider { cursor: pointer; }
}
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--accent); border-radius: 2px; }

/* ─── CURSOR ────────────────────────────────────────────────── */
.cursor {
  width: 8px; height: 8px;
  background: var(--accent);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform 0.1s;
}
.cursor-follower {
  width: 36px; height: 36px;
  border: 1px solid rgba(232, 200, 126, 0.169);
  border-radius: 50%;
  position: fixed; top: 0; left: 0;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%,-50%);
  transition: transform 0.15s, width 0.3s, height 0.3s, border-color 0.3s;
}
.cursor-follower.hovered {
  width: 56px; height: 56px;
  border-color: var(--accent);
}

/* ─── CONTAINER ─────────────────────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ─── NAV ───────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 48px;
  transition: background var(--transition), backdrop-filter var(--transition);
}
.nav.scrolled {
  background: rgba(8,8,8,0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.35rem;
  letter-spacing: 0.08em;
}
.dot { color: var(--accent); }

.nav-links {
  display: flex; align-items: center; gap: 36px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: color var(--transition);
  letter-spacing: 0.03em;
}
.nav-links a:hover { color: var(--text); }
.nav-cta {
  background: var(--accent);
  color: #0a0a0a !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.85rem !important;
  transition: transform var(--transition), box-shadow var(--transition) !important;
}
.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 32px rgba(232,201,126,0.25) !important;
}
.hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  background: none; border: none;
}
.hamburger span {
  display: block; width: 24px; height: 1.5px;
  background: var(--text);
  transition: var(--transition);
}
.hamburger.open span:first-child { transform: rotate(45deg) translate(4.5px, 4.5px); }
.hamburger.open span:last-child { transform: rotate(-45deg) translate(4.5px, -4.5px); }

/* ─── MOBILE MENU ───────────────────────────────────────────── */
.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--bg);
  z-index: 999;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 32px;
  transform: translateX(100%);
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }
.mob-link {
  font-family: var(--font-display);
  font-size: 2rem; font-weight: 700;
  color: var(--text-muted);
  transition: color var(--transition);
}
.mob-link:hover { color: var(--accent); }
.mob-cta {
  background: var(--accent); color: #0a0a0a;
  padding: 14px 40px; border-radius: 100px;
  font-size: 1.1rem !important;
  margin-top: 16px;
}

/* ─── HERO ───────────────────────────────────────────────────── */
.hero {
  min-height: fit-content;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 130px 48px 20px;
  position: relative;
  overflow: hidden;
}
.hero-noise {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
  pointer-events: none; z-index: 0;
}
.hero > * { position: relative; z-index: 1; }

.hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(232,201,126,0.08);
  border: 1px solid rgba(232,201,126,0.2);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.8rem; color: var(--accent);
  font-weight: 500; letter-spacing: 0.04em;
  margin-bottom: 36px;
  opacity: 0; animation: fadeUp 0.7s 0.2s forwards;
}
.badge-dot {
  width: 7px; height: 7px;
  background: #4ade80; border-radius: 50%;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem/2, 8vw/2, 7.5rem/2);
  font-weight: 800;
  line-height: 1.0;
  letter-spacing: -0.03em;
  max-width: 820px;
  margin-bottom: 28px;
}
.hero-headline em { color: var(--accent); font-style: normal; }
.line {
  display: block;
  opacity: 0; transform: translateY(30px);
}
.line-1 { animation: fadeUp 0.8s 0.4s forwards; }
.line-2 { animation: fadeUp 0.8s 0.6s forwards; }

.hero-sub {
  max-width: 500px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.hero-sub span { color: var(--text); font-weight: 500; }

.hero-actions {
  display: flex; align-items: center; gap: 20px;
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}
.btn-primary {
  background: var(--accent);
  color: #0a0a0a;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600; font-size: 0.95rem;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
  display: inline-block;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 48px rgba(232,201,126,0.3);
}
.btn-ghost {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}
.btn-ghost:hover { color: var(--text); }

.hero-stats {
  display: flex; align-items: center; gap: 32px;
  opacity: 0; animation: fadeUp 0.8s 1.2s forwards;
}
.stat { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem; font-weight: 800;
  color: var(--accent);
}
.stat-plus { font-family: var(--font-display); font-size: 1.2rem; color: var(--accent); }
.stat p {
  font-size: 0.75rem; color: var(--text-muted);
  letter-spacing: 0.06em; text-transform: uppercase;
  margin-top: 2px;
}
.stat-divider {
  width: 1px; height: 40px;
  background: var(--border);
}

.scroll-hint {
  position: absolute; bottom: 40px; right: 48px;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0; animation: fadeUp 0.8s 1.5s forwards;
}
.scroll-line {
  width: 1px; height: 50px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ─── TICKER ────────────────────────────────────────────────── */
.ticker-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
  padding: 16px 0;
}
.ticker {
  display: flex; gap: 48px;
  width: max-content;
  animation: ticker 25s linear infinite;
}
.ticker span {
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 600; font-size: 0.8rem;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--text-muted);
}
.ticker-dot { color: var(--accent) !important; font-size: 0.6rem !important; }
@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── SECTION SHARED ────────────────────────────────────────── */
.section-label {
  font-size: 0.7rem; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  font-weight: 600; margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title em { color: var(--accent); font-style: normal; }
.section-sub { color: var(--text-muted); margin-bottom: 60px; }

/* ─── ABOUT ─────────────────────────────────────────────────── */
.about {
  padding: 120px 0;
  background: var(--bg2);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: start;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 800; line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.about-text h2 em { color: var(--accent); font-style: normal; }
.about-body {
  color: var(--text-muted); font-size: 1rem;
  line-height: 1.75; margin-bottom: 16px;
}
.about-pills {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 32px;
  margin-top: 32px;

}
.about-pills span {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 6px 14px; border-radius: 100px;
  font-size: 0.8rem; color: var(--text-muted);
  font-weight: 500;
}

.about-visual { display: flex; flex-direction: column; gap: 16px; }
.about-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  position: relative; overflow: hidden;
}
.about-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(232,201,126,0.06), transparent 70%);
}
.card-stat-big span {
  font-family: var(--font-display);
  font-size: 4rem; font-weight: 800;
  color: var(--accent); display: block;
  line-height: 1;
}
.card-stat-big p { color: var(--text-muted); font-size: 0.9rem; margin-top: 8px; }

.about-testimonial {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px; display: flex; gap: 16px; align-items: flex-start;
}
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--accent); color: #0a0a0a;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1rem; flex-shrink: 0;
}
.testimonial-quote { font-size: 0.9rem; margin-bottom: 4px; line-height: 1.5; }
.testimonial-handle { font-size: 0.75rem; color: var(--text-muted); }

/* ─── WORK (replace the entire old .work block) ─────────────── */
.work { padding: 120px 0; }
.work .container { margin-bottom: 72px; }

.work-list {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
}

.work-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  border-top: 1px solid var(--border);
  padding: 72px 0;
  gap: 64px;
  align-items: center;
}
.work-row:last-child { border-bottom: 1px solid var(--border); }

.work-row-reverse .work-video-wrap { order: 2; }
.work-row-reverse .work-desc       { order: 1; }
.work-row-reverse {  grid-template-columns: 1fr 2fr ;
}

/* ── description ── */
.work-desc {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.work-tag {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.work-desc h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.work-desc p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.75;
}
.work-metrics {
  display: flex;
  gap: 32px;
  margin-top: 8px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.metric span {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
}
.metric p {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ─── CUSTOM VIDEO PLAYER ────────────────────────────────────── */
.work-video-wrap { position: relative; }

.vp {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  background: #0a0a0a;
  /* Controls visible on hover or when paused */
}

.vp video {
  width: 100%;
  aspect-ratio: 16/9;
  display: block;
  border-radius: 14px;
}

/* ── big play overlay (shown when paused) ── */
.vp-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: opacity 0.3s;
}
.vp.playing .vp-overlay { opacity: 0; pointer-events: none; }

.vp-big-play {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: rgba(232, 201, 126, 0.12);
  border: 1.5px solid rgba(232, 201, 126, 0.35);
  display: flex; align-items: center; justify-content: center;
  pointer-events: all;
  transition: background 0.25s, transform 0.25s, border-color 0.25s;
  backdrop-filter: blur(8px);
  cursor: none;
}
.vp-big-play:hover {
  background: rgba(232, 201, 126, 0.22);
  border-color: var(--accent);
  transform: scale(1.08);
}
.vp-big-play svg {
  width: 20px; height: 20px;
  fill: var(--accent);
  stroke: none;
  margin-left: 3px; /* optical centre for play triangle */
}

/* ── control bar ── */
.vp-controls {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 36px 18px 14px;
  background: linear-gradient(to top, rgba(6,6,6,0.92) 0%, transparent 100%);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.3s, transform 0.3s;
  border-radius: 0 0 14px 14px;
}
.vp:hover .vp-controls,
.vp.paused .vp-controls {
  opacity: 1;
  transform: translateY(0);
}
/* always show controls when paused at start */
.vp:not(.playing) .vp-controls { opacity: 1; transform: translateY(0); }

/* ── progress bar ── */
.vp-progress {
  margin-bottom: 10px;
  cursor: pointer;
  padding: 5px 0; /* expand hit area */
}
.vp-bar-bg {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  position: relative;
  transition: height 0.2s;
}
.vp-progress:hover .vp-bar-bg { height: 5px; }

.vp-buffer {
  position: absolute; top: 0; left: 0; height: 100%;
  background: rgba(255,255,255,0.18);
  border-radius: 99px;
  width: 0%;
  pointer-events: none;
}
.vp-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--accent);
  border-radius: 99px;
  width: 0%;
  pointer-events: none;
}
.vp-thumb {
  position: absolute; top: 50%;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s;
  pointer-events: none;
  box-shadow: 0 0 8px rgba(232,201,126,0.5);
}
.vp-progress:hover .vp-thumb { transform: translate(-50%, -50%) scale(1); }

/* ── bottom row ── */
.vp-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.vp-left, .vp-right {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ── icon buttons ── */
.vp-btn {
  background: none;
  border: none;
  color: rgba(240,236,228,0.7);
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  flex-shrink: 0;
}
.vp-btn:hover {
  color: var(--accent);
  background: rgba(232,201,126,0.08);
}
.vp-btn svg {
  width: 16px; height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* play/pause fill icons */
.vp-play-pause svg polygon,
.vp-big-play svg polygon { fill: currentColor; stroke: none; }

/* ── volume ── */
.vp-volume-wrap {
  display: flex;
  align-items: center;
  gap: 0;
}
.vp-vol-slider {
  width: 0;
  overflow: hidden;
  transition: width 0.25s ease;
  cursor: pointer;
}
 .vp-vol-slider { width: 60px; }

.vp-vol-bg {
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 99px;
  position: relative;
  margin: 0 8px;
  width: 44px;
}
.vp-vol-fill {
  position: absolute; top: 0; left: 0; height: 100%;
  background: var(--accent);
  border-radius: 99px;
  width: 100%;
  pointer-events: none;
}
.vp-vol-thumb {
  position: absolute; top: 50%;
  width: 10px; height: 10px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
  right: 0; left: auto;
  transform: translateY(-50%);
}

/* ── time display ── */
.vp-time {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(240,236,228,0.5);
  letter-spacing: 0.04em;
  padding-left: 6px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

/* ── vol icon paths ── */
.vp-btn svg path.vol-lines { fill: none; }

/* ── responsive ── */
@media (max-width: 900px) {
  .work-list { padding: 0 24px; }
  .work-row {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 0;
  } 
  .work-row-reverse {
    grid-template-columns: 1fr !important;
  }
  .work-row-reverse .work-video-wrap { order: 0; }
  .work-row-reverse .work-desc       { order: 1 !important; }
  .vp-controls { opacity: 1; transform: none; }

  
}


/* ─── SOLUTION ───────────────────────────────────────────────── */
.solution {
  padding: 120px 0;
  background: var(--bg2);
}
.solution-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 64px;
}
.solution-col {
  padding: 56px 48px;
  border: 1px solid var(--border);
}
.problem-col { background: var(--bg3); border-radius: var(--radius) 0 0 var(--radius); }
.fix-col {
  background: var(--surface);
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: none;
  position: relative; overflow: hidden;
}
.fix-col::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--accent), transparent);
}
.solution-col h3 {
  font-family: var(--font-display);
  font-size: 1.2rem; font-weight: 700;
  margin-bottom: 32px; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.8rem;
}
.fix-col h3 { color: var(--accent); }
.solution-col ul { list-style: none; display: flex; flex-direction: column; gap: 20px; }
.solution-col li {
  display: flex; align-items: flex-start; gap: 14px;
  font-size: 0.95rem; line-height: 1.5;
}
.x { color: var(--accent2); font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.check { color: #4ade80; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.problem-col li { color: var(--text-muted); }

/* ─── PROCESS ────────────────────────────────────────────────── */
.process { padding: 120px 0; }
.process-steps {
  margin-top: 72px;
  display: flex; flex-direction: column;
}
.process-step {
  display: grid; grid-template-columns: 80px 1fr 60px;
  gap: 32px; align-items: center;
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.process-step:last-child { border-bottom: none; }
.process-step:hover { background: rgba(255,255,255,0.015); }

.step-num {
  font-family: var(--font-display);
  font-size: 0.75rem; font-weight: 700;
  color: var(--accent); letter-spacing: 0.1em;
}
.step-content h3 {
  font-family: var(--font-display);
  font-size: 1.4rem; font-weight: 700;
  margin-bottom: 8px;
}
.step-content p { color: var(--text-muted); font-size: 0.95rem; max-width: 600px; }
.step-icon { font-size: 1.8rem; text-align: right; opacity: 0.4; }
.step-connector {
  width: 1px; height: 24px;
  background: var(--border);
  margin-left: 40px;
}

/* ─── TESTIMONIALS ───────────────────────────────────────────── */
.testimonials {
  padding: 120px 0;
  background: var(--bg2);
  overflow: hidden;
}
.testimonials .container { margin-bottom: 56px; }
.testimonial-track-wrap {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}
.testimonial-track {
  display: flex; gap: 20px;
  animation: testimonialScroll 30s linear infinite;
  width: max-content;
}
.testimonial-track:hover { animation-play-state: paused; }
@keyframes testimonialScroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.t-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px; width: 340px; flex-shrink: 0;
}
.t-stars { color: var(--accent); font-size: 0.9rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-card p { font-size: 0.92rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 20px; }
.t-author { font-size: 0.8rem; }
.t-author span { color: var(--accent); font-weight: 600; }

/* ─── FAQ ────────────────────────────────────────────────────── */
.faq { padding: 120px 0; }
.faq-list { margin-top: 64px; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; padding: 28px 0;
  display: flex; justify-content: space-between; align-items: center;
  background: none; border: none; color: var(--text);
  font-size: 1.05rem; font-weight: 500;
  text-align: left; transition: color var(--transition);
}
.faq-q:hover { color: var(--accent); }
.faq-arrow {
  font-size: 1.2rem; color: var(--text-muted);
  transition: transform 0.3s;
  flex-shrink: 0;
}
.faq-item.open .faq-arrow { transform: rotate(180deg); color: var(--accent); }
.faq-a {
  color: var(--text-muted); font-size: 0.95rem; line-height: 1.75;
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-item.open .faq-a { max-height: 200px; padding-bottom: 28px; }

/* ─── CONTACT ────────────────────────────────────────────────── */
.contact {
  padding: 120px 0;
  background: var(--bg2);
}
.contact-inner {
  max-width: 720px;
}

.short-form-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap; /* important for mobile */
  justify-content: center;
}

iframe {
  width: 100%;
  max-width: 600px;
  
  aspect-ratio: 1.77726575 / 1; /* 300x600 = 1:2 */
  height: auto;
  border: none;
  
}

.round-corner {
  border-radius: 10px;
}

.short-form-row iframe {
  width: 100%;
  max-width: 300px;
  
  aspect-ratio: 1 / 1.8; /* 300x600 = 1:2 */
  height: auto;
  border: none;
}
.btn-whatsapp {
  background: #1ab618;
  color: aliceblue;
}
.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800; line-height: 1.1;
  letter-spacing: -0.02em; margin-bottom: 16px;
}
.contact h2 em { color: var(--accent); font-style: normal; }
.contact-sub { color: var(--text-muted); margin-bottom: 48px; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label { font-size: 0.8rem; color: var(--text-muted); letter-spacing: 0.04em; font-weight: 500; }
.form-group input,
.form-group textarea {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--text); font-family: var(--font-body); font-size: 0.95rem;
  outline: none; resize: vertical;
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: rgba(232,201,126,0.4);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,236,228,0.2); }

.btn-submit { align-self: flex-start; margin-top: 8px; font-size: 1rem; padding: 16px 40px; }

.contact-alt {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 20px;
}
.contact-alt p { color: var(--text-muted); font-size: 0.9rem; }
.x-link {
  color: var(--accent); font-weight: 600; font-size: 0.9rem;
  transition: opacity var(--transition);
}
.x-link:hover { opacity: 0.7; }

/* ─── FOOTER ─────────────────────────────────────────────────── */
.footer {
  padding: 64px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 20px; text-align: center;
}
.footer-logo {
  font-family: var(--font-display);
  font-weight: 800; font-size: 1.2rem; letter-spacing: 0.06em;
}
.footer-tagline { color: var(--text-muted); font-size: 0.9rem; }
.footer-links {
  display: flex; gap: 32px;
}
.footer-links a {
  font-size: 0.85rem; color: var(--text-muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-copy { font-size: 0.75rem; color: rgba(240,236,228,0.2); }

/* ─── SCROLL REVEAL ─────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

/* ─── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .nav { padding: 18px 24px; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  
  .hero { padding: 110px 24px 80px; }
  .scroll-hint { right: 24px; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  
  .work-grid {
    grid-template-columns: 1fr 1fr;
    padding: 0 24px;
  }
  
  .solution-grid { grid-template-columns: 1fr; }
  .problem-col { border-radius: var(--radius) var(--radius) 0 0; }
  .fix-col {
    border-radius: 0 0 var(--radius) var(--radius);
    border-left: 1px solid var(--border);
    border-top: none;
  }
  
  .process-step { grid-template-columns: 60px 1fr; }
  .step-icon { display: none; }
  
  .form-row { grid-template-columns: 1fr; }
  
  .container { padding: 0 24px; }

  /* Short-form: 2-column grid on tablet */
  .short-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .short-form-row h2 {
    grid-column: 1 / -1;
  }
  .short-form-row iframe {
    max-width: 100%;
    width: 100%;
    aspect-ratio: 9 / 16;
    height: auto;
  }
}

@media (max-width: 600px) {
  .work-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .contact-alt { flex-direction: column; align-items: flex-start; gap: 8px; }
  .solution-col { padding: 40px 28px; }
  .t-card { width: 280px; }

  /* Short-form: single column on phone */
  .short-form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  .short-form-row h2 {
    width: 100%;
  }
  .short-form-row iframe {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    height: auto;
  }

  /* Contact alt buttons stack */
  .contact-alt .btn-primary {
    width: 100%;
    text-align: center;
  }
}

