/* ==========================================================
   TITLE EDGE — Master Stylesheet
   titleedge.css
   ========================================================== */

/* ── 1. FONTS ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ── 2. DESIGN TOKENS ────────────────────────────────── */
:root {
  /* Brand Colors */
  --gold-light: #D7C981;
  --gold-dark:  #A87D40;
  --bg-dark:    #161616;
  --bg-card:    #222222;
  --text-white: #FFFFFF;
  --text-gray:  #CCCCCC;

  /* Semantic aliases */
  --primary:          var(--gold-dark);
  --primary-gradient: linear-gradient(135deg, var(--gold-light), var(--gold-dark));
  --background:       var(--bg-dark);
  --foreground:       var(--text-white);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body:    'Inter', Arial, Helvetica, sans-serif;

  /* Layout */
  --max-width:  1200px;
  --nav-height: 80px;
}

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

html, body {
  max-width: 100vw;
  overflow-x: hidden;
}

body {
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.15;
}

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  padding: 0.5rem 1rem;
  background: var(--gold-light);
  color: #000;
  font-weight: 600;
  border-radius: 0 0 6px 6px;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 0; }


/* ── 4. LAYOUT UTILITIES ─────────────────────────────── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.section-title {
  font-size: 2.5rem;
  font-family: var(--font-heading);
  color: var(--text-white);
  margin-bottom: 1rem;
}

.section-text {
  color: var(--text-gray);
  font-size: 1.1rem;
  line-height: 1.6;
}

/* Inner-page header */
.page-header {
  padding: 8rem 2rem 4rem;
  text-align: center;
}

.page-title {
  font-size: 3.5rem;
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
}

.page-subtitle {
  color: var(--text-gray);
  font-size: 1.25rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}


/* ── 5. DESIGN UTILITIES ─────────────────────────────── */
.glass {
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.05);
}

.text-gradient {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

@keyframes shine {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}

.shine-title {
  background: linear-gradient(
    120deg,
    rgba(255,255,255,1) 0%,
    rgba(255,255,255,1) 40%,
    #FFD700 50%,
    rgba(255,255,255,1) 60%,
    rgba(255,255,255,1) 100%
  );
  background-size: 200% auto;
  color: #fff;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shine 4s ease-in-out infinite;
}

.highlight {
  color: var(--gold-light);
  font-style: normal;
  font-weight: 600;
}

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}


/* ── 6. BUTTONS ──────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: none;
  text-decoration: none;
  transition: all 0.2s ease;
  background: var(--primary-gradient);
  color: #000;
  box-shadow: 0 4px 15px rgba(215,201,129,0.2);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(215,201,129,0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid var(--gold-light);
  color: var(--gold-light);
  box-shadow: none;
}

.btn-secondary:hover {
  background: rgba(215,201,129,0.1);
  transform: translateY(-2px);
}

.btn-full { width: 100%; }


/* ── 7. SITE HEADER / NAVBAR ─────────────────────────── */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease, backdrop-filter 0.3s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(22,22,22,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom-color: rgba(255,255,255,0.05);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo-link {
  display: flex;
  align-items: center;
}

.site-logo {
  height: 52px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-gray);
  transition: color 0.2s;
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-white);
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
}


/* ── 8. MOBILE NAV ───────────────────────────────────── */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1001;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-nav-overlay.open {
  display: block;
  opacity: 1;
}

.mobile-nav-panel {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  width: 300px;
  background: #1e1e1e;
  z-index: 1002;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  border-left: 1px solid rgba(255,255,255,0.06);
}

.mobile-nav-panel.open {
  transform: translateX(0);
}

.mobile-nav-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
}

.mobile-nav-logo {
  height: 36px;
  width: auto;
}

.mobile-nav-close {
  background: none;
  border: none;
  color: var(--text-white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav-links a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-gray);
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s;
}

.mobile-nav-links a:hover {
  color: var(--gold-light);
}

.mobile-nav-cta {
  margin-top: 2rem;
}


/* ── 9. FOOTER ───────────────────────────────────────── */
.site-footer {
  background: var(--bg-card);
  padding: 4rem 0 2rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  height: 32px;
  width: auto;
  opacity: 0.8;
}

