/* ===== Fonts ===== */
@import url("https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap");

/* ===== CSS Variables — Light Scholarly (navy + citation gold) ===== */
:root {
  /* Brand */
  --primary: #1e3a5f;        /* scholarly navy */
  --primary-light: #2f5480;
  --primary-dark: #14293f;
  --secondary: #334155;
  --accent: #b45309;         /* citation gold / ochre — CTAs */
  --accent-hover: #92400e;
  --gold: #c2820f;           /* warmer gold for stars/marks */

  /* Text */
  --text-dark: #1e293b;      /* body copy */
  --heading: #14253c;        /* headings on light */
  --text-gray: #475569;      /* muted body */
  --text-light: #64748b;     /* captions / footer-on-light fallbacks */
  --text-muted: #64748b;
  --text: #334155;

  /* Surfaces */
  --bg: #f8fafc;
  --bg-white: #ffffff;       /* page + card base */
  --bg-light: #f1f5f9;       /* alternating section band */
  --bg-dark: #14253c;        /* footer / dark bands */

  /* Cards & borders */
  --card-bg: #ffffff;
  --card-border: #e6ebf1;

  /* Elevation — soft, neutral (no more mismatched gold/black shadows) */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 3px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 6px rgba(15, 23, 42, 0.04), 0 10px 24px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 24px rgba(15, 23, 42, 0.08), 0 24px 48px rgba(15, 23, 42, 0.12);

  /* Radii */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  /* Type */
  --font-heading: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, sans-serif;
  --heading-font: "Fraunces", Georgia, serif;

  /* Motion */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --transition: all 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html,
body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-body);
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

::selection {
  background: var(--accent);
  color: #fff;
}

/* Accessible focus ring across the whole site */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  margin: 0 auto;
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
  padding: 0;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.06);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.nav-brand-text {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.01em;
}

.nav-brand-text span {
  color: var(--accent);
}

.nav-links {
  display: none;
  list-style: none;
  gap: 8px;
}

.nav-links a {
  padding: 8px 16px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--primary);
  background: rgba(30, 58, 95, 0.06);
}

.nav-cta {
  display: none;
}

.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  background: var(--accent);
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.25);
}

.nav-cta a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(180, 83, 9, 0.35);
}

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

.nav-toggle {
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}

.nav-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 65px;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 20px;
  border-bottom: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  z-index: 999;
}

.mobile-menu.active {
  display: block;
  animation: slideDown 0.3s ease;
}

.mobile-menu a {
  display: block;
  padding: 14px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-dark);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.mobile-menu a:hover {
  background: rgba(30, 58, 95, 0.06);
  color: var(--primary);
}

.mobile-menu .mobile-cta {
  display: block;
  text-align: center;
  margin-top: 10px;
  padding: 14px 24px;
  background: var(--accent);
  color: white;
  font-weight: 600;
  border-radius: 50px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at 84% 16%, rgba(194, 130, 15, 0.06) 0%, transparent 42%),
    radial-gradient(circle at 12% 78%, rgba(194, 130, 15, 0.05) 0%, transparent 42%),
    radial-gradient(ellipse at 50% -10%, rgba(30, 58, 95, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
  color: var(--text-dark);
  text-align: center;
  padding: 168px 20px 96px;
  overflow: hidden;
}

/* subtle scholarly ruled-paper grid — restrained, not decorative noise */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 58, 95, 0.035) 1px, transparent 1px);
  background-size: 100% 34px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ===== Hero golden geometry (subtle animated backdrop) ===== */
.hero-geo {
  position: absolute;
  inset: 0;
  z-index: 1; /* above grid, below content */
  pointer-events: none;
  overflow: hidden;
}

.geo {
  position: absolute;
  display: block;
  will-change: transform, opacity;
}

/* thin gold rings */
.geo-ring {
  border: 1.5px solid rgba(194, 130, 15, 0.18);
  border-radius: 50%;
}

.geo-ring-lg {
  width: 172px;
  height: 172px;
  left: 5%;
  top: 25%;
  animation: geoSpin 46s linear infinite;
}

.geo-ring-xl {
  width: 264px;
  height: 264px;
  right: 3%;
  top: 9%;
  border-color: rgba(194, 130, 15, 0.12);
  animation: geoFloat 17s ease-in-out infinite;
}

.geo-ring-sm {
  width: 82px;
  height: 82px;
  right: 15%;
  bottom: 17%;
  border-color: rgba(194, 130, 15, 0.22);
  animation: geoFloat 12s ease-in-out infinite reverse;
}

/* stroked polygons via inline SVG background */
.geo-tri {
  width: 92px;
  height: 92px;
  left: 12%;
  bottom: 12%;
  opacity: 0.55;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23c2820f' stroke-width='3' stroke-linejoin='round'%3E%3Cpolygon points='50,10 90,88 10,88'/%3E%3C/svg%3E") no-repeat center / contain;
  animation: geoFloatRot 19s ease-in-out infinite;
}

.geo-hex {
  width: 72px;
  height: 72px;
  right: 23%;
  top: 19%;
  opacity: 0.5;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100' fill='none' stroke='%23c2820f' stroke-width='3' stroke-linejoin='round'%3E%3Cpolygon points='50,5 88,27 88,73 50,95 12,73 12,27'/%3E%3C/svg%3E") no-repeat center / contain;
  animation: geoSpin 58s linear infinite reverse;
}

/* twinkling gold dots */
.geo-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(194, 130, 15, 0.5);
}

.geo-d1 { left: 39%; top: 15%; animation: geoTwinkle 4.5s ease-in-out infinite; }
.geo-d2 { right: 31%; bottom: 24%; animation: geoTwinkle 5.5s ease-in-out 0.8s infinite; }
.geo-d3 { left: 22%; top: 40%; width: 6px; height: 6px; animation: geoTwinkle 6s ease-in-out 1.4s infinite; }

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

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

@keyframes geoFloatRot {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(10px, -20px) rotate(9deg); }
}

