/* Vitaris Landing Page — matches vitaris-landing-page.html design */

:root {
  --red: #D72B2B;
  --red-dark: #A81E1E;
  --red-light: #FF4444;
  --navy: #0A1628;
  --navy-mid: #0F2040;
  --navy-light: #1A3060;
  --white: #FFFFFF;
  --off-white: #F5F3EE;
  --gold: #E8B84B;
  --gray: #8A95A3;
  --light-gray: #E8ECF0;
  --landing-header-height: 52px;
}

body.landing-active {
  font-family: 'DM Sans', sans-serif;
  background: var(--navy);
  color: var(--white);
  overflow-x: hidden;
  padding-top: 0;
}

body.landing-active main {
  padding-top: var(--landing-header-height);
}

/* ── FIXED HEADER (topbar + nav) ── */
.landing-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  width: 100%;
}

/* ── STICKY TOP BAR ── */
.landing-topbar {
  position: relative;
  top: auto;
  left: auto;
  right: auto;
  z-index: 2;
  background: var(--red);
  padding: 10px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 20px rgba(215, 43, 43, 0.5);
  flex-wrap: wrap;
  gap: 8px;
}

.landing-topbar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-topbar-left svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
  animation: landing-pulse 1.5s infinite;
  flex-shrink: 0;
}

.landing-topbar-cta {
  background: var(--white);
  color: var(--red);
  padding: 7px 20px;
  border-radius: 4px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: transform 0.15s;
  white-space: nowrap;
}

.landing-topbar-cta:hover {
  transform: scale(1.04);
  color: var(--red);
}

@keyframes landing-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── HERO ── */
.landing-hero {
  min-height: calc(100vh - var(--landing-header-height));
  background-color: var(--navy);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
}

.landing-hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.landing-hero-accent {
  position: absolute;
  right: -10%;
  top: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(215, 43, 43, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.landing-hero-accent2 {
  position: absolute;
  left: -5%;
  bottom: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 0, 0, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.landing-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.landing-hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.landing-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(215, 43, 43, 0.15);
  border: 1px solid rgba(215, 43, 43, 0.4);
  color: #FF8888;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
  animation: landing-fadeInUp 0.6s ease both;
}

.landing-hero-badge span {
  width: 6px;
  height: 6px;
  background: var(--red-light);
  border-radius: 50%;
  animation: landing-pulse 1s infinite;
  display: inline-block;
}

.landing-hero-headline {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(52px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
  animation: landing-fadeInUp 0.6s 0.1s ease both;
}

.landing-hero-headline .accent {
  color: var(--red-light);
  display: block;
}

.landing-hero-headline .sub {
  font-size: 0.55em;
  color: var(--gray);
  font-family: 'DM Serif Display', serif;
  font-style: italic;
  display: block;
  margin-top: 8px;
}

.landing-hero-desc {
  font-size: 17px;
  line-height: 1.7;
  color: #B0BCCC;
  max-width: 540px;
  margin-bottom: 36px;
  animation: landing-fadeInUp 0.6s 0.2s ease both;
}

.landing-hero-stats {
  display: flex;
  gap: 36px;
  margin-bottom: 40px;
  animation: landing-fadeInUp 0.6s 0.3s ease both;
}

.landing-stat {
  border-left: 3px solid var(--red);
  padding-left: 14px;
}

.landing-stat-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  line-height: 1;
  color: var(--white);
}

.landing-stat-label {
  font-size: 12px;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.landing-hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: landing-fadeInUp 0.6s 0.4s ease both;
}

.landing-btn-primary {
  background: var(--red);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(215, 43, 43, 0.4);
}

.landing-btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(215, 43, 43, 0.5);
  color: var(--white);
}

.landing-btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: border-color 0.2s, background 0.2s;
}

.landing-btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
}

/* Hero Form Card */
.landing-hero-form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 36px 32px;
  color: var(--navy);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
  animation: landing-fadeInRight 0.7s 0.2s ease both;
  position: relative;
  scroll-margin-top: calc(var(--landing-header-height) + 20px);
}

.landing-hero-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 16px 16px 0 0;
}

.landing-form-title {
  font-family: 'DM Serif Display', serif;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.landing-form-sub {
  font-size: 13px;
  color: #666;
  margin-bottom: 24px;
}

.landing-form-group {
  margin-bottom: 14px;
}

.landing-form-group label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 5px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.landing-form-group input,
.landing-form-group select,
.landing-form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #E0E5EC;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--navy);
  background: #F8FAFC;
  transition: border-color 0.2s;
  outline: none;
}

