/* ═══════════════════════════════════════════════════
   BETHSTEAD HOMES — Shared Stylesheet
   ═══════════════════════════════════════════════════ */

:root {
  --navy:  #1B3A5C;
  --navy2: #122740;
  --gold:  #C89B2A;
  --gold2: #e8b84b;
  --light: #F7F9FC;
  --grey:  #6B7280;
  --white: #ffffff;
  --black: #111827;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.14);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: var(--black); background: #fff; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── UTILITIES ─────────────────────────────────────── */
.container   { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section     { padding: 88px 0; }
.section-alt { background: var(--light); }
.tag         { display: inline-block; font-size: 0.78rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.5rem); font-weight: 800; color: var(--navy); line-height: 1.2; margin-bottom: 16px; }
.section-sub   { font-size: 1.05rem; color: var(--grey); line-height: 1.7; max-width: 560px; }
.gold-line     { width: 48px; height: 4px; background: var(--gold); border-radius: 2px; margin: 16px 0 28px; }
.text-white    { color: #fff !important; }
.text-center   { text-align: center; }

/* Buttons */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: var(--navy);
  padding: 15px 30px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--navy);
  padding: 14px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid var(--navy); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline:hover { background: var(--navy); color: #fff; }
.btn-outline-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 28px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5); cursor: pointer;
  transition: all 0.2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--navy);
  padding: 15px 30px; border-radius: 6px;
  font-weight: 700; font-size: 0.95rem;
  border: none; cursor: pointer;
  transition: background 0.2s;
}
.btn-white:hover { background: #f0f4f8; }

/* Grids */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ── NAVIGATION ─────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(18,39,64,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.3); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; }
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { height: 38px; width: auto; }
.logo-icon {
  width: 38px; height: 38px; background: var(--gold); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.1rem; color: var(--navy); flex-shrink: 0;
}
.logo-text { font-size: 1.18rem; font-weight: 800; color: #fff; line-height: 1.1; letter-spacing: 0.3px; }
.logo-sub  { font-size: 0.66rem; color: rgba(255,255,255,0.45); font-weight: 400; letter-spacing: 0.5px; }
.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.75); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 6px;
  transition: color 0.15s, background 0.15s;
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.08); }
.nav-links a.active { color: var(--gold); }
.nav-cta { margin-left: 10px; padding: 9px 20px !important; background: var(--gold) !important; color: var(--navy) !important; font-weight: 700 !important; border-radius: 6px !important; }
.nav-cta:hover { background: var(--gold2) !important; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; }
.hamburger span { width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.mobile-menu {
  display: none; flex-direction: column;
  background: var(--navy2); padding: 12px 24px 20px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu a {
  color: rgba(255,255,255,0.8); font-size: 1rem; font-weight: 500;
  padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a.active { color: var(--gold); }

/* ── TRUST BAR ──────────────────────────────────────── */
.trust-bar { background: var(--navy); padding: 18px 0; }
.trust-inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 10px; color: rgba(255,255,255,0.75); font-size: 0.88rem; font-weight: 500; }
.trust-icon { font-size: 1.1rem; }

/* ── PAGE HERO (inner pages) ────────────────────────── */
.page-hero {
  padding: 140px 0 80px;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 100%);
  position: relative; overflow: hidden;
}
.page-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'%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");
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-breadcrumb { font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-hero-breadcrumb a { color: var(--gold); }
.page-hero-breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: #fff; line-height: 1.15; margin-bottom: 16px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { font-size: 1.05rem; color: rgba(255,255,255,0.75); line-height: 1.7; max-width: 580px; }

/* ── STEPS (how it works) ───────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.steps::before {
  content: ''; position: absolute;
  top: 36px; left: calc(100%/6); right: calc(100%/6);
  height: 2px; background: var(--gold); opacity: 0.25;
}
.step { text-align: center; padding: 0 24px; transition: transform 0.22s; }
.step:hover { transform: translateY(-4px); }
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), #2a5a8c);
  color: #fff; font-size: 1.4rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; box-shadow: 0 4px 16px rgba(27,58,92,0.3);
  position: relative; z-index: 1;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p  { font-size: 0.9rem; color: var(--grey); line-height: 1.6; }

/* ── PROPERTY CARDS ─────────────────────────────────── */
.prop-card {
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow); overflow: hidden;
  transition: transform 0.22s, box-shadow 0.22s;
}
.prop-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.prop-img { height: 220px; overflow: hidden; position: relative; }
.prop-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.45s ease; }
.prop-card:hover .prop-img img { transform: scale(1.07); }
.prop-img-overlay { position: absolute; inset: 0; background: linear-gradient(135deg,rgba(18,39,64,0.25),transparent); }
.coming-soon-overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; background: rgba(18,39,64,0.55); gap: 8px; }
.coming-soon-overlay span:first-child { font-size: 2rem; }
.coming-soon-overlay span:last-child { font-size: 0.88rem; color: rgba(255,255,255,0.8); font-weight: 600; letter-spacing: 0.5px; }
.prop-body { padding: 20px; }
.prop-loc  { font-size: 0.8rem; color: var(--gold); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 6px; }
.prop-name { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.prop-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 14px; }
.prop-tag  { background: var(--light); color: var(--grey); font-size: 0.75rem; padding: 4px 10px; border-radius: 12px; }
.prop-footer { display: flex; align-items: center; justify-content: space-between; }
.prop-price { font-size: 1.2rem; font-weight: 800; color: var(--navy); }
.prop-price span { font-size: 0.8rem; font-weight: 400; color: var(--grey); }
.prop-btn { background: var(--navy); color: #fff; padding: 9px 20px; border-radius: 6px; font-size: 0.85rem; font-weight: 600; transition: background 0.2s; cursor: pointer; border: none; display: inline-block; }
.prop-btn:hover { background: var(--gold); color: var(--navy); }

/* ── CAROUSEL ───────────────────────────────────────── */
.carousel-wrap { position: relative; border-radius: 14px; overflow: hidden; box-shadow: var(--shadow-lg); }
.c-track { display: flex; transition: transform 0.55s cubic-bezier(.4,0,.2,1); will-change: transform; }
.c-slide { min-width: 100%; position: relative; flex-shrink: 0; }
.c-slide img { width: 100%; height: 400px; object-fit: cover; display: block; }
.c-caption { position: absolute; bottom: 0; left: 0; right: 0; padding: 24px 30px; background: linear-gradient(0deg, rgba(18,39,64,0.9) 0%, transparent 100%); }
.c-caption h4 { font-size: 1.1rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.c-caption p  { font-size: 0.85rem; color: rgba(255,255,255,0.72); }
.c-btn { position: absolute; top: 50%; transform: translateY(-50%); width: 46px; height: 46px; border-radius: 50%; background: rgba(255,255,255,0.92); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; box-shadow: 0 2px 12px rgba(0,0,0,0.2); transition: background 0.2s, transform 0.2s; z-index: 3; }
.c-btn:hover { background: #fff; transform: translateY(-50%) scale(1.1); }
.c-prev { left: 14px; } .c-next { right: 14px; }
.c-dots { display: flex; justify-content: center; gap: 8px; padding: 14px 0 4px; }
.c-dot { width: 8px; height: 8px; border-radius: 50%; background: #c0cad6; border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; padding: 0; }
.c-dot.active { background: var(--navy); transform: scale(1.35); }

/* ── WHY CARDS ──────────────────────────────────────── */
.why-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px 24px; border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-icon { font-size: 2rem; margin-bottom: 14px; }
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: 0.88rem; color: var(--grey); line-height: 1.6; }

/* ── REVIEW CARDS ───────────────────────────────────── */
.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 28px; box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.review-stars { color: var(--gold); font-size: 1rem; margin-bottom: 12px; }
.review-text  { font-size: 0.9rem; color: var(--grey); line-height: 1.7; margin-bottom: 18px; font-style: italic; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), #2a5a8c); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 0.9rem; flex-shrink: 0; }
.review-name { font-weight: 700; color: var(--navy); font-size: 0.9rem; }
.review-src  { font-size: 0.78rem; color: var(--grey); }

/* ── VALUE CARDS ────────────────────────────────────── */
.value-card {
  text-align: center; padding: 32px 24px;
  background: #fff; border-radius: var(--radius); box-shadow: var(--shadow);
  transition: transform 0.22s, box-shadow 0.22s;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon { font-size: 2.4rem; margin-bottom: 16px; }
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.value-card p  { font-size: 0.87rem; color: var(--grey); line-height: 1.6; }

/* ── CORPORATE ──────────────────────────────────────── */
.corp-features { display: grid; grid-template-columns: repeat(2,1fr); gap: 16px; margin-top: 32px; }
.corp-feat { display: flex; gap: 14px; align-items: flex-start; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 20px; }
.corp-feat-icon { font-size: 1.6rem; flex-shrink: 0; }
.corp-feat h4 { font-size: 0.92rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.corp-feat p  { font-size: 0.84rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.corp-logo-pill { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 600; padding: 8px 16px; border-radius: 20px; }

/* ── LANDLORD ───────────────────────────────────────── */
.landlord-steps { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.l-step { display: flex; gap: 18px; align-items: flex-start; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--radius); padding: 22px; }
.l-step-num { width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--navy); font-weight: 800; font-size: 1rem; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.l-step h4 { font-size: 0.95rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.l-step p  { font-size: 0.85rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.guarantee-box { background: rgba(200,155,42,0.12); border: 1px solid rgba(200,155,42,0.3); border-radius: var(--radius); padding: 26px; margin-top: 32px; }
.guarantee-box h3 { color: var(--gold); font-size: 1.05rem; margin-bottom: 14px; }
.guarantee-box ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.guarantee-box li { font-size: 0.88rem; color: rgba(255,255,255,0.8); display: flex; gap: 10px; }
.guarantee-box li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }

/* ── FORMS ──────────────────────────────────────────── */
.form-card { background: #fff; border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-lg); }
.form-card h3 { font-size: 1.25rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 16px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 14px; border: 1.5px solid #e5e7eb; border-radius: 6px;
  font-size: 0.9rem; color: var(--black); background: #fff;
  transition: border-color 0.2s; font-family: inherit;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--navy); }
.form-group textarea { resize: vertical; min-height: 90px; }

/* ── FESTIVAL BANNER ────────────────────────────────── */
.festival-banner {
  background: linear-gradient(90deg, var(--navy2), var(--navy));
  border-left: 5px solid var(--gold); padding: 26px 32px;
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}
.festival-banner h3 { color: var(--gold); font-size: 1.1rem; margin-bottom: 5px; }
.festival-banner p  { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.5; }

/* ── CONTACT ────────────────────────────────────────── */
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon-wrap { width: 48px; height: 48px; border-radius: 10px; background: rgba(200,155,42,0.1); border: 1px solid rgba(200,155,42,0.25); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item h4 { font-size: 0.88rem; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
.contact-item p  { font-size: 0.88rem; color: var(--grey); }
.wa-btn { display: inline-flex; align-items: center; gap: 10px; background: #25D366; color: #fff; padding: 14px 24px; border-radius: 8px; font-weight: 700; font-size: 0.95rem; transition: background 0.2s; }
.wa-btn:hover { background: #1ebe57; }
.map-placeholder { width: 100%; height: 220px; border-radius: var(--radius); background: linear-gradient(135deg, var(--light), #dce4ed); display: flex; align-items: center; justify-content: center; font-size: 0.9rem; color: var(--grey); margin-top: 28px; border: 2px dashed #c0cad6; }

/* ── ABOUT ──────────────────────────────────────────── */
.about-img-wrap { border-radius: 16px; overflow: hidden; width: 100%; position: relative; box-shadow: var(--shadow-lg); }
.about-img-wrap img { width: 100%; height: 360px; object-fit: cover; display: block; transition: transform 0.45s ease; }
.about-img-wrap:hover img { transform: scale(1.04); }
.about-badge-strip { position: absolute; bottom: 0; left: 0; right: 0; background: rgba(18,39,64,0.9); backdrop-filter: blur(8px); padding: 18px 22px; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.about-badge-item { text-align: center; }
.about-badge-item strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--gold); }
.about-badge-item span { font-size: 0.72rem; color: rgba(255,255,255,0.6); }

/* ── CTA STRIP ──────────────────────────────────────── */
.cta-strip { background: linear-gradient(135deg, var(--navy2), var(--navy)); padding: 80px 0; text-align: center; }
.cta-strip h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-strip p  { color: rgba(255,255,255,0.7); font-size: 1.05rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ─────────────────────────────────────────── */
footer { background: var(--navy2); padding: 60px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 0.88rem; color: rgba(255,255,255,0.5); line-height: 1.7; margin-top: 14px; }
.footer-col h4 { font-size: 0.82rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 0.88rem; color: rgba(255,255,255,0.5); transition: color 0.15s; }
.footer-col li a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 24px; display: flex; align-items: flex-start; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); }
.footer-reg { font-size: 0.73rem; color: rgba(255,255,255,0.22); max-width: 540px; line-height: 1.5; }

/* ── WHATSAPP FLOAT ─────────────────────────────────── */
.wa-float { position: fixed; bottom: 26px; right: 26px; z-index: 200; width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s, box-shadow 0.2s; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ── SCROLL ANIMATIONS ──────────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }
.d1 { transition-delay: 0.1s; }
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.3s; }
.d4 { transition-delay: 0.4s; }

/* ── RESPONSIVE ─────────────────────────────────────── */
@media (max-width: 900px) {
  .grid-2 { grid-template-columns: 1fr; gap: 32px; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .steps::before { display: none; }
  .steps { grid-template-columns: 1fr; gap: 28px; }
  .corp-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .section { padding: 60px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-actions { flex-direction: column; align-items: center; }
  .c-slide img { height: 260px; }
  .page-hero { padding: 120px 0 60px; }
}
