/* ===================================================
   CREST CREATIVE SERVICES — Landing Page Stylesheet
   =================================================== */

/* ─── Design Tokens ──────────────────────────────── */
:root {
  --green: #4ade80;
  --green-dark: #16a34a;
  --green-light: #bbf7d0;
  --green-pale: #f0fdf4;
  --bg: #f8fafc;
  --surface: #ffffff;
  --dark: #0a0a0f;
  --dark-2: #111118;
  --dark-3: #1c1c2e;
  --ink: #0f172a;
  --ink-2: #334155;
  --ink-3: #64748b;
  --ink-4: #94a3b8;
  --border: #e2e8f0;
  --border-dark: #1e293b;

  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-alt: 'Space Grotesk', system-ui, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, .08), 0 2px 6px rgba(0, 0, 0, .05);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, .12), 0 4px 16px rgba(0, 0, 0, .07);
  --shadow-xl: 0 32px 80px rgba(0, 0, 0, .18);

  --nav-h: 72px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─── Reset ──────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  text-decoration: none;
  color: inherit;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul {
  list-style: none;
}

/* ─── Utility ────────────────────────────────────── */
.section-inner,
.nav-inner,
.hero-inner,
.stats-inner,
.footer-inner,
.cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.highlight {
  color: var(--green-dark);
  font-style: normal;
}

/* ─── Buttons ────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: -.01em;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--green);
  color: var(--ink);
  box-shadow: 0 4px 14px rgba(74, 222, 128, 0.35);
}

.btn-primary:hover {
  background: #22c55e;
  box-shadow: 0 6px 20px rgba(74, 222, 128, 0.5);
  transform: translateY(-1px);
}

.btn-dark {
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow-md);
}

.btn-dark:hover {
  background: var(--dark-3);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
}

.btn-ghost:hover {
  background: var(--surface);
  border-color: var(--ink-4);
}

.btn-outline-dark {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}

.btn-outline-dark:hover {
  background: var(--ink);
  color: #fff;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1rem;
}

/* ─── Section Common ─────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-full);
  padding: 6px 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--ink-3);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--ink-3);
  line-height: 1.7;
}

/* ════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 820px;
  z-index: 1000;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
  transition: box-shadow .3s var(--ease), background .3s var(--ease), top .3s var(--ease), max-width .3s var(--ease);
}

.navbar.scrolled {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 2px 8px rgba(0, 0, 0, 0.06);
  background: #ffffff;
  top: 12px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo-img {
  height: 30px;
  width: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  border: 1px solid var(--green-light);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: 0.74rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-left: 4px;
  white-space: nowrap;
}

.status-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-dark);
  animation: pulse 2s infinite;
}

.nav-link {
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-2);
  transition: all .2s var(--ease);
}

.nav-link:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta {
  font-size: 0.88rem;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all .25s var(--ease);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px 20px 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
  background: #ffffff;
  border-radius: 0 0 28px 28px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink-2);
}

.mobile-link:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.mobile-btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   HERO — CREATIVE POSTER LAYOUT
════════════════════════════════════════════════ */
.hero--creative {
  position: relative;
  background-color: #fafbfc;
  background-image: 
    linear-gradient(to right, rgba(0, 0, 0, 0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(0, 0, 0, 0.04) 1px, transparent 1px);
  background-size: 36px 36px;
  min-height: 92vh;
  padding-top: calc(var(--nav-h) + 40px);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Interactive Canvas Overlay */
.hero-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Ambient Corner Glows */
.hero-glow-tr {
  position: absolute;
  top: -120px;
  right: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.45) 0%, rgba(74, 222, 128, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  transition: transform 0.5s var(--ease);
}

.hero-glow-bl {
  position: absolute;
  bottom: -120px;
  left: -120px;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(74, 222, 128, 0.35) 0%, rgba(74, 222, 128, 0) 70%);
  filter: blur(50px);
  pointer-events: none;
  transition: transform 0.5s var(--ease);
}

.hero-inner--creative {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 960px;
  margin: 0 auto;
  padding: 60px 24px 80px;
  position: relative;
  z-index: 2;
}

/* Tagline Header */
.hero-tagline {
  margin-bottom: 24px;
}

.hero-tagline-text {
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 800;
  color: var(--ink);
  letter-spacing: -.03em;
  font-family: var(--font-body);
}

/* Headline Wrapper */
.hero-headline-wrapper {
  position: relative;
  margin-bottom: 32px;
  width: 100%;
}

.hero-headline {
  font-size: clamp(2.4rem, 5.8vw, 4.8rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--ink);
  letter-spacing: -.035em;
  max-width: 860px;
  margin: 0 auto;
}

/* Highlighted Box ("digital products") with Crop Marks */
.highlight-pill {
  position: relative;
  display: inline-block;
  background: var(--green);
  color: var(--ink);
  padding: 2px 20px;
  border-radius: 6px;
  font-style: italic;
  font-weight: 800;
  margin: 0 4px;
  cursor: pointer;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background-color 0.3s var(--ease);
}

.highlight-pill:hover {
  transform: scale(1.06) rotate(-1deg);
  box-shadow: 0 10px 28px rgba(74, 222, 128, 0.45);
  background-color: #22c55e;
}

/* Vector crop mark lines on highlight box */
.crop-mark {
  position: absolute;
  width: 8px;
  height: 8px;
  border-color: rgba(15, 23, 42, 0.6);
  border-style: solid;
  transition: transform 0.25s var(--ease);
}

.crop-mark.top-left {
  top: -4px;
  left: -4px;
  border-width: 2px 0 0 2px;
}

.crop-mark.top-right {
  top: -4px;
  right: -4px;
  border-width: 2px 2px 0 0;
}

.crop-mark.bottom-left {
  bottom: -4px;
  left: -4px;
  border-width: 0 0 2px 2px;
}

.crop-mark.bottom-right {
  bottom: -4px;
  right: -4px;
  border-width: 0 2px 2px 0;
}

.highlight-pill:hover .crop-mark.top-left { transform: translate(-3px, -3px); }
.highlight-pill:hover .crop-mark.top-right { transform: translate(3px, -3px); }
.highlight-pill:hover .crop-mark.bottom-left { transform: translate(-3px, 3px); }
.highlight-pill:hover .crop-mark.bottom-right { transform: translate(3px, 3px); }

.headline-accent {
  font-style: normal;
  color: var(--ink);
}

.headline-italic {
  font-style: italic;
  font-weight: 700;
  color: var(--ink);
}

.headline-bold-dark {
  font-weight: 900;
  color: var(--ink);
}

/* Floating Rotated Sticker Pills */
.sticker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--ink);
  padding: 8px 16px;
  border-radius: 9999px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  position: absolute;
  z-index: 10;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.25s var(--ease), background 0.2s;
}

