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

:root {
  --color-primary: #1B3A5C;
  --color-primary-dark: #142d47;
  --color-primary-mid: #2C4A6E;
  --color-accent: #D4A843;
  --color-accent-dark: #b8902e;
  --color-success: #2E7D52;
  --color-bg: #F7F5F0;
  --color-bg-white: #ffffff;
  --color-text: #2C2C2C;
  --color-text-light: #6b6b6b;
  --color-border: #e2ddd5;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 8px;
  --transition: 0.3s ease;
  --max-width: 1100px;
}

/* ============================================================
   RESET & BASE STYLES
   ============================================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background-color: var(--color-bg);
  line-height: 1.6;
  -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;
  padding: 0;
  margin: 0;
}

button {
  cursor: pointer;
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--color-primary);
}

p {
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */

.container {
  max-width: var(--max-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

.section {
  padding: 80px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--color-primary);
  text-align: center;
  margin-bottom: 1.25rem;
  position: relative;
  padding-bottom: 1.25rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #D4A843;
  border-radius: 2px;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--color-text-light);
  text-align: center;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
  line-height: 1.7;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: white;
  box-shadow: var(--shadow-sm);
}

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

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-primary);
  font-weight: 700;
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-family: var(--font-body);
  color: var(--color-text);
  text-decoration: none;
  font-size: 0.95rem;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--color-primary);
}

.nav-links a.active {
  color: var(--color-accent);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

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

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
}

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

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* ============================================================
   HERO
   ============================================================ */

.hero {
  min-height: 80vh;
  background: linear-gradient(135deg, #1B3A5C 0%, #2C4A6E 60%, #1B3A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  max-width: 700px;
  padding: 2rem;
  color: white;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: white;
}

.hero p {
  font-family: var(--font-body);
  font-size: 1.2rem;
  opacity: 0.9;
  margin-bottom: 2.5rem;
  line-height: 1.7;
  color: white;
}

.hero-short {
  min-height: 60vh;
  background: linear-gradient(135deg, #1B3A5C 0%, #2C4A6E 60%, #1B3A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-short::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-shorter {
  min-height: 50vh;
  background: linear-gradient(135deg, #1B3A5C 0%, #2C4A6E 60%, #1B3A5C 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-shorter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-badge {
  display: inline-block;
  background: rgba(212, 168, 67, 0.2);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: #D4A843;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
  border: 2px solid transparent;
  letter-spacing: 0.3px;
  line-height: 1;
}

.btn-gold {
  background: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.btn-gold:hover {
  background: var(--color-accent-dark);
  border-color: var(--color-accent-dark);
  box-shadow: 0 4px 16px rgba(212, 168, 67, 0.4);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: white;
  border-color: white;
}

.btn-outline:hover {
  background: white;
  color: var(--color-primary);
}

.btn-outline-dark {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}

.btn-outline-dark:hover {
  background: var(--color-primary);
  color: white;
}

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   CARDS
   ============================================================ */

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

.card {
  background: white;
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border-bottom: 3px solid transparent;
}

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

.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.card-icon svg {
  width: 28px;
  height: 28px;
  stroke: var(--color-accent);
  fill: none;
  stroke-width: 1.5;
}

.card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--color-primary);
}

.card p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   TRUST STRIP
   ============================================================ */

.trust-strip {
  background: var(--color-primary);
  padding: 80px 0;
  text-align: center;
}

.trust-strip blockquote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6rem;
  color: white;
  max-width: 700px;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  position: relative;
  padding: 0 2rem;
}

.trust-strip blockquote::before {
  content: '\201C';
  font-size: 5rem;
  color: var(--color-accent);
  opacity: 0.4;
  position: absolute;
  top: -2rem;
  left: 0;
  line-height: 1;
  font-family: Georgia, serif;
}

.trust-strip cite {
  font-family: var(--font-body);
  color: rgba(212, 168, 67, 0.9);
  font-size: 0.95rem;
  font-style: normal;
  display: block;
  margin-top: 1rem;
}

/* ============================================================
   COMPARISON TABLE
   ============================================================ */

.comparison-wrap {
  overflow-x: auto;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 3rem 0;
  font-family: var(--font-body);
}

.comparison-table th,
.comparison-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid var(--color-border);
}

