.elementor-8576 .elementor-element.elementor-element-49e7d17{--display:flex;}/* Start custom CSS for html, class: .elementor-element-23905c0 *//* ─── CSS VARIABLES ─────────────────────────────── */
:root {
  --white:    #FFFFFF;
  --beige:    #F5F0E8;
  --beige2:   #EDE6D6;
  --navy:     #0F1F3D;
  --navy2:    #1A3358;
  --gold:     #C9A84C;
  --gold2:    #E8C96A;
  --text:     #2C2C2C;
  --muted:    #6B6B6B;
  --border:   #DDD4C0;
  --font-h:   'Cormorant Garamond', serif;
  --font-b:   'DM Sans', sans-serif;
  --radius:   4px;
  --shadow:   0 8px 40px rgba(15,31,61,0.10);
  --shadow2:  0 2px 12px rgba(15,31,61,0.07);
}

/* ─── RESET ─────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-b);
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── UTILITY ────────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section   { padding: 96px 0; }
.section-sm{ padding: 64px 0; }
.tag {
  display: inline-block;
  font-family: var(--font-b);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-h);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 600;
  color: var(--navy);
  line-height: 1.15;
  margin-bottom: 20px;
}
.section-sub {
  font-size: 17px;
  color: var(--muted);
  max-width: 560px;
  line-height: 1.8;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 16px 32px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.35);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 14px 30px;
  border: 2px solid var(--navy);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 18px 40px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s ease;
  white-space: nowrap;
}
.btn-gold:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,168,76,.45);
}

/* ─── HEADER / NAV ───────────────────────────────── */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s;
}
.header.scrolled { box-shadow: var(--shadow2); }
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-h);
  font-size: 26px;
  font-weight: 700;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo span { color: var(--gold); }
.logo-icon {
  width: 36px; height: 36px;
  background: #0F1F3D;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.logo-icon svg { width: 20px; height: 20px; fill: #C9A84C !important; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: .5px;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.nav-links a:hover::after { transform: scaleX(1); }
.nav-links a:hover { color: var(--gold); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.hamburger span {
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s;
}

/* ─── HERO ───────────────────────────────────────── */
.hero {
  padding-top: 72px;
  min-height: 100vh;
  background: var(--navy);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero::after {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  color: var(--gold);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 40px;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100%{ opacity:1; transform:scale(1); }
  50%{ opacity:.5; transform:scale(1.5); }
}
.hero-title {
  font-family: var(--font-h);
  font-size: clamp(38px, 5vw, 66px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,.7);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.btn-hero-primary {
  background: var(--gold);
  color: var(--navy);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 700;
  padding: 18px 36px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-primary:hover {
  background: var(--gold2);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201,168,76,.4);
}
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  font-family: var(--font-b);
  font-size: 14px;
  font-weight: 600;
  padding: 16px 34px;
  border: 2px solid rgba(255,255,255,.3);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all .3s;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.btn-hero-outline:hover {
  border-color: var(--white);
  background: rgba(255,255,255,.05);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 40px;
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 36px;
}
.hero-stat-num {
  font-family: var(--font-h);
  font-size: 36px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-weight: 400;
}
.hero-card {
  background: var(--white);
  border-radius: 8px;
  padding: 40px;
  box-shadow: 0 32px 80px rgba(0,0,0,.3);
  position: relative;
}
.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 40px; right: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
  border-radius: 0 0 4px 4px;
}
.hero-card-title {
  font-family: var(--font-h);
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-card-sub {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 28px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 8px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 15px;
  color: var(--text);
  background: var(--beige);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: var(--white);
}
.form-btn {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-b);
  font-size: 15px;
  font-weight: 700;
  padding: 18px;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  letter-spacing: 1px;
  transition: all .3s;
  margin-top: 8px;
}
.form-btn:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}
.form-note {
  text-align: center;
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
}
.form-note span { color: var(--gold); }

/* ─── PROBLEM SECTION ───────────────────────────── */
.problem { background: var(--navy); }
.problem .section-title { color: var(--white); }
.problem-intro { text-align: center; max-width: 600px; margin: 0 auto 64px; }
.problem-intro .section-sub { color: rgba(255,255,255,.6); margin: 0 auto; }
.problem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 56px;
}
.problem-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all .3s;
}
.problem-card:hover {
  background: rgba(201,168,76,.07);
  border-color: rgba(201,168,76,.25);
  transform: translateY(-4px);
}
.problem-card-icon {
  width: 52px; height: 52px;
  background: rgba(201,168,76,.12);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 22px;
}
.problem-card h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 16px;
}
.problem-list li {
  font-size: 14px;
  color: rgba(255,255,255,.6);
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,.05);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.problem-list li::before {
  content: '✗';
  color: #E05A5A;
  font-size: 13px;
  flex-shrink: 0;
  margin-top: 1px;
}
.problem-verdict {
  text-align: center;
  background: linear-gradient(135deg, rgba(201,168,76,.12), rgba(201,168,76,.05));
  border: 1px solid rgba(201,168,76,.2);
  border-radius: 8px;
  padding: 40px;
}
.problem-verdict p {
  font-family: var(--font-h);
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 600;
  color: var(--white);
  line-height: 1.4;
}
.problem-verdict p span { color: var(--gold); font-style: italic; }