.footer-tagline {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-col h4 {
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-col a {
  color: var(--text-gray);
  font-size: 0.95rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  max-width: var(--max-width);
  margin: 4rem auto 0;
  padding: 2rem 2rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-gray);
  font-size: 0.9rem;
}


/* ── 10. FORMS ───────────────────────────────────────── */
.form-group { margin-bottom: 1.5rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--text-gray);
  font-size: 0.9rem;
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.28); }

.form-input:focus,
.form-textarea:focus {
  outline: none;
  border-color: var(--gold-dark);
}

.form-textarea {
  min-height: 130px;
  resize: vertical;
}


/* ══════════════════════════════════════════════════════
   PAGE-SPECIFIC STYLES
   ══════════════════════════════════════════════════════ */

/* ── HOME: HERO ──────────────────────────────────────── */
@keyframes pulseGlow {
  0%   { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
  50%  { transform: translate(-50%,-50%) scale(1.2); opacity: 1;   }
  100% { transform: translate(-50%,-50%) scale(1);   opacity: 0.8; }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 8rem 2rem;
  background:
    radial-gradient(circle at center, rgba(168,125,64,0.25) 0%, rgba(22,22,22,0.95) 70%),
    #161616;
}

.hero::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 120vw;
  height: 120vh;
  background: radial-gradient(circle at center, rgba(168,125,64,0.15) 0%, transparent 60%);
  animation: pulseGlow 5s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  max-width: 820px;
  z-index: 2;
  position: relative;
}

.hero-title {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 1.5rem;
  font-family: var(--font-heading);
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-gray);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}


/* ── HOME: PROBLEM SECTION ───────────────────────────── */
.hard-truth-title {
  font-size: 1.5rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-bottom: 2rem;
  text-align: center;
}

.year-2026 {
  display: block;
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-top: -1rem;
  text-shadow: 0 0 20px rgba(168,125,64,0.3);
  font-family: var(--font-heading);
}

.problem-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 3rem;
  border-radius: 16px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.agitation-text {
  font-size: 1.4rem;
  line-height: 1.65;
  color: var(--text-gray);
  font-style: italic;
}


/* ── HOME: SERVICES PREVIEW GRID ─────────────────────── */
.services-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-preview-grid > *:last-child:nth-child(7) {
  grid-column: 2;
}

.service-preview-card {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  transition: transform 0.25s, border-color 0.25s;
}

.service-preview-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dark);
}

.service-preview-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  display: block;
}

.service-preview-title {
  font-size: 1.2rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.service-preview-desc {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.55;
  margin-bottom: 1.25rem;
}

.service-features-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.service-feature-tag {
  font-size: 0.78rem;
  background: rgba(215,201,129,0.08);
  border: 1px solid rgba(215,201,129,0.2);
  color: var(--gold-light);
  padding: 0.2rem 0.6rem;
  border-radius: 4px;
}


/* ── HOME: SERVICE FLIP CARDS ──────────────────────────── */
.flip-card.service-flip {
  height: 280px;
}

.service-flip-front {
  flex-direction: column;
  gap: 1rem;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.08);
}

.service-flip-logo {
  width: 72px;
  height: auto;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.service-flip-back {
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  text-align: left;
  padding: 2rem;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(168,125,64,0.1), rgba(22,22,22,0.95));
  border: 1px solid rgba(168,125,64,0.25);
  border-top: 3px solid var(--gold-dark);
}

.service-flip-back .service-preview-title {
  font-size: 1.25rem;
  margin-bottom: 0;
}

.service-flip-back .service-preview-desc {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.service-flip-back .service-features-list {
  margin-top: auto;
}


/* ── HOME: STEPS / HOW IT WORKS ──────────────────────── */
.steps {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  min-width: 220px;
}

.step-number {
  font-size: 6rem;
  font-weight: 800;
  color: rgba(168,125,64,0.08);
  font-family: var(--font-heading);
  line-height: 0.8;
  margin-bottom: -1.5rem;
  position: relative;
  z-index: 0;
}

.step-content {
  position: relative;
  z-index: 1;
}

.step-title {
  font-size: 1.4rem;
  font-family: var(--font-heading);
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.step-text {
  color: var(--text-gray);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Connector line between steps */
.steps .step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -1.75rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(168,125,64,0.3);
  font-size: 1.5rem;
}


/* ── HOME: VIDEO SECTION ─────────────────────────────── */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(168,125,64,0.3);
  box-shadow: 0 0 50px rgba(0,0,0,0.5);
  cursor: pointer;
}

.video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.video-wrapper:hover .video-img { transform: scale(1.02); }

.video-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.35);
  z-index: 2;
  transition: background 0.3s;
}

