/* ================================================================
   MADROCAM — Premium Hospitality Visual Production
   Design System & Global Styles
   ================================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

/* ── 1. Custom Properties ─────────────────────────────────────── */
:root {
  --bg:           #090909;
  --surface:      #101010;
  --card:         #141414;
  --card-hover:   #1A1A1A;
  --border:       rgba(255, 255, 255, 0.065);
  --border-hover: rgba(255, 255, 255, 0.14);
  --border-active:rgba(245, 103, 21, 0.45);

  --orange:       #F56715;
  --orange-hover: #D85B10;
  --orange-dim:   rgba(245, 103, 21, 0.10);
  --orange-glow:  rgba(245, 103, 21, 0.22);

  --white:   #EEEEE8;
  --gray-1:  #9A9A90;
  --gray-2:  #5C5C54;
  --gray-3:  #242420;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container:  1240px;
  --ease:       cubic-bezier(0.16, 1, 0.3, 1);
  --ease-2:     cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 2. Base Reset ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
::selection { background: var(--orange-dim); color: var(--white); }

/* ── 3. Typography ────────────────────────────────────────────── */
.display-xl {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5.25rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.01em;
}
.display-lg {
  font-family: var(--ff-display);
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--ff-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 400;
  line-height: 1.2;
}
.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.lead {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  font-weight: 300;
  color: var(--gray-1);
  line-height: 1.7;
}
.body-sm {
  font-size: 0.875rem;
  color: var(--gray-1);
  line-height: 1.6;
}
.body-xs {
  font-size: 0.75rem;
  color: var(--gray-2);
  letter-spacing: 0.02em;
}

/* ── 4. Layout ────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}
.section {
  padding-block: clamp(80px, 10vw, 140px);
}
.section--sm {
  padding-block: clamp(48px, 6vw, 80px);
}
.section-header {
  margin-bottom: clamp(48px, 6vw, 80px);
}
.section-header--center { text-align: center; }

/* ── 5. Buttons ───────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all 0.22s var(--ease-2);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  border: 1px solid var(--orange);
}
.btn-primary:hover {
  background: var(--orange-hover);
  border-color: var(--orange-hover);
  transform: translateY(-1px);
  box-shadow: 0 8px 32px var(--orange-glow);
}
.btn-primary:active { transform: translateY(0); }

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--border-hover);
}
.btn-ghost:hover {
  border-color: rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.04);
}
.btn-outline-orange {
  background: transparent;
  color: var(--orange);
  border: 1px solid rgba(245, 103, 21, 0.35);
}
.btn-outline-orange:hover {
  background: var(--orange-dim);
  border-color: var(--orange);
}
.btn--lg { padding: 18px 36px; font-size: 0.9375rem; border-radius: 4px; }
.btn--sm { padding: 10px 20px; font-size: 0.8125rem; }

.btn-arrow::after {
  content: '→';
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(4px); }

/* ── 6. Top Bar (fixed wrapper) ───────────────────────────────── */
#topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.3s var(--ease-2), backdrop-filter 0.3s var(--ease-2);
}
#topbar.scrolled {
  background: rgba(9, 9, 9, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
#topbar.scrolled .announcement {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-bottom-color: transparent;
}

.announcement {
  background: rgba(245, 103, 21, 0.12);
  border-bottom: 1px solid rgba(245, 103, 21, 0.18);
  text-align: center;
  padding: 10px 20px;
  font-size: 0.8125rem;
  color: rgba(245, 103, 21, 0.95);
  letter-spacing: 0.04em;
  max-height: 50px;
  overflow: hidden;
  transition: max-height 0.3s var(--ease-2), padding 0.3s var(--ease-2), border-bottom-color 0.3s var(--ease-2);
}
.announcement-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 8px;
  vertical-align: middle;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* ── 7. Header ────────────────────────────────────────────────── */