/* ─── WHY CONSULT ────────────────────────────────── */
.why { background: var(--beige); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-visual { position: relative; }
.why-visual-inner {
  background: var(--navy);
  border-radius: 8px;
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.floor-plan-svg { width: 80%; opacity: .85; }
.why-visual-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 6px;
  padding: 18px 24px;
  font-family: var(--font-h);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  box-shadow: var(--shadow);
}
.why-visual-badge strong { display: block; font-size: 32px; line-height: 1; }
.why-benefits { margin-top: 32px; }
.why-benefit {
  display: flex;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.why-benefit:last-child { border-bottom: none; }
.benefit-check {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
}
.benefit-text h4 {
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 4px;
}
.benefit-text p { font-size: 14px; color: var(--muted); }

/* ─── SERVICES ───────────────────────────────────── */
.services { background: var(--white); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-sub { margin: 0 auto; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  padding: 36px 28px;
  transition: all .35s ease;
  position: relative;
  overflow: hidden;
  background: var(--white);
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--navy);
  transform: translateY(100%);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
  z-index: 0;
}
.service-card:hover::before { transform: translateY(0); }
.service-card:hover { border-color: var(--navy); }
.service-card * { position: relative; z-index: 1; }
.service-icon {
  width: 56px; height: 56px;
  background: var(--beige);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  transition: background .3s;
}
.service-card:hover .service-icon { background: rgba(201,168,76,.2); }
.service-card h3 {
  font-family: var(--font-h);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  transition: color .3s;
}
.service-card:hover h3 { color: var(--white); }
.service-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  transition: color .3s;
}
.service-card:hover p { color: rgba(255,255,255,.65); }
.service-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: .5px;
  transition: gap .2s;
}
.service-card:hover .service-arrow { gap: 14px; }

/* ─── MISTAKES ───────────────────────────────────── */
.mistakes { background: var(--beige2); }
.mistakes-header { text-align: center; margin-bottom: 64px; }
.mistakes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.mistake-item {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: 8px;
  padding: 28px;
  border-left: 4px solid #E05A5A;
  box-shadow: var(--shadow2);
  transition: transform .2s;
}
.mistake-item:hover { transform: translateX(4px); }
.mistake-num {
  font-family: var(--font-h);
  font-size: 40px;
  font-weight: 700;
  color: rgba(224,90,90,.15);
  line-height: 1;
  flex-shrink: 0;
  min-width: 48px;
}
.mistake-item h4 {
  font-family: var(--font-h);
  font-size: 19px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 6px;
}
.mistake-item p { font-size: 14px; color: var(--muted); line-height: 1.6; }

/* ─── PROCESS ────────────────────────────────────── */
.process { background: var(--navy); }
.process .section-title { color: var(--white); }
.process-header { text-align: center; margin-bottom: 72px; }
.process-header .section-sub { color: rgba(255,255,255,.6); margin: 0 auto; }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;
  left: 12.5%; right: 12.5%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(201,168,76,.2) 50%, var(--gold));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; padding: 0 24px; }
