/* ==========================================================================
   Statewide Home Deals - Master Stylesheet
   Brand: Statewide Home Deals (DBA of Fortune State Property Holdings LLC)
   Domain: statewidehomedeals.com
   Color Palette: Warm Espresso, Saddle Leather, Rich Chestnut, Linen & Cream
   Vibe: Warm, Comforting, Grounded, Dignified, Family-Centered
   ========================================================================== */

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

:root {
  /* Brand Palette - Warm Espresso, Deep Walnut, Chestnut & Saddle */
  --primary-navy: #2c1e16;        /* Deep Warm Walnut */
  --primary-dark: #1a130e;        /* Rich Midnight Espresso */
  --primary-blue: #4a3528;        /* Warm Saddle Wood / Mocha */
  --primary-blue-hover: #38271d;  /* Dark Espresso */
  --accent-blue: #8c5332;         /* Rich Chestnut / Terracotta */
  --accent-light: #f7f1eb;        /* Soft Linen / Oatmeal Tint */
  
  /* Warm Accents - Honey Amber & Burnished Copper */
  --accent-gold: #c07a3e;         /* Warm Amber / Copper */
  --accent-gold-light: #fdf4ea;   /* Warm Ivory / Cream */
  --accent-gold-hover: #9e5f2b;   /* Deep Cognac */
  --accent-gold-bright: #d99252;  /* Luminous Amber Honey */
  
  /* Natural Earth Accents */
  --success-green: #2e724f;       /* Muted Earth Sage */
  --success-green-light: #eff8f3; /* Light Sage Tint */
  
  /* Neutrals & Warm Backgrounds */
  --text-main: #211813;           /* Deep Espresso Charcoal */
  --text-muted: #5c4c42;          /* Warm Earth Taupe */
  --text-light: #7e6e64;          /* Warm Stone */
  --bg-white: #ffffff;
  --bg-light: #faf7f4;           /* Warm Linen / Off-White */
  --bg-slate: #f3ede6;           /* Soft Sandstone / Wheat */
  --border-color: #e5dbd0;        /* Warm Cream Border */
  --border-focus: #8c5332;

  /* Elevation / Shadows (Warm Hue) */
  --shadow-sm: 0 1px 2px 0 rgb(44 30 22 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(44 30 22 / 0.08), 0 2px 4px -2px rgb(44 30 22 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(44 30 22 / 0.08), 0 4px 6px -4px rgb(44 30 22 / 0.05);
  --shadow-xl: 0 20px 25px -5px rgb(44 30 22 / 0.1), 0 8px 10px -6px rgb(44 30 22 / 0.07);

  /* Radius */
  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1200px;
  --nav-height: 80px;
}

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

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

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

p {
  color: var(--text-muted);
  margin-bottom: 1.15rem;
}

a {
  color: var(--primary-blue);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--accent-gold);
}

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

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Top Announcement Banner */
.top-bar {
  background-color: var(--primary-dark);
  color: #decbc0;
  font-size: 0.85rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.top-bar-badge {
  background: linear-gradient(135deg, var(--accent-gold), var(--accent-gold-hover));
  color: #ffffff;
  font-weight: 600;
  font-size: 0.72rem;
  padding: 0.18rem 0.58rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.top-bar-link {
  color: #decbc0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar-link:hover {
  color: #ffffff;
}

/* Navigation Header */
.navbar {
  background-color: var(--bg-white);
  height: var(--nav-height);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
  border-bottom: 1px solid var(--border-color);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(44, 30, 22, 0.2);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary-navy);
  letter-spacing: -0.3px;
  line-height: 1.1;
}

.logo-subtitle {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-main);
  padding: 0.5rem 0;
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent-blue);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--accent-gold);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--primary-navy);
  font-size: 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(44, 30, 22, 0.2);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #1a130e, #38271d);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(44, 30, 22, 0.3);
}