.header {
  position: relative;
  transition: border-color 0.3s var(--ease-2);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  border-bottom-color: var(--border);
}
.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 20px clamp(20px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
}
.header-logo {
  font-family: var(--ff-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
}
.header-logo span { color: var(--orange); }
.header-nav { display: flex; align-items: center; gap: clamp(16px, 2.5vw, 36px); }
.header-nav a {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-1);
  letter-spacing: 0.03em;
  transition: color 0.18s;
  position: relative;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--orange);
  transition: width 0.22s var(--ease);
}
.header-nav a:hover { color: var(--white); }
.header-nav a:hover::after { width: 100%; }
.header-right { display: flex; justify-content: flex-end; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.22s;
}

/* mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(9,9,9,0.98);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--gray-1);
  transition: color 0.18s;
}
.mobile-nav a:hover { color: var(--white); }
.mobile-nav-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 1.5rem;
  color: var(--gray-1);
  cursor: pointer;
  background: none; border: none;
  line-height: 1;
}

/* ── 8. Hero ──────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  max-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* fallback shows while poster/video is loading */
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1205 40%, #0D0907 100%);
}
.hero-fallback {
  /* kept in DOM for JS hooks but not needed visually — wrap bg handles it */
  display: none;
}
.hero-video-wrap video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.52;
  z-index: 1;
}
/* cinematic horizontal lines overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* bottom: dark enough to read white text over the video
     top: light enough that the video is clearly visible */
  background:
    linear-gradient(to top, rgba(9,9,9,0.88) 0%, rgba(9,9,9,0.35) 25%, rgba(9,9,9,0.05) 55%, rgba(9,9,9,0.2) 100%);
}
/* grain texture */
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.028;
  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)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  width: 100%;
  padding: clamp(80px, 10vw, 120px) clamp(20px, 5vw, 60px) clamp(40px, 5vw, 60px);
  max-width: var(--container);
  margin: 0 auto;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border: 1px solid var(--border-hover);
  border-radius: 100px;
  margin-bottom: 28px;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.hero-badge-dot {
  width: 5px; height: 5px;
  background: var(--orange);
  border-radius: 50%;
}
.hero h1 {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 5.5vw, 5rem);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 760px;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic;
  color: rgba(238, 238, 232, 0.7);
}
.hero-sub {
  font-size: clamp(0.95rem, 1.4vw, 1.1rem);
  font-weight: 300;
  color: var(--gray-1);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 28px;
}
.hero-ctas {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero-reciprocity {
  font-size: 0.8125rem;
  color: var(--gray-2);
  margin-bottom: 20px;
}
.hero-reciprocity a {
  color: var(--gray-1);
  border-bottom: 1px solid var(--border-hover);
  padding-bottom: 1px;
  transition: color 0.18s, border-color 0.18s;
}
.hero-reciprocity a:hover { color: var(--white); border-color: var(--gray-1); }
.hero-trust {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  flex-wrap: wrap;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.hero-trust-item {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.hero-trust-sep { color: var(--gray-3); }

/* ── 9. Logo Wall ─────────────────────────────────────────────── */
.logos {
  padding-block: clamp(48px, 6vw, 72px);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.logos-label {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 40px;
}
.logos-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 7vw, 100px);
  flex-wrap: wrap;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.35;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
}
.logo-item:hover { opacity: 0.7; filter: grayscale(0.3); }
.logo-item svg, .logo-item img { height: 28px; width: auto; }

/* placeholder logo style */
.logo-placeholder {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-1);
}

/* ── 10. Portfolio ────────────────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: clamp(40px, 5vw, 64px);
}
.portfolio-tile {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  cursor: pointer;
  background: var(--card);
}
.portfolio-tile-thumb {
  position: absolute;
  inset: 0;
  transition: transform 0.6s var(--ease);
}
.portfolio-tile:hover .portfolio-tile-thumb { transform: scale(1.04); }

/* placeholder content inside tiles */
.portfolio-tile-thumb-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 1;
}
.portfolio-tile-thumb-placeholder svg {
  width: 36px;
  height: 36px;
  stroke: var(--orange);
  fill: none;
  stroke-width: 1;
  opacity: 0.7;
}
.portfolio-tile-thumb-placeholder span {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-1);
}

