/* ============================================================
   caprate.ca — Complete New Stylesheet (style-cr.css)
   Navy #0a2540 · Gold #c9a961 · Playfair Display + Inter
   ============================================================ */

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

/* ── VARIABLES ── */
:root {
  --navy:       #0a2540;
  --navy-mid:   #163558;
  --navy-deep:  #07192e;
  --gold:       #c9a961;
  --gold-dark:  #a8873a;
  --gold-light: #e0c98a;
  --white:      #ffffff;
  --off-white:  #fafaf7;
  --cream:      #f5f2ea;
  --section-alt:#f0ede6;
  --charcoal:   #1a1a1a;
  --dark-grey:  #333333;
  --mid-grey:   #666666;
  --soft-grey:  #e0ddd6;
  --light-grey: #f4f3f0;
  --green:      #25D366;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition: 0.3s ease;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 14px;

  --shadow-xs: 0 1px 4px rgba(10,37,64,.06);
  --shadow-sm: 0 2px 14px rgba(10,37,64,.08);
  --shadow-md: 0 6px 28px rgba(10,37,64,.12);
  --shadow-lg: 0 16px 52px rgba(10,37,64,.17);
  --shadow-xl: 0 28px 72px rgba(10,37,64,.22);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-sans); color: var(--charcoal); background: var(--off-white); line-height: 1.72; overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
h1,h2,h3,h4,h5 { font-family: var(--font-serif); color: var(--navy); line-height: 1.18; }
p { color: var(--dark-grey); }
input, select, textarea { font-family: var(--font-sans); }