.comparison-table th {
  font-weight: 600;
  font-size: 1rem;
}

.comparison-table .th-old {
  background: #fff1f0;
  color: #c0392b;
}

.comparison-table .th-new {
  background: #f0faf4;
  color: #2E7D52;
}

.comparison-table tr:nth-child(even) {
  background: rgba(247, 245, 240, 0.7);
}

.comparison-table .row-label {
  font-weight: 600;
  color: var(--color-primary);
  font-family: var(--font-body);
}

.comparison-table .check {
  color: #2E7D52;
  font-weight: 600;
}

.comparison-table .cross {
  color: #c0392b;
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  max-width: 800px;
  margin: 3rem auto;
}

.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
}

.step-number {
  width: 64px;
  height: 64px;
  background: var(--color-accent);
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  margin-top: 0.75rem;
}

.step-content p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.7;
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */

.faq-list {
  max-width: 800px;
  margin: 3rem auto;
  list-style: none;
  padding: 0;
}

.faq-item {
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-primary);
  text-align: left;
  gap: 1rem;
}

.faq-question .faq-icon {
  font-size: 1.5rem;
  color: var(--color-accent);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  max-height: 400px;
}

.faq-answer p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  padding-bottom: 1.5rem;
  line-height: 1.8;
  margin: 0;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

label {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--color-text);
}

input,
textarea,
select {
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 1rem;
  background: white;
  transition: border-color 0.3s;
  color: var(--color-text);
  width: 100%;
  box-sizing: border-box;
  appearance: none;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.15);
}

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

.contact-info {
  padding: 2.5rem;
  background: rgba(27, 58, 92, 0.04);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
}

.contact-info h3 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail svg {
  flex-shrink: 0;
  color: var(--color-accent);
  width: 20px;
  height: 20px;
  stroke: var(--color-accent);
  fill: none;
  margin-top: 2px;
}

.contact-detail p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.contact-detail strong {
  color: var(--color-text);
  display: block;
  margin-bottom: 2px;
}

/* ============================================================
   PULL QUOTE
   ============================================================ */

.pull-quote {
  border-left: 4px solid var(--color-accent);
  padding: 2rem 3rem;
  margin: 3rem auto;
  max-width: 750px;
  background: rgba(212, 168, 67, 0.05);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.pull-quote p {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--color-primary);
  line-height: 1.6;
  margin: 0;
}

/* ============================================================
   STAT CALLOUT
   ============================================================ */

.stat-box {
  background: var(--color-primary);
  color: white;
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  max-width: 600px;
  margin: 3rem auto;
  box-shadow: var(--shadow-md);
}

.stat-box .stat-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
}

.stat-box .stat-label {
  font-family: var(--font-body);
  font-size: 1rem;
  opacity: 0.85;
  margin-top: 1rem;
  display: block;
  line-height: 1.5;
}

/* ============================================================
   PHOTO PLACEHOLDER
   ============================================================ */

.photo-placeholder {
  background: linear-gradient(135deg, #ddd 0%, #c8c8c8 100%);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 350px;
  color: #999;
  font-family: var(--font-body);
  font-size: 0.95rem;
  text-align: center;
  flex-direction: column;
  gap: 1rem;
}

/* ============================================================
   STORY GRID
   ============================================================ */

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1.5rem;
}

.story-text p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

/* ============================================================
   VALUES CTA
   ============================================================ */

.values-cta {
  text-align: center;
  padding: 80px 0;
  background: rgba(27, 58, 92, 0.04);
  border-top: 1px solid var(--color-border);
}