/* placeholder thumbs — visible dark cards */
.portfolio-tile .portfolio-tile-thumb { background: var(--card); }
.portfolio-tile:nth-child(odd) .portfolio-tile-thumb { background: #181818; }
.portfolio-tile:nth-child(even) .portfolio-tile-thumb { background: #1c1c1c; }

.portfolio-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(9,9,9,0.85) 0%, transparent 40%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
  transition: opacity 0.3s;
}
.portfolio-tile-play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%) scale(0.85);
  width: 48px; height: 48px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.25s, transform 0.25s var(--ease);
  backdrop-filter: blur(4px);
  background: rgba(255,255,255,0.06);
}
.portfolio-tile-play svg { width: 14px; height: 14px; fill: white; margin-left: 2px; }
.portfolio-tile:hover .portfolio-tile-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}
.portfolio-tile-cat {
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 4px;
}
.portfolio-tile-title {
  font-size: 0.8125rem;
  font-weight: 400;
  color: rgba(238,238,232,0.85);
}

/* review strip */
.review-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: clamp(20px, 3vw, 32px);
}
.review-card-quote {
  font-family: var(--ff-display);
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 16px;
}
.review-card-author {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
}

/* ── 11. Video Testimonials (Proof) ───────────────────────────── */
.proof-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}
.proof-item {}
.proof-video-wrap {
  aspect-ratio: 16/9;
  background: #1c1c1c;
  border: 1px solid var(--border-hover);
  border-radius: 8px;
  overflow: hidden;
  position: relative;
  margin-bottom: 20px;
  cursor: pointer;
}
.proof-video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.proof-video-placeholder-bg {
  position: absolute;
  inset: 0;
  background: #1a1a1a;
}
.proof-play-btn {
  position: relative;
  z-index: 1;
  width: 64px; height: 64px;
  border: 1.5px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(8px);
  transition: border-color 0.2s, background 0.2s, transform 0.2s var(--ease);
}
.proof-play-btn svg { width: 18px; height: 18px; fill: white; margin-left: 3px; }
.proof-video-wrap:hover .proof-play-btn {
  border-color: var(--orange);
  background: var(--orange-dim);
  transform: scale(1.06);
}
.proof-video-label {
  position: relative;
  z-index: 1;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-1);
}
.proof-caption {
  font-size: 0.9375rem;
  color: var(--gray-1);
  line-height: 1.65;
  font-style: italic;
}
.proof-cta { text-align: center; margin-top: clamp(40px, 5vw, 64px); }

/* ── 12. Process ──────────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: clamp(48px, 6vw, 80px);
}
.process-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 0;
  overflow: hidden;
  transition: border-color 0.25s;
  cursor: pointer;
}
.process-card:first-child { border-radius: 8px 0 0 8px; }
.process-card:last-child { border-radius: 0 8px 8px 0; }
.process-card:hover { border-color: var(--border-hover); }
.process-card.active { border-color: var(--border-active); }

.process-card-header {
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.process-step-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
}
.process-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}
.process-card-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
}
.process-card .process-card-img-placeholder { background: #1a1a1a; }

.process-card-title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
}
.process-card-collapsed {
  font-size: 0.8125rem;
  color: var(--gray-1);
  margin-top: 4px;
}
.process-card-expand-icon {
  width: 18px; height: 18px;
  color: var(--gray-2);
  transition: transform 0.28s var(--ease);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}
.process-card-header-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
}
.process-card.active .process-card-expand-icon { transform: rotate(45deg); }

.process-card-body {
  display: none;
  padding: 0 24px 24px;
  border-top: 1px solid var(--border);
  margin-top: 0;
}
.process-card.active .process-card-body { display: block; }
.process-card-body-content { padding-top: 20px; }

.process-list { display: flex; flex-direction: column; gap: 8px; }
.process-list-item {
  display: flex;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--gray-1);
}
.process-list-item::before {
  content: '—';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 500;
}
.process-list-label {
  font-weight: 500;
  color: var(--white);
  font-size: 0.6875rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 6px;
  margin-top: 14px;
  color: var(--gray-2);
}

/* authority */
.authority {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(32px, 4vw, 56px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}
.authority-list { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.authority-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9375rem;
  color: var(--gray-1);
  line-height: 1.55;
}
.authority-icon {
  width: 20px; height: 20px;
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
}
.authority-visual {
  aspect-ratio: 4/3;
  border-radius: 6px;
  overflow: hidden;
  background: #1a1a1a;
  border: 1px solid var(--border);
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.authority-visual-text {
  font-family: var(--ff-display);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: rgba(238,238,232,0.45);
  text-align: center;
  padding: 20px;
  line-height: 1.3;
}

/* ── 13. Packages ─────────────────────────────────────────────── */
.packages-intro {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  margin-bottom: clamp(40px, 5vw, 64px);
  max-width: 760px;
  margin-left: 0;
}
.packages-intro p {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--gray-1);
  line-height: 1.7;
}

.segment-toggle {
  display: inline-flex;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 4px;
  gap: 2px;
  margin-bottom: clamp(32px, 4vw, 48px);
}
.segment-btn {
  padding: 10px 24px;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-1);
  cursor: pointer;
  transition: all 0.2s var(--ease-2);
  letter-spacing: 0.02em;
  border: 1px solid transparent;
}
.segment-btn.active {
  background: var(--card-hover);
  color: var(--white);
  border-color: var(--border-hover);
}
.segment-btn:hover:not(.active) { color: var(--white); }

