/* =====================================================
   THRONOVA CONSULTING — MASTER STYLESHEET
   Fonts: Cormorant Garamond + DM Sans
   ===================================================== */

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: #1A1A1A;
  background: #FFFFFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a   { text-decoration: none; color: inherit; }
ul  { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* 2. CSS CUSTOM PROPERTIES
   ===================================================== */
:root {
  --royal:        #0B1F3B;
  --royal-mid:    #0F2D52;
  --royal-light:  #1A4070;
  --gold:         #C7A23A;
  --gold-light:   #D4B55A;
  --gold-dark:    #A8882E;
  --gold-muted:   rgba(199,162,58,0.12);
  --black:        #0A0A0A;
  --white:        #FFFFFF;
  --ivory:        #FAFAF7;
  --gray-50:      #F9FAFB;
  --gray-100:     #F3F4F6;
  --gray-200:     #E5E7EB;
  --gray-400:     #9CA3AF;
  --gray-600:     #4B5563;
  --gray-700:     #374151;
  --gray-800:     #1F2937;

  --font-display: 'Cormorant Garamond', serif;
  --font-body:    'DM Sans', sans-serif;

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-full: 9999px;

  --shadow-sm:   0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:   0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg:   0 12px 48px rgba(0,0,0,0.14);
  --shadow-gold: 0 4px 24px rgba(199,162,58,0.25);

  --transition:  all 0.3s ease;
  --max-width:   1200px;
  --nav-height:  80px;
}

/* 3. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: inherit;
}

h1 { font-size: clamp(2.6rem, 5.5vw, 4.8rem); font-weight: 600; }
h2 { font-size: clamp(2rem,   4vw,   3.4rem);  font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem);    font-weight: 600; }
h4 { font-size: clamp(1.1rem, 2vw,   1.3rem);  font-weight: 500; }
h5 { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; }

p  { line-height: 1.8; color: var(--gray-600); font-size: 1rem; }

.text-gold   { color: var(--gold); }
.text-royal  { color: var(--royal); }
.text-white  { color: var(--white); }
.text-center { text-align: center; }

/* 4. LAYOUT UTILITIES
   ===================================================== */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.section          { padding: 100px 0; }
.section--dark    { background: var(--royal); color: var(--white); }
.section--ivory   { background: var(--ivory); }
.section--gray    { background: var(--gray-50); }

.section-header          { max-width: 680px; margin-bottom: 64px; }
.section-header--center  { margin-left: auto; margin-right: auto; text-align: center; }
.section-header--center p { margin: 0 auto; }

.section-header h2 { margin-bottom: 20px; color: var(--royal); }
.section-header--center h2 { color: inherit; }
.section-header p  { font-size: 1.05rem; max-width: 560px; }

.section-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  padding: 6px 16px;
  background: var(--gold-muted);
  border-radius: var(--radius-full);
  border: 1px solid rgba(199,162,58,0.25);
}

.section-tag--dark {
  background: rgba(199,162,58,0.15);
  border-color: rgba(199,162,58,0.30);
}

.gold-rule               { width: 60px; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); border-radius: 2px; margin-bottom: 24px; }
.gold-rule--center       { margin-left: auto; margin-right: auto; }

.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }

/* 5. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: var(--radius-md);
  transition: var(--transition);
  white-space: nowrap;
  cursor: pointer;
}

.btn--gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--royal);
  box-shadow: var(--shadow-gold);
}
.btn--gold:hover {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(199,162,58,0.35);
}

.btn--royal {
  background: var(--royal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn--royal:hover {
  background: var(--royal-light);
  transform: translateY(-2px);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.40);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold);
  color: var(--gold);
}

.btn--ghost-royal {
  background: transparent;
  color: var(--royal);
  border: 1.5px solid var(--royal);
}
.btn--ghost-royal:hover {
  background: var(--royal);
  color: var(--white);
}

.btn--lg { padding: 17px 40px; font-size: 0.9rem; }

.btn-group          { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; }
.btn-group--center  { justify-content: center; }

/* 6. NAVIGATION
   ===================================================== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  background: transparent;
}

.nav.nav--scrolled {
  background: rgba(11,31,59,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav.nav--solid {
  background: var(--royal);
  box-shadow: 0 2px 24px rgba(0,0,0,0.20);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 32px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav__logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.06em;
  line-height: 1;
}
.nav__logo-name span { color: var(--gold); }

.nav__logo-sub {
  font-family: var(--font-body);
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.75;
  margin-top: 3px;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav__link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.78);
  letter-spacing: 0.03em;
  transition: color 0.2s;
  position: relative;
}
.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav__link:hover,
.nav__link.active { color: var(--white); }
.nav__link:hover::after,
.nav__link.active::after { width: 100%; }

.nav__cta { padding: 10px 24px; font-size: 0.8rem; }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 1001;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* 7. HERO — CENTERED + IMAGE SUPPORT
   ===================================================== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--royal);
  color: var(--white);
  padding: calc(var(--nav-height) + 60px) 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 30% 30%, rgba(26,64,112,0.55) 0%, transparent 70%),
    radial-gradient(ellipse 50% 50% at 80% 80%, rgba(199,162,58,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero__dots {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

.hero__accent {
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,162,58,0.07) 0%, transparent 70%);
  top: -150px; right: -150px;
  pointer-events: none;
}

/* Centered hero layout */
.hero__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 860px;
  margin: 0 auto;
}

.hero__tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  padding: 8px 20px;
  border: 1px solid rgba(199,162,58,0.35);
  border-radius: var(--radius-full);
  background: rgba(199,162,58,0.08);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 600;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  line-height: 1.08;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold);
}

.hero__lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.72);
  max-width: 620px;
  margin: 0 auto 44px;
  line-height: 1.8;
}

/* Hero image / visual block */
.hero__visual {
  margin-top: 64px;
  position: relative;
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.hero__img-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(135deg, var(--royal-mid) 0%, var(--royal-light) 100%);
  min-height: 440px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.hero__img-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero__img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
}

/* Placeholder visual shown when no image is present */
.hero__img-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 60px 40px;
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero__placeholder-crown {
  margin-bottom: 32px;
  opacity: 0.6;
}

.hero__placeholder-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  width: 100%;
  max-width: 640px;
}

.hero__placeholder-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-lg);
  padding: 24px 20px;
  text-align: center;
}

.hero__placeholder-card .card-val {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  display: block;
}

.hero__placeholder-card .card-lbl {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(255,255,255,0.50);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Floating stat cards on the image */
.hero__float-card {
  position: absolute;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  z-index: 2;
  min-width: 140px;
}

.hero__float-card--left  { bottom: 32px; left: -24px; }
.hero__float-card--right { top: 32px; right: -24px; }

.hero__float-card .fc-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
  margin-bottom: 4px;
  display: block;
}

.hero__float-card .fc-lbl {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero__float-card .fc-dot {
  display: inline-block;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  margin-right: 6px;
  vertical-align: middle;
}

/* Interior page hero (smaller) */
.hero--sm {
  min-height: 460px;
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
}

.hero--sm .hero__inner {
  text-align: center;
}

.hero--sm h1 { font-size: clamp(2rem, 4.5vw, 3.8rem); }

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero__scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(199,162,58,0.6), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* 8. STATS BAR
   ===================================================== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 44px 0;
}

.stats-bar__inner {
  display: flex;
  justify-content: center;
  gap: 72px;
  flex-wrap: wrap;
}

.stat-item           { text-align: center; }
.stat-item__number   {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--royal);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-item__number span { color: var(--gold); }
.stat-item__label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-400);
}

/* 9. SERVICE CARDS
   ===================================================== */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: rgba(199,162,58,0.30);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-card:hover::before { transform: scaleX(1); }