.sticker:hover {
  animation-play-state: paused;
  background: #22c55e;
  box-shadow: 0 14px 32px rgba(74, 222, 128, 0.5);
  z-index: 25;
}

.sticker--strategy {
  top: -24px;
  right: 5%;
  transform: rotate(4deg);
  animation: float-strategy 4s ease-in-out infinite;
}

.sticker--design {
  top: 48%;
  right: -24px;
  transform: rotate(-3deg);
  animation: float-design 4.5s ease-in-out infinite;
}

.sticker--scale {
  bottom: -20px;
  left: 4%;
  transform: rotate(-4deg);
  animation: float-scale 5s ease-in-out infinite;
}

/* Description */
.hero-description {
  font-size: 1.1rem;
  color: var(--ink-3);
  max-width: 620px;
  line-height: 1.7;
  margin-bottom: 44px;
  font-weight: 450;
}

/* Capsule Footer Bar (matching poster image!) */
.hero-capsule-bar {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: var(--ink);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: 9999px;
  padding: 8px 10px 8px 24px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  max-width: 100%;
  flex-wrap: wrap;
  justify-content: center;
}

.capsule-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color .2s;
}

.capsule-item:hover {
  color: var(--green);
}

.capsule-divider {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.2);
}

.capsule-btn {
  padding: 10px 22px;
  font-size: 0.88rem;
  background: var(--green);
  color: var(--ink);
}

.capsule-btn:hover {
  background: #22c55e;
}

/* Responsive adjustments for creative hero */
@media (max-width: 900px) {
  .sticker {
    padding: 6px 12px;
    font-size: 0.72rem;
    gap: 6px;
  }

  .sticker svg {
    width: 12px;
    height: 12px;
  }

  .sticker--design {
    top: 45%;
    right: -10px;
  }

  .sticker--strategy {
    top: -20px;
    right: 2%;
  }

  .sticker--scale {
    bottom: -20px;
    left: 2%;
  }
}

