/* ============================================================
   P.N Marketing Private Limited — style.css
   Palette: Deep Indigo (#1e1b4b) + Gold (#d4af37) + White (#ffffff)
   Style: Asymmetric hero, premium editorial, bold typography
   Fonts: Cormorant Garamond (headings) + Outfit (body)
   ============================================================ */

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

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

:root {
  --indigo:      #1e1b4b;
  --indigo-dark: #13112e;
  --indigo-mid:  #2d2a6e;
  --indigo-light:#3730a3;
  --gold:        #d4af37;
  --gold-light:  #f0d060;
  --gold-dark:   #a88a1c;
  --white:       #ffffff;
  --cream:       #faf8f2;
  --grey-light:  #f1f0f8;
  --grey-mid:    #9ca3af;
  --text-dark:   #1a1830;
  --text-body:   #3d3a5c;
  --border:      rgba(212,175,55,0.25);
  --shadow-sm:   0 2px 8px rgba(30,27,75,0.12);
  --shadow-md:   0 8px 32px rgba(30,27,75,0.18);
  --shadow-lg:   0 20px 60px rgba(30,27,75,0.25);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-body);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: 'Cormorant Garamond', serif;
  color: var(--text-dark);
  line-height: 1.2;
  font-weight: 600;
}

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

/* ── Typography Scale ── */
.display-xl { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; letter-spacing: -0.02em; }
.display-lg { font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 600; }
.display-md { font-size: clamp(1.6rem, 3vw, 2.6rem); font-weight: 600; }
.display-sm { font-size: clamp(1.2rem, 2vw, 1.6rem); font-weight: 600; }
.body-lg    { font-size: 1.125rem; line-height: 1.8; }
.body-md    { font-size: 1rem; line-height: 1.7; }
.body-sm    { font-size: 0.875rem; line-height: 1.6; }
.label      { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section    { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.text-gold  { color: var(--gold); }
.text-indigo{ color: var(--indigo); }
.text-white { color: var(--white); }
.text-center{ text-align: center; }
.bg-indigo  { background: var(--indigo); }
.bg-dark    { background: var(--indigo-dark); }
.bg-cream   { background: var(--cream); }
.bg-grey    { background: var(--grey-light); }
.italic     { font-style: italic; }

.gold-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px;
  margin: 1.2rem 0;
}
.gold-line.center { margin: 1.2rem auto; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--indigo-dark);
}
.btn-primary:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,175,55,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-dark {
  background: transparent;
  color: var(--indigo);
  border: 2px solid var(--indigo);
}
.btn-outline-dark:hover { background: var(--indigo); color: var(--white); }
.btn-lg { padding: 1rem 2.5rem; font-size: 1rem; }
.btn-sm { padding: 0.6rem 1.4rem; font-size: 0.8rem; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(19,17,46,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
/* PN Wordmark Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-svg { height: 40px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); background: rgba(212,175,55,0.08); }

.nav-cta { display: flex; align-items: center; gap: 0.75rem; }
.nav-phone {
  color: rgba(255,255,255,0.6);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.nav-phone span { color: var(--gold); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  background: var(--indigo-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 72px;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: -10%;
  width: 60%;
  height: 140%;
  background: radial-gradient(ellipse at center, rgba(55,48,163,0.4) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -10%;
  right: 30%;
  width: 40%;
  height: 60%;
  background: radial-gradient(ellipse at center, rgba(212,175,55,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
  min-height: calc(100vh - 72px);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 5rem 4rem 5rem 3rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
  width: fit-content;
}
.hero-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(212,175,55,0.2);
}
.hero-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-top: 0.2rem; }

.hero-right {
  position: relative;
  overflow: hidden;
  min-height: 600px;
}
.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--indigo-dark) 0%, transparent 30%);
  z-index: 1;
  pointer-events: none;
}

/* ── Stats Bar ── */
.stats-bar {
  background: var(--gold);
  padding: 1.5rem 0;
}
.stats-bar-inner {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.stats-bar-item { text-align: center; }
.stats-bar-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--indigo-dark);
  line-height: 1;
}
.stats-bar-label { font-size: 0.75rem; font-weight: 600; color: var(--indigo-mid); letter-spacing: 0.05em; margin-top: 0.2rem; }
.stats-bar-divider { width: 1px; height: 40px; background: rgba(30,27,75,0.2); }

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(212,175,55,0.3); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(30,27,75,0.08), rgba(212,175,55,0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  font-size: 1.5rem;
}
.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(212,175,55,0.25);
  line-height: 1;
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
}
.service-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; color: var(--indigo); }
.service-card p { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.service-tag {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(30,27,75,0.06);
  border: 1px solid rgba(30,27,75,0.12);
  padding: 0.25rem 0.6rem;
  border-radius: 4px;
}

/* ── Why Choose Us ── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 1.5rem; }
.why-feature {
  display: flex;
  gap: 1.2rem;
  align-items: flex-start;
  padding: 1.5rem;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.07);
  transition: var(--transition);
}
.why-feature:hover { border-color: rgba(212,175,55,0.3); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.2rem;
}
.why-feature h4 { font-size: 1rem; color: var(--indigo); margin-bottom: 0.3rem; }
.why-feature p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }
.why-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.why-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.why-image-badge {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--gold);
  color: var(--indigo-dark);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.why-image-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.why-image-badge-label { font-size: 0.75rem; font-weight: 600; margin-top: 0.2rem; }

/* ── Portfolio Grid ── */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.portfolio-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--indigo-dark);
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.portfolio-card-bg {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--indigo-mid), var(--indigo));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  transition: transform 0.4s ease;
}
.portfolio-card:hover .portfolio-card-bg { transform: scale(1.05); }
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,17,46,0.95) 0%, transparent 60%);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  opacity: 0;
  transition: var(--transition);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }
.portfolio-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.4rem; }
.portfolio-title { font-size: 1.1rem; color: var(--white); font-weight: 600; margin-bottom: 0.5rem; }
.portfolio-result { font-size: 0.8rem; color: rgba(255,255,255,0.7); }

/* ── Process Steps ── */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: 10%;
  right: 10%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.2));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-step-num {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--indigo-dark);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  box-shadow: 0 4px 16px rgba(212,175,55,0.4);
}
.process-step h3 { font-size: 1.1rem; color: var(--indigo); margin-bottom: 0.6rem; }
.process-step p { font-size: 0.875rem; color: var(--text-body); line-height: 1.6; }

/* ── Blog Cards ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.blog-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.08);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
}
.blog-card-body { padding: 1.5rem; }
.blog-cat { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.blog-card-body h3 { font-size: 1.05rem; color: var(--indigo); margin-bottom: 0.6rem; line-height: 1.4; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; margin-bottom: 1rem; }
.blog-meta { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--grey-mid); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.faq-item {
  border: 1px solid rgba(30,27,75,0.1);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(212,175,55,0.4); box-shadow: var(--shadow-sm); }
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--indigo);
  gap: 1rem;
}
.faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(30,27,75,0.06);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  font-weight: 300;
  color: var(--indigo);
  transition: var(--transition);
}
.faq-item.open .faq-icon { background: var(--gold); color: var(--indigo-dark); transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 1.5rem;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-card {
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.08);
  border-radius: var(--radius);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  transition: var(--transition);
}
.contact-info-card:hover { border-color: rgba(212,175,55,0.3); box-shadow: var(--shadow-sm); }
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.contact-info-label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-mid); margin-bottom: 0.3rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--indigo); }
.contact-info-sub { font-size: 0.8rem; color: var(--text-body); margin-top: 0.2rem; }

.contact-form {
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.08);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.8rem; font-weight: 600; color: var(--indigo); letter-spacing: 0.04em; }
.form-group input, .form-group select, .form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid rgba(30,27,75,0.12);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: rgba(16,185,129,0.08);
  border: 1px solid rgba(16,185,129,0.3);
  color: #065f46;
  padding: 1rem;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  margin-top: 1rem;
}

/* ── Hours Table ── */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(212,175,55,0.15); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.6rem 0; font-size: 0.875rem; }
.hours-table td:first-child { color: rgba(255,255,255,0.8); }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }

/* ── Team ── */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  border-radius: 50%;
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
}
.team-card h4 { font-size: 1.1rem; color: var(--indigo); margin-bottom: 0.3rem; }
.team-card .role { font-size: 0.8rem; color: var(--gold); font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 0.75rem; }
.team-card p { font-size: 0.85rem; color: var(--text-body); line-height: 1.6; }

/* ── Values ── */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.value-card {
  background: var(--indigo);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid rgba(212,175,55,0.15);
  transition: var(--transition);
}
.value-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.value-icon { font-size: 2rem; margin-bottom: 1rem; }
.value-card h4 { font-size: 1rem; color: var(--gold); margin-bottom: 0.6rem; }
.value-card p { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.6; }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo-mid) 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto 2rem; }
.cta-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ── Policy Pages ── */
.policy-hero {
  background: var(--indigo-dark);
  padding: 8rem 0 4rem;
  text-align: center;
}
.policy-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.policy-hero p { color: rgba(255,255,255,0.6); }
.policy-body { max-width: 800px; margin: 0 auto; padding: 4rem 2rem; }
.policy-body h2 { font-size: 1.4rem; color: var(--indigo); margin: 2.5rem 0 0.75rem; padding-bottom: 0.5rem; border-bottom: 2px solid rgba(212,175,55,0.3); }
.policy-body h3 { font-size: 1.1rem; color: var(--indigo); margin: 1.5rem 0 0.5rem; }
.policy-body p { font-size: 0.95rem; color: var(--text-body); line-height: 1.8; margin-bottom: 1rem; }
.policy-body ul { margin: 0.75rem 0 1rem 1.5rem; }
.policy-body ul li { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 0.4rem; list-style: disc; }
.policy-body a { color: var(--indigo-light); text-decoration: underline; }
.policy-updated { background: rgba(212,175,55,0.08); border-left: 3px solid var(--gold); padding: 0.75rem 1rem; border-radius: 0 8px 8px 0; font-size: 0.85rem; color: var(--text-body); margin-bottom: 2rem; }

/* ── Footer ── */
.footer {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(212,175,55,0.15);
}
.footer-brand p { font-size: 0.875rem; line-height: 1.7; margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(212,175,55,0.1);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--indigo-dark); border-color: var(--gold); }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item { display: flex; gap: 0.75rem; align-items: flex-start; margin-bottom: 0.75rem; }
.footer-contact-item svg { width: 14px; height: 14px; flex-shrink: 0; margin-top: 3px; fill: var(--gold); }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.4); transition: var(--transition); }
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, var(--indigo-mid) 100%);
  padding: 8rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.bg-cream::after { background: var(--cream); }
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 600px; }
.breadcrumb { display: flex; gap: 0.5rem; align-items: center; margin-bottom: 1.5rem; font-size: 0.8rem; }
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }
.breadcrumb strong { color: var(--gold); }

/* ── Testimonials ── */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid rgba(30,27,75,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-md); border-color: rgba(212,175,55,0.2); }
.testimonial-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.9rem; color: var(--text-body); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--indigo); }
.testimonial-company { font-size: 0.75rem; color: var(--grey-mid); }

/* ── Filter Tabs ── */
.filter-tabs { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2.5rem; }
.filter-tab {
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: 1.5px solid rgba(30,27,75,0.15);
  color: var(--text-body);
  background: transparent;
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active { background: var(--indigo); color: var(--white); border-color: var(--indigo); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-right { min-height: 400px; }
  .hero-right::before { background: linear-gradient(to top, var(--indigo-dark) 0%, transparent 40%); }
  .why-grid { grid-template-columns: 1fr; gap: 3rem; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: var(--indigo-dark);
    padding: 1.5rem 2rem;
    border-bottom: 1px solid rgba(212,175,55,0.15);
    gap: 0.25rem;
  }
  .hero-left { padding: 3rem 1.5rem; }
  .hero-stats { gap: 1.5rem; flex-wrap: wrap; }
  .services-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .stats-bar-divider { display: none; }
  .testimonial-grid { grid-template-columns: 1fr; }
}