.service-card__icon {
  width: 56px; height: 56px;
  background: var(--gold-muted);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}

.service-card:hover .service-card__icon { background: var(--gold); }

.service-card__icon svg {
  width: 26px; height: 26px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.8;
  transition: stroke 0.3s;
}

.service-card:hover .service-card__icon svg { stroke: var(--royal); }

.service-card h3        { color: var(--royal); margin-bottom: 14px; }
.service-card p         { font-size: 0.95rem; margin-bottom: 24px; line-height: 1.75; }

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold-dark);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 10px; color: var(--gold); }

/* Service blocks (Services page) */
.service-block          { padding: 80px 0; border-bottom: 1px solid var(--gray-200); }
.service-block:last-child { border-bottom: none; }

.service-block__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas: "top visual" "bottom visual";
  column-gap: 80px;
  row-gap: 40px;
  align-items: start;
}

.service-block__content         { grid-area: top; }
.service-block__visual          { grid-area: visual; }
.service-block__content--bottom { grid-area: bottom; }

.service-block__inner--reverse {
  grid-template-areas: "visual top" "visual bottom";
}

.service-block__content h2 { color: var(--royal); margin-bottom: 20px; }
.service-block__content p  { margin-bottom: 28px; font-size: 1.05rem; }

.service-block__outcomes { display: flex; flex-direction: column; gap: 12px; margin-bottom: 36px; }

.outcome-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.outcome-item::before {
  content: '';
  flex-shrink: 0;
  width: 20px; height: 20px;
  border-radius: 50%;
  margin-top: 2px;
  background: var(--gold-muted);
  border: 1.5px solid var(--gold);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C7A23A' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
}

.service-block__visual {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
  border-radius: var(--radius-xl);
  padding: 48px;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.service-block__visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 28px 28px;
}

.service-block__visual-icon {
  width: 80px; height: 80px;
  background: rgba(199,162,58,0.15);
  border: 1px solid rgba(199,162,58,0.30);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 32px;
  position: relative;
}

.service-block__visual-icon svg {
  width: 40px; height: 40px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
}

.service-block__visual h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 12px; }
.service-block__visual p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; }

/* 10. PROCESS STEPS
   ===================================================== */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.process-step {
  background: var(--white);
  padding: 44px 32px;
  transition: background 0.3s;
}

.process-step:hover { background: var(--ivory); }

.process-step__number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  color: rgba(199,162,58,0.15);
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.process-step h4 { color: var(--royal); margin-bottom: 12px; }
.process-step p  { font-size: 0.9rem; line-height: 1.75; }