/* ── LAYOUT ── */
.cr-wrap { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.sec-pad { padding: 96px 0; }
.sec-pad-sm { padding: 64px 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; 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: 20px; }
.section-cream { background: var(--cream); }
.section-alt   { background: var(--section-alt); }
.section-navy  { background: var(--navy); }
.section-deep  { background: var(--navy-deep); }

/* ── TYPOGRAPHY HELPERS ── */
.tagline {
  display: block;
  font-family: var(--font-sans);
  font-size: 10.5px; font-weight: 700;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.tagline.centered { text-align: center; }
.section-heading {
  font-size: clamp(28px, 4vw, 46px); font-weight: 700;
  margin-bottom: 14px; color: var(--navy);
}
.section-heading::after {
  content: ''; display: block; width: 52px; height: 3px;
  background: var(--gold); margin-top: 16px; border-radius: 2px;
}
.section-heading.centered { text-align: center; }
.section-heading.centered::after { margin: 16px auto 0; }
.section-heading.white { color: var(--white); }
.section-heading.white::after { background: var(--gold); }
.section-sub { font-size: 16px; font-weight: 300; color: var(--mid-grey); line-height: 1.8; max-width: 580px; }
.section-sub.centered { text-align: center; margin: 0 auto; }
.section-sub.white { color: rgba(255,255,255,.72); }
.text-gold { color: var(--gold); }

/* ── BUTTONS ── */
.cr-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 14px 32px; border-radius: var(--radius);
  font-family: var(--font-sans); font-size: 11.5px;
  font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase;
  text-decoration: none; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.cr-btn-gold  { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.cr-btn-gold:hover  { background: transparent; color: var(--gold); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,169,97,.28); }
.cr-btn-navy  { background: var(--navy); color: var(--white); border-color: var(--navy); }
.cr-btn-navy:hover  { background: transparent; color: var(--navy); transform: translateY(-2px); }
.cr-btn-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.cr-btn-white:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.cr-btn-outline { background: transparent; color: var(--navy); border-color: var(--navy); }
.cr-btn-outline:hover { background: var(--navy); color: var(--white); transform: translateY(-2px); }
.cr-btn-sm  { padding: 10px 22px; font-size: 10.5px; letter-spacing: 1.4px; }
.cr-btn-lg  { padding: 17px 42px; font-size: 12.5px; }
.cr-btn-full { width: 100%; }
.btn-group  { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── NAVBAR ── */
.cr-navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: var(--navy);
  transition: background var(--transition), box-shadow var(--transition);
}
.cr-navbar.scrolled {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 2px 28px rgba(10,37,64,.12);
}
/* Row 1 */
.cr-nav-row1 {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; gap: 20px; padding: 0 28px;
  max-width: 1240px; margin: 0 auto;
}
.cr-nav-logo { flex-shrink: 0; display: flex; align-items: center; }
.cr-nav-logo img { height: 42px; width: auto; }
.logo-light { display: block; }
.logo-dark  { display: none; }
.cr-navbar.scrolled .logo-light { display: none; }
.cr-navbar.scrolled .logo-dark  { display: block; }
.cr-nav-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.cr-nav-phone {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.3px;
  color: rgba(255,255,255,.82); white-space: nowrap;
  transition: color var(--transition);
}
.cr-nav-phone svg { color: var(--gold); flex-shrink: 0; }
.cr-nav-phone:hover { color: var(--gold); }
.cr-navbar.scrolled .cr-nav-phone { color: var(--navy); }
.cr-navbar.scrolled .cr-nav-phone:hover { color: var(--gold); }
/* Row 2 */
.cr-nav-row2 {
  border-top: 1px solid rgba(255,255,255,.10);
  height: 44px; display: flex; align-items: stretch; justify-content: center;
}
.cr-navbar.scrolled .cr-nav-row2 { border-top-color: rgba(10,37,64,.08); }
.cr-nav-inner2 { max-width: 1240px; width: 100%; margin: 0 auto; padding: 0 28px; display: flex; align-items: stretch; }
.cr-nav-menu { display: flex; align-items: stretch; gap: 0; list-style: none; height: 100%; }
.cr-nav-item { position: relative; display: flex; align-items: center; }
.cr-nav-link {
  display: flex; align-items: center; gap: 4px;
  padding: 0 11px; height: 100%;
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.1px;
  text-transform: uppercase; color: rgba(255,255,255,.85);
  transition: color var(--transition); white-space: nowrap; cursor: pointer;
  position: relative; border: none; background: none; font-family: var(--font-sans);
}
.cr-navbar.scrolled .cr-nav-link { color: var(--navy); }
.cr-nav-link:hover, .cr-nav-link.active { color: var(--gold); }
.cr-nav-item:hover > .cr-nav-link::after {
  content: ''; position: absolute; bottom: 0; left: 11px; right: 11px;
  height: 2px; background: var(--gold); border-radius: 2px 2px 0 0;
}
.cr-nav-chev { width: 10px; height: 10px; flex-shrink: 0; transition: transform var(--transition); }
.cr-nav-item:hover .cr-nav-chev { transform: rotate(180deg); }

/* Simple dropdown */
.cr-dropdown {
  position: absolute; top: 100%; left: 0; min-width: 210px;
  background: var(--white); border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: all var(--transition); z-index: 200;
}
.cr-nav-item:hover .cr-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.cr-dropdown a { display: block; padding: 11px 20px; font-size: 13px; color: var(--charcoal); border-bottom: 1px solid var(--soft-grey); transition: all var(--transition); }
.cr-dropdown a:last-child { border-bottom: none; }
.cr-dropdown a:hover { color: var(--gold); padding-left: 26px; background: var(--off-white); }

/* Mega menu */
.cr-has-mega { position: relative; }
.cr-mega {
  position: absolute; top: 100%; left: 0; min-width: 480px;
  background: var(--white); border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-xl); display: flex;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all var(--transition); z-index: 200; overflow: hidden;
}
.cr-nav-item:hover .cr-mega { opacity: 1; visibility: visible; transform: translateY(0); }
.cr-mega-col { flex: 1; padding: 26px 22px; }
.cr-mega-col + .cr-mega-col { border-left: 1px solid var(--soft-grey); }
.cr-mega-head {
  font-size: 9.5px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 14px; padding-bottom: 10px;
  border-bottom: 1px solid var(--soft-grey);
  font-family: var(--font-sans);
}
.cr-mega-link {
  display: block; padding: 8px 0; font-size: 13px; color: var(--dark-grey);
  border-bottom: 1px solid rgba(0,0,0,.04); transition: all var(--transition);
}
.cr-mega-link:last-child { border-bottom: none; }
.cr-mega-link:hover { color: var(--gold); padding-left: 8px; }

/* Hamburger */
.cr-hamburger { display: none; flex-direction: column; gap: 5px; padding: 7px; }
.cr-hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: all var(--transition); }
.cr-navbar.scrolled .cr-hamburger span { background: var(--navy); }
.cr-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.cr-hamburger.open span:nth-child(2) { opacity: 0; }
.cr-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav overlay */
.cr-mob-nav {
  position: fixed; inset: 0; background: var(--navy); z-index: 999;
  display: flex; flex-direction: column;
  opacity: 0; visibility: hidden;
  transition: opacity var(--transition), visibility var(--transition);
  overflow-y: auto;
}
.cr-mob-nav.open { opacity: 1; visibility: visible; }
.cr-mob-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px; border-bottom: 1px solid rgba(255,255,255,.08);
  flex-shrink: 0; position: sticky; top: 0; background: var(--navy); z-index: 1;
}
.cr-mob-logo img { height: 34px; }
.cr-mob-close { color: var(--white); padding: 6px; }
.cr-mob-body { padding: 4px 0 40px; }
.cr-mob-link {
  display: block; font-family: var(--font-serif); font-size: 20px;
  color: rgba(255,255,255,.9); padding: 14px 28px;
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color var(--transition), background var(--transition);
}
.cr-mob-link:hover { color: var(--gold); background: rgba(255,255,255,.03); }
.cr-mob-section { border-bottom: 1px solid rgba(255,255,255,.06); }
.cr-mob-sec-btn {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 14px 28px; font-family: var(--font-serif); font-size: 20px;
  color: rgba(255,255,255,.9); background: none; border: none; cursor: pointer;
  text-align: left; transition: color var(--transition), background var(--transition);
}
.cr-mob-sec-btn:hover { color: var(--gold); background: rgba(255,255,255,.03); }
.cr-mob-chev { width: 16px; height: 16px; transition: transform var(--transition); flex-shrink: 0; }
.cr-mob-section.open .cr-mob-chev { transform: rotate(180deg); }
.cr-mob-sec-body { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; background: rgba(0,0,0,.18); }
.cr-mob-section.open .cr-mob-sec-body { max-height: 700px; }
.cr-mob-sec-body a {
  display: block; padding: 10px 28px 10px 42px; font-size: 14px;
  color: rgba(255,255,255,.6); border-bottom: 1px solid rgba(255,255,255,.04);
  transition: color var(--transition);
}
.cr-mob-sec-body a:last-child { border-bottom: none; }
.cr-mob-sec-body a:hover { color: var(--gold); }
.cr-mob-cta { padding: 24px 28px; display: flex; flex-direction: column; gap: 12px; border-top: 1px solid rgba(255,255,255,.08); }
.cr-mob-phone {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  color: rgba(255,255,255,.65); font-size: 15px; font-weight: 500;
  padding: 13px; border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius); transition: all var(--transition);
}
.cr-mob-phone:hover { color: var(--gold); border-color: var(--gold); }