@keyframes geoTwinkle {
  0%, 100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.45; transform: scale(1.35); }
}

/* fewer/quieter shapes on small screens */
@media (max-width: 640px) {
  .geo-ring-xl, .geo-hex { display: none; }
  .hero-geo { opacity: 0.7; }
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  padding: 7px 16px 7px 12px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 28px;
  border: 1px solid var(--card-border);
  box-shadow: none;
  animation: fadeInUp 0.6s var(--ease-out) both;
}

.hero-badge svg { color: var(--gold); }

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 3.2rem);
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 22px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-wrap: balance;
  animation: fadeInUp 0.7s var(--ease-out) both;
}

.hero h1 .highlight {
  color: var(--accent);
  font-style: italic;
}

.hero .tagline {
  font-size: 1.15rem;
  margin: 0 auto 32px;
  max-width: 620px;
  color: var(--text-gray);
  font-weight: 400;
  line-height: 1.75;
  animation: fadeInUp 0.8s var(--ease-out) both;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-gray);
  margin-bottom: 34px;
  animation: fadeInUp 0.85s var(--ease-out) both;
}

.hero-trust .stars {
  color: var(--gold);
  letter-spacing: 2px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  animation: fadeInUp 0.9s var(--ease-out) both;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}

.cta-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.28);
}

.cta-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(180, 83, 9, 0.36);
}

.cta-secondary {
  background: #fff;
  color: var(--primary);
  border: 1.5px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

.cta-secondary:hover {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ===== Stats Section ===== */
.stats {
  padding: 72px 20px;
  background: transparent;
  color: var(--text-dark);
  text-align: center;
  position: relative;
}

.stats::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.stat-item {
  padding: 24px 16px;
  background: #fff;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.stat-number {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 6px;
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-gray);
  font-weight: 500;
}

/* ===== Section Common ===== */
.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.3rem);
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 12px;
  font-weight: 600;
  text-wrap: balance;
}

.section-title p {
  color: var(--text-gray);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
}

/* ===== Services Section ===== */
.services {
  padding: 96px 20px;
  background: transparent;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--card-border);
  display: flex;
  flex-direction: column;
}

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

.service-image {
  width: 100%;
  height: 190px;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}

.service-card:hover .service-image {
  transform: scale(1.04);
}

/* Icon band (replaces generic stock photos on service cards) */
.service-media {
  height: 132px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1e3a5f 0%, #14253c 100%);
  position: relative;
  overflow: hidden;
}

.service-media::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 75%);
  mask-image: radial-gradient(ellipse at 50% 40%, #000 0%, transparent 75%);
}

.service-media svg {
  position: relative;
  width: 42px;
  height: 42px;
  color: #e6b566;
  stroke-width: 1.5;
  transition: transform 0.35s var(--ease-out);
}

.service-card:hover .service-media svg {
  transform: scale(1.1) translateY(-2px);
}

.service-content {
  padding: 24px;
}

.service-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--heading);
  margin-bottom: 8px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.service-card:hover .service-content h3 {
  color: var(--accent);
}

.service-content p {
  color: var(--text-gray);
  line-height: 1.7;
  font-size: 0.92rem;
}

/* ===== How It Works ===== */
.how-it-works {
  padding: 96px 20px;
  background: var(--bg-light);
}

.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
}

.step-card {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  padding: 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  border: 1px solid var(--card-border);
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: #cdd6e2;
  box-shadow: var(--shadow-md);
}

.step-number {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.2);
}

.step-card:hover .step-number {
  transform: scale(1.06);
  background: var(--accent);
  box-shadow: 0 6px 16px rgba(180, 83, 9, 0.3);
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.18rem;
  color: var(--heading);
  margin-bottom: 6px;
  font-weight: 600;
  transition: color 0.25s ease;
}

.step-card:hover .step-content h3 {
  color: var(--accent);
}

.step-content p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

.step-arrow {
  display: none;
  text-align: center;
  color: var(--primary-light);
  font-size: 1.5rem;
}

/* ===== Features Section ===== */
.features {
  padding: 96px 20px;
  background: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: var(--transition);
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-sm);
}

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

.feature-icon {
  width: 64px;
  height: 64px;
  background: rgba(30, 58, 95, 0.06);
  color: var(--primary);
  border: 1px solid rgba(30, 58, 95, 0.1);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 10px;
  font-weight: 600;
}

.feature-card p {
  color: var(--text-gray);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ===== Testimonials Section ===== */
.testimonials {
  padding: 96px 20px;
  background: var(--bg-light);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
}

.testimonial-card {
  background: #fff;
  padding: 32px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--card-border);
  position: relative;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #cdd6e2;
}