/* 11. TESTIMONIALS
   ===================================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  transition: var(--transition);
}

.testimonial-card:hover {
  border-color: rgba(199,162,58,0.30);
  box-shadow: var(--shadow-md);
}

.testimonial-card__stars     { display: flex; gap: 3px; margin-bottom: 20px; }
.testimonial-card__stars span { color: var(--gold); font-size: 1rem; }

.testimonial-card__quote-mark {
  font-family: var(--font-display);
  font-size: 5rem;
  line-height: 0.8;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: 8px;
}

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--gray-700);
  font-style: italic;
  margin-bottom: 28px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-200);
}

.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--royal), var(--royal-light));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--gold);
}

.author-info strong { display: block; font-size: 0.875rem; font-weight: 600; color: var(--royal); margin-bottom: 2px; }
.author-info span   { font-size: 0.78rem; color: var(--gray-400); }

/* 12. BLOG CARDS
   ===================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-card:hover {
  border-color: rgba(199,162,58,0.30);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-card__thumb {
  height: 200px;
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.blog-card__thumb::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.blog-card__thumb-icon {
  width: 60px; height: 60px;
  background: rgba(199,162,58,0.15);
  border: 1px solid rgba(199,162,58,0.30);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.blog-card__thumb-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.6; }

.blog-card__category {
  position: absolute;
  top: 16px; left: 16px;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(11,31,59,0.85);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(199,162,58,0.25);
}

.blog-card__body     { padding: 28px; }

.blog-card__meta     { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.blog-card__date     { font-size: 0.78rem; color: var(--gray-400); font-weight: 500; }
.blog-card__read-time { font-size: 0.78rem; color: var(--gray-400); }

.blog-card h3        { font-size: 1.15rem; color: var(--royal); margin-bottom: 12px; line-height: 1.35; }
.blog-card p         { font-size: 0.875rem; line-height: 1.75; margin-bottom: 20px; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }

.blog-card__link     { display: inline-flex; align-items: center; gap: 6px; font-size: 0.825rem; font-weight: 600; color: var(--gold-dark); transition: gap 0.2s; }
.blog-card__link:hover { gap: 10px; color: var(--gold); }

.blog-card--featured          { grid-column: 1 / -1; display: grid; grid-template-columns: 1fr 1.6fr; }
.blog-card--featured .blog-card__thumb { height: auto; min-height: 280px; }

/* 13. CTA BANNER
   ===================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 32px 32px;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199,162,58,0.08) 0%, transparent 70%);
  top: -200px; right: -150px;
}

.cta-banner__inner      { position: relative; z-index: 1; }
.cta-banner h2          { color: var(--white); margin-bottom: 20px; max-width: 640px; margin-left: auto; margin-right: auto; }
.cta-banner p           { color: rgba(255,255,255,0.70); max-width: 500px; margin: 0 auto 44px; font-size: 1.05rem; }

/* 14. FORM STYLES
   ===================================================== */
.form-section { background: var(--ivory); padding: 100px 0; }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-xl);
  padding: 60px;
  box-shadow: var(--shadow-lg);
}

.form-group  { margin-bottom: 24px; }
.form-row    { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}

input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
  -webkit-appearance: none;
}

input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(199,162,58,0.12);
}

textarea {
  resize: vertical;
  min-height: 140px;
  line-height: 1.6;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-note { font-size: 0.78rem; color: var(--gray-400); margin-top: 8px; }

/* Book a Call layout */
.book-layout {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}

.book-sidebar { position: sticky; top: calc(var(--nav-height) + 32px); }

.book-sidebar__card {
  background: var(--royal);
  color: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 36px;
  margin-bottom: 24px;
}

.book-sidebar__card h3 { color: var(--white); margin-bottom: 8px; font-size: 1.4rem; }
.book-sidebar__card p  { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin-bottom: 28px; }

.expect-list  { display: flex; flex-direction: column; gap: 14px; }
.expect-item  { display: flex; align-items: flex-start; gap: 12px; }
.expect-item__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); flex-shrink: 0; margin-top: 7px; }
.expect-item p { color: rgba(255,255,255,0.75); font-size: 0.875rem; margin: 0; }

/* 15. ABOUT & PILLAR CARDS
   ===================================================== */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  background: linear-gradient(135deg, var(--royal) 0%, var(--royal-light) 100%);
  border-radius: var(--radius-xl);
  padding: 60px 48px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about-visual::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 24px 24px;
}

.about-visual__quote {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--white);
  margin-bottom: 28px;
  position: relative;
}

.about-visual__quote::before {
  content: '"';
  font-size: 7rem;
  color: var(--gold);
  opacity: 0.2;
  position: absolute;
  top: -32px; left: -12px;
  font-style: normal;
  line-height: 1;
}

.about-visual__attr { font-size: 0.875rem; color: var(--gold); font-weight: 600; position: relative; }

.pillar-card {
  padding: 36px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-200);
  background: var(--white);
  transition: var(--transition);
}

.pillar-card:hover { border-color: rgba(199,162,58,0.30); box-shadow: var(--shadow-md); }
.pillar-card__icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.pillar-card h4    { color: var(--royal); margin-bottom: 10px; }
.pillar-card p     { font-size: 0.9rem; line-height: 1.75; }