/* ── HERO ── */
.cr-hero {
  position: relative; min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center; overflow: hidden;
}
.cr-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center; z-index: 0;
}
.cr-hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to bottom, rgba(0,0,0,.52) 0%, rgba(0,0,0,.60) 50%, rgba(0,0,0,.82) 100%);
}
.cr-hero-content {
  position: relative; z-index: 2;
  padding: 140px 0 80px; text-align: center;
  max-width: 1240px; margin: 0 auto; padding-left: 28px; padding-right: 28px;
}
.cr-hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,97,.15); border: 1px solid rgba(201,169,97,.4);
  color: var(--gold-light); font-size: 11px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 30px; margin-bottom: 24px;
}
.cr-hero-content h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  color: var(--white); line-height: 1.1; margin-bottom: 1.25rem;
  max-width: 820px; margin-left: auto; margin-right: auto;
}
.cr-hero-content h1 em { color: var(--gold); font-style: italic; }
.cr-hero-sub {
  font-size: 16px; font-weight: 300; color: rgba(255,255,255,.78);
  max-width: 620px; margin: 0 auto 2.5rem; line-height: 1.8;
}
.cr-hero-search {
  background: rgba(10,37,64,.92); backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,169,97,.3);
  position: relative; z-index: 2; margin-top: auto;
}
.cr-hero-form {
  display: flex; flex-wrap: wrap; gap: 14px; align-items: flex-end;
  padding: 22px 0; max-width: 1240px; margin: 0 auto; padding-left: 28px; padding-right: 28px;
}
.cr-hero-field { flex: 1; min-width: 150px; }
.cr-hero-field label { display: block; color: rgba(255,255,255,.6); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 7px; }
.cr-hero-field select, .cr-hero-field input {
  width: 100%; padding: 10px 14px;
  border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.07);
  color: var(--white); border-radius: 6px; font-size: 14px; cursor: pointer;
  font-family: var(--font-sans);
}
.cr-hero-field select option { background: var(--navy); color: var(--white); }