.segment-panel { display: none; }
.segment-panel.active { display: block; }

.size-toggle {
  display: inline-flex;
  gap: 4px;
  margin-bottom: clamp(28px, 4vw, 40px);
  flex-wrap: wrap;
}
.size-btn {
  padding: 8px 18px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-1);
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.03em;
}
.size-btn.active {
  border-color: var(--orange);
  color: var(--orange);
  background: var(--orange-dim);
}
.size-btn:hover:not(.active) { border-color: var(--border-hover); color: var(--white); }

.pkg-size-panel { display: none; }
.pkg-size-panel.active { display: block; }

.packages-section-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.packages-section-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 40px;
}
.pkg-grid--4 { grid-template-columns: repeat(4, 1fr); }
.pkg-grid--2 { grid-template-columns: repeat(2, 1fr); }

.pkg-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: border-color 0.25s, box-shadow 0.25s;
  position: relative;
}
.pkg-card:hover { border-color: var(--border-hover); }
.pkg-card.pkg-popular {
  border-color: rgba(245, 103, 21, 0.3);
}
.pkg-card.pkg-popular:hover { border-color: rgba(245, 103, 21, 0.5); }

.pkg-popular-badge {
  position: absolute;
  top: 0; right: 0;
  background: var(--orange);
  color: white;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-bottom-left-radius: 6px;
}

.pkg-header {
  padding: 24px 24px 0;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pkg-tier {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray-2);
}
.pkg-name {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 500;
  line-height: 1.25;
  color: var(--white);
  padding-right: 60px;
}
.pkg-price {
  font-size: 1.375rem;
  font-weight: 300;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-top: 2px;
}
.pkg-price span {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--gray-2);
}

.pkg-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  padding: 16px 24px;
}
.pkg-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.8125rem;
  color: var(--gray-1);
  line-height: 1.45;
}
.pkg-bullets li::before {
  content: '·';
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.2;
  flex-shrink: 0;
  font-weight: 700;
}
.pkg-best-for {
  padding: 0 24px 16px;
  font-size: 0.75rem;
  color: var(--gray-2);
}
.pkg-best-for strong { color: var(--gray-1); font-weight: 500; }

.pkg-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.15s;
}
.pkg-toggle-row:hover { background: rgba(255,255,255,0.02); }
.pkg-toggle-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-1);
}
.pkg-toggle-icon {
  width: 16px; height: 16px;
  color: var(--gray-2);
  transition: transform 0.25s var(--ease);
  flex-shrink: 0;
}
.pkg-card.open .pkg-toggle-icon { transform: rotate(45deg); }

.pkg-body {
  display: none;
  border-top: 1px solid var(--border);
  padding: 24px;
}
.pkg-card.open .pkg-body { display: block; }