.for-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  background: var(--white);
  transition: var(--transition);
}
.for-card:hover { border-color: rgba(199,162,58,0.30); box-shadow: var(--shadow-sm); }

.for-card__check {
  width: 32px; height: 32px;
  background: var(--gold-muted);
  border: 1.5px solid rgba(199,162,58,0.40);
  border-radius: 50%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.for-card__check svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2.5; }
.for-card h4 { color: var(--royal); margin-bottom: 4px; font-size: 1rem; }
.for-card p  { font-size: 0.875rem; line-height: 1.65; margin: 0; }

/* 16. FAQ
   ===================================================== */
.faq-list     { display: flex; flex-direction: column; gap: 2px; border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--gray-200); }
.faq-item     { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 28px;
  text-align: left;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--royal);
  font-family: var(--font-body);
  transition: background 0.2s;
}

.faq-question:hover  { background: var(--gray-50); }
.faq-question.active { color: var(--gold-dark); background: var(--ivory); }
.faq-icon            { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s; }
.faq-question.active .faq-icon { transform: rotate(45deg); }

.faq-answer      { display: none; padding: 0 28px 24px; background: var(--ivory); }
.faq-answer.open { display: block; }
.faq-answer p    { font-size: 0.9rem; line-height: 1.8; }

/* 17. INSIGHTS / NEWSLETTER
   ===================================================== */
.insights-intro {
  background: var(--royal);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-form {
  display: flex;
  max-width: 480px;
  margin: 0 auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.newsletter-form input {
  flex: 1;
  border-radius: 0;
  border: none;
  padding: 16px 20px;
}

.newsletter-form input:focus { box-shadow: none; border-color: transparent; }
.newsletter-form .btn        { border-radius: 0; padding: 16px 28px; flex-shrink: 0; }

/* 18. FOOTER
   ===================================================== */
.footer { background: var(--royal); color: var(--white); padding: 80px 0 0; }

.footer__inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.05em;
  margin-bottom: 4px;
}
.footer__brand-name span { color: var(--gold); }

.footer__brand-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 20px;
  display: block;
}

.footer__brand p { font-size: 0.875rem; color: rgba(255,255,255,0.50); line-height: 1.75; max-width: 280px; margin-bottom: 28px; }

.footer__social       { display: flex; gap: 12px; }
.footer__social-link  { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.footer__social-link:hover { border-color: var(--gold); background: rgba(199,162,58,0.10); }
.footer__social-link svg   { width: 16px; height: 16px; stroke: rgba(255,255,255,0.55); fill: none; stroke-width: 1.8; transition: stroke 0.2s; }
.footer__social-link:hover svg { stroke: var(--gold); }

.footer__col h5  { color: var(--white); font-size: 0.7rem; letter-spacing: 0.16em; margin-bottom: 20px; text-transform: uppercase; font-family: var(--font-body); }
.footer__links   { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.50); transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }

.footer__bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer__bottom p    { font-size: 0.78rem; color: rgba(255,255,255,0.30); }
.footer__bottom-tag  { font-size: 0.72rem; color: rgba(199,162,58,0.55); font-weight: 500; display: flex; align-items: center; gap: 6px; }

/* 19. ANIMATIONS
   ===================================================== */
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50%       { opacity: 0.9; }
}

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

@keyframes floatCard {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-8px); }
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

.hero__inner > * {
  animation: fadeUp 0.85s ease both;
}
.hero__inner > *:nth-child(1) { animation-delay: 0.1s; }
.hero__inner > *:nth-child(2) { animation-delay: 0.25s; }
.hero__inner > *:nth-child(3) { animation-delay: 0.40s; }
.hero__inner > *:nth-child(4) { animation-delay: 0.55s; }
.hero__inner > *:nth-child(5) { animation-delay: 0.70s; }

.hero__float-card--left  { animation: floatCard 5s ease-in-out infinite; }
.hero__float-card--right { animation: floatCard 5s ease-in-out infinite 1.5s; }