/* ── STATS BAR ── */
.cr-stats { background: var(--navy); padding: 52px 0; }
.cr-stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.cr-stat { text-align: center; padding: 12px 20px; border-right: 1px solid rgba(255,255,255,.09); }
.cr-stat:last-child { border-right: none; }
.cr-stat-num { font-family: var(--font-serif); font-size: 40px; color: var(--gold); font-weight: 700; margin-bottom: 6px; line-height: 1; }
.cr-stat-lbl { font-size: 11px; color: rgba(255,255,255,.58); letter-spacing: 1.8px; text-transform: uppercase; }

/* ── SERVICE CARDS ── */
.cr-service-card {
  background: var(--white); border-radius: var(--radius-lg);
  border-top: 4px solid transparent; box-shadow: var(--shadow-sm);
  transition: all var(--transition); text-decoration: none; display: block;
  overflow: hidden;
}
.cr-service-card:hover { border-top-color: var(--gold); transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cr-service-img { height: 180px; background-size: cover; background-position: center; }
.cr-service-body { padding: 28px; }
.cr-service-icon {
  width: 52px; height: 52px; background: rgba(201,169,97,.10);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin-bottom: 16px; transition: all var(--transition);
}
.cr-service-card:hover .cr-service-icon { background: var(--gold); color: var(--navy); }
.cr-service-body h3 { font-size: 19px; margin-bottom: 10px; color: var(--navy); }
.cr-service-body p { font-size: 13.5px; color: var(--mid-grey); line-height: 1.7; margin-bottom: 18px; }

/* ── PROPERTY TYPE GRID ── */
.cr-prop-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/2; display: block;
  text-decoration: none; box-shadow: var(--shadow-sm);
}
.cr-prop-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transition: transform .55s ease; }
.cr-prop-card:hover .cr-prop-bg { transform: scale(1.06); }
.cr-prop-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,37,64,.88) 0%, rgba(10,37,64,.08) 60%); }
.cr-prop-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.cr-prop-info h3 { font-size: 17px; color: var(--white); margin-bottom: 3px; }
.cr-prop-info p { font-size: 11.5px; color: rgba(255,255,255,.65); }
.cr-prop-tag {
  display: inline-block; padding: 4px 12px;
  background: rgba(201,169,97,.15); border: 1px solid rgba(201,169,97,.4);
  color: var(--gold); font-size: 9.5px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  border-radius: 20px; margin-bottom: 8px;
}

/* ── PROCESS STEPS ── */
.cr-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 32px; margin-top: 52px; }
.cr-step { text-align: center; padding: 36px 28px; background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); position: relative; transition: all var(--transition); }
.cr-step:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.cr-step-num {
  font-family: var(--font-serif); font-size: 54px; font-weight: 700;
  color: rgba(201,169,97,.18); line-height: 1; margin-bottom: -16px;
}
.cr-step-icon {
  width: 56px; height: 56px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--gold); position: relative; z-index: 1;
}
.cr-step h4 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.cr-step p { font-size: 13.5px; color: var(--mid-grey); line-height: 1.7; }