.testimonial-card::before {
  content: "\201C";
  position: absolute;
  top: 20px;
  right: 26px;
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.22;
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-stars {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.testimonial-text {
  color: var(--text);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 1.1rem;
  font-family: var(--font-heading);
}

.testimonial-info h4 {
  font-size: 0.95rem;
  color: var(--heading);
  font-weight: 700;
}

.testimonial-info p {
  font-size: 0.82rem;
  color: var(--text-gray);
}

/* ===== FAQ Section ===== */
.faq {
  padding: 120px 20px;
  background: transparent;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: var(--transition);
}

.faq-item:hover {
  border-color: #cdd6e2;
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: #d6c2a0;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  user-select: none;
  -webkit-user-select: none;
}

.faq-question h3 {
  color: var(--heading);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  flex: 1;
}

.faq-toggle {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(30, 58, 95, 0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
  transition: var(--transition);
}

.faq-item.active .faq-toggle {
  background: var(--primary);
  color: white;
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
  padding: 0 24px 22px;
  color: var(--text-gray);
  line-height: 1.8;
  font-size: 0.92rem;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

/* ===== Contact Section ===== */
.contact {
  padding: 88px 20px;
  background: linear-gradient(135deg, #1e3a5f 0%, #14253c 100%);
  color: #fff;
  text-align: center;
}

.contact h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.7rem, 4vw, 2.1rem);
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.contact > .container > p {
  font-size: 1.05rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 700px;
  margin: 0 auto 36px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: var(--transition);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-3px);
}

.contact-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-card h3 {
  font-size: 0.9rem;
  margin-bottom: 8px;
  opacity: 0.85;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-card a {
  color: white;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  transition: var(--transition);
}

.contact-card a:hover {
  color: #fbbf24;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 10px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ===== Footer ===== */
footer {
  background: var(--bg-dark);
  color: white;
  padding: 60px 20px 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand {
  max-width: 320px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.footer-logo img {
  height: 36px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
}

.footer-brand p {
  font-size: 0.88rem;
  color: #b9c4d4;
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: #b9c4d4;
  font-size: 0.88rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: #fbbf24;
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding-top: 24px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #8a99ac;
}

/* ===== Scroll Animations ===== */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
  will-change: opacity, transform;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.fade-up-children > * {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-up-children > *.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Keyframes ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ===== WhatsApp Floating Button ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse 2s infinite;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: white;
}

/* ===== Promo Banner ===== */
.promo-banner {
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  color: #1a1a1a;
  text-align: center;
  padding: 10px 40px 10px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  letter-spacing: 0.02em;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* When banner is visible, push navbar and content down */
body.has-promo-banner .navbar {
  top: 40px;
}

body.has-promo-banner {
  scroll-padding-top: 120px;
}

body.has-promo-banner .hero {
  padding-top: 160px;
}

body.has-promo-banner .blog-article {
  padding-top: 140px;
}

body.has-promo-banner .blog-hero {
  padding-top: 180px;
}

body.has-promo-banner .mobile-menu {
  top: 105px;
}

/* Mobile adjustments for promo banner (text wrapping) */
@media (max-width: 768px) {
  .promo-banner {
    padding: 10px 30px 10px 15px; /* Adjust padding for close button */
    text-align: left;
    font-size: 0.85rem;
  }
  
  body.has-promo-banner .navbar {
    top: 70px; /* Increased height for wrapped text */
  }
  
  body.has-promo-banner .mobile-menu {
    top: 135px; /* 70px + navbar height (approx 65px) */
  }
  
  body.has-promo-banner {
    scroll-padding-top: 150px;
  }
  
  body.has-promo-banner .hero {
    padding-top: 190px;
  }
}

.promo-banner a {
  color: #1a1a1a;
  text-decoration: underline;
  font-weight: 700;
}

.promo-banner .promo-close {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: #1a1a1a;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.promo-banner .promo-close:hover { opacity: 1; }
.promo-banner.hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

/* ===== Cookie Consent ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(20, 20, 30, 0.97);
  backdrop-filter: blur(12px);
  color: #fff;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  z-index: 9999;
  font-size: 0.9rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show { transform: translateY(0); }
.cookie-consent.hidden { display: none; }

.cookie-consent p { margin: 0; max-width: 600px; line-height: 1.5; }
.cookie-consent a { color: var(--accent); text-decoration: underline; }

.cookie-consent .cookie-btn {
  padding: 10px 28px;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.2s;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-accept:hover { background: var(--accent-hover); transform: scale(1.03); }

.cookie-decline {
  background: transparent;
  color: #aaa;
  border: 1px solid #555 !important;
}

.cookie-decline:hover { border-color: #999 !important; color: #fff; }



/* ===== Pricing Page ===== */
.pricing {
  padding: 80px 20px;
  background: var(--bg, #f8f9fa);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--card-bg);
  border-radius: 16px;
  padding: 36px 28px;
  border: 1px solid var(--card-border);
  text-align: center;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pricing-card.popular {
  border: 2px solid var(--accent);
  transform: scale(1.03);
}

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

.pricing-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--accent);
  color: #fff;
  padding: 6px 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 0 14px 0 14px;
}

.pricing-card {
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.pricing-card h3 {
  font-family: var(--heading-font);
  font-size: 1.5rem;
  color: var(--heading);
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  margin: 16px 0 4px;
}

.pricing-price span {
  font-size: 1rem;
  font-weight: 400;
  color: var(--text-muted, #666);
}

.pricing-desc {
  color: var(--text-muted, #666);
  font-size: 0.9rem;
  margin-bottom: 24px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  text-align: left;
}

.pricing-features li {
  padding: 8px 0;
  font-size: 0.92rem;
  color: var(--text-gray);
  border-bottom: 1px solid var(--card-border);
  display: flex;
  align-items: center;
  gap: 10px;
}

.pricing-features li::before {
  content: "✓";
  color: var(--accent);
  font-weight: 700;
  font-size: 1rem;
}

.pricing-cta {
  display: inline-block;
  padding: 14px 36px;
  background: var(--primary);
  color: white;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.pricing-cta:hover { background: var(--primary-dark); transform: scale(1.03); }

.pricing-card.popular .pricing-cta {
  background: var(--accent);
  color: #fff;
}

.pricing-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  color: var(--text-muted, #666);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ===== Blog ===== */
.blog-section {
  padding: 80px 20px;
  background: var(--bg, #f8f9fa);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--card-border);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.blog-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.blog-card-content {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-card-meta {
  font-size: 0.8rem;
  color: var(--text-muted, #888);
  margin-bottom: 8px;
  display: flex;
  gap: 12px;
}

.blog-card-content h3 {
  font-family: var(--heading-font);
  font-size: 1.25rem;
  color: var(--heading);
  margin-bottom: 10px;
  line-height: 1.3;
}

.blog-card-content h3 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-content h3 a:hover { color: var(--accent); }

.blog-card-content p {
  color: var(--text-muted, #666);
  font-size: 0.9rem;
  line-height: 1.6;
  flex: 1;
}

.blog-read-more {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.9rem;
  margin-top: 12px;
  display: inline-block;
  transition: gap 0.2s;
}

.blog-read-more:hover { text-decoration: underline; }

/* Blog article page */
.blog-article {
  padding: 120px 20px 80px;
  background: var(--bg, #fff);
}

.blog-article-container {
  max-width: 780px;
  margin: 0 auto;
}

.blog-article-header {
  margin-bottom: 40px;
}

.blog-article-header h1 {
  font-family: var(--heading-font);
  font-size: 2.2rem;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
}

.blog-article-meta {
  font-size: 0.85rem;
  color: var(--text-muted, #888);
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.blog-article-hero {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 32px;
}

.blog-article-body {
  line-height: 1.85;
  color: var(--text, #333);
  font-size: 1.05rem;
}

.blog-article-body h2 {
  font-family: var(--heading-font);
  font-size: 1.6rem;
  color: var(--heading);
  margin: 36px 0 16px;
}

.blog-article-body h3 {
  font-size: 1.2rem;
  color: var(--heading);
  margin: 28px 0 12px;
}

.blog-article-body p { margin-bottom: 18px; }

.blog-article-body ul, .blog-article-body ol {
  margin: 16px 0 24px 24px;
}

.blog-article-body li { margin-bottom: 8px; }

.blog-article-body blockquote {
  border-left: 4px solid var(--accent);
  padding: 16px 24px;
  margin: 24px 0;
  background: rgba(212,175,55,0.06);
  border-radius: 0 10px 10px 0;
  font-style: italic;
  color: var(--text-muted, #555);
}

.blog-article-cta {
  background: linear-gradient(135deg, #1e3a5f, #14253c);
  color: white;
  padding: 36px;
  border-radius: 16px;
  text-align: center;
  margin-top: 48px;
}

.blog-article-cta h3 { color: white; margin-bottom: 12px; font-size: 1.4rem; }
.blog-article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }

.blog-article-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  border-radius: 10px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
}

.blog-article-cta a:hover { transform: scale(1.05); }

/* ===== Order / Inquiry Form ===== */
.order-section {
  padding: 80px 20px;
  background: transparent;
}

.order-form {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  padding: 40px 32px;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-md);
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 13px 16px;
  min-height: 48px;
  border: 1px solid #cbd5e1;
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: #fff;
  color: var(--text-dark);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #94a3b8;
}

.form-group select option {
  background: #fff;
  color: var(--text-dark);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(180, 83, 9, 0.15);
}

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

.form-submit {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: 12px;
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 8px;
}

.form-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(30,58,95,0.3); }

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted, #888);
  margin-top: 16px;
}

option {
  background: #fff;
  color: var(--text-dark);
}

/* ===== Blog Pages ===== */
.blog-hero {
  padding: 148px 20px 64px;
  background:
    radial-gradient(ellipse at 50% -10%, rgba(30, 58, 95, 0.06) 0%, transparent 55%),
    linear-gradient(180deg, #ffffff 0%, var(--bg-light) 100%);
  color: var(--text-dark);
  text-align: center;
  border-bottom: 1px solid var(--card-border);
}

.blog-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--heading);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}

.blog-hero h1 .highlight {
  color: var(--accent);
  font-style: italic;
}

.blog-hero p {
  font-size: 1.05rem;
  color: var(--text-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Listing */
.blog-listing {
  padding: 60px 20px 80px;
  background: var(--bg-light);
}

.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.blog-card {
  background: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--card-border);
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.blog-card-content {
  padding: 24px;
}

.blog-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-gray);
  margin-bottom: 12px;
}

.blog-card-content h2 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--heading);
  margin-bottom: 10px;
  font-weight: 600;
  line-height: 1.4;
}

.blog-card-content h2 a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-content h2 a:hover {
  color: var(--accent);
}

.blog-card-content p {
  color: var(--text-gray);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 16px;
}

.blog-card-link {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}

.blog-card-link:hover {
  color: var(--accent-hover);
  transform: translateX(4px);
}

/* Blog Article Page */
.blog-article {
  padding: 100px 20px 60px;
  background: var(--bg-white);
}

.blog-article-container {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-header {
  margin-bottom: 36px;
}

.blog-article-header h1 {
  font-family: var(--font-heading);
  font-size: clamp(1.9rem, 4.5vw, 2.5rem);
  color: var(--heading);
  margin: 12px 0 16px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.blog-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.85rem;
  color: var(--text-gray);
}

.blog-article-body {
  font-size: 1rem;
  line-height: 1.85;
  color: var(--text-dark);
}

.blog-article-body h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--heading);
  margin: 40px 0 16px;
  font-weight: 600;
}

.blog-article-body h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--heading);
  margin: 28px 0 10px;
  font-weight: 600;
}

.blog-article-body p {
  margin-bottom: 16px;
  color: var(--text-dark);
}

.blog-article-body ul,
.blog-article-body ol {
  margin: 12px 0 20px 24px;
}

.blog-article-body li {
  margin-bottom: 8px;
  line-height: 1.7;
}

.blog-article-body blockquote {
  margin: 24px 0;
  padding: 20px 24px;
  background: var(--bg-light);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
  color: var(--text-gray);
}

.blog-article-body em {
  font-style: italic;
}

.blog-article-cta {
  margin: 48px 0 24px;
  padding: 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  text-align: center;
  color: white;
}

.blog-article-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  margin-bottom: 10px;
  color: white;
}

.blog-article-cta p {
  opacity: 0.9;
  margin-bottom: 20px;
  color: white;
}

.blog-article-cta a {
  display: inline-block;
  padding: 14px 36px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(180, 83, 9, 0.3);
}

.blog-article-cta a:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(180, 83, 9, 0.4);
}

/* Related Resources Section in Blog Posts */
.related-links {
  background: var(--bg-light) !important;
  border: 1px solid var(--card-border) !important;
  border-radius: var(--radius-md) !important;
  padding: 24px 28px !important;
  margin: 40px 0 !important;
}

.related-links h3 {
  color: var(--heading) !important;
  font-family: var(--font-heading) !important;
  font-weight: 600 !important;
  margin-top: 0 !important;
  margin-bottom: 16px !important;
  font-size: 1.15rem !important;
}

.related-links ul {
  margin: 0 !important;
  padding-left: 20px !important;
}

.related-links li {
  margin-bottom: 12px !important;
  line-height: 1.6 !important;
  color: var(--accent) !important; /* Sets bullet color to cyan */
}

.related-links li:last-child {
  margin-bottom: 0 !important;
}

.related-links a {
  color: var(--text-dark) !important;
  font-weight: 500 !important;
  transition: var(--transition) !important;
  display: inline-block !important;
}

.related-links a:hover {
  color: var(--accent) !important;
  text-decoration: underline !important;
}

/* ===== 404 Page ===== */
.page-404 {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #0a1628 0%, var(--primary-dark) 100%);
  color: white;
}

.page-404-content h1 {
  font-family: var(--heading-font);
  font-size: 8rem;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent), #ffd700);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.page-404-content h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.page-404-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 460px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.page-404-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.page-404-links a {
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
}

.page-404-links .btn-primary {
  background: var(--accent);
  color: #fff;
}

.page-404-links .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
}

.page-404-links a:hover { transform: translateY(-2px); }

/* ===== Responsive: Tablet ===== */
@media (min-width: 640px) {
  .container {
    padding: 0 40px;
  }

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

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

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

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

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

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

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

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

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

/* ===== Responsive: Desktop ===== */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }

  .nav-links {
    display: flex;
  }

  .nav-cta {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .hero h1 {
    font-size: 3.7rem;
  }

  .hero .tagline {
    font-size: 1.25rem;
  }

  .section-title h2 {
    font-size: 2.4rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    align-items: stretch;
  }

  .step-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 30px;
    height: 100%;
    justify-content: flex-start;
  }

  .step-arrow {
    display: flex;
    align-items: center;      /* vertically centers the glyph on the circle band */
    justify-content: center;  /* horizontally centers within the gap */
    position: absolute;
    right: -28px;             /* dead-center of the 32px inter-card gap */
    top: 40px;                /* card padding-top = top of the circle */
    width: 24px;
    height: 56px;             /* = step-number height, so glyph sits on circle centre */
    z-index: 2;
    font-size: 0; /* Hides text character "→" */
    color: transparent;
    opacity: 0.7;
    transition: var(--transition);
  }

  .step-arrow::after {
    content: "";
    display: block;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231e3a5f' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: var(--transition);
  }

  .step-card:hover .step-arrow {
    opacity: 1;
    transform: scale(1.1);
  }

  .step-card:hover .step-arrow::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23b45309' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M13.5 4.5L21 12m0 0l-7.5 7.5M21 12H3'/%3E%3C/svg%3E");
  }

  .steps-grid > :last-child .step-arrow {
    display: none;
  }

  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  }

  .services,
  .features,
  .how-it-works,
  .stats,
  .contact,
  .faq,
  .testimonials {
    padding: 100px 40px;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .blog-hero h1 {
    font-size: 3rem;
  }

  .blog-article-header h1 {
    font-size: 2.5rem;
  }

  .pricing,
  .blog-section,
  .blog-listing,
  .order-section {
    padding: 100px 40px;
  }
}

/* ===== Responsive: Large Desktop ===== */
@media (min-width: 1280px) {
  .hero h1 {
    font-size: 4.1rem;
    letter-spacing: -0.02em;
  }

  .stat-number {
    font-size: 3rem;
  }
}

/* ===== Reduced Motion ===== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }

  .fade-up {
    opacity: 1 !important;
    transform: none !important;
  }

  .whatsapp-float {
    animation: none !important;
  }
}

/* ============================================================
   HOMEPAGE — EDITORIAL REDESIGN (index.html only, ed-* scope)
   Swiss-modernist: asymmetric grid, serif hierarchy, hairlines.
   Nothing here touches shared classes used by other pages.
   ============================================================ */
.ed-hero,.ed-section,.ed-strip{--ed-max:1120px}
.ed-btn,.ed-svc,.ed-svc-arrow{transition:var(--transition)}

/* ---- HERO ---- */
.ed-hero{position:relative;padding:150px 24px 84px;background:
  radial-gradient(ellipse at 88% 0,rgba(194,130,15,.07) 0,transparent 45%),
  linear-gradient(180deg,#fff 0%,var(--bg-light) 100%);overflow:hidden}
body.has-promo-banner .ed-hero{padding-top:186px}
.ed-hero-inner{max-width:var(--ed-max);margin:0 auto;display:grid;
  grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.ed-hero-copy{max-width:600px}
.ed-eyebrow{font-family:var(--font-body);font-size:.8rem;font-weight:600;
  letter-spacing:.14em;text-transform:uppercase;color:var(--accent);margin:0 0 22px}
.ed-h1{font-family:var(--font-heading);font-weight:600;
  font-size:clamp(2.4rem,5vw,3.9rem);line-height:1.04;letter-spacing:-.02em;
  color:var(--heading);margin:0 0 22px}
.ed-h1 em{font-style:italic;color:var(--accent)}
.ed-lede{font-size:clamp(1.02rem,1.4vw,1.18rem);line-height:1.65;
  color:var(--text-gray);margin:0 0 32px;max-width:34em}
.ed-cta-row{display:flex;flex-wrap:wrap;gap:14px;align-items:center;margin-bottom:26px}
.ed-btn{display:inline-flex;align-items:center;gap:9px;font-family:var(--font-body);
  font-weight:600;font-size:1rem;padding:15px 26px;border-radius:var(--radius-sm);
  text-decoration:none;cursor:pointer;line-height:1}
.ed-btn-primary{background:var(--accent);color:#fff;box-shadow:var(--shadow-sm)}
.ed-btn-primary:hover{background:var(--accent-hover);transform:translateY(-2px);box-shadow:var(--shadow-md)}
.ed-btn-ghost{background:transparent;color:var(--heading);border:1px solid var(--card-border);padding:14px 24px}
.ed-btn-ghost:hover{border-color:var(--primary);color:var(--primary)}
.ed-rating{display:flex;align-items:center;gap:10px;font-size:.92rem;color:var(--text-gray)}
.ed-stars{color:var(--gold);letter-spacing:1px}

/* ---- HERO ARTIFACT: graded paper ---- */
.ed-hero-art{display:flex;justify-content:center;perspective:1000px}
.ed-paper{position:relative;width:min(360px,90%);background:#fff;
  border:1px solid var(--card-border);border-radius:var(--radius-md);
  padding:30px 30px 34px;box-shadow:var(--shadow-lg);transform:rotate(1.6deg)}
.ed-paper-head{display:flex;flex-direction:column;align-items:flex-start;
  gap:4px;border-bottom:1px solid var(--card-border);padding:0 68px 14px 0;margin-bottom:20px}
.ed-paper-title{font-family:var(--font-heading);font-weight:600;font-size:1.05rem;color:var(--heading)}
.ed-paper-course{font-size:.72rem;letter-spacing:.05em;text-transform:uppercase;color:var(--text-light);white-space:nowrap}
.ed-paper-lines{display:flex;flex-direction:column;gap:11px;margin-bottom:22px}
.ed-paper-lines span{height:8px;border-radius:4px;background:#e9eef4}
.ed-paper-lines span:nth-child(1){width:100%}
.ed-paper-lines span:nth-child(2){width:94%}
.ed-paper-lines span.hl{width:88%;background:rgba(194,130,15,.28)}
.ed-paper-lines span:nth-child(4){width:97%}
.ed-paper-lines span:nth-child(5){width:91%}
.ed-paper-lines span.short{width:52%}
.ed-paper-note{font-family:var(--font-heading);font-style:italic;font-size:.9rem;
  line-height:1.4;color:var(--accent);border-left:2px solid var(--accent);padding-left:12px}
.ed-stamp{position:absolute;top:-18px;right:-14px;width:70px;height:70px;border-radius:50%;
  background:var(--primary);color:#fff;display:flex;flex-direction:column;
  align-items:center;justify-content:center;box-shadow:var(--shadow-md);
  border:2px solid var(--gold)}
.ed-stamp strong{font-family:var(--font-heading);font-size:1.7rem;line-height:1;font-weight:600}
.ed-stamp span{font-size:.62rem;letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-top:3px}

/* ---- CREDENTIAL STRIP ---- */
.ed-strip{max-width:var(--ed-max);margin:0 auto;padding:30px 24px;
  border-top:1px solid var(--card-border);border-bottom:1px solid var(--card-border);
  display:flex;flex-wrap:wrap;align-items:center;gap:14px 34px}
.ed-strip-label{margin:0;font-size:.78rem;font-weight:600;letter-spacing:.1em;
  text-transform:uppercase;color:var(--text-light)}
.ed-strip-list{list-style:none;display:flex;flex-wrap:wrap;gap:10px 28px;margin:0;padding:0}
.ed-strip-list li{font-family:var(--font-heading);font-size:1.05rem;color:var(--secondary);opacity:.8}

/* ---- SECTION SHELL ---- */
.ed-section{max-width:var(--ed-max);margin:0 auto;padding:clamp(60px,8vw,108px) 24px}
.ed-head{margin-bottom:48px;max-width:640px}
.ed-kicker{font-size:.8rem;font-weight:600;letter-spacing:.14em;text-transform:uppercase;
  color:var(--accent);margin:0 0 12px}
.ed-h2{font-family:var(--font-heading);font-weight:600;font-size:clamp(1.8rem,3.4vw,2.7rem);
  line-height:1.1;letter-spacing:-.015em;color:var(--heading);margin:0}

/* ---- SERVICES: editorial list ---- */
.ed-svc-grid{display:grid;grid-template-columns:1fr 1fr;gap:0 56px;
  border-top:1px solid var(--card-border)}
.ed-svc{display:flex;align-items:flex-start;gap:20px;padding:26px 4px;
  border-bottom:1px solid var(--card-border);text-decoration:none;color:inherit}
.ed-svc:hover{background:linear-gradient(90deg,rgba(30,58,95,.03),transparent)}
.ed-svc-no{font-family:var(--font-heading);font-size:1.05rem;color:var(--accent);
  font-weight:600;min-width:26px;padding-top:2px}
.ed-svc-body{display:flex;flex-direction:column;gap:6px;flex:1}
.ed-svc-title{font-family:var(--font-heading);font-size:1.28rem;font-weight:600;color:var(--heading)}
.ed-svc-desc{font-size:.94rem;line-height:1.55;color:var(--text-gray)}
.ed-svc-arrow{color:var(--text-light);flex-shrink:0;margin-top:4px}
.ed-svc:hover .ed-svc-arrow{color:var(--accent);transform:translate(2px,-2px)}
.ed-svc:hover .ed-svc-title{color:var(--primary)}

/* ---- HOW IT WORKS: timeline ---- */
.ed-steps{list-style:none;margin:0;padding:0;display:grid;
  grid-template-columns:repeat(3,1fr);gap:40px;position:relative}
.ed-step{position:relative;padding-top:26px;border-top:2px solid var(--card-border)}
.ed-step-no{position:absolute;top:-20px;left:0;width:40px;height:40px;border-radius:50%;
  background:var(--primary);color:#fff;font-family:var(--font-heading);font-weight:600;
  display:flex;align-items:center;justify-content:center;font-size:1.15rem}
.ed-step h3{font-family:var(--font-heading);font-size:1.3rem;font-weight:600;
  color:var(--heading);margin:8px 0 10px}
.ed-step p{font-size:.96rem;line-height:1.6;color:var(--text-gray);margin:0}

/* ---- WHY US: quiet grid ---- */
.ed-why-grid{display:grid;grid-template-columns:1fr 1fr;gap:1px;background:var(--card-border);
  border:1px solid var(--card-border);border-radius:var(--radius-md);overflow:hidden}
.ed-why-item{background:var(--bg-white);padding:34px 32px}
.ed-why-item svg{color:var(--accent);margin-bottom:16px}
.ed-why-item h3{font-family:var(--font-heading);font-size:1.22rem;font-weight:600;
  color:var(--heading);margin:0 0 9px}
.ed-why-item p{font-size:.95rem;line-height:1.6;color:var(--text-gray);margin:0}

/* ---- REVIEWS: magazine pull-quote ---- */
.ed-testi-lead{position:relative;margin:0 0 40px;padding:8px 0 0;max-width:900px}
.ed-quote-mark{position:absolute;top:-28px;left:-6px;font-family:var(--font-heading);
  font-size:5rem;line-height:1;color:var(--gold);opacity:.4}
.ed-testi-lead blockquote{margin:0 0 20px;font-family:var(--font-heading);font-weight:500;
  font-size:clamp(1.35rem,2.6vw,2rem);line-height:1.4;color:var(--heading);letter-spacing:-.01em}
.ed-testi-lead figcaption{display:flex;align-items:center;gap:12px;font-size:.95rem;color:var(--text-gray)}
.ed-avatar{width:38px;height:38px;border-radius:50%;background:var(--primary);color:#fff;
  font-family:var(--font-heading);font-weight:600;display:flex;align-items:center;justify-content:center}
.ed-testi-row{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;
  border-top:1px solid var(--card-border);padding-top:36px}
.ed-testi-sm blockquote{margin:12px 0 14px;font-size:.98rem;line-height:1.6;color:var(--text-dark)}
.ed-testi-sm .ed-stars{font-size:.85rem}
.ed-testi-sm figcaption{font-size:.86rem;color:var(--text-light)}
.ed-testi-sm figcaption strong{color:var(--heading)}

/* ---- RESPONSIVE ---- */
@media (max-width:900px){
  .ed-hero-inner{grid-template-columns:1fr;gap:44px}
  .ed-hero-copy{max-width:none}
  .ed-hero-art{margin-top:4px}
  .ed-svc-grid{grid-template-columns:1fr}
  .ed-steps{grid-template-columns:1fr;gap:34px}
  .ed-why-grid{grid-template-columns:1fr}
  .ed-testi-row{grid-template-columns:1fr}
}
@media (max-width:640px){
  .ed-hero{padding-top:120px}
  body.has-promo-banner .ed-hero{padding-top:180px}
  .ed-cta-row .ed-btn{flex:1 1 auto;justify-content:center}
  .ed-paper{transform:none}
}

/* ---- MOTION: GSAP entrance (visible without JS) ---- */
.js-gsap [data-hero],.js-gsap .ed-reveal{will-change:transform,opacity}
@media (prefers-reduced-motion:reduce){
  .ed-btn-primary:hover{transform:none}
  .ed-svc:hover .ed-svc-arrow{transform:none}
}

/* ============================================================
   HOMEPAGE ENRICHMENT + GSAP support (index.html only)
   ============================================================ */
/* Hero guarantee row */
.ed-guarantees{list-style:none;display:flex;flex-wrap:wrap;gap:8px 20px;margin:18px 0 0;padding:0}
.ed-guarantees li{display:inline-flex;align-items:center;gap:6px;font-size:.86rem;color:var(--text-gray)}
.ed-ck{color:var(--accent);flex-shrink:0}

/* Hero artifact: layered sheets + floating chips */
.ed-paper-stack{position:relative;width:min(360px,90%)}
.ed-paper-back{position:absolute;inset:16px -16px -16px 16px;background:var(--bg-light);
  border:1px solid var(--card-border);border-radius:var(--radius-md);transform:rotate(-3deg);z-index:0}
.ed-paper-stack .ed-paper{position:relative;z-index:1;width:100%}
.ed-chip{position:absolute;z-index:2;display:inline-flex;align-items:center;gap:7px;background:#fff;
  border:1px solid var(--card-border);border-radius:50px;padding:8px 14px;font-size:.78rem;
  font-weight:600;color:var(--heading);box-shadow:var(--shadow-md);white-space:nowrap}
.ed-chip svg{color:var(--accent);flex-shrink:0}
.ed-chip-a{top:40%;right:-20px}
.ed-chip-b{bottom:-18px;left:-16px}
.ed-chip-b svg{color:var(--primary)}

/* Services: per-row price */
.ed-svc-price{font-family:var(--font-heading);font-weight:600;font-size:1rem;color:var(--primary);
  white-space:nowrap;align-self:center;text-align:right;min-width:78px}
.ed-svc-price small{font-family:var(--font-body);font-weight:500;font-size:.72rem;color:var(--text-light)}

/* Steps: supporting meta line */
.ed-step-meta{display:block;margin-top:12px;padding-top:10px;border-top:1px dashed var(--card-border);
  font-size:.8rem;font-weight:600;letter-spacing:.01em;color:var(--accent)}

/* GSAP anti-flash: pre-hide armed hero (removed on init; self-heals via head script) */
html.gsap-armed .ed-eyebrow,
html.gsap-armed .ed-h1,
html.gsap-armed .ed-lede,
html.gsap-armed .ed-cta-row,
html.gsap-armed .ed-rating,
html.gsap-armed .ed-guarantees,
html.gsap-armed .ed-paper-stack,
html.gsap-armed .ed-chip,
html.gsap-armed .ed-strip-label,
html.gsap-armed .ed-strip-list li{opacity:0}

@media (max-width:900px){
  .ed-chip-a{right:0}
  .ed-chip-b{left:0}
}
@media (max-width:640px){
  .ed-svc-arrow{display:none}
  .ed-svc-price{min-width:auto}
  .ed-stamp{width:58px;height:58px;top:-14px;right:-8px}
  .ed-stamp strong{font-size:1.3rem}
  .ed-chip{font-size:.72rem;padding:6px 11px}
  .ed-chip-a{top:auto;bottom:58px;right:-6px}
  .ed-chip-b{bottom:-14px;left:-6px}
  .ed-paper-stack{margin-bottom:10px}
}
/* ed-reveal via IntersectionObserver (robust; no ScrollTrigger dependency) */
.ed-reveal{opacity:0;transform:translateY(14px);transition:opacity .55s var(--ease-out),transform .55s var(--ease-out)}
.ed-reveal.visible{opacity:1;transform:none}
html{scroll-behavior:smooth}
@media (prefers-reduced-motion:reduce){.ed-reveal{opacity:1;transform:none;transition:none}html{scroll-behavior:auto}}

/* ============================================================
   INNER-PAGE EDITORIAL CONVERSION — opt-in via body.ed-page
   Applies the homepage editorial language to the existing
   shared markup on converted pages. Pages without .ed-page
   are completely unaffected.
   ============================================================ */
/* Section headers: left-aligned editorial */
body.ed-page .section-title{text-align:left;max-width:680px;margin-left:0;margin-right:auto}
body.ed-page .section-title p{margin-left:0;max-width:640px}

/* Cards: hairline editorial, serif titles, soft lift */
body.ed-page .service-card,
body.ed-page .feature-card,
body.ed-page .testimonial-card{box-shadow:none;border:1px solid var(--card-border);
  border-radius:var(--radius-md);transition:var(--transition)}
body.ed-page .service-card:hover,
body.ed-page .feature-card:hover{box-shadow:var(--shadow-md);transform:translateY(-3px)}
body.ed-page .service-card h3,
body.ed-page .feature-card h3,
body.ed-page .step-content h3{font-family:var(--font-heading);letter-spacing:-.01em}

/* Stats: quiet editorial band with serif numerals */
body.ed-page .stats-grid{border-top:1px solid var(--card-border);
  border-bottom:1px solid var(--card-border);padding:8px 0}
body.ed-page .stat-number{font-family:var(--font-heading);letter-spacing:-.01em}

/* Steps: editorial numerals */
body.ed-page .step-number{font-family:var(--font-heading)}

/* GSAP anti-flash for the converted hero (removed on init, self-heals) */
html.gsap-armed body.ed-page .ed-eyebrow,
html.gsap-armed body.ed-page .ed-h1,
html.gsap-armed body.ed-page .ed-lede,
html.gsap-armed body.ed-page .ed-cta-row,
html.gsap-armed body.ed-page .ed-rating,
html.gsap-armed body.ed-page .ed-guarantees,
html.gsap-armed body.ed-page .ed-paper-stack,
html.gsap-armed body.ed-page .ed-chip{opacity:0}

/* ============================================================
   FOOTER — modern refresh (all pages, CSS-only)
   ============================================================ */
footer{background:var(--bg-dark);color:#e6ebf1;padding:72px 24px 30px;position:relative}
footer::before{content:"";position:absolute;top:0;left:0;right:0;height:3px;
  background:linear-gradient(90deg,var(--accent),var(--gold))}
.footer-grid{gap:44px;padding-bottom:40px;border-bottom:1px solid rgba(255,255,255,.1)}
.footer-brand{max-width:340px}
.footer-logo span{font-family:var(--font-heading);font-weight:700;font-size:1.4rem;color:#fff}
.footer-brand p{color:#9fb0c4;font-size:.9rem;line-height:1.7;margin-top:12px}
.footer-col h4{font-family:var(--font-body);font-size:.72rem;font-weight:700;
  letter-spacing:.14em;text-transform:uppercase;color:var(--gold);margin-bottom:16px}
.footer-col ul li{margin-bottom:10px}
.footer-col ul li a{color:#b9c4d4;font-size:.92rem;text-decoration:none;
  transition:color .2s ease,padding-left .2s ease}
.footer-col ul li a:hover{color:#fff;padding-left:5px}
.footer-bottom{display:flex;justify-content:space-between;align-items:center;flex-wrap:wrap;
  gap:10px;max-width:1200px;margin:24px auto 0;padding-top:0}
.footer-bottom p{color:#8698ad;font-size:.82rem;margin:0}
.footer-bottom p:nth-child(2){display:none}

/* ============================================================
   404 — editorial (matches homepage hero language)
   ============================================================ */
.ed-404{position:relative;min-height:100vh;display:flex;align-items:center;
  padding:110px 24px 60px;background:
  radial-gradient(ellipse at 88% 0,rgba(194,130,15,.07) 0,transparent 45%),
  linear-gradient(180deg,#fff 0%,var(--bg-light) 100%)}
.ed-404-inner{max-width:1120px;margin:0 auto;width:100%;display:grid;
  grid-template-columns:1.05fr .95fr;gap:56px;align-items:center}
.ed-404-copy{max-width:600px}
.ed-404 .ed-eyebrow{color:#b91c1c;margin-bottom:14px}
.ed-404-num{font-family:var(--font-heading);font-weight:600;font-size:clamp(4rem,12vw,7.5rem);
  line-height:.9;letter-spacing:-.03em;color:var(--primary);margin:0 0 10px}
.ed-404-num span{color:var(--accent)}
.ed-404-title{font-family:var(--font-heading);font-weight:600;font-size:clamp(1.6rem,3.4vw,2.4rem);
  line-height:1.1;letter-spacing:-.015em;color:var(--heading);margin:0 0 18px}
.ed-404 .ed-stamp{background:#9f1239;border-color:#fb7185}
.ed-404-brand{position:absolute;top:0;left:0;padding:22px 26px;z-index:2}
.ed-404-brand a{display:inline-flex;align-items:center;gap:10px;text-decoration:none}
.ed-404-brand span{font-family:var(--font-heading);font-weight:700;font-size:1.25rem;color:var(--heading)}
.ed-404-brand span em{font-style:normal;color:var(--accent)}
@media (max-width:900px){
  .ed-404-inner{grid-template-columns:1fr;gap:40px}
  .ed-404-art{order:-1}
}
