/* ============================================
   GRID STAYS - Main Stylesheet
   gridstays.co.uk
   ============================================ */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=DM+Sans:wght@300;400;500;600&family=DM+Mono:wght@400&display=swap');

/* ============================================
   CSS VARIABLES
   ============================================ */
:root {
  --navy: #0D3B6E;
  --navy-dark: #061428;
  --blue: #185FA5;
  --blue-mid: #1a6db5;
  --teal: #1D9E75;
  --teal-dark: #0F6E56;
  --teal-light: #E1F5EE;
  --blue-light: #EAF4FD;
  --gold: #C9A227;
  --gold-light: #F5EDCE;
  --white: #FFFFFF;
  --off-white: #F7FAFC;
  --bg-soft: #F0F6FC;
  --text-primary: #0D1B2E;
  --text-secondary: #3D5166;
  --text-muted: #6B7C93;
  --border: #DDE6EF;
  --border-light: #EEF3F8;
  --shadow-sm: 0 2px 8px rgba(13,59,110,0.08);
  --shadow-md: 0 4px 24px rgba(13,59,110,0.12);
  --shadow-lg: 0 12px 48px rgba(13,59,110,0.16);
  --shadow-xl: 0 24px 64px rgba(13,59,110,0.2);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'DM Mono', monospace;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --container: 1200px;
  --nav-height: 80px;
}

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-secondary); line-height: 1.8; }
.text-muted { color: var(--text-muted); }
.text-white { color: var(--white) !important; }
.text-teal { color: var(--teal); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  display: block;
  margin-bottom: 0.75rem;
}
.lead { font-size: 1.15rem; line-height: 1.8; }
.italic { font-style: italic; }

/* ============================================
   LAYOUT
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 140px 0; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { flex-direction: column; }
.gap-8 { gap: 8px; }
.gap-16 { gap: 16px; }
.gap-24 { gap: 24px; }
.gap-48 { gap: 48px; }
.items-center { align-items: center; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-48 { margin-bottom: 48px; }

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header { margin-bottom: 60px; }
.section-header.centered { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(29,158,117,0.35);
}
.btn-primary:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(29,158,117,0.4);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(13,59,110,0.3);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(13,59,110,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-lg { padding: 18px 40px; font-size: 1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.82rem; }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  transition: var(--transition);
  background: transparent;
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(20px);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo svg { width: 44px; height: 44px; flex-shrink: 0; }
.nav-logo-text {}
.nav-logo-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  display: block;
  transition: var(--transition);
}
.nav-logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  display: block;
  transition: var(--transition);
}
.nav.scrolled .nav-logo-name { color: var(--navy); }
.nav.scrolled .nav-logo-sub { color: var(--text-muted); }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav-link { color: var(--text-secondary); }
.nav.scrolled .nav-link:hover { color: var(--navy); background: var(--blue-light); }
.nav-cta {
  background: var(--teal);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(29,158,117,0.3);
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 2px;
}
.nav.scrolled .nav-toggle span { background: var(--navy); }

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,20,40,0.85) 0%, rgba(13,59,110,0.7) 50%, rgba(29,158,117,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: var(--nav-height);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.3); }
}
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero h1 em { font-style: italic; color: #7DE8C4; }
.hero-desc { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 40px; max-width: 560px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats { display: flex; gap: 48px; flex-wrap: wrap; }
.hero-stat {}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.65); margin-top: 4px; }
.hero-stat-divider { width: 1px; background: rgba(255,255,255,0.2); }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}
.page-hero {
  padding: 160px 0 80px;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--blue) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(29,158,117,0.15) 0%, transparent 70%);
  top: -200px;
  right: -100px;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: rgba(255,255,255,0.6); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb-sep { opacity: 0.4; }

/* ============================================
   CARDS
   ============================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-light);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card-body { padding: 32px; }
.service-card { background: var(--white); border-radius: var(--radius-lg); padding: 36px; border: 1px solid var(--border-light); transition: var(--transition); position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--navy), var(--teal)); opacity: 0; transition: var(--transition); }
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: transparent; }
.service-card:hover::before { opacity: 1; }
.service-icon {
  width: 60px;
  height: 60px;
  background: var(--blue-light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  font-size: 1.6rem;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--teal); }
.service-card h3 { margin-bottom: 12px; }
.service-card p { font-size: 0.92rem; }
.feature-card { padding: 32px; }
.feature-num {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue-light);
  line-height: 1;
  margin-bottom: 16px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--blue-light);
  position: absolute;
  top: 16px;
  left: 28px;
  line-height: 1;
}
.testimonial-text { font-size: 1rem; line-height: 1.8; color: var(--text-secondary); margin-bottom: 24px; font-style: italic; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 600;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.testimonial-detail { font-size: 0.8rem; color: var(--text-muted); }
.stars { color: #F5A623; font-size: 0.85rem; margin-bottom: 8px; }
.area-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}
.area-card:hover { border-color: var(--teal); box-shadow: var(--shadow-sm); transform: translateX(4px); }
.area-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.area-dot.phase1 { background: var(--teal); }
.area-dot.phase2 { background: var(--blue); }
.area-dot.phase3 { background: var(--navy); }
.area-name { font-weight: 600; color: var(--navy); font-size: 0.95rem; }
.area-dist { font-size: 0.8rem; color: var(--text-muted); margin-top: 2px; }
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  border: 2px solid var(--border);
  transition: var(--transition);
  position: relative;
}
.pricing-card.featured {
  border-color: var(--teal);
  box-shadow: var(--shadow-lg);
}
.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 18px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.pricing-name { font-family: var(--font-display); font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.pricing-fee { font-size: 3rem; font-family: var(--font-display); font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.pricing-fee span { font-size: 1.2rem; vertical-align: top; margin-top: 8px; display: inline-block; color: var(--text-muted); }
.pricing-fee-note { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 28px; }
.pricing-divider { height: 1px; background: var(--border-light); margin: 28px 0; }
.pricing-features { margin-bottom: 32px; }
.pricing-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.pricing-feature-icon { color: var(--teal); flex-shrink: 0; font-size: 1rem; margin-top: 2px; }
.pricing-feature-icon.na { color: var(--border); }

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar {
  background: var(--navy);
  padding: 50px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 20px; position: relative; }
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.stat-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num em { color: var(--teal); font-style: normal; }
.stat-label { font-size: 0.82rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps { counter-reset: step; }
.step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  margin-bottom: 48px;
  align-items: start;
}
.step:last-child { margin-bottom: 0; }
.step-num {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: var(--shadow-md);
}
.step-body h3 { margin-bottom: 8px; }
.step-body p { font-size: 0.92rem; }

/* ============================================
   TRUST INDICATORS
   ============================================ */