/* ── SAVINGS CALCULATOR ── */
.cr-calc {
  background: var(--navy-deep); padding: 96px 0;
}
.cr-calc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.cr-calc-box {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); padding: 40px;
}
.cr-calc-box label { display: block; color: rgba(255,255,255,.6); font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 12px; }
.cr-slider {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 5px; border-radius: 3px;
  background: linear-gradient(to right, var(--gold) 50%, rgba(255,255,255,.2) 50%);
  outline: none; cursor: pointer; margin-bottom: 8px;
}
.cr-slider::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--gold); cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.3);
}
.cr-calc-val { font-family: var(--font-serif); font-size: 36px; color: var(--gold); font-weight: 700; margin-bottom: 4px; }
.cr-calc-lbl { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: 1px; text-transform: uppercase; }
.cr-savings-box {
  background: rgba(201,169,97,.12); border: 1px solid rgba(201,169,97,.3);
  border-radius: var(--radius); padding: 20px; margin-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
}
.cr-savings-box .cr-savings-lbl { font-size: 11px; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: 1.5px; }
.cr-savings-num { font-family: var(--font-serif); font-size: 28px; color: var(--gold); font-weight: 700; }

/* ── TESTIMONIALS ── */
.cr-testi {
  background: var(--white); border-radius: var(--radius-lg); padding: 32px 28px;
  box-shadow: var(--shadow-sm); border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.cr-testi:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.cr-testi-stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.cr-testi-text { font-size: 14.5px; font-style: italic; color: var(--dark-grey); line-height: 1.8; margin-bottom: 20px; }
.cr-testi-author { display: flex; align-items: center; gap: 12px; }
.cr-testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-size: 16px; color: var(--gold);
  font-weight: 700; flex-shrink: 0;
}
.cr-testi-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.cr-testi-loc { font-size: 12px; color: var(--mid-grey); }

/* ── CTA SECTION ── */
.cr-cta {
  background: linear-gradient(145deg, var(--navy-deep), var(--navy)); padding: 96px 0; text-align: center;
}
.cr-cta::before { content:''; display:block; width:80px; height:3px; background:var(--gold); margin:0 auto 36px; border-radius:2px; }
.cr-cta h2 { color: var(--white); margin-bottom: 14px; }
.cr-cta p { color: rgba(255,255,255,.72); max-width: 560px; margin: 0 auto 2.5rem; font-size: 16px; }

/* ── FORMS ── */
.cr-form-wrap {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px; box-shadow: var(--shadow-lg);
}
.cr-form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cr-form-group { display: flex; flex-direction: column; gap: 7px; }
.cr-form-group.span2 { grid-column: 1 / -1; }
.cr-form-group label {
  font-size: 10.5px; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; color: var(--navy);
}
.cr-form-group input,
.cr-form-group select,
.cr-form-group textarea {
  padding: 12px 16px; border: 1.5px solid var(--soft-grey);
  border-radius: var(--radius); font-size: 14px; font-size: max(14px, 16px);
  background: var(--off-white); color: var(--charcoal); outline: none;
  transition: border-color var(--transition), background var(--transition);
  font-family: var(--font-sans);
}
.cr-form-group input:focus,
.cr-form-group select:focus,
.cr-form-group textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,169,97,.12);
}
.cr-form-group textarea { resize: vertical; min-height: 120px; }
.cr-form-note { font-size: 11.5px; color: var(--mid-grey); margin-top: 10px; text-align: center; }

/* ── FEATURE LIST ── */
.cr-features { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.cr-feature { display: flex; align-items: flex-start; gap: 14px; }
.cr-feature-check {
  flex-shrink: 0; width: 24px; height: 24px; background: var(--gold);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.cr-feature h4 { font-size: 14px; font-family: var(--font-sans); color: var(--white); margin-bottom: 2px; font-weight: 600; }
.cr-feature p { font-size: 13px; color: rgba(255,255,255,.65); }

/* ── FOOTER ── */
.cr-footer { background: var(--navy-deep); color: var(--white); padding: 72px 0 0; }
.cr-footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 52px; border-bottom: 1px solid rgba(255,255,255,.07); }
.cr-footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.55); line-height: 1.8; margin: 18px 0 22px; max-width: 280px; }
.cr-footer-contact { display: flex; flex-direction: column; gap: 8px; }
.cr-footer-contact a { font-size: 13px; color: rgba(255,255,255,.6); transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.cr-footer-contact a:hover { color: var(--gold); }
.cr-footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-family: var(--font-sans); }
.cr-footer-links { display: flex; flex-direction: column; gap: 10px; }
.cr-footer-links a { font-size: 13px; color: rgba(255,255,255,.55); transition: all var(--transition); }
.cr-footer-links a:hover { color: var(--gold); padding-left: 5px; }
.cr-footer-bottom { display: flex; align-items: center; justify-content: space-between; padding: 22px 0; flex-wrap: wrap; gap: 12px; }
.cr-footer-bottom p { font-size: 11.5px; color: rgba(255,255,255,.28); }
.cr-footer-legal { display: flex; gap: 20px; }
.cr-footer-legal a { font-size: 11.5px; color: rgba(255,255,255,.28); transition: color var(--transition); }
.cr-footer-legal a:hover { color: var(--gold); }
.cr-social { display: flex; gap: 10px; margin-top: 16px; }
.cr-social-btn {
  width: 36px; height: 36px; background: rgba(255,255,255,.07);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55); transition: all var(--transition);
}
.cr-social-btn:hover { background: var(--gold); color: var(--navy); }