.video-wrapper:hover .video-overlay { background: rgba(0,0,0,0.12); }

.play-btn {
  width: 80px;
  height: 80px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.8rem;
  margin-bottom: 1rem;
  box-shadow: 0 0 30px rgba(168,125,64,0.2);
  transition: all 0.3s;
  padding-left: 4px; /* optical center for play triangle */
}

.video-wrapper:hover .play-btn {
  transform: scale(1.1);
  background: var(--gold-light);
  color: #000;
}

.watch-text {
  color: var(--text-white);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
}


/* ── HOME: CTA SECTION ───────────────────────────────── */
.cta-section {
  text-align: center;
  background: linear-gradient(180deg, var(--bg-dark) 0%, rgba(168,125,64,0.05) 100%);
}

.cta-box {
  max-width: 600px;
  margin: 0 auto;
}

.cta-box .section-title { margin-bottom: 1rem; }
.cta-box .hero-subtitle { margin-bottom: 2rem; }


/* ── ABOUT PAGE ──────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-image {
  width: 100%;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-content p {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.75;
}

.about-content strong {
  color: var(--gold-light);
}

.about-cta { margin-top: 0.5rem; }


/* ── SERVICES PAGE ───────────────────────────────────── */
.services-expand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  padding: 2rem;
  cursor: pointer;
  transition: transform 0.25s, border-color 0.25s;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-dark);
}

.service-card-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--gold-light);
}

.service-card-desc {
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.55;
  flex-grow: 1;
}

.service-card-expand {
  font-size: 1.2rem;
  color: var(--gold-dark);
  align-self: flex-end;
  font-weight: 700;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold-dark);
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
}

.service-card:hover .service-card-expand {
  background: var(--gold-dark);
  color: #000;
}

/* Service expand modal */
.service-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.service-modal-overlay.open {
  display: flex;
}

.service-modal {
  background: var(--bg-card);
  border: 1px solid rgba(215,201,129,0.2);
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  overflow: hidden;
  position: relative;
  animation: modalIn 0.25s ease;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95); }
  to   { opacity: 1; transform: scale(1); }
}

.service-modal-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.service-modal-body {
  padding: 2rem;
}

.service-modal-title {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.service-modal-desc {
  color: var(--text-gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.service-modal-details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.service-modal-tag {
  font-size: 0.82rem;
  background: rgba(168,125,64,0.12);
  border: 1px solid rgba(168,125,64,0.25);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.service-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.5);
  border: none;
  color: var(--text-white);
  font-size: 1.4rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  backdrop-filter: blur(4px);
  transition: background 0.2s;
}

.service-modal-close:hover { background: rgba(0,0,0,0.8); }


/* ── PORTFOLIO PAGE ──────────────────────────────────── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem 6rem;
}

.portfolio-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s, border-color 0.3s;
  display: block;
  color: inherit;
}

.portfolio-card:hover {
  transform: translateY(-6px);
  border-color: var(--gold-dark);
}

.portfolio-img-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  position: relative;
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.portfolio-card:hover .portfolio-img { transform: scale(1.04); }

.portfolio-content {
  padding: 1.5rem;
}

.portfolio-client-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-white);
  margin-bottom: 0.35rem;
}

.portfolio-client-desc {
  color: var(--text-gray);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.portfolio-link {
  color: var(--gold-light);
  font-size: 0.9rem;
  font-weight: 600;
  transition: color 0.2s;
}

.portfolio-card:hover .portfolio-link { color: #fff; }


/* ── PRICING PAGE ────────────────────────────────────── */
.pricing-cards {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
  align-items: stretch;
}

.pricing-card-wrapper {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  display: flex;
}

.pricing-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
  padding: 2.5rem;
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  transition: transform 0.3s;
}

.pricing-card:hover { transform: translateY(-4px); }

@keyframes popularPulse {
  0%,100% {
    box-shadow: 0 0 30px rgba(168,125,64,0.1);
    border-color: var(--gold-light);
  }
  50% {
    box-shadow: 0 0 50px rgba(168,125,64,0.3);
    border-color: #ffe6a0;
  }
}

.pricing-card.popular {
  border-color: var(--gold-light);
  animation: popularPulse 3s infinite ease-in-out;
  z-index: 2;
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary-gradient);
  color: #000;
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.plan-name {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.plan-price {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: var(--text-white);
  margin-bottom: 0.25rem;
}

.plan-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-gray);
}