.trust-bar {
  background: var(--off-white);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.trust-items { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-secondary); font-weight: 500; }
.trust-icon { font-size: 1.3rem; }

/* ============================================
   AREAS SECTION
   ============================================ */
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.area-phase-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 32px 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.area-phase-label::after { content: ''; flex: 1; height: 1px; background: var(--border); }
.area-phase-line { width: 12px; height: 3px; border-radius: 2px; flex-shrink: 0; }

/* ============================================
   CTA SECTIONS
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--blue) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(29,158,117,0.2) 0%, transparent 70%);
  bottom: -200px;
  right: -100px;
}
.cta-section::after {
  content: '';
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(29,158,117,0.1) 0%, transparent 70%);
  top: -100px;
  left: -50px;
}
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { color: var(--white); margin-bottom: 20px; }
.cta-content p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   CONTACT FORM
   ============================================ */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--text-primary);
  transition: var(--transition);
  background: var(--white);
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(29,158,117,0.1);
}
.form-textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.form-note { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; }

/* ============================================
   FAQ
   ============================================ */
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
  cursor: pointer;
}
.faq-question:hover { color: var(--teal); }
.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  font-size: 1.1rem;
}
.faq-item.active .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.active .faq-answer { max-height: 400px; }
.faq-answer-inner { padding-bottom: 24px; color: var(--text-secondary); font-size: 0.95rem; line-height: 1.8; }

/* ============================================
   BLOG CARDS
   ============================================ */
.blog-card { border-radius: var(--radius-lg); overflow: hidden; background: var(--white); box-shadow: var(--shadow-sm); border: 1px solid var(--border-light); transition: var(--transition); }
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.blog-img { height: 220px; background-size: cover; background-position: center; }
.blog-body { padding: 28px; }
.blog-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--teal); background: var(--teal-light); padding: 4px 12px; border-radius: 50px; margin-bottom: 14px; }
.blog-title { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.3; }
.blog-excerpt { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; margin-bottom: 16px; }
.blog-meta { display: flex; align-items: center; gap: 16px; font-size: 0.78rem; color: var(--text-muted); }
.blog-read-more { color: var(--teal); font-weight: 600; font-size: 0.85rem; display: flex; align-items: center; gap: 4px; }

/* ============================================
   CHECKLIST
   ============================================ */
.checklist { margin: 0; }
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.92rem;
  color: var(--text-secondary);
}
.checklist li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--teal-light);
  color: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 2px;
}
.checklist.white li::before { background: rgba(255,255,255,0.15); color: var(--white); }
.checklist.white li { color: rgba(255,255,255,0.85); }