.btn-gold {
  background: linear-gradient(135deg, #c07a3e, #9e5f2b);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(158, 95, 43, 0.25);
}

.btn-gold:hover {
  background: linear-gradient(135deg, #9e5f2b, #804a1e);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(158, 95, 43, 0.35);
}

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

.btn-outline:hover {
  background-color: var(--bg-slate);
  border-color: var(--text-light);
  color: var(--primary-navy);
}

.btn-outline-white {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: #ffffff;
  color: #ffffff;
}

.btn-lg {
  padding: 0.95rem 1.85rem;
  font-size: 1.05rem;
  border-radius: var(--radius-md);
}

.btn-block {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  background: linear-gradient(135deg, #1a130e 0%, #2c1e16 60%, #4a3528 100%);
  color: #ffffff;
  padding: 4.75rem 0 5.5rem 0;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(192, 122, 62, 0.2);
  border: 1px solid rgba(217, 146, 82, 0.4);
  color: #fbe3cc;
  font-size: 0.82rem;
  font-weight: 700;
  padding: 0.35rem 0.85rem;
  border-radius: var(--radius-full);
  width: fit-content;
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.hero-title {
  font-size: 3rem;
  color: #ffffff;
  font-weight: 800;
  letter-spacing: -0.75px;
  line-height: 1.18;
}

.hero-title .highlight {
  color: #fbe3cc;
  background: linear-gradient(120deg, #fff2e3, #e29f64);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-lead {
  font-size: 1.15rem;
  color: #decbc0;
  line-height: 1.65;
  margin-bottom: 0.25rem;
}

.hero-guarantee {
  background-color: rgba(255, 255, 255, 0.07);
  border-left: 4px solid var(--accent-gold);
  padding: 1.1rem 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-size: 0.98rem;
  color: #fbf6f2;
  line-height: 1.55;
}

.hero-guarantee strong {
  color: #fce6cf;
}

.hero-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-top: 0.35rem;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #eee2da;
  font-weight: 500;
  font-size: 0.92rem;
}

.hero-feature-icon {
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background-color: rgba(192, 122, 62, 0.25);
  color: #f8cfab;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Consultation / Offer Card in Hero */
.offer-card {
  background: #ffffff;
  color: var(--text-main);
  border-radius: var(--radius-lg);
  padding: 2.25rem 2rem;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid var(--border-color);
}

.offer-card-header {
  text-align: center;
  margin-bottom: 1.35rem;
}

.offer-card-badge {
  display: inline-block;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  font-weight: 700;
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.4rem;
}

.offer-card-title {
  font-size: 1.5rem;
  color: var(--primary-navy);
  margin-bottom: 0.25rem;
}

.offer-card-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Form Styles */
.form-group {
  margin-bottom: 1.1rem;
}

.form-label {
  display: block;
  font-weight: 600;
  font-size: 0.86rem;
  color: var(--primary-navy);
  margin-bottom: 0.35rem;
}

.form-control {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  transition: all 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(140, 83, 50, 0.15);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
}

.form-select {
  width: 100%;
  padding: 0.8rem 0.95rem;
  font-size: 0.93rem;
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: #ffffff;
  border: 1.5px solid var(--border-color);
  border-radius: var(--radius-md);
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235c4c42' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 0.95rem center;
  background-size: 0.95em;
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px rgba(140, 83, 50, 0.15);
}

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

.form-privacy-note {
  font-size: 0.74rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 0.75rem;
  margin-bottom: 0;
  line-height: 1.45;
}

/* Trust Bar */
.trust-bar {
  background-color: #ffffff;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.75rem;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--accent-light);
  color: var(--accent-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trust-text h4 {
  font-size: 0.95rem;
  color: var(--primary-navy);
  margin-bottom: 0.1rem;
}

.trust-text p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Sections Common */
.section {
  padding: 5rem 0;
}

.section-slate {
  background-color: var(--bg-slate);
}

.section-dark {
  background-color: var(--primary-navy);
  color: #ffffff;
}

.section-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3.5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  background-color: var(--accent-light);
  padding: 0.28rem 0.8rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.65rem;
}

.section-tag.gold {
  color: var(--accent-gold-hover);
  background-color: var(--accent-gold-light);
}

.section-title {
  font-size: 2.25rem;
  color: var(--primary-navy);
  margin-bottom: 0.85rem;
}

.section-dark .section-title {
  color: #ffffff;
}

.section-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

.section-dark .section-subtitle {
  color: #decbc0;
}

/* Process Cards */
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.25rem;
  position: relative;
}

.process-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: all 0.25s ease;
}

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

.process-number {
  position: absolute;
  top: 1.35rem;
  right: 1.35rem;
  font-family: var(--font-heading);
  font-size: 2.25rem;
  font-weight: 800;
  color: #e5dbd0;
  line-height: 1;
}

.process-icon {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, var(--accent-light), #ebdcd0);
  color: var(--accent-blue);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.35rem;
}

.process-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.process-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 0;
  line-height: 1.6;
}

/* Comparison Table */
.comparison-table-wrapper {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.comparison-table th, .comparison-table td {
  padding: 1.15rem 1.35rem;
  border-bottom: 1px solid var(--border-color);
}

.comparison-table th {
  background-color: var(--bg-slate);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--primary-navy);
}

.comparison-table th.featured {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  color: #ffffff;
}

.comparison-table td.featured {
  background-color: #faf5f0;
  font-weight: 600;
  color: #4a2d18;
  border-left: 2px solid var(--accent-gold);
  border-right: 2px solid var(--accent-gold);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.badge-check {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--success-green);
  font-weight: 700;
}

.badge-cross {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #a82e2e;
}

/* Situations Grid */
.situations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.situation-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  transition: all 0.25s ease;
  box-shadow: var(--shadow-sm);
}

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

.situation-icon {
  width: 48px;
  height: 48px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35rem;
  margin-bottom: 1.15rem;
}

.situation-card h3 {
  font-size: 1.18rem;
  margin-bottom: 0.55rem;
}

.situation-card p {
  font-size: 0.89rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Story Callout / Preview on Home */
.story-preview {
  background: linear-gradient(135deg, #1a130e, #2c1e16);
  color: #ffffff;
  border-radius: var(--radius-lg);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

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

.story-quote-mark {
  font-family: Georgia, serif;
  font-size: 4.5rem;
  color: var(--accent-gold-bright);
  line-height: 1;
  margin-bottom: -1.25rem;
  opacity: 0.85;
}

.story-preview h2 {
  color: #ffffff;
  font-size: 2.1rem;
  margin-bottom: 1.15rem;
}

.story-preview p {
  color: #decbc0;
  font-size: 1.02rem;
  line-height: 1.7;
}

.story-highlight-box {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 2rem;
}

.story-pledge {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: #fbe3cc;
  margin-bottom: 0.85rem;
  line-height: 1.45;
}

/* About Page Hero & Detailed Story */
.about-hero {
  background: linear-gradient(135deg, #1a130e 0%, #2c1e16 60%, #4a3528 100%);
  color: #ffffff;
  padding: 4.5rem 0 3.75rem 0;
  text-align: center;
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.about-hero h1 {
  color: #ffffff;
  font-size: 3rem;
  margin-bottom: 0.85rem;
}

.about-hero p {
  color: #decbc0;
  font-size: 1.18rem;
  line-height: 1.6;
}

.story-full-wrapper {
  max-width: 840px;
  margin: -2.5rem auto 0 auto;
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 3.75rem 3.25rem;
  border: 1px solid var(--border-color);
  position: relative;
  z-index: 10;
}

.story-lead-quote {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary-navy);
  border-left: 4px solid var(--accent-gold);
  padding: 1.35rem 1.5rem;
  margin: 1.25rem 0 2.25rem 0;
  line-height: 1.6;
  background-color: var(--bg-slate);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.story-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: #3b2c24;
}

.story-body p {
  color: #3b2c24;
  margin-bottom: 1.65rem;
}

.story-body .callout-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary-navy);
}

.founder-pledge-card {
  background: linear-gradient(135deg, #fdf4ea, #fffaf5);
  border: 2px solid #c07a3e;
  border-radius: var(--radius-md);
  padding: 2.25rem;
  margin: 2.75rem 0 1.5rem 0;
  text-align: center;
}

.founder-pledge-card h3 {
  color: #804a1e;
  font-size: 1.45rem;
  margin-bottom: 0.65rem;
}

.founder-pledge-card p {
  color: #5a3111;
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.5;
}

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

.value-card {
  background: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--accent-gold);
}

.value-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent-light), #ebdcd0);
  color: var(--accent-blue);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.65rem;
  margin: 0 auto 1.25rem auto;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.65rem;
}

.value-card p {
  font-size: 0.9rem;
  margin-bottom: 0;
  line-height: 1.6;
}

/* Reviews / Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.85rem;
}

.testimonial-card {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.85rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.stars {
  color: #c07a3e;
  font-size: 1.05rem;
  margin-bottom: 0.85rem;
  display: flex;
  gap: 0.2rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 1.35rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.author-avatar {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-full);
  background-color: var(--bg-slate);
  color: var(--primary-navy);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.author-info h4 {
  font-size: 0.92rem;
  margin-bottom: 0.1rem;
}

.author-info span {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* FAQ Accordion */
.faq-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 0.95rem;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item.active {
  border-color: var(--accent-gold);
  box-shadow: var(--shadow-md);
}

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

.faq-toggle-icon {
  font-size: 1.25rem;
  color: var(--accent-gold);
  transition: transform 0.3s ease;
}

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

.faq-answer {
  padding: 0 1.4rem 1.4rem 1.4rem;
  display: none;
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.faq-item.active .faq-answer {
  display: block;
}

/* Dedicated Form Page */
.get-offer-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}

.offer-perks-list {
  margin: 1.85rem 0;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.offer-perk-item {
  display: flex;
  gap: 0.95rem;
}

.offer-perk-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.offer-perk-item h4 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.offer-perk-item p {
  font-size: 0.87rem;
  margin-bottom: 0;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-navy), var(--primary-blue));
  color: #ffffff;
  padding: 4.75rem 0;
  text-align: center;
}

.cta-banner-content {
  max-width: 760px;
  margin: 0 auto;
}

.cta-banner h2 {
  color: #ffffff;
  font-size: 2.35rem;
  margin-bottom: 0.85rem;
}

.cta-banner p {
  color: #decbc0;
  font-size: 1.12rem;
  margin-bottom: 1.85rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  background-color: var(--primary-dark);
  color: #b5a298;
  padding: 4.75rem 0 2rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3.25rem;
  margin-bottom: 3.25rem;
}

.footer-brand h3 {
  color: #ffffff;
  font-size: 1.35rem;
  margin-bottom: 0.4rem;
}

.footer-dba-tag {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--accent-gold-bright);
  font-weight: 600;
  margin-bottom: 0.85rem;
}

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