.values-cta h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.values-cta p {
  font-family: var(--font-body);
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   PREVIEW SECTION
   ============================================================ */

.preview-section {
  background: var(--color-bg);
  text-align: center;
  padding: 80px 0;
}

.preview-text {
  font-family: var(--font-body);
  font-size: 1.2rem;
  color: var(--color-text-light);
  max-width: 650px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

/* ============================================================
   BENEFIT LIST
   ============================================================ */

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.benefit-list li {
  padding: 0.75rem 0 0.75rem 2.5rem;
  position: relative;
  border-bottom: 1px solid var(--color-border);
  font-family: var(--font-body);
  color: var(--color-text);
  line-height: 1.6;
}

.benefit-list li:last-child {
  border-bottom: none;
}

.benefit-list li::before {
  content: '\2713';
  color: var(--color-success);
  font-weight: 700;
  position: absolute;
  left: 0;
  font-size: 1rem;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
  background: var(--color-primary);
  color: white;
  padding: 60px 0 30px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
}

.footer-brand {
  flex: 0 0 auto;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: white;
  font-weight: 700;
  display: block;
}

.footer-tagline {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
}

.footer-nav a {
  font-family: var(--font-body);
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--transition);
}

.footer-nav a:hover {
  color: var(--color-accent);
}

.footer-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  width: 100%;
  margin-top: 1rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll:nth-child(2) {
  transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
  transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
  transition-delay: 0.3s;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.bg-white {
  background: white;
}

.text-center {
  text-align: center;
}

.mt-2 {
  margin-top: 2rem;
}

.mt-1 {
  margin-top: 1rem;
}

.mb-2 {
  margin-bottom: 2rem;
}

.mb-0 {
  margin-bottom: 0;
}

.text-gold {
  color: var(--color-accent);
}

.text-primary {
  color: var(--color-primary);
}

.text-light-color {
  color: var(--color-text-light);
}

.font-heading {
  font-family: var(--font-heading);
}

/* ============================================================
   RESPONSIVE — max-width: 768px
   ============================================================ */

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

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem 1.5rem 2rem;
    box-shadow: var(--shadow-md);
    gap: 0;
    z-index: 99;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    border-bottom: 1px solid var(--color-border);
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 0;
  }

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

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

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

  .step {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .step-number {
    margin: 0 auto;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 12px;
  }

  .pull-quote {
    padding: 1.5rem 1.5rem;
  }

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

  .trust-strip blockquote {
    font-size: 1.3rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 2rem;
  }

  .footer-nav {
    flex-direction: column;
    gap: 1rem;
  }

  .section {
    padding: 56px 0;
  }

  .btn-group {
    flex-direction: column;
    align-items: center;
  }

  .stat-box .stat-number {
    font-size: 2.8rem;
  }

  .pull-quote p {
    font-size: 1.2rem;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .contact-info {
    padding: 1.5rem;
  }

  .values-cta {
    padding: 56px 0;
  }

  .preview-section {
    padding: 56px 0;
  }

  .trust-strip {
    padding: 56px 0;
  }
}

/* ============================================================
   RESPONSIVE — max-width: 480px
   ============================================================ */

@media (max-width: 480px) {
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-content {
    padding: 1rem;
  }

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

  .btn {
    padding: 12px 28px;
    font-size: 0.95rem;
  }

  .card {
    padding: 2rem 1.5rem;
  }

  .stat-box {
    padding: 2rem 1.5rem;
  }

  .stat-box .stat-number {
    font-size: 2.4rem;
  }

  .section-title {
    font-size: 1.4rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .faq-question {
    font-size: 1rem;
  }

  .trust-strip blockquote {
    font-size: 1.15rem;
    padding: 0 1rem;
  }

  .trust-strip blockquote::before {
    font-size: 3.5rem;
  }

  .story-text h2 {
    font-size: 1.6rem;
  }

  .values-cta h2 {
    font-size: 1.6rem;
  }

  .footer-logo {
    font-size: 1.3rem;
  }

  .process-steps {
    gap: 2rem;
  }

  .step-number {
    width: 52px;
    height: 52px;
    font-size: 1.5rem;
  }
}