.process-step-circle {
  width: 88px; height: 88px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  background: var(--navy);
  position: relative;
  transition: all .3s;
}
.process-step:hover .process-step-circle { background: var(--gold); }
.process-step-circle span {
  font-family: var(--font-h);
  font-size: 32px;
  font-weight: 700;
  color: var(--gold);
  transition: color .3s;
}
.process-step:hover .process-step-circle span { color: var(--navy); }
.process-step-icon {
  position: absolute;
  bottom: -8px; right: -8px;
  background: rgba(201,168,76,.15);
  border: 1px solid rgba(201,168,76,.3);
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.process-step h3 {
  font-family: var(--font-h);
  font-size: 20px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 10px;
}
.process-step p { font-size: 14px; color: rgba(255,255,255,.55); line-height: 1.7; }

/* ─── PORTFOLIO ──────────────────────────────────── */
.portfolio { background: var(--white); }
.portfolio-header { text-align: center; margin-bottom: 56px; }
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.portfolio-item {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  background: var(--beige);
  cursor: pointer;
}
.portfolio-item.large { grid-column: span 2; }
.portfolio-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: linear-gradient(135deg, var(--beige) 0%, var(--beige2) 100%);
  position: relative;
  overflow: hidden;
}
.portfolio-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(201,168,76,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(201,168,76,.08) 1px, transparent 1px);
  background-size: 20px 20px;
}
.portfolio-placeholder-icon { font-size: 36px; position: relative; z-index: 1; }
.portfolio-placeholder-text {
  font-family: var(--font-h);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 16px;
}
.portfolio-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,31,61,.9) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .35s;
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.portfolio-item:hover .portfolio-overlay { opacity: 1; }
.portfolio-overlay-text { color: var(--white); font-family: var(--font-h); font-size: 18px; font-weight: 600; }
.portfolio-overlay-tag {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}

/* ─── TRUST ──────────────────────────────────────── */
.trust { background: var(--beige); }
.trust-header { text-align: center; margin-bottom: 64px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.trust-item {
  background: var(--white);
  border-radius: 8px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow2);
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.trust-item::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform .3s;
}
.trust-item:hover::after { transform: scaleX(1); }
.trust-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.trust-icon { font-size: 36px; margin-bottom: 16px; }
.trust-num { font-family: var(--font-h); font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1; margin-bottom: 6px; }
.trust-label { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.trust-desc { font-size: 13px; color: var(--muted); }

/* ─── REVIEWS ────────────────────────────────────── */
.reviews { background: var(--white); }
.reviews-layout {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.reviews-left {
  background: var(--navy);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  position: sticky;
  top: 96px;
}
.reviews-logo {
  font-family: var(--font-b);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.google-g {
  width: 28px; height: 28px;
  background: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: #4285F4;
}
.reviews-rating { font-family: var(--font-h); font-size: 72px; font-weight: 700; color: var(--gold); line-height: 1; }
.stars { color: var(--gold); font-size: 22px; margin: 8px 0; }
.reviews-count { font-size: 14px; color: rgba(255,255,255,.55); }
.review-cards-wrap { display: grid; gap: 20px; }
.review-card {
  background: var(--beige);
  border-radius: 8px;
  padding: 28px 32px;
  border: 1px solid var(--border);
  transition: all .3s;
}
.review-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.review-stars { color: var(--gold); font-size: 16px; margin-bottom: 14px; }
.review-text {
  font-family: var(--font-h);
  font-size: 18px;
  font-style: italic;
  color: var(--navy);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 600; color: var(--navy); }
.review-loc { font-size: 12px; color: var(--muted); }

/* ─── CTA BANNER ─────────────────────────────────── */
.cta-banner { background: var(--navy); padding: 80px 0; position: relative; overflow: hidden; }
.cta-banner::before {
  content: '';
  position: absolute;
  left: -100px; top: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.1) 0%, transparent 70%);
}
.cta-banner::after {
  content: '';
  position: absolute;
  right: -100px; bottom: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
}
.cta-banner-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 60px;
  align-items: center;
}
.cta-banner h2 { font-family: var(--font-h); font-size: clamp(28px, 3.5vw, 48px); font-weight: 600; color: var(--white); margin-bottom: 12px; }
.cta-banner h2 em { color: var(--gold); }
.cta-banner p { font-size: 17px; color: rgba(255,255,255,.65); }
.cta-banner-actions { display: flex; gap: 16px; flex-shrink: 0; }