/* ============================================
   COMPARISON TABLE
   ============================================ */
.compare-table { width: 100%; border-collapse: collapse; }
.compare-table th, .compare-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border-light); font-size: 0.9rem; }
.compare-table th { background: var(--navy); color: var(--white); font-weight: 600; font-size: 0.85rem; }
.compare-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.compare-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }
.compare-table tr:hover td { background: var(--off-white); }
.compare-check { color: var(--teal); font-weight: 700; }
.compare-cross { color: #CBD5E0; }

/* ============================================
   INCOME CALCULATOR
   ============================================ */
.calc-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--border-light);
}
.calc-result {
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  border-radius: var(--radius-lg);
  padding: 32px;
  color: var(--white);
  text-align: center;
  margin-top: 32px;
}
.calc-result-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.calc-result-label { font-size: 0.85rem; opacity: 0.8; }
.range-slider { -webkit-appearance: none; width: 100%; height: 6px; border-radius: 3px; background: var(--border); outline: none; margin: 16px 0; }
.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(29,158,117,0.4);
}

/* ============================================
   IMAGE SECTIONS
   ============================================ */
.img-float { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-xl); }
.img-float img { width: 100%; height: 100%; object-fit: cover; }
.img-badge {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}
.img-badge-num { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: var(--navy); line-height: 1; }
.img-badge-text { font-size: 0.8rem; color: var(--text-muted); margin-top: 4px; }

/* ============================================
   GOOGLE REVIEWS WIDGET STYLE
   ============================================ */
.review-platform {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.review-platform-logo { width: 24px; height: 24px; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.footer-logo-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
}
.footer-logo-sub { font-size: 0.62rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; color: rgba(255,255,255,0.55); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.footer-contact-icon { color: var(--teal); flex-shrink: 0; margin-top: 2px; }
.footer-heading { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 20px; font-weight: 600; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-link { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer-link:hover { color: var(--teal); padding-left: 4px; }
.footer-areas { column-count: 2; column-gap: 16px; }
.footer-area { font-size: 0.82rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; display: flex; align-items: center; gap: 6px; }
.footer-area-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: 0.78rem; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }
.social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  color: rgba(255,255,255,0.6);
}
.social-link:hover { background: var(--teal); color: var(--white); }

/* ============================================
   TEAM CARDS
   ============================================ */
.team-card { text-align: center; }
.team-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--teal));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.team-name { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.team-role { font-size: 0.82rem; color: var(--teal); font-weight: 600; margin-top: 4px; }
.team-bio { font-size: 0.85rem; color: var(--text-muted); margin-top: 10px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================
   UTILITY
   ============================================ */
.bg-navy { background: var(--navy); }
.bg-navy-dark { background: var(--navy-dark); }
.bg-soft { background: var(--off-white); }
.bg-blue-light { background: var(--blue-light); }
.bg-teal-light { background: var(--teal-light); }
.bg-grid {
  background-image: radial-gradient(circle, rgba(24,95,165,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}
.divider { height: 1px; background: var(--border-light); }
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  letter-spacing: 0.05em;
}
.badge-teal { background: var(--teal-light); color: var(--teal-dark); }
.badge-navy { background: var(--blue-light); color: var(--navy); }
.badge-gold { background: var(--gold-light); color: #7A5C10; }
.ribbon {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 6px 40px;
  transform: rotate(45deg);
  letter-spacing: 0.08em;
}
.overflow-hidden { overflow: hidden; }
.relative { position: relative; }
.w-full { width: 100%; }

/* ============================================
   MOBILE NAV
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: rgba(255,255,255,0.8);
  padding: 12px;
  transition: var(--transition);
}
.mobile-menu a:hover { color: var(--white); }
.mobile-close { position: absolute; top: 24px; right: 24px; font-size: 1.5rem; color: rgba(255,255,255,0.6); cursor: pointer; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2)::after { display: none; }
}
@media (max-width: 768px) {
  :root { --nav-height: 70px; }
  .section { padding: 70px 0; }
  .section-lg { padding: 80px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 32px; }
  .hero-stat-divider { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-items { gap: 24px; }
  .calc-card { padding: 28px 24px; }
  .step { grid-template-columns: 1fr; }
  .step-num { width: 48px; height: 48px; }
  .pricing-card { padding: 32px 24px; }
  .footer-areas { column-count: 2; }
}
@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .cta-actions { flex-direction: column; align-items: center; }
  .grid-4 { grid-template-columns: 1fr; }
}