@media (max-width: 640px) {
  .hero-headline-wrapper {
    position: relative;
    padding: 40px 0;
    margin-bottom: 24px;
  }

  .sticker {
    padding: 5px 10px;
    font-size: 0.68rem;
    gap: 4px;
  }

  .sticker svg {
    width: 10px;
    height: 10px;
  }

  .sticker--strategy {
    top: 0;
    left: 2%;
    right: auto;
  }

  .sticker--design {
    position: absolute;
    top: auto;
    bottom: 0;
    right: 2%;
    left: auto;
  }

  .sticker--scale {
    bottom: 0;
    left: 2%;
    right: auto;
  }

  .hero-capsule-bar {
    border-radius: var(--radius-lg);
    padding: 16px;
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }

  .capsule-divider {
    display: none;
  }

  .capsule-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ════════════════════════════════════════════════
   STATS BAR
════════════════════════════════════════════════ */
.stats-bar {
  background: var(--dark);
  padding: 52px 0;
}

.stats-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.stat-item {
  text-align: center;
  flex: 1;
}

.stat-item .stat-number {
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 900;
  color: white;
  letter-spacing: -.04em;
  font-family: var(--font-alt);
  line-height: 1;
}

.stat-item .stat-suffix {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  font-weight: 900;
  color: var(--green);
  letter-spacing: -.04em;
}

.stat-desc {
  font-size: 0.82rem;
  color: var(--ink-4);
  margin-top: 8px;
  line-height: 1.5;
  max-width: 160px;
  margin-left: auto;
  margin-right: auto;
}

.stat-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all .25s var(--ease);
  cursor: default;
}

.service-card:hover {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(74, 222, 128, 0.15);
  transform: translateY(-4px);
}

.service-card--featured {
  background: var(--dark);
  border-color: var(--dark-3);
  color: white;
  grid-column: span 2;
}

.service-card--featured .service-desc {
  color: var(--ink-4);
}

.service-card--featured .service-tags span {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.1);
}

.service-card--featured .service-card-icon {
  background: rgba(74, 222, 128, 0.15);
  color: var(--green);
}

.service-card--featured .service-arrow {
  color: var(--green);
}

.service-card--cta {
  background: var(--green-pale);
  border-color: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
}

.service-card-cta-content {
  text-align: center;
}

.service-card-cta-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}

.service-card-cta-content p {
  font-size: 0.9rem;
  color: var(--ink-3);
  margin-bottom: 20px;
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--green-pale);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background .2s;
}

.service-card:not(.service-card--featured):hover .service-card-icon {
  background: var(--green);
  color: var(--ink);
}

.service-title {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -.02em;
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--ink-3);
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 20px;
}

.service-tags span {
  font-size: 0.74rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-light);
}

.service-arrow {
  color: var(--ink-4);
  transition: color .2s, transform .2s;
}

.service-card:hover .service-arrow {
  color: var(--green-dark);
  transform: translateX(4px);
}

/* ════════════════════════════════════════════════
   WORK
════════════════════════════════════════════════ */
.work {
  padding: 120px 0;
  background: var(--dark-2);
}

.work .section-tag {
  background: rgba(74, 222, 128, .1);
  border-color: rgba(74, 222, 128, .2);
  color: var(--green);
}

.work .section-title {
  color: white;
}

.work .section-title em {
  color: var(--ink-4);
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.work-card {
  background: var(--dark-3);
  border: 1.5px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
  cursor: pointer;
}

.work-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
  border-color: rgba(74, 222, 128, 0.25);
}

.work-card--large {
  grid-column: span 2;
}