/* 20. RESPONSIVE
   ===================================================== */

/* Tablet landscape */
@media (max-width: 1100px) {
  .hero__float-card { display: none; }
  .grid-4           { grid-template-columns: repeat(2, 1fr); }
  .process-steps    { grid-template-columns: repeat(2, 1fr); }
  .footer__inner    { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-block__inner,
  .service-block__inner--reverse {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .service-block__content         { order: 1; }
  .service-block__visual          { order: 2; margin: 32px 0; }
  .service-block__content--bottom { order: 3; }
}

/* Tablet portrait */
@media (max-width: 900px) {
  .container { padding: 0 24px; }

  .book-layout   { grid-template-columns: 1fr; }
  .book-sidebar  { position: static; }

  .about-mission { grid-template-columns: 1fr; gap: 48px; }

  .hero__placeholder-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }

  .blog-card--featured { grid-template-columns: 1fr; }
  .blog-card--featured .blog-card__thumb { min-height: 200px; }
}

/* Mobile */
@media (max-width: 768px) {
  :root { --nav-height: 68px; }

  .section  { padding: 72px 0; }
  .container { padding: 0 20px; }

  h1 { font-size: 2.4rem; }
  h2 { font-size: 1.9rem; }
  h3 { font-size: 1.5rem; }

  /* Nav mobile */
  .nav__links  { display: none; }
  .nav__toggle { display: flex; }

  .nav__links.nav--open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: fixed;
    inset: 0;
    padding: calc(var(--nav-height) + 40px) 28px 40px;
    background: var(--royal);
    z-index: 999;
    gap: 28px;
    overflow-y: auto;
  }

  .nav__links.nav--open .nav__link { font-size: 1.4rem; font-family: var(--font-display); }
  .nav__links.nav--open .nav__cta  { display: flex; width: 100%; justify-content: center; padding: 16px; font-size: 0.95rem; }

  /* Hero mobile */
  .hero { padding: calc(var(--nav-height) + 48px) 0 72px; min-height: auto; }
  .hero h1 { font-size: 2.5rem; }
  .hero__lead { font-size: 1rem; }
  .hero__tag { font-size: 0.65rem; }
  .hero__scroll { display: none; }

  /* Grids mobile */
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Blog */
  .blog-grid { grid-template-columns: 1fr; }

  /* Stats */
  .stats-bar__inner { gap: 36px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; gap: 32px; }
  .footer__brand p { max-width: 100%; }

  /* Forms */
  .form-card { padding: 32px 24px; }
  .form-row  { grid-template-columns: 1fr; }

  /* Service blocks */
  .service-block__visual { min-height: 280px; padding: 32px 24px; }

  /* Newsletter */
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    overflow: visible;
    box-shadow: none;
    gap: 12px;
    max-width: 100%;
  }
  .newsletter-form input,
  .newsletter-form .btn {
    border-radius: var(--radius-md);
    border: 1.5px solid rgba(255,255,255,0.20);
  }
  .newsletter-form input {
    background: rgba(255,255,255,0.10);
    color: var(--white);
  }
  .newsletter-form input::placeholder { color: rgba(255,255,255,0.45); }

  /* Btn group */
  .btn-group { flex-direction: column; align-items: stretch; }
  .btn-group--center { align-items: center; }
  .btn { justify-content: center; }
}

/* Small mobile */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  h1 { font-size: 2rem; }
  h2 { font-size: 1.7rem; }
  .hero h1 { font-size: 2.1rem; }
  .hero { padding: calc(var(--nav-height) + 32px) 0 56px; }
  .form-card { padding: 24px 16px; }
  .book-sidebar__card { padding: 32px 24px; }
  .service-block__visual { padding: 28px 20px; }
  .testimonial-card { padding: 28px 24px; }
  .section { padding: 56px 0; }
  .btn--lg { padding: 15px 28px; }
}