.pkg-outcome {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 400;
  font-style: italic;
  color: rgba(238,238,232,0.75);
  line-height: 1.5;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.pkg-detail-section { margin-bottom: 16px; }
.pkg-detail-label {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 8px;
}
.pkg-detail-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.pkg-detail-list li {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-1);
  line-height: 1.45;
}
.pkg-detail-list li::before {
  content: '—';
  color: var(--orange);
  flex-shrink: 0;
  font-weight: 400;
}

/* package selection */
.pkg-select {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.pkg-select-label-header {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 12px;
}
.pkg-checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pkg-checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}
.pkg-checkbox-row input[type="checkbox"] {
  width: 16px; height: 16px;
  accent-color: var(--orange);
  cursor: pointer;
  margin-top: 1px;
  flex-shrink: 0;
}
.pkg-checkbox-row input[type="radio"] {
  width: 14px; height: 14px;
  accent-color: var(--orange);
  cursor: pointer;
  margin-top: 2px;
  flex-shrink: 0;
}
.pkg-checkbox-label {
  font-size: 0.8125rem;
  color: var(--gray-1);
  line-height: 1.45;
  cursor: pointer;
}
.pkg-checkbox-sub {
  padding-left: 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
}
.pkg-360-sub { display: none; }
.pkg-360-sub.visible { display: flex; }

.pkg-cta {
  margin-top: 20px;
  width: 100%;
  justify-content: center;
  opacity: 0.4;
  pointer-events: none;
  transition: opacity 0.25s;
}
.pkg-cta.enabled {
  opacity: 1;
  pointer-events: auto;
}

/* 360 addons block */
.addons-360 {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: clamp(24px, 3vw, 36px);
  margin-top: 12px;
}
.addons-360-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2vw, 24px);
  margin-top: 20px;
}
.addon-card {
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 20px;
  background: var(--card);
}
.addon-card-name {
  font-weight: 500;
  font-size: 0.9375rem;
  margin-bottom: 6px;
}
.addon-card-price {
  color: var(--orange);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.addon-card-note {
  font-size: 0.75rem;
  color: var(--gray-2);
  line-height: 1.5;
}

/* ── 14. Risk Reversal ────────────────────────────────────────── */
.confidence {
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.confidence-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.confidence-copy p {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--gray-1);
  line-height: 1.75;
  margin-top: 20px;
}
.confidence-fomo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--orange);
  background: var(--orange-dim);
  border: 1px solid rgba(245,103,21,0.2);
  border-radius: 100px;
  padding: 8px 16px;
}
.confidence-cta { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }

/* ── 15. FAQ ──────────────────────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1px;
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item + .faq-item { border-top: none; border-radius: 0; }
.faq-item:first-child { border-radius: 8px 8px 0 0; }
.faq-item:last-child { border-radius: 0 0 8px 8px; border-top: none; }
.faq-item.open { border-color: var(--border-hover); }

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--white);
  transition: background 0.15s;
}
.faq-q:hover { background: rgba(255,255,255,0.02); }
.faq-icon {
  width: 18px; height: 18px;
  color: var(--gray-2);
  flex-shrink: 0;
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a {
  display: none;
  padding: 0 24px 20px;
  font-size: 0.9375rem;
  color: var(--gray-1);
  line-height: 1.7;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.faq-item.open .faq-a { display: block; }

/* ── 16. Final CTA ────────────────────────────────────────────── */
.final-cta {
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(245,103,21,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.final-cta-inner { position: relative; z-index: 1; }
.final-cta h2 {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 20px;
}
.final-cta h2 em { font-style: italic; color: rgba(238,238,232,0.55); }
.final-cta p {
  font-size: clamp(0.9375rem, 1.3vw, 1.0625rem);
  color: var(--gray-1);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── 17. Contact ──────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.contact-info { padding-top: 4px; }
.contact-info p {
  font-size: 0.9375rem;
  color: var(--gray-1);
  line-height: 1.7;
  margin-top: 16px;
  margin-bottom: 32px;
}
.contact-detail {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-detail-item {
  font-size: 0.875rem;
  color: var(--gray-1);
  display: flex;
  align-items: center;
  gap: 10px;
}
.contact-detail-item a {
  color: var(--gray-1);
  transition: color 0.18s;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1px;
}
.contact-detail-item a:hover { color: var(--white); border-color: var(--gray-1); }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: clamp(28px, 4vw, 48px);
}
.form-group { margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 7px;
}
.form-input, .form-textarea, .form-select {
  width: 100%;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 12px 15px;
  color: var(--white);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px var(--orange-dim);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--gray-2); }
.form-textarea { resize: vertical; min-height: 120px; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' viewBox='0 0 24 24'%3E%3Cpath stroke='%235C5C54' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
}
.form-select option { background: var(--card); color: var(--white); }
.form-submit { width: 100%; justify-content: center; margin-top: 8px; }

/* ── 18. Footer ───────────────────────────────────────────────── */
.footer {
  border-top: 1px solid var(--border);
  padding: clamp(40px, 5vw, 64px) 0 clamp(28px, 4vw, 40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 60px);
  margin-bottom: 48px;
}
.footer-brand {}
.footer-logo {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.footer-logo span { color: var(--orange); }
.footer-brand-tag {
  font-size: 0.8125rem;
  color: var(--gray-2);
  line-height: 1.6;
  max-width: 240px;
}
.footer-col-title {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray-2);
  margin-bottom: 16px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-1);
  transition: color 0.18s;
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy {
  font-size: 0.75rem;
  color: var(--gray-2);
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: var(--gray-2);
  transition: color 0.18s;
}
.footer-legal a:hover { color: var(--gray-1); }

/* ── 19. Booking Page ─────────────────────────────────────────── */
.booking-page {
  padding-top: 100px;
  min-height: 100vh;
}
.booking-header {
  margin-bottom: clamp(40px, 5vw, 64px);
}
.booking-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
.booking-summary {
  position: sticky;
  top: 100px;
}
.summary-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px;
}
.summary-empty {
  text-align: center;
  padding: 20px;
  color: var(--gray-1);
  font-size: 0.9rem;
  font-style: italic;
}
.summary-pkg-name {
  font-family: var(--ff-display);
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 4px;
}
.summary-pkg-price {
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 400;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.summary-addons { margin-bottom: 20px; }
.summary-addon-item {
  display: flex;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--gray-1);
  margin-bottom: 6px;
}
.summary-addon-item::before {
  content: '·';
  color: var(--orange);
  font-weight: 700;
}
.summary-note {
  font-size: 0.75rem;
  color: var(--gray-2);
  background: var(--surface);
  border-radius: 4px;
  padding: 10px 12px;
  border: 1px solid var(--border);
}
.calendly-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  min-height: 650px;
}
.calendly-placeholder {
  padding: 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 500px;
  gap: 16px;
}
.calendly-placeholder-icon {
  width: 48px; height: 48px;
  border: 2px solid var(--border-hover);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gray-2);
}
.calendly-placeholder-icon svg { width: 22px; height: 22px; }