/* ─── LEAD FORM ──────────────────────────────────── */
.lead-form-section { background: var(--beige2); }
.lead-form-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.lead-form-info h2 { font-family: var(--font-h); font-size: clamp(30px, 3.5vw, 48px); font-weight: 600; color: var(--navy); margin-bottom: 20px; line-height: 1.2; }
.lead-form-info p { font-size: 16px; color: var(--muted); margin-bottom: 36px; line-height: 1.8; }
.lead-form-promises { display: flex; flex-direction: column; gap: 12px; }
.lead-promise {
  display: flex; align-items: center; gap: 14px;
  font-size: 14px; color: var(--navy); font-weight: 500;
}
.lead-promise::before {
  content: '✓';
  width: 28px; height: 28px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.lead-form-card {
  background: var(--white);
  border-radius: 8px;
  padding: 44px;
  box-shadow: var(--shadow);
  border-top: 4px solid var(--gold);
}
.lead-form-card h3 { font-family: var(--font-h); font-size: 26px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.lead-form-card .lead-sub { font-size: 14px; color: var(--muted); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-b);
  font-size: 14px;
  color: var(--text);
  background: var(--beige);
  resize: vertical;
  min-height: 90px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
}
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,.12);
  background: var(--white);
}
.upload-area {
  width: 100%;
  padding: 20px;
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  background: var(--beige);
  text-align: center;
  font-size: 14px;
  color: var(--muted);
  cursor: pointer;
  transition: all .2s;
}
.upload-area:hover { border-color: var(--gold); background: rgba(201,168,76,.05); color: var(--navy); }

/* ─── FOOTER ─────────────────────────────────────── */
.footer { background: #080E1D; color: rgba(255,255,255,.6); padding: 72px 0 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; max-width: 280px; margin-bottom: 24px; }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; transition: all .2s; cursor: pointer;
}
.social-link:hover { background: var(--gold); color: var(--navy); }
.footer-col h4 { font-family: var(--font-h); font-size: 16px; font-weight: 600; color: var(--white); margin-bottom: 20px; letter-spacing: .5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.5); transition: color .2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 12px; font-size: 14px; align-items: flex-start; }
.footer-contact-item .icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-bottom p span { color: var(--gold); }

/* ─── WHATSAPP ───────────────────────────────────── */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 999;
  display: flex; flex-direction: column; align-items: flex-end; gap: 10px;
}
.whatsapp-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4);
  cursor: pointer; transition: all .3s; text-decoration: none;
}
.whatsapp-btn:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,.5); }
.whatsapp-btn svg { width: 28px; height: 28px; fill: var(--white); }
.whatsapp-tooltip {
  background: var(--navy); color: var(--white);
  font-size: 12px; font-weight: 600;
  padding: 8px 14px; border-radius: 4px;
  white-space: nowrap; box-shadow: var(--shadow2);
  opacity: 0; transform: translateX(8px);
  transition: all .3s; pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; transform: translateX(0); }

/* ─── POPUP ──────────────────────────────────────── */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(8,14,29,.7);
  backdrop-filter: blur(6px);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.popup-overlay.active { opacity: 1; pointer-events: all; }
.popup-card {
  background: var(--white); border-radius: 10px; padding: 48px;
  width: 100%; max-width: 440px; position: relative;
  transform: translateY(20px); transition: transform .3s;
  border-top: 4px solid var(--gold);
  box-shadow: 0 40px 100px rgba(0,0,0,.3);
}
.popup-overlay.active .popup-card { transform: translateY(0); }
.popup-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  background: var(--beige); border: none; border-radius: 50%;
  font-size: 16px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--navy); transition: background .2s;
}
.popup-close:hover { background: var(--border); }
.popup-card h3 { font-family: var(--font-h); font-size: 28px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.popup-card p { font-size: 14px; color: var(--muted); margin-bottom: 28px; }

/* ─── STICKY CTA ─────────────────────────────────── */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--navy); padding: 14px 24px;
  display: none; align-items: center; justify-content: space-between;
  z-index: 998; box-shadow: 0 -4px 24px rgba(0,0,0,.2);
}
.sticky-cta.visible { display: flex; }
.sticky-cta p { font-size: 15px; color: var(--white); font-weight: 500; }
.sticky-cta p span { color: var(--gold); font-weight: 700; }
.sticky-cta-actions { display: flex; gap: 12px; }

/* ─── FADE ANIMATION ─────────────────────────────── */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity .7s ease, transform .7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero { min-height: auto; padding: 120px 0 72px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-layout { grid-template-columns: 1fr; }
  .reviews-left { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .lead-form-layout { grid-template-columns: 1fr; gap: 48px; }
  .cta-banner-inner { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .section { padding: 64px 0; }
  .problem-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .trust-grid { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-item.large { grid-column: span 1; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .mistakes-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 20px; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .sticky-cta p { font-size: 13px; }
  .hero-card { padding: 28px; }
  .lead-form-card { padding: 28px; }
}
@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-item.large { grid-column: span 1; }
  .hero-actions { flex-direction: column; }
  .process-steps { grid-template-columns: 1fr; }
  .cta-banner-actions { flex-direction: column; }
}/* End custom CSS */