/* ==========================================
   Clear Resume Review — Main Stylesheet
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --navy: #1B2A4A;
  --navy-light: #243660;
  --navy-dark: #111d33;
  --white: #FFFFFF;
  --gold: #C9A84C;
  --gold-light: #dfc070;
  --gold-dark: #a8872d;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-700: #374151;
  --gray-900: #111827;
  --success: #10B981;
  --error: #EF4444;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.10), 0 2px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.15), 0 8px 20px rgba(0,0,0,0.10);
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition: all 0.22s ease;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p { color: var(--gray-700); }

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

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 90px 0;
}

.section-sm {
  padding: 60px 0;
}

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

.btn-primary {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 14px rgba(201,168,76,0.35);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.45);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--navy);
}

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

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}

.btn-lg {
  padding: 18px 44px;
  font-size: 1.1rem;
  border-radius: var(--radius-md);
}

.btn-sm {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none !important;
}

/* ========== NAVIGATION ========== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  transition: all 0.3s ease;
  padding: 20px 0;
}

.nav.scrolled {
  background: var(--navy);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.nav-logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo-tag {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--navy) !important;
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
}
.nav-cta:hover {
  background: var(--gold-light) !important;
  color: var(--navy) !important;
}

/* Mobile nav */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  cursor: pointer;
  background: none;
  border: none;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.nav-mobile {
  display: none;
  background: var(--navy);
  padding: 20px 24px 28px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.nav-mobile.open { display: block; }

.nav-mobile a {
  display: block;
  color: rgba(255,255,255,0.88);
  font-size: 1rem;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: var(--transition);
}
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a:hover { color: var(--gold); padding-left: 6px; }

/* ========== HERO ========== */
.hero {
  min-height: 100vh;
  background: linear-gradient(150deg, var(--navy-dark) 0%, var(--navy) 45%, var(--navy-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -15%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  border: 1px solid rgba(201,168,76,0.3);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--gold);
}

.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.15rem;
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.75);
  font-size: 0.88rem;
  font-weight: 500;
}

.hero-trust-item svg {
  color: var(--gold);
  flex-shrink: 0;
}

.hero-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-xl);
  padding: 36px;
  backdrop-filter: blur(8px);
}

.hero-card-title {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.hero-service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,0.07);
}

.hero-service-name {
  color: rgba(255,255,255,0.88);
  font-size: 0.92rem;
  font-weight: 500;
}

.hero-service-price {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-label {
  display: inline-block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.08rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ========== SERVICES OVERVIEW ========== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gray-200);
  transition: var(--transition);
}

.service-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

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

.service-card.featured {
  border-color: var(--gold);
  box-shadow: var(--shadow-md);
}

.service-card.featured::before {
  background: var(--gold);
}

.service-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
}

.service-icon {
  width: 48px;
  height: 48px;
  background: rgba(201,168,76,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--gold);
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-500);
  margin-bottom: 20px;
  line-height: 1.65;
}

.service-price {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  font-family: var(--font-heading);
  margin-bottom: 4px;
}

.service-price-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.service-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.service-feature {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--gray-700);
}

.feature-check {
  width: 16px;
  height: 16px;
  background: rgba(201,168,76,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 10px;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  background: var(--gray-50);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 100%);
  background-image: repeating-linear-gradient(90deg, var(--gold) 0, var(--gold) 8px, transparent 8px, transparent 16px);
}

.step {
  text-align: center;
  padding: 40px 28px;
  position: relative;
}

.step-number {
  width: 80px;
  height: 80px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0 auto 24px;
  border: 4px solid var(--gold);
  position: relative;
  z-index: 1;
}

.step h3 {
  margin-bottom: 12px;
}

.step p {
  font-size: 0.95rem;
  color: var(--gray-500);
  max-width: 240px;
  margin: 0 auto;
}

/* ========== TRUST SECTION ========== */
.trust-section {
  background: var(--navy);
  padding: 80px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.trust-item {
  padding: 24px;
}

.trust-icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  display: block;
}

.trust-number {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}

.trust-label {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
  line-height: 1.5;
}

/* ========== BADGES ========== */
.badges-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 999px;
  padding: 10px 20px;
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
}

.badge-icon {
  color: var(--gold);
  font-size: 1rem;
}

/* ========== FAQ ========== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.faq-question:hover {
  background: var(--gray-50);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  color: var(--navy);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.2s ease;
  padding: 0 24px;
  background: var(--white);
}

.faq-item.open .faq-answer {
  max-height: 400px;
  padding: 0 24px 20px;
}

.faq-answer p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ========== PAGE HEADER (inner pages) ========== */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 140px 0 72px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201,168,76,0.1) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero p {
  color: rgba(255,255,255,0.72);
  font-size: 1.15rem;
  max-width: 540px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
}

.breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: var(--transition);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ========== SERVICE DETAIL CARDS ========== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--gray-200);
}

.service-detail:last-child { border-bottom: none; }

.service-detail-number {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.service-detail h3 {
  font-size: 1.5rem;
  margin-bottom: 14px;
}

.service-detail p {
  margin-bottom: 20px;
  line-height: 1.75;
}

.includes-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.includes-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.93rem;
  color: var(--gray-700);
}

.includes-icon {
  color: var(--success);
  flex-shrink: 0;
  margin-top: 2px;
}

.service-detail-aside {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: sticky;
  top: 100px;
  text-align: center;
}

.aside-price {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.aside-price-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.aside-turnaround {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
}

/* ========== ORDER PAGE ========== */
.order-page {
  background: var(--gray-50);
  min-height: 100vh;
  padding-top: 80px;
}

.order-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 32px;
  align-items: start;
  padding: 48px 0 80px;
}

.order-form-container {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* Step indicator */
.step-indicator {
  background: var(--navy);
  padding: 24px 32px;
}

.step-dots {
  display: flex;
  align-items: center;
  gap: 0;
}

.step-dot {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
}

.step-dot:last-child { flex: none; }

.step-dot-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  flex-shrink: 0;
  transition: var(--transition);
}

.step-dot.active .step-dot-circle {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
}

.step-dot.completed .step-dot-circle {
  background: var(--success);
  border-color: var(--success);
  color: var(--white);
}

.step-dot-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
  transition: var(--transition);
  white-space: nowrap;
}

.step-dot.active .step-dot-label { color: rgba(255,255,255,0.9); }
.step-dot.completed .step-dot-label { color: rgba(255,255,255,0.6); }

.step-line {
  flex: 1;
  height: 2px;
  background: rgba(255,255,255,0.1);
  margin: 0 10px;
  transition: var(--transition);
}

.step-line.active {
  background: var(--gold);
}

/* Order form body */
.order-form-body {
  padding: 40px;
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
}

.form-step-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-step-sub {
  color: var(--gray-500);
  font-size: 0.92rem;
  margin-bottom: 32px;
}

/* Radio service cards */
.service-radio-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.service-radio-card {
  position: relative;
}

.service-radio-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.service-radio-label {
  display: flex;
  flex-direction: column;
  padding: 18px 20px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: var(--transition);
  height: 100%;
}

.service-radio-label:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.service-radio-card input:checked + .service-radio-label {
  border-color: var(--gold);
  background: rgba(201,168,76,0.08);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.radio-check {
  width: 20px;
  height: 20px;
  border: 2px solid var(--gray-300);
  border-radius: 50%;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.service-radio-card input:checked + .service-radio-label .radio-check {
  border-color: var(--gold);
  background: var(--gold);
}

.radio-check::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--navy);
  opacity: 0;
  transition: var(--transition);
}

.service-radio-card input:checked + .service-radio-label .radio-check::after {
  opacity: 1;
}

.radio-service-name {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 5px;
}

.radio-service-desc {
  font-size: 0.82rem;
  color: var(--gray-500);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 12px;
}

.radio-service-price {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--gold-dark);
  font-family: var(--font-heading);
}

/* Form fields */
.form-group {
  margin-bottom: 22px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-label span {
  color: var(--error);
  margin-left: 2px;
}

.form-label .optional {
  color: var(--gray-400);
  font-weight: 400;
  font-size: 0.82rem;
  margin-left: 4px;
}

.form-input, .form-textarea, .form-select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  color: var(--gray-900);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  line-height: 1.5;
}

.form-input:focus, .form-textarea:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-input.error, .form-textarea.error, .form-select.error {
  border-color: var(--error);
  box-shadow: 0 0 0 3px rgba(239,68,68,0.1);
}

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

.form-select {
  cursor: pointer;
  appearance: none;
  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='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 42px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-error {
  font-size: 0.82rem;
  color: var(--error);
  margin-top: 5px;
  display: none;
}

.form-error.visible { display: block; }

/* File upload */
.file-upload-zone {
  border: 2px dashed var(--gray-200);
  border-radius: var(--radius-md);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  background: var(--gray-50);
}

.file-upload-zone:hover {
  border-color: var(--gold);
  background: rgba(201,168,76,0.04);
}

.file-upload-zone.has-file {
  border-color: var(--success);
  background: rgba(16,185,129,0.05);
}

.file-upload-zone input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  width: 100%;
}

.file-upload-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.file-upload-text {
  font-size: 0.9rem;
  color: var(--gray-500);
  line-height: 1.5;
}

.file-upload-text strong {
  color: var(--navy);
}