.landing-form-group input:focus,
.landing-form-group select:focus,
.landing-form-group textarea:focus {
  border-color: var(--red);
  background: #fff;
}

.landing-form-group textarea {
  resize: vertical;
  min-height: 70px;
}

.landing-form-submit {
  width: 100%;
  background: var(--red);
  color: var(--white);
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  letter-spacing: 0.04em;
  transition: background 0.2s, transform 0.15s;
  margin-top: 6px;
}

.landing-form-submit:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
}

.landing-form-privacy {
  font-size: 11px;
  color: #888;
  text-align: center;
  margin-top: 10px;
}

.landing-form-alert {
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 13px;
  margin-bottom: 16px;
}

.landing-form-alert.success {
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0;
}

.landing-form-alert.error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

@keyframes landing-fadeInUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes landing-fadeInRight {
  from { opacity: 0; transform: translateX(28px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ── TRUST BAR ── */
.landing-trust-bar {
  background: var(--navy-mid);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 20px 40px;
}

.landing-trust-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.landing-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #99AABC;
  font-weight: 500;
}

.landing-trust-icon {
  font-size: 20px;
}

.landing-trust-item strong {
  color: var(--white);
}

/* ── SECTION COMMON ── */
.landing-section {
  padding: 90px 0;
}

.landing-section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red-light);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.landing-section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--red);
  display: inline-block;
}

.landing-section-title {
  font-family: 'DM Serif Display', serif;
  font-size: clamp(32px, 4vw, 48px);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.landing-section-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #8A95A3;
  max-width: 620px;
}

.landing-section-header-centered {
  text-align: center;
}

.landing-section-header-centered .landing-section-label {
  justify-content: center;
}

.landing-section-header-centered .landing-section-desc {
  margin: 0 auto;
}

/* ── WHY ── */
.landing-why-section {
  background: var(--navy);
}

.landing-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.landing-why-card {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s, border-color 0.25s;
}

.landing-why-card:hover {
  transform: translateY(-6px);
  border-color: rgba(215, 43, 43, 0.4);
}

.landing-why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.landing-why-card:hover::after {
  transform: scaleX(1);
}

.landing-why-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 52px;
  color: rgba(215, 43, 43, 0.35);
  line-height: 1;
  margin-bottom: 10px;
  pointer-events: none;
  user-select: none;
}

.landing-why-card h3 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--white);
}

.landing-why-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #7A8899;
}

/* ── SERVICES ── */
.landing-services-section {
  background: var(--off-white);
  color: var(--navy);
}

.landing-services-section .landing-section-label {
  color: var(--red);
}

.landing-services-section .landing-section-label::before {
  background: var(--red);
}

.landing-services-section .landing-section-title {
  color: var(--navy);
}

.landing-services-section .landing-section-desc {
  color: #555;
}

.landing-services-tabs {
  display: flex;
  gap: 8px;
  margin: 48px 0 32px;
  flex-wrap: wrap;
}

.landing-tab-btn {
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid #D0D8E4;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #555;
  cursor: pointer;
  transition: all 0.2s;
}

.landing-tab-btn.active,
.landing-tab-btn:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.landing-service-panels {
  display: none;
}

.landing-service-panels.active-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.landing-service-content h3 {
  font-family: 'DM Serif Display', serif;
  font-size: 30px;
  margin-bottom: 14px;
  color: var(--navy);
}

.landing-service-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 24px;
}

.landing-service-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.landing-service-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: #444;
  padding: 10px 0;
  border-bottom: 1px solid #E8ECF0;
}

.landing-service-features li:last-child {
  border-bottom: none;
}

.landing-feature-dot {
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  margin-top: 6px;
  flex-shrink: 0;
}

.landing-service-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 36px;
  color: var(--white);
  position: sticky;
  top: calc(var(--landing-header-height) + 16px);
}

.landing-equipment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.landing-equip-item {
  background: rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  padding: 16px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.2s;
}

.landing-equip-item:hover {
  background: rgba(215, 43, 43, 0.15);
}

.landing-equip-icon {
  font-size: 24px;
  display: block;
  margin-bottom: 6px;
}

.landing-service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--red);
  font-weight: 600;
  font-size: 14px;
  margin-top: 8px;
  text-decoration: none;
}

.landing-service-link:hover {
  color: var(--red-dark);
}

/* ── PROCESS ── */
.landing-process-section {
  background: var(--navy-mid);
}

.landing-process-steps {
  margin-top: 64px;
  position: relative;
}

.landing-process-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: calc(100% - 72px);
  background: linear-gradient(to bottom, var(--red), rgba(215, 43, 43, 0.1));
}

.landing-step {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 32px;
  align-items: start;
  margin-bottom: 52px;
  position: relative;
}