/* ── FLOATING BUTTONS ── */
.cr-float-btns { position: fixed; bottom: 28px; right: 24px; z-index: 900; display: flex; flex-direction: column; gap: 10px; align-items: flex-end; }
.cr-float-btn {
  display: flex; align-items: center; gap: 9px;
  padding: 11px 20px; border-radius: 50px; font-size: 13px; font-weight: 600;
  text-decoration: none; box-shadow: var(--shadow-lg); transition: all var(--transition);
  font-family: var(--font-sans);
}
.cr-float-btn:hover { transform: translateX(-4px); box-shadow: var(--shadow-xl); }
.cr-float-wa   { background: var(--green); color: var(--white); }
.cr-float-call { background: var(--gold); color: var(--navy); }
.cr-back-top {
  position: fixed; bottom: 130px; right: 26px;
  width: 42px; height: 42px; background: var(--navy); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); box-shadow: var(--shadow-md); cursor: pointer;
  border: none; opacity: 0; transform: translateY(10px);
  transition: all var(--transition); z-index: 899;
}
.cr-back-top.visible { opacity: 1; transform: translateY(0); }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }

/* ── MISC ── */
.trust-strip { background: var(--navy); padding: 18px 0; border-bottom: 1px solid rgba(255,255,255,.06); }
.trust-inner { display: flex; align-items: center; justify-content: center; gap: 40px; flex-wrap: wrap; }
.trust-item { display: flex; align-items: center; gap: 9px; color: rgba(255,255,255,.65); font-size: 12.5px; font-weight: 500; letter-spacing: .3px; }
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.cr-section-label { font-size: .77rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; display: block; }

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
  .cr-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .cr-footer-grid .cr-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cr-stats-grid { grid-template-columns: 1fr 1fr; }
  .cr-stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.09); padding: 20px; }
  .cr-stat:nth-child(even) { }
  .cr-steps { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .cr-calc-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .cr-nav-menu { display: none; }
  .cr-hamburger { display: flex; }
  .cr-nav-phone { display: none; }
  .cr-nav-row2 { display: none; }
  .cr-hero-content { padding-top: 110px; }
  .grid-2 { grid-template-columns: 1fr; gap: 40px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .cr-wrap { padding: 0 18px; }
  .sec-pad { padding: 64px 0; }
  .cr-form-grid { grid-template-columns: 1fr; }
  .cr-form-group.span2 { grid-column: 1; }
  .cr-footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cr-float-btn span { display: none; }
  .cr-float-btn { padding: 14px; width: 50px; height: 50px; border-radius: 50%; justify-content: center; }
  .cr-float-btns { bottom: 20px; right: 16px; gap: 10px; }
  .cr-back-top { bottom: 152px; right: 18px; width: 40px; height: 40px; }
  .cr-hero-form { flex-direction: column; }
  .cr-hero-field { min-width: unset; }
  .trust-inner { gap: 20px; }
  .cr-form-wrap { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .cr-stats-grid { grid-template-columns: 1fr 1fr; }
  .btn-group { flex-direction: column; }
  .cr-hero-content h1 { font-size: clamp(1.9rem, 7vw, 2.6rem); }
}

@supports (padding: env(safe-area-inset-bottom)) {
  .cr-float-btns { bottom: calc(20px + env(safe-area-inset-bottom)); }
  .cr-back-top   { bottom: calc(152px + env(safe-area-inset-bottom)); }
}