/* ── 20. Video Modal ──────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.9);
  display: none;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(12px);
  padding: 20px;
}
.modal-overlay.open { display: flex; }
.modal-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
}
.modal-close {
  position: absolute;
  top: -44px; right: 0;
  color: var(--gray-1);
  font-size: 0.875rem;
  font-weight: 500;
  display: flex; align-items: center; gap: 6px;
  cursor: pointer;
  letter-spacing: 0.06em;
  transition: color 0.18s;
  background: none; border: none;
}
.modal-close:hover { color: var(--white); }
.modal-video {
  aspect-ratio: 16/9;
  background: var(--card);
  border-radius: 6px;
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.modal-video-placeholder {
  color: var(--gray-2);
  font-size: 0.875rem;
  text-align: center;
}

/* ── 21. Scroll Reveal Animations ────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s var(--ease), transform 0.65s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.08s; }
.reveal-delay-2 { transition-delay: 0.16s; }
.reveal-delay-3 { transition-delay: 0.24s; }
.reveal-delay-4 { transition-delay: 0.32s; }

/* ── 22. Utilities ────────────────────────────────────────────── */
.text-orange { color: var(--orange); }
.text-gray { color: var(--gray-1); }
.text-muted { color: var(--gray-2); }
.text-center { text-align: center; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.divider {
  height: 1px;
  background: var(--border);
  margin: clamp(40px, 5vw, 64px) 0;
}

/* ── 23. Media Queries ────────────────────────────────────────── */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .pkg-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .authority { grid-template-columns: 1fr; }
  .authority-visual { max-width: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-summary { position: static; }
  .addons-360-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  /* ── Topbar / Header ── */
  .announcement { font-size: 0.625rem; padding: 6px 16px; letter-spacing: 0.03em; }
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .header-right .btn { display: none; }
  .header-inner {
    grid-template-columns: 1fr auto;
    padding: 12px clamp(16px, 4vw, 24px);
  }
  .header-right { display: none; }

  /* ── Hero ── */
  .hero { height: auto; min-height: 100svh; min-height: 100vh; align-items: flex-start; }
  .hero-content { padding: 140px 20px 40px; }
  .hero h1 { font-size: clamp(2rem, 7vw, 2.8rem); margin-bottom: 16px; }
  .hero h1 br { display: none; }
  .hero-sub { font-size: 0.875rem; margin-bottom: 20px; line-height: 1.6; }
  .hero-badge { margin-bottom: 16px; font-size: 0.625rem; padding: 5px 12px; }
  .hero-reciprocity { margin-bottom: 14px; font-size: 0.8125rem; }
  .hero-trust { padding-top: 14px; }

  /* ── Sections ── */
  .section { padding-block: clamp(56px, 8vw, 80px); }
  .section-header { margin-bottom: clamp(32px, 5vw, 48px); }
  .logos { padding-block: clamp(32px, 5vw, 48px); }
  .logos-label { margin-bottom: 24px; }

  /* ── Grids ── */
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .review-strip { grid-template-columns: 1fr; }
  .pkg-grid { grid-template-columns: 1fr; }
  .pkg-grid--4 { grid-template-columns: 1fr; }
  .pkg-grid--2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { border-radius: 8px !important; }
  .confidence-inner { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .addons-360-grid { grid-template-columns: 1fr; }

  /* ── Hero trust ── */
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 6px; }
  .hero-trust-sep { display: none; }

  /* ── Packages ── */
  .segment-toggle { flex-direction: column; width: 100%; }
  .segment-btn { text-align: center; }
  .packages-intro { padding: clamp(16px, 4vw, 24px); }
  .pkg-header { padding: 20px 18px 0; }
  .pkg-bullets { padding: 14px 18px; }
  .pkg-best-for { padding: 0 18px 14px; }
  .pkg-toggle-row { padding: 12px 18px; }
  .pkg-body { padding: 18px; }

  /* ── Authority ── */
  .authority { padding: clamp(24px, 4vw, 32px); gap: 24px; }

  /* ── Confidence ── */
  .confidence-cta { align-items: stretch; }

  /* ── FAQ ── */
  .faq-q { padding: 16px 18px; font-size: 0.875rem; }
  .faq-a { padding: 0 18px 16px; padding-top: 16px; font-size: 0.875rem; }

  /* ── Contact ── */
  .contact-form { padding: clamp(20px, 4vw, 28px); }

  /* ── Final CTA ── */
  .final-cta h2 { font-size: clamp(1.8rem, 6vw, 2.5rem); }

  /* ── Footer ── */
  .footer { padding: clamp(32px, 4vw, 40px) 0 24px; }
  .footer-grid { margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .announcement { font-size: 0.5625rem; padding: 5px 12px; }
  .header-inner { padding: 10px 16px; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { width: 100%; justify-content: center; }
  .hero-content { padding: 130px 16px 32px; }
  .hero h1 { font-size: clamp(1.8rem, 7vw, 2.2rem); margin-bottom: 14px; }
  .hero-sub { font-size: 0.8125rem; margin-bottom: 18px; }
  .hero-badge { margin-bottom: 14px; font-size: 0.5625rem; padding: 4px 10px; gap: 6px; }
  .review-card { padding: 16px; }
  .logo-placeholder { font-size: 0.9rem; }
  .logos-grid { gap: clamp(20px, 5vw, 40px); }
}