.landing-step:nth-child(even) .landing-step-content-left {
  grid-column: 3;
}

.landing-step:nth-child(even) .landing-step-dot {
  grid-column: 2;
  grid-row: 1;
}

.landing-step:nth-child(even) .landing-step-content-right {
  grid-column: 1;
  grid-row: 1;
}

.landing-step-dot {
  width: 72px;
  height: 72px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 28px;
  box-shadow: 0 0 0 8px rgba(215, 43, 43, 0.15);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
}

.landing-step-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  padding: 28px;
}

.landing-step-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--white);
}

.landing-step-card p {
  font-size: 14px;
  line-height: 1.7;
  color: #7A8899;
}

/* ── COVERAGE ── */
.landing-coverage-section {
  background: var(--navy);
}

.landing-city-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 48px;
}

.landing-city-chip {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 18px 14px;
  text-align: center;
  transition: border-color 0.2s, background 0.2s;
  text-decoration: none;
  display: block;
}

.landing-city-chip:hover {
  border-color: var(--red);
  background: rgba(215, 43, 43, 0.08);
}

.landing-city-chip .city-icon {
  font-size: 26px;
  margin-bottom: 8px;
  display: block;
}

.landing-city-chip span.city-name {
  font-size: 13px;
  font-weight: 600;
  color: #BCC8D4;
  display: block;
}

/* ── TESTIMONIALS ── */
.landing-testimonials-section {
  background: var(--navy-mid);
}

.landing-testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}

.landing-testi-card {
  background: var(--navy);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 14px;
  padding: 32px 28px;
  position: relative;
}

.landing-testi-card::before {
  content: '"';
  font-family: 'DM Serif Display', serif;
  font-size: 80px;
  color: rgba(215, 43, 43, 0.2);
  position: absolute;
  top: 8px;
  left: 20px;
  line-height: 1;
}

.landing-testi-text {
  font-size: 15px;
  line-height: 1.75;
  color: #BCC8D4;
  margin-bottom: 24px;
  padding-top: 20px;
}

.landing-testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.landing-testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  color: var(--white);
  flex-shrink: 0;
}

.landing-testi-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--white);
}

.landing-testi-loc {
  font-size: 12px;
  color: var(--gray);
}

.landing-stars {
  color: var(--gold);
  font-size: 13px;
  margin-bottom: 4px;
}

/* ── FAQ ── */
.landing-faq-section {
  background: var(--navy);
}

.landing-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 56px;
}

.landing-faq-item {
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 12px;
  overflow: hidden;
}

.landing-faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 24px;
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.landing-faq-q:hover {
  color: #FF8888;
}

.landing-faq-arrow {
  font-size: 18px;
  flex-shrink: 0;
  transition: transform 0.25s;
  color: var(--red);
}

.landing-faq-a {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.75;
  color: #7A8899;
  transition: max-height 0.3s ease, padding 0.3s;
}

.landing-faq-item.open .landing-faq-a {
  max-height: 300px;
  padding-bottom: 20px;
}

.landing-faq-item.open .landing-faq-arrow {
  transform: rotate(180deg);
}

/* ── CTA BAND ── */
.landing-cta-band {
  background: linear-gradient(135deg, var(--red-dark), var(--red));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.landing-cta-band::before {
  content: 'VITARIS';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 300px;
  color: rgba(255, 255, 255, 0.04);
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.05em;
}

.landing-cta-band h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 56px;
  margin-bottom: 16px;
  letter-spacing: 0.02em;
  position: relative;
  color: var(--white);
}

.landing-cta-band p {
  font-size: 17px;
  opacity: 0.85;
  margin-bottom: 36px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  color: var(--white);
}

.landing-cta-band-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

.landing-btn-white {
  background: var(--white);
  color: var(--red);
  padding: 16px 36px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.landing-btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  color: var(--red);
}

.landing-btn-outline-white {
  background: transparent;
  color: var(--white);
  padding: 16px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: border-color 0.2s, background 0.2s;
}

.landing-btn-outline-white:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* Landing footer override */
body.landing-active footer {
  background: #060D1A !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.landing-active footer .logo img {
  filter: none;
}

/* ── LANDING FOOTER ── */
.landing-footer {
  background: #060D1A !important;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 60px 0 28px;
  color: var(--white);
}

.landing-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 32px;
}

.landing-footer-title {
  font-family: 'DM Serif Display', serif;
  font-size: 24px;
  margin-bottom: 20px;
  color: var(--white);
}

.landing-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #B0BCCC;
  margin-bottom: 12px;
}

.landing-footer-contact-item a {
  color: #B0BCCC;
  text-decoration: none;
}