.file-name-display {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--success);
  font-weight: 500;
  display: none;
}

.file-upload-note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 10px;
  font-style: italic;
  line-height: 1.5;
}

.conditional-fields {
  display: none;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 24px;
}

.conditional-fields.active {
  display: block;
}

.conditional-title {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 18px;
}

/* Order summary sidebar */
.order-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.order-summary-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.order-summary-header {
  background: var(--navy);
  padding: 20px 24px;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
}

.order-summary-body {
  padding: 24px;
}

.summary-service-name {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.summary-service-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.summary-placeholder {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-style: italic;
}

.summary-divider {
  height: 1px;
  background: var(--gray-200);
  margin: 16px 0;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 20px 24px;
}

.trust-card-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.88rem;
  color: var(--gray-700);
}

.trust-card-item:last-child { border-bottom: none; }

.trust-card-icon { color: var(--gold); font-size: 1.1rem; }

/* Form navigation buttons */
.form-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

/* Order review */
.order-review-table {
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.review-row {
  display: flex;
  justify-content: space-between;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 0.95rem;
}

.review-row:last-child { border-bottom: none; }

.review-row.total {
  background: var(--gray-50);
  font-weight: 700;
  font-size: 1.05rem;
}

.review-row-label { color: var(--gray-500); }
.review-row-value { color: var(--navy); font-weight: 600; }
.review-row.total .review-row-value { color: var(--gold-dark); font-size: 1.2rem; }

.secure-checkout-note {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 0.85rem;
  color: var(--gray-500);
  margin-bottom: 20px;
}

.secure-icon { color: var(--success); font-size: 1rem; }

/* Loading spinner */
.spinner-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(27,42,74,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 20px;
}

.spinner-overlay.visible {
  display: flex;
}

.spinner {
  width: 52px;
  height: 52px;
  border: 4px solid rgba(255,255,255,0.15);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.spinner-text {
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
}

/* ========== CONFIRMATION PAGE ========== */
.confirmation-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--gray-50);
  padding: 120px 0 80px;
}

.confirmation-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: 60px 52px;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

.confirmation-icon {
  width: 88px;
  height: 88px;
  background: rgba(16,185,129,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 2.4rem;
}

.confirmation-card h1 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.confirmation-card .subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 36px;
  line-height: 1.7;
}

.next-steps {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  text-align: left;
  margin-bottom: 36px;
}

.next-steps h3 {
  font-size: 1.1rem;
  margin-bottom: 20px;
  color: var(--navy);
}

.next-step-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-200);
}

.next-step-item:last-child { border-bottom: none; }

.next-step-num {
  width: 28px;
  height: 28px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

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

.next-step-text strong { color: var(--navy); }

/* ========== ABOUT PAGE ========== */
.about-content {
  max-width: 760px;
  margin: 0 auto;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
}

.about-photo-placeholder {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

.about-photo-icon {
  font-size: 4rem;
  color: rgba(201,168,76,0.4);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 60px;
}

.value-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--gray-200);
}

.value-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.value-card h4 { margin-bottom: 8px; }
.value-card p { font-size: 0.88rem; color: var(--gray-500); line-height: 1.6; }

/* ========== CTA BANNER ========== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn-primary {
  font-size: 1.08rem;
  padding: 16px 40px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 32px;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  max-width: 280px;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
}

.footer-contact-icon { color: var(--gold); font-size: 0.95rem; margin-top: 2px; flex-shrink: 0; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.38);
  transition: var(--transition);
}

.footer-bottom-links a:hover { color: var(--gold); }

/* ========== UTILITY ========== */
.divider {
  height: 1px;
  background: var(--gray-200);
  margin: 48px 0;
}

.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(201,168,76,0.1);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 999px;
  border: 1px solid rgba(201,168,76,0.25);
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  margin-bottom: 20px;
}

.alert-error {
  background: rgba(239,68,68,0.08);
  border: 1px solid rgba(239,68,68,0.25);
  color: #b91c1c;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-card { max-width: 500px; }

  .order-layout {
    grid-template-columns: 1fr;
  }

  .order-sidebar { position: static; }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .about-intro {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero {
    padding: 100px 0 60px;
    text-align: center;
  }

  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .steps-grid::before { display: none; }

  .trust-grid { grid-template-columns: 1fr 1fr; }

  .service-radio-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .order-form-body { padding: 24px; }

  .footer-grid { grid-template-columns: 1fr; gap: 28px; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .confirmation-card { padding: 36px 24px; }

  .about-values { grid-template-columns: 1fr; }

  .section { padding: 60px 0; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.55rem; }

  .btn-lg { padding: 15px 30px; font-size: 1rem; }

  .step-indicator { padding: 18px 20px; }

  .step-dot-label { display: none; }
}