.work-card-img {
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.work-card--large .work-card-img {
  height: 320px;
}

/* Mockup elements inside work cards */
.mockup-browser {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  width: 80%;
  max-width: 440px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.mockup-bar {
  background: rgba(255, 255, 255, 0.08);
  height: 28px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
}

.mockup-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
}

.mockup-screen {
  height: 160px;
}

.screen-gradient-1 {
  background: linear-gradient(135deg, #4ade80 0%, #22d3ee 50%, #818cf8 100%);
}

.screen-gradient-3 {
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f59e0b 100%);
}

/* Brand mockup */
.mockup-brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.brand-symbol {
  font-size: 64px;
  color: white;
  text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.brand-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand-lines div {
  height: 3px;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.25);
}

.brand-lines div:nth-child(1) {
  width: 120px;
}

.brand-lines div:nth-child(2) {
  width: 80px;
}

.brand-lines div:nth-child(3) {
  width: 100px;
}

/* App mockup */
.app-phone {
  width: 100px;
  height: 180px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .4);
}

.app-screen {
  width: 100%;
  height: 100%;
}

.screen-gradient-2 {
  background: linear-gradient(160deg, #10b981 0%, #059669 50%, #065f46 100%);
}

.work-card-info {
  padding: 24px 28px;
}

.work-tag {
  font-size: 0.74rem;
  font-weight: 700;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .08em;
}

.work-card-info h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin: 8px 0 8px;
  letter-spacing: -.02em;
}

.work-card-info p {
  font-size: 0.88rem;
  color: var(--ink-4);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.testimonial-card {
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: box-shadow .25s var(--ease), transform .25s var(--ease);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.testimonial-card--featured {
  background: var(--dark);
  border-color: var(--dark-3);
  color: white;
}

.testimonial-card--featured blockquote {
  color: rgba(255, 255, 255, 0.75);
}

.testimonial-card--featured .testimonial-author strong {
  color: white;
}

.testimonial-card--featured .testimonial-author span {
  color: var(--ink-4);
}

.testimonial-stars {
  font-size: 1rem;
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

blockquote {
  font-size: 0.97rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: white;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--ink);
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--ink-3);
}

/* ════════════════════════════════════════════════
   CTA SECTION
════════════════════════════════════════════════ */
.cta-section {
  background: var(--green);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.cta-bg-text {
  position: absolute;
  bottom: -60px;
  right: -40px;
  font-size: clamp(100px, 18vw, 220px);
  font-weight: 900;
  letter-spacing: -.05em;
  color: rgba(0, 0, 0, 0.06);
  pointer-events: none;
  user-select: none;
  line-height: 1;
  font-family: var(--font-alt);
}

.cta-inner {
  position: relative;
  z-index: 1;
}

.cta-content {
  max-width: 640px;
  margin: 0 auto;
}

.cta-section .section-tag {
  background: rgba(0, 0, 0, 0.1);
  border-color: rgba(0, 0, 0, 0.15);
  color: var(--ink);
}

.cta-title {
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}

.cta-title .highlight {
  color: white;
}

.cta-subtitle {
  font-size: 1.05rem;
  color: rgba(15, 23, 42, 0.7);
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cta-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.cta-form input,
.cta-form select,
.cta-form textarea {
  width: 100%;
  padding: 14px 18px;
  border-radius: var(--radius-md);
  border: 1.5px solid rgba(0, 0, 0, 0.15);
  background: rgba(255, 255, 255, 0.7);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color .2s, background .2s, box-shadow .2s;
  backdrop-filter: blur(8px);
}

.cta-form input:focus,
.cta-form select:focus,
.cta-form textarea:focus {
  border-color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.08);
}

.cta-form input::placeholder,
.cta-form textarea::placeholder {
  color: var(--ink-3);
}

.cta-form textarea {
  resize: vertical;
  min-height: 120px;
}

.cta-form .btn {
  align-self: flex-start;
}

.cta-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
}

.cta-trust span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(15, 23, 42, 0.65);
}

.cta-trust svg {
  flex-shrink: 0;
  opacity: .7;
}

/* ════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════ */
.footer {
  background: var(--dark);
  padding: 80px 0 32px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  height: 54px;
  width: auto;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--ink-4);
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-4);
  transition: all .2s var(--ease);
}

.social-icon:hover {
  background: var(--green);
  color: var(--ink);
}

.footer-links-group h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 16px;
}

.footer-links-group li {
  margin-bottom: 10px;
}

.footer-links-group a {
  font-size: 0.9rem;
  color: var(--ink-4);
  transition: color .2s;
}

.footer-links-group a:hover {
  color: var(--green);
}

.footer-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
}

.footer-status-chip span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse 2s infinite;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.25);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.25);
  transition: color .2s;
}

.footer-bottom-links a:hover {
  color: var(--green);
}