.landing-footer-contact-item a:hover {
  color: var(--white);
}

.landing-footer-cta-wrap {
  display: flex;
  align-items: center;
}

.landing-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding-top: 24px;
  text-align: center;
}

.landing-footer-bottom p {
  font-size: 12px;
  color: var(--gray);
}

.landing-floating-actions {
  display: none;
}

/* ── THANK YOU PAGE ── */
.landing-thankyou-section {
  min-height: calc(100vh - var(--landing-header-height));
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0D1F3C 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.landing-thankyou-card {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  background: var(--navy-mid);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 48px 36px;
  position: relative;
  z-index: 2;
}

.landing-thankyou-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--red);
  border-radius: 16px 16px 0 0;
}

.landing-thankyou-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  font-weight: 700;
  color: var(--white);
  box-shadow: 0 0 0 8px rgba(215, 43, 43, 0.2);
}

.landing-thankyou-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 8vw, 56px);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
  color: var(--white);
}

.landing-thankyou-lead {
  font-family: 'DM Serif Display', serif;
  font-size: 20px;
  color: #FF8888;
  margin-bottom: 16px;
}

.landing-thankyou-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #B0BCCC;
  margin-bottom: 28px;
}

.landing-thankyou-urgent {
  background: rgba(215, 43, 43, 0.12);
  border: 1px solid rgba(215, 43, 43, 0.3);
  border-radius: 10px;
  padding: 16px 20px;
  margin-bottom: 28px;
}

.landing-thankyou-urgent p {
  font-size: 14px;
  color: #E8ECF0;
  margin: 0;
}

.landing-thankyou-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 24px;
}

.landing-thankyou-back {
  display: inline-block;
  font-size: 14px;
  color: var(--gray);
  text-decoration: none;
  transition: color 0.2s;
}

.landing-thankyou-back:hover {
  color: var(--white);
}

@media (max-width: 768px) {
  .landing-thankyou-card {
    padding: 36px 24px;
  }

  .landing-thankyou-btns {
    flex-direction: column;
  }

  .landing-thankyou-btns .landing-btn-primary,
  .landing-thankyou-btns .landing-btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .landing-footer-inner {
    flex-direction: column;
  }

  .landing-footer-cta-wrap {
    width: 100%;
  }

  .landing-footer-cta-wrap .landing-btn-primary {
    width: 100%;
    justify-content: center;
  }
}

/* Scroll reveal */
.landing-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.landing-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .landing-hero-inner {
    grid-template-columns: 1fr;
  }

  .landing-hero-form-card {
    max-width: 480px;
  }

  .landing-why-grid {
    grid-template-columns: 1fr 1fr;
  }

  .landing-service-panels.active-panel {
    grid-template-columns: 1fr;
  }

  .landing-city-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .landing-topbar {
    padding: 10px 20px;
    font-size: 12px;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
  }

  body.landing-active main {
    padding-top: var(--landing-header-height, 72px);
  }

  .landing-topbar-cta {
    font-size: 12px;
    padding: 6px 14px;
  }

  .landing-container {
    padding: 0 20px;
  }

  .landing-hero-stats {
    gap: 24px;
  }

  .landing-why-grid {
    grid-template-columns: 1fr;
  }

  .landing-why-num {
    font-size: 44px;
    margin-bottom: 8px;
    color: rgba(215, 43, 43, 0.5);
  }

  .landing-why-card {
    padding: 28px 20px 24px;
  }

  .landing-process-steps::before {
    display: none;
  }

  .landing-process-steps {
    margin-top: 40px;
  }

  .landing-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 16px;
    align-items: start;
    margin-bottom: 28px;
  }

  .landing-step-dot {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 56px;
    height: 56px;
    font-size: 24px;
    margin: 0;
  }

  .landing-step-card,
  .landing-step-content-left,
  .landing-step-content-right {
    grid-column: 2 !important;
    grid-row: 1 !important;
    width: 100%;
    min-width: 0;
  }

  .landing-step-empty {
    display: none !important;
  }

  .landing-step-card {
    padding: 20px;
  }

  .landing-step-card h4 {
    font-size: 16px;
    line-height: 1.4;
  }

  .landing-step-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .landing-testi-grid {
    grid-template-columns: 1fr;
  }

  .landing-faq-grid {
    grid-template-columns: 1fr;
  }

  .landing-city-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .landing-hero-btns {
    flex-direction: column;
  }

  .landing-cta-band h2 {
    font-size: 38px;
  }

  .landing-trust-bar {
    padding: 20px;
  }

  .landing-trust-inner {
    justify-content: center;
  }
}