.plan-setup {
  color: var(--text-gray);
  font-size: 0.88rem;
  padding-bottom: 1.75rem;
  margin-bottom: 1.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.plan-features {
  flex-grow: 1;
  margin-bottom: 2rem;
}

.plan-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--text-gray);
  font-size: 0.93rem;
  line-height: 1.4;
  margin-bottom: 0.9rem;
}

.plan-feature.included::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}

.plan-feature.excluded {
  color: rgba(255,255,255,0.2);
}

.plan-feature.excluded::before {
  content: "×";
  color: rgba(255,255,255,0.2);
  flex-shrink: 0;
}


/* ── PRICING: GUIDANCE / FLIP CARDS ─────────────────── */
.guidance-section {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.015);
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

/* Flip card */
.flip-card {
  height: 260px;
  perspective: 1200px;
  cursor: default;
}

.flip-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
  transition: transform 0.6s ease;
}

.flip-card.flipped .flip-card-inner {
  transform: rotateY(180deg);
}

.flip-face {
  position: absolute;
  inset: 0;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.flip-front {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
}

.flip-front-text {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-gray);
  text-align: center;
  font-style: italic;
}

.flip-back {
  background: linear-gradient(135deg, rgba(168,125,64,0.15), rgba(22,22,22,0.9));
  border: 1px solid rgba(168,125,64,0.3);
  transform: rotateY(180deg);
  flex-direction: column;
  gap: 0.75rem;
  text-align: center;
}

.flip-back-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold-light);
}

.flip-back-desc {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.6;
}


/* ── PRICING: ADDONS GRID ────────────────────────────── */
.addons-section {
  padding: 6rem 2rem;
}

.addons-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.addons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: var(--max-width);
  margin: 0 auto;
}

.addon-card {
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.addon-card:hover {
  border-color: var(--gold-dark);
  transform: translateY(-3px);
}

.addon-front {
  padding: 1.5rem;
}

.addon-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text-white);
  margin-bottom: 0.4rem;
}

.addon-desc {
  color: var(--text-gray);
  font-size: 0.88rem;
  line-height: 1.5;
  margin-bottom: 0.75rem;
}

.addon-price {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
}

.addon-drawer {
  background: rgba(168,125,64,0.07);
  border-top: 1px solid rgba(168,125,64,0.15);
  padding: 1rem 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.addon-card:hover .addon-drawer {
  max-height: 200px;
  padding: 1rem 1.5rem;
}

.addon-drawer-label {
  font-size: 0.78rem;
  color: var(--gold-dark);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
}

.addon-drawer-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.addon-drawer-tag {
  font-size: 0.78rem;
  background: rgba(215,201,129,0.08);
  border: 1px solid rgba(215,201,129,0.18);
  color: var(--gold-light);
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
}


/* ── PRICING: QUIZ ───────────────────────────────────── */
.quiz-section {
  padding: 6rem 2rem;
  background: rgba(255,255,255,0.01);
  border-top: 1px solid rgba(255,255,255,0.05);
}

.quiz-header {
  text-align: center;
  margin-bottom: 3rem;
}

.quiz-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.quiz-subtitle {
  color: var(--text-gray);
  font-size: 1.05rem;
}

.quiz-card {
  max-width: 620px;
  margin: 0 auto;
  background: var(--bg-card);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 20px;
  padding: 3rem;
  position: relative;
}

.quiz-back-btn {
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
  padding: 0;
  display: block;
  transition: color 0.2s;
}

.quiz-back-btn:hover { color: var(--gold-light); }

.quiz-question {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-white);
  line-height: 1.35;
  margin-bottom: 2rem;
}

.quiz-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.quiz-btn {
  min-width: 140px;
  padding: 0.85rem 2rem;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 1px solid rgba(255,255,255,0.1);
  background: rgba(255,255,255,0.04);
  color: var(--text-white);
  transition: all 0.2s;
}

.quiz-btn:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.2);
}

.quiz-btn.yes-btn {
  background: var(--primary-gradient);
  border-color: transparent;
  color: #000;
}

.quiz-btn.yes-btn:hover {
  box-shadow: 0 4px 15px rgba(215,201,129,0.3);
}

.quiz-progress-wrap {
  height: 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 2px;
  overflow: hidden;
}