.footer-column h4 {
  color: #ffffff;
  font-size: 1rem;
  margin-bottom: 1.15rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.footer-links a {
  color: #b5a298;
  font-size: 0.88rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
  font-size: 0.88rem;
  color: #b5a298;
}

.footer-contact-icon {
  color: var(--accent-gold-bright);
  margin-top: 0.15rem;
}

.footer-bottom {
  padding-top: 1.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
}

.footer-disclaimer {
  font-size: 0.76rem;
  line-height: 1.55;
  color: #8c796e;
  margin-top: 1.35rem;
  text-align: justify;
}

/* Modal Popup */
.modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(26, 19, 14, 0.8);
  backdrop-filter: blur(4px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}

.modal-backdrop.show {
  display: flex;
}

.modal-card {
  background-color: #ffffff;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 2.5rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-xl);
  position: relative;
  border: 1px solid var(--border-color);
  animation: modalPop 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalPop {
  0% { transform: scale(0.92); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

.modal-icon {
  width: 68px;
  height: 68px;
  background-color: var(--accent-gold-light);
  color: var(--accent-gold-hover);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.25rem;
  margin: 0 auto 1.35rem auto;
}

.modal-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.modal-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.modal-close-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--text-light);
  cursor: pointer;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-grid, .situations-grid, .testimonials-grid, .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .story-preview-grid {
    grid-template-columns: 1fr;
  }
  .get-offer-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }
  .mobile-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    width: 100%;
    background-color: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    display: none;
  }
  .nav-menu.open {
    display: flex;
  }
  .hero {
    padding: 3.5rem 0 4.25rem 0;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .hero-features {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .trust-grid, .process-grid, .situations-grid, .testimonials-grid, .values-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .story-preview {
    padding: 2rem 1.5rem;
  }
  .story-full-wrapper {
    padding: 2.5rem 1.5rem;
    margin-top: -2rem;
  }
}