/* ════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--dark);
  color: white;
  padding: 14px 22px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-xl);
  transform: translateY(80px);
  opacity: 0;
  transition: all .35s var(--ease);
  z-index: 9999;
  pointer-events: none;
}

.toast.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--green);
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════
   SCROLL ANIMATIONS
════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 {
  transition-delay: .1s;
}

.reveal-delay-2 {
  transition-delay: .2s;
}

.reveal-delay-3 {
  transition-delay: .3s;
}

.reveal-delay-4 {
  transition-delay: .4s;
}

/* ════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 48px;
    padding-top: 48px;
  }

  .hero-visual {
    max-width: 520px;
    margin: 0 auto;
    width: 100%;
  }

  .hero-bg-text {
    font-size: clamp(160px, 28vw, 320px);
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-card--featured {
    grid-column: span 2;
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
    row-gap: 40px;
  }
}

@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links,
  .nav-actions {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero-inner {
    padding-bottom: 60px;
  }

  .hero-bg-text {
    font-size: 180px;
    opacity: 0.5;
  }

  .hero-img {
    height: 300px;
  }

  .hero-float-bubble {
    top: -14px;
    left: -10px;
  }

  .hero-float-tag {
    right: -8px;
    font-size: 0.74rem;
    padding: 8px 14px;
  }

  .stats-inner {
    flex-direction: column;
    gap: 32px;
  }

  .stat-divider {
    width: 60px;
    height: 1px;
  }

  .services {
    padding: 80px 0;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card--featured {
    grid-column: span 1;
  }

  .work {
    padding: 80px 0;
  }

  .work-grid {
    grid-template-columns: 1fr;
  }

  .work-card--large {
    grid-column: span 1;
  }

  .work-card-img {
    height: 220px;
  }

  .testimonials {
    padding: 80px 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .cta-section {
    padding: 80px 0;
  }

  .cta-form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 60px 0 28px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .section-header {
    margin-bottom: 40px;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.4rem;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-cta-group .btn {
    justify-content: center;
  }

  .cta-title {
    font-size: 2rem;
  }

  .toast {
    bottom: 16px;
    right: 16px;
    left: 16px;
  }
}

/* ─── Cooking Section Animations & Styles ────────── */
.cooking-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 16px;
  width: 100%;
}

.cooking-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.2);
  padding: 6px 16px;
  border-radius: var(--radius-full);
}

.cooking-dot {
  width: 8px;
  height: 8px;
  background-color: var(--green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

.cooking-badge-text {
  font-family: var(--font-alt);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--green);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cooking-headline {
  font-family: var(--font-alt);
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  font-weight: 800;
  color: white;
  letter-spacing: -0.02em;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cooking-emoji {
  animation: float-cooking 3s ease-in-out infinite;
  display: inline-block;
}

@keyframes float-cooking {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-6px) rotate(12deg);
  }
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 8px rgba(74, 222, 128, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0);
  }
}

@keyframes float-strategy {
  0%, 100% {
    transform: translateY(0) rotate(4deg);
  }
  50% {
    transform: translateY(-6px) rotate(6deg);
  }
}

@keyframes float-design {
  0%, 100% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

@keyframes float-scale {
  0%, 100% {
    transform: translateY(0) rotate(-4deg);
  }
  50% {
    transform: translateY(-6px) rotate(-6deg);
  }
}

/* ─── Navbar Dropdown ────────────────────────────── */
.nav-dropdown {
  position: relative;
  display: inline-block;
}

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
  outline: none;
}

.dropdown-chevron {
  transition: transform 0.25s var(--ease);
}

/* Rotate chevron on hover */
.nav-dropdown:hover .dropdown-chevron {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 240px;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease), visibility 0.25s;
  z-index: 1001;
  pointer-events: none;
  margin-top: 8px;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  color: var(--ink);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  text-align: left;
}

.dropdown-item:hover {
  background: var(--green-pale);
}

.dropdown-item .item-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  font-family: var(--font-alt);
  transition: color 0.2s;
}

.dropdown-item:hover .item-title {
  color: var(--green-dark);
}

.dropdown-item .item-desc {
  font-size: 0.72rem;
  color: var(--ink-3);
  margin-top: 2px;
  font-weight: 400;
  line-height: 1.3;
}