.quiz-progress-bar {
  height: 100%;
  background: var(--primary-gradient);
  border-radius: 2px;
  transition: width 0.4s ease;
}

/* Quiz results */
.quiz-result {
  text-align: center;
  display: none;
}

.quiz-result.active { display: block; }

.quiz-result-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.quiz-recommendation {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--gold-light);
  margin-bottom: 0.75rem;
}

.quiz-result-desc {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

.quiz-addons {
  margin-top: 2rem;
  text-align: left;
}

.quiz-addons-label {
  font-size: 0.85rem;
  color: var(--text-gray);
  margin-bottom: 0.75rem;
}

.quiz-addon-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.quiz-addon-tag {
  font-size: 0.82rem;
  background: rgba(168,125,64,0.1);
  border: 1px solid rgba(168,125,64,0.25);
  color: var(--gold-light);
  padding: 0.3rem 0.8rem;
  border-radius: 6px;
}

.quiz-restart {
  margin-top: 1.5rem;
  background: none;
  border: none;
  color: var(--text-gray);
  cursor: pointer;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s;
}

.quiz-restart:hover { color: var(--gold-light); }


/* ── PRICING: ROI SECTION ────────────────────────────── */
.roi-section {
  text-align: center;
  padding: 6rem 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.roi-text {
  font-size: 1.5rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text-gray);
  margin-top: 1.25rem;
}


/* ── CONTACT PAGE ────────────────────────────────────── */
.contact-wrap {
  padding: 8rem 2rem 6rem;
  min-height: 100vh;
}

.contact-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding-top: 1rem;
}

.contact-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.contact-text {
  color: var(--text-gray);
  font-size: 1.05rem;
  line-height: 1.7;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-white);
  font-size: 0.95rem;
}

.contact-form-box {
  background: var(--bg-card);
  padding: 3rem;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,0.05);
}


/* ── LEGAL PAGES ─────────────────────────────────────── */
.legal-page {
  padding: 8rem 2rem 5rem;
  max-width: 800px;
  margin: 0 auto;
}

.legal-page h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  margin-bottom: 2rem;
}

.legal-page .meta {
  color: var(--text-gray);
  margin-bottom: 2rem;
  font-size: 0.92rem;
}

.legal-page p {
  color: var(--text-gray);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.97rem;
}

.legal-page h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text-white);
  margin: 2.5rem 0 1rem;
}


/* ══════════════════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .services-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .services-preview-grid > *:last-child:nth-child(7) { grid-column: 1 / -1; }
  .services-expand-grid { grid-template-columns: repeat(2, 1fr); }
  .guidance-grid        { grid-template-columns: repeat(2, 1fr); }
  .addons-grid          { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .pricing-cards { flex-direction: column; align-items: center; }
  .pricing-card-wrapper { max-width: 480px; width: 100%; }
  .pricing-card.popular { order: -1; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
}

@media (max-width: 768px) {
  /* Nav */
  .site-nav    { display: none; }
  .mobile-toggle { display: block; }

  /* Footer */
  .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }

  /* Typography */
  .hero-title     { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .page-title     { font-size: 2.25rem; }
  .section-title  { font-size: 2rem; }
  .quiz-title     { font-size: 2rem; }

  /* Grids → single column */
  .services-preview-grid { grid-template-columns: 1fr; }
  .flip-card.service-flip { height: 260px; }
  .services-expand-grid  { grid-template-columns: 1fr; }
  .portfolio-grid        { grid-template-columns: 1fr; }
  .guidance-grid         { grid-template-columns: 1fr; }
  .addons-grid           { grid-template-columns: 1fr; }
  .contact-grid          { grid-template-columns: 1fr; gap: 3rem; }

  /* Steps */
  .steps { flex-direction: column; gap: 2.5rem; }
  .steps .step::after { display: none; }
  .hero-buttons { flex-direction: column; align-items: center; }

  /* Problem */
  .problem-box  { padding: 2rem; }
  .agitation-text { font-size: 1.15rem; }

  /* Video */
  .play-btn { width: 60px; height: 60px; font-size: 1.4rem; }

  /* Quiz */
  .quiz-card { padding: 2rem; }
  .quiz-question { font-size: 1.25rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .section   { padding: 4rem 1.25rem; }
  .page-header { padding: 7rem 1.25rem 3rem; }
  .contact-form-box { padding: 2rem 1.25rem; }
  .quiz-card { padding: 1.75rem 1.25rem; }
}
