/* =====================================
   PALM KEYS MARRAKECH
   GLOBAL DESIGN SYSTEM
===================================== */

:root {

  /* COLORS */

  --background: #F8F3EB;
  --background-soft: #EFE7DB;

  --green: #1F352D;
  --green-light: #2E4A40;

  --gold: #B8965A;
  --gold-soft: #D9C49A;

  --text: #232323;
  --text-soft: #6A6A6A;

  --white: #ffffff;

  --border:
    rgba(184, 150, 90, 0.14);

  /* SHADOWS */

  --shadow-soft:
    0 10px 30px
    rgba(0,0,0,0.04);

  --shadow-medium:
    0 20px 60px
    rgba(0,0,0,0.08);

  --shadow-heavy:
    0 40px 90px
    rgba(0,0,0,0.12);

  /* RADIUS */

  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 34px;

  /* TRANSITIONS */

  --transition:
    all 0.35s ease;
}

/* =====================================
   RESET
===================================== */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
}

body {

  font-family:
    "Inter",
    sans-serif;

  background:
    var(--background);

  color:
    var(--text);

  overflow-x: hidden;

  animation:
    pageLoad
    0.7s ease;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

button,
input,
select {

  font-family:
    inherit;

  outline: none;
  border: none;
}

/* =====================================
   PAGE LOAD
===================================== */

@keyframes pageLoad {

  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* =====================================
   GLOBAL
===================================== */

.container {

  width: 90%;
  max-width: 1320px;

  margin: auto;
}

section {
  position: relative;
}

.section-header {
  margin-bottom: 80px;
}

.section-label {

  color:
    var(--gold);

  font-size: 13px;

  text-transform:
    uppercase;

  letter-spacing:
    2px;

  font-weight: 600;
}

.section-title {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size:
    clamp(42px, 5vw, 64px);

  line-height: 1.05;

  margin:
    20px 0;
}

.section-subtitle {

  max-width: 760px;

  margin:
    auto;

  color:
    var(--text-soft);

  line-height: 1.9;

  font-size: 18px;
}

.center {
  text-align: center;
}

/* =====================================
   NAVBAR
===================================== */

.navbar {

  position: fixed;

  top: 0;
  left: 0;

  width: 100%;

  z-index: 999;

  padding: 28px 0;

  transition:
    var(--transition);
}

.navbar.scrolled {

  background:
    rgba(248,243,235,0.86);

  backdrop-filter:
    blur(20px);

  border-bottom:
    1px solid
    rgba(184,150,90,0.12);

  box-shadow:
    var(--shadow-soft);

  padding: 20px 0;
}

.nav-container {

  display: flex;

  justify-content:
    space-between;

  align-items:
    center;
}

.logo img {
  height: 72px;
}

/* =====================================
   NAVIGATION
===================================== */

.nav-links {

  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-menu {

  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-menu a {

  color:
    var(--green);

  font-weight: 500;

  position: relative;

  transition:
    var(--transition);
}

.nav-menu a::after {

  content: "";

  position: absolute;

  left: 0;
  bottom: -8px;

  width: 0%;

  height: 1px;

  background:
    var(--gold);

  transition:
    width .3s ease;
}

.nav-menu a:hover::after {
  width: 100%;
}

.lang-switch {

  display: flex;
  align-items: center;
  gap: 8px;

  color:
    var(--green);

  padding:
    12px 18px;

  border-radius:
    999px;

  transition:
    var(--transition);
}

.lang-switch:hover {

  background:
    rgba(184,150,90,0.08);
}

/* =====================================
   BUTTONS
===================================== */

.nav-btn,
.primary-btn {

  background:
    var(--green);

  color:
    var(--white);

  padding:
    18px 34px;

  border-radius:
    999px;

  font-weight: 600;

  transition:
    var(--transition);

  box-shadow:
    0 12px 35px
    rgba(31,53,45,0.18);
}

.nav-btn:hover,
.primary-btn:hover {

  transform:
    translateY(-4px);

  background:
    var(--green-light);
}

.secondary-btn {

  border:
    1.5px solid
    rgba(184,150,90,0.35);

  color:
    var(--green);

  padding:
    18px 34px;

  border-radius:
    999px;

  display: flex;
  align-items: center;
  gap: 10px;

  transition:
    var(--transition);

  backdrop-filter:
    blur(10px);
}

.secondary-btn:hover {

  transform:
    translateY(-4px);

  background:
    var(--green);

  color:
    var(--white);
}

/* =====================================
   HERO
===================================== */

.hero {

  min-height: 100vh;

  display: flex;
  align-items: center;

  position: relative;

  background:
    linear-gradient(
      90deg,
      rgba(248,243,235,0.95) 0%,
      rgba(248,243,235,0.85) 35%,
      rgba(248,243,235,0.15) 100%
    ),
    url("./assets/images/hero.webp")
    center/cover no-repeat;

  padding:
    180px 0 120px;
}

.hero-container {

  display: grid;

  grid-template-columns:
    1.2fr 0.8fr;

  gap: 80px;

  align-items: center;
}

.hero-content {
  max-width: 720px;
}

.hero-label {

  color:
    var(--gold);

  font-size: 13px;

  text-transform:
    uppercase;

  letter-spacing:
    2px;

  font-weight: 600;
}

.hero h1 {

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(58px, 7vw, 88px);

  line-height:
    0.95;

  letter-spacing:
    -2px;

  color:
    var(--green);

  margin:
    26px 0;
}

.hero-description {

  color:
    var(--text-soft);

  font-size: 20px;

  line-height: 1.9;

  max-width: 640px;
}

.hero-description strong {
  color: var(--green);
}

.hero-buttons {

  display: flex;
  gap: 18px;

  margin-top: 40px;
}

/* =====================================
   TRUST ITEMS
===================================== */

.hero-trust {

  display: flex;
  flex-wrap: wrap;

  gap: 16px;

  margin-top: 34px;
}

.trust-item {

  background:
    rgba(255,255,255,0.62);

  backdrop-filter:
    blur(12px);

  border:
    1px solid
    rgba(184,150,90,0.12);

  border-radius:
    999px;

  padding:
    14px 18px;

  display: flex;
  align-items: center;
  gap: 10px;

  box-shadow:
    var(--shadow-soft);
}

.trust-item i {
  color: var(--gold);
}

/* =====================================
   RESPONSE LINE
===================================== */

.response-line {

  display: flex;
  align-items: center;
  gap: 12px;

  margin-top: 30px;

  color:
    var(--text-soft);
}

.green-dot {

  width: 10px;
  height: 10px;

  border-radius: 50%;

  background:
    #38C172;
}

/* =====================================
   HERO FORM CARD
===================================== */

.hero-form-card {

  background:
    rgba(255,255,255,0.78);

  backdrop-filter:
    blur(24px);

  border:
    1px solid
    rgba(184,150,90,0.14);

  border-radius:
    34px;

  padding: 42px;

  box-shadow:
    0 30px 80px
    rgba(0,0,0,0.10);

  position: relative;

  overflow: hidden;
}

.hero-form-card::before {

  content: "";

  position: absolute;

  top: -120px;
  right: -120px;

  width: 240px;
  height: 240px;

  background:
    radial-gradient(
      circle,
      rgba(184,150,90,0.12),
      transparent 70%
    );
}

.form-header {
  margin-bottom: 30px;
}

.mini-badge {

  display: inline-flex;

  background:
    rgba(184,150,90,0.12);

  color:
    var(--gold);

  padding:
    10px 16px;

  border-radius:
    999px;

  font-size: 13px;
  font-weight: 600;

  margin-bottom: 20px;
}

.form-header h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size: 34px;

  line-height: 1.15;

  margin-bottom: 14px;
}

.form-header p {

  color:
    var(--text-soft);

  line-height: 1.8;
}

.assessment-form {

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {

  color:
    var(--green);

  font-size: 14px;
  font-weight: 600;

  margin-bottom: 10px;
}

.form-group input,
.form-group select {

  background:
    rgba(255,255,255,0.75);

  border:
    1px solid
    rgba(184,150,90,0.18);

  border-radius:
    18px;

  padding:
    18px 20px;

  color:
    var(--text);

  font-size: 15px;

  transition:
    var(--transition);
}

.form-group input:focus,
.form-group select:focus {

  border-color:
    var(--gold);

  box-shadow:
    0 0 0 4px
    rgba(184,150,90,0.10);
}

.submit-btn {

  background:
    var(--green);

  color:
    var(--white);

  padding:
    20px;

  border-radius:
    18px;

  font-size: 16px;
  font-weight: 600;

  cursor: pointer;

  transition:
    var(--transition);

  margin-top: 10px;
}

.submit-btn:hover {

  transform:
    translateY(-4px);

  background:
    var(--green-light);
}

.privacy-text {

  display: block;

  text-align: center;

  margin-top: 14px;

  color:
    var(--text-soft);

  font-size: 13px;
}

/* =====================================
   PLATFORM LOGOS
===================================== */

.platforms {
  margin-top: 34px;
}

.platforms span {

  display: block;

  color:
    var(--text-soft);

  font-size: 13px;

  letter-spacing: 1px;

  margin-bottom: 16px;
}

.platform-logos {

  display: flex;
  align-items: center;
  gap: 26px;
}

.platform-logos img {

  height: 32px;
  width: auto;

  opacity: 0.75;

  transition:
    var(--transition);
}

.platform-logos img:hover {

  opacity: 1;

  transform:
    translateY(-2px);
}

/* =====================================
   SOCIAL PROOF STRIP
===================================== */

.stats-strip {

  background:
    var(--green);

  padding:
    50px 0;
}

.stats-grid {

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: 40px;
}

.stat-item {

  text-align: center;
}

.stat-item h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--gold);

  font-size: 38px;

  margin-bottom: 12px;
}

.stat-item p {

  color:
    rgba(255,255,255,0.75);

  line-height: 1.7;
}

/* =====================================
   WHO THIS IS FOR
===================================== */

.who-for-section {

  padding:
    150px 0;

  background:
    var(--background);
}

.who-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 28px;
}

.who-card {

  background:
    rgba(255,255,255,0.72);

  backdrop-filter:
    blur(18px);

  border:
    1px solid
    rgba(184,150,90,0.14);

  border-radius:
    30px;

  padding:
    42px 32px;

  transition:
    var(--transition);

  box-shadow:
    var(--shadow-soft);
}

.who-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    var(--shadow-medium);
}

.who-icon {

  width: 72px;
  height: 72px;

  border-radius: 22px;

  background:
    rgba(184,150,90,0.10);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;
}

.who-icon i {

  color:
    var(--gold);

  font-size: 28px;
}

.who-card h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size: 28px;

  margin-bottom: 18px;
}

.who-card p {

  color:
    var(--text-soft);

  line-height: 1.9;
}

/* =====================================
   PAIN SECTION
===================================== */

.pain-section {

  padding:
    160px 0;

  background:
    var(--white);
}

.pain-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 90px;

  align-items: center;
}

.pain-image img {

  width: 100%;

  min-height: 760px;

  object-fit: cover;

  border-radius:
    34px;

  box-shadow:
    var(--shadow-heavy);
}

.pain-content h2 {

  font-family:
    "Playfair Display",
    serif;

  font-size:
    clamp(44px,5vw,62px);

  color:
    var(--green);

  line-height: 1.05;

  margin:
    22px 0;
}

.pain-intro {

  color:
    var(--text-soft);

  font-size: 18px;

  line-height: 1.9;

  margin-bottom: 34px;
}

.pain-list {

  display: flex;
  flex-direction: column;
  gap: 20px;
}

.pain-item {

  display: flex;
  align-items: center;
  gap: 14px;

  font-size: 18px;
}

.pain-item i {
  color: #C84E4E;
}

blockquote {

  margin-top: 50px;

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size:
    clamp(32px,4vw,48px);

  line-height: 1.2;
}

/* =====================================
   SERVICES
===================================== */

.services-section {

  padding:
    160px 0;

  background:
    var(--background-soft);
}

.services-grid {

  display: grid;

  grid-template-columns:
    repeat(3,1fr);

  gap: 30px;
}

.service-card {

  position: relative;

  background:
    rgba(255,255,255,0.72);

  backdrop-filter:
    blur(18px);

  border:
    1px solid
    rgba(184,150,90,0.14);

  border-radius:
    32px;

  padding:
    42px;

  transition:
    var(--transition);

  box-shadow:
    var(--shadow-soft);
}

.service-card:hover {

  transform:
    translateY(-10px);

  box-shadow:
    var(--shadow-medium);
}

.service-icon {

  width: 72px;
  height: 72px;

  border-radius:
    22px;

  background:
    rgba(184,150,90,0.10);

  display: flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 26px;
}

.service-icon i {

  color:
    var(--gold);

  font-size: 28px;
}

.service-card h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size: 30px;

  line-height: 1.2;

  margin-bottom: 18px;
}

.service-card p {

  color:
    var(--text-soft);

  line-height: 1.9;
}

.featured-card {

  background:
    var(--green);

  color:
    var(--white);
}

.featured-card h3,
.featured-card p {
  color: var(--white);
}

.featured-badge {

  position: absolute;

  top: 28px;
  right: 28px;

  background:
    rgba(255,255,255,0.12);

  color:
    var(--gold-soft);

  padding:
    10px 16px;

  border-radius:
    999px;

  font-size: 12px;
  font-weight: 600;
}
/* =====================================
   ESTIMATOR SECTION
===================================== */

.estimator-section {

  padding:
    170px 0;

  background:
    var(--white);
}
/* FIX ESTIMATOR LABEL COLORS */

.estimator-section .form-group label {

  color:
    rgba(255,255,255,0.92) !important;

  margin-bottom: 10px;

  display: block;

  font-weight: 600;
}

.estimator-section select,
.estimator-section input {

  background:
    rgba(255,255,255,0.96) !important;

  color:
    #232323 !important;

  border:
    1px solid
    rgba(255,255,255,0.12);
}

.estimator-section select {

  appearance: none;

  -webkit-appearance: none;

  cursor: pointer;
}

.estimator-card {

  background:
    linear-gradient(
      135deg,
      #1F352D,
      #2E4A40
    );

  border-radius:
    38px;

  padding:
    70px;

  overflow: hidden;

  position: relative;

  box-shadow:
    var(--shadow-heavy);
}

.estimator-card::before {

  content: "";

  position: absolute;

  top: -180px;
  right: -180px;

  width: 420px;
  height: 420px;

  background:
    radial-gradient(
      circle,
      rgba(184,150,90,0.18),
      transparent 70%
    );
}

.estimator-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 70px;

  align-items: center;
}

.estimator-left h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--white);

  font-size:
    clamp(42px,5vw,58px);

  line-height: 1.05;

  margin-bottom: 24px;
}

.estimator-left p {

  color:
    rgba(255,255,255,0.78);

  line-height: 1.9;

  margin-bottom: 28px;
}

.estimate-benefits {

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.estimate-benefits li {

  color:
    rgba(255,255,255,0.86);

  font-size: 17px;
}

/* FORM */

.estimate-form {

  background:
    rgba(255,255,255,0.08);

  backdrop-filter:
    blur(18px);

  border:
    1px solid
    rgba(255,255,255,0.08);

  border-radius:
    28px;

  padding:
    38px;
}

.form-row {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 18px;
}

.lead-gate {

  margin-top: 28px;
}

.lead-gate h4 {

  color:
    var(--white);

  margin-bottom: 20px;

  font-size: 22px;
}

.lead-gate input {

  width: 100%;

  background:
    rgba(255,255,255,0.10);

  border:
    1px solid
    rgba(255,255,255,0.10);

  color:
    var(--white);

  border-radius:
    16px;

  padding:
    18px;

  margin-bottom: 14px;
}

.lead-gate input::placeholder {
  color:
    rgba(255,255,255,0.65);
}

.estimate-btn {

  width: 100%;

  background:
    var(--gold);

  color:
    var(--green);

  padding:
    20px;

  border-radius:
    18px;

  font-size: 16px;
  font-weight: 700;

  cursor: pointer;

  margin-top: 20px;

  transition:
    var(--transition);
}

.estimate-btn:hover {

  transform:
    translateY(-4px);

  background:
    #D0B06F;
}

/* =====================================
   WHY US
===================================== */

.why-us-section {

  padding:
    160px 0;

  background:
    var(--background);
}

.why-grid {

  display: grid;

  grid-template-columns:
    repeat(4,1fr);

  gap: 28px;
}

.why-card {

  background:
    rgba(255,255,255,0.74);

  border-radius:
    28px;

  padding:
    42px;

  text-align: center;

  transition:
    var(--transition);

  box-shadow:
    var(--shadow-soft);
}

.why-card:hover {

  transform:
    translateY(-8px);

  box-shadow:
    var(--shadow-medium);
}

.why-card i {

  color:
    var(--gold);

  font-size: 34px;

  margin-bottom: 24px;
}

.why-card h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size: 28px;

  margin-bottom: 16px;
}

.why-card p {

  color:
    var(--text-soft);

  line-height: 1.8;
}

/* =====================================
   PRICING SECTION
===================================== */

.pricing-section {

  padding:
    160px 0;

  background:
    var(--green);
}

.pricing-card {

  background:
    rgba(255,255,255,0.08);

  border-radius:
    40px;

  padding:
    70px;

  text-align: center;

  backdrop-filter:
    blur(18px);
}

.pricing-badge {

  display: inline-flex;

  background:
    rgba(255,255,255,0.10);

  color:
    var(--gold-soft);

  padding:
    10px 18px;

  border-radius:
    999px;

  margin-bottom: 24px;
}

.pricing-card h2 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--white);

  font-size:
    clamp(42px,5vw,60px);

  margin-bottom: 18px;
}

.pricing-card p {

  color:
    rgba(255,255,255,0.76);

  margin-bottom: 50px;
}

.comparison-grid {

  display: grid;

  grid-template-columns:
    1fr 1fr;

  gap: 30px;
}

.compare-box {

  background:
    rgba(255,255,255,0.06);

  border-radius:
    28px;

  padding:
    42px;

  text-align: left;
}

.compare-box.active {

  border:
    2px solid
    rgba(184,150,90,0.30);
}

.compare-box h3 {

  color:
    var(--white);

  margin-bottom: 24px;

  font-size: 28px;
}

.compare-box ul {

  display: flex;
  flex-direction: column;
  gap: 18px;
}

.compare-box li {

  color:
    rgba(255,255,255,0.78);
}

/* =====================================
   FAQ
===================================== */

.faq-section {

  padding:
    160px 0;

  background:
    var(--background-soft);
}

.faq-container {
  max-width: 900px;
}

.faq-wrapper {
  margin-top: 50px;
}

.faq-item {

  border-bottom:
    1px solid
    rgba(184,150,90,0.14);
}

.faq-question {

  width: 100%;

  background:
    transparent;

  display: flex;
  justify-content: space-between;

  padding:
    30px 0;

  cursor: pointer;

  font-size: 22px;
  font-weight: 600;

  color:
    var(--green);
}

.faq-question span {
  color: var(--gold);
}

.faq-answer {

  max-height: 0;

  overflow: hidden;

  transition:
    max-height .4s ease;
}

.faq-answer p {

  padding-bottom: 24px;

  color:
    var(--text-soft);

  line-height: 1.8;
}

/* =====================================
   FINAL CTA
===================================== */

.final-cta {

  padding:
    180px 0;

  text-align: center;

  background:
    linear-gradient(
      rgba(20,20,20,0.50),
      rgba(20,20,20,0.58)
    ),
    url("./assets/images/cta.webp")
    center/cover no-repeat;
}

.final-cta h2 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--white);

  font-size:
    clamp(44px,5vw,72px);

  margin-bottom: 24px;
}

.final-cta p {

  color:
    rgba(255,255,255,0.84);

  font-size: 20px;

  margin-bottom: 42px;
}

/* =====================================
   FOOTER
===================================== */

.footer {

  background:
    #162822;

  padding:
    80px 0;

  text-align: center;
}

.footer-logo {

  width: 220px;

  margin:
    auto auto 24px;
}

.footer p {

  color:
    rgba(255,255,255,0.70);

  margin-bottom: 30px;
}

.footer-links {

  display: flex;
  justify-content: center;
  gap: 30px;

  margin-bottom: 30px;
}

.footer-links a {

  color:
    rgba(255,255,255,0.70);
}

.footer small {

  color:
    rgba(255,255,255,0.45);
}

/* =====================================
   MOBILE RESPONSIVE
===================================== */

@media (max-width: 992px) {

  .hero-container,
  .pain-grid,
  .estimator-grid {

    grid-template-columns:
      1fr;
  }

  .services-grid,
  .who-grid,
  .why-grid {

    grid-template-columns:
      1fr;
  }

  .stats-grid {

    grid-template-columns:
      repeat(2,1fr);
  }

  .comparison-grid {

    grid-template-columns:
      1fr;
  }

  .hero {

    padding:
      150px 0 100px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-buttons {

    flex-direction:
      column;
  }

  .pain-image img {

    min-height: auto;
  }

  .nav-menu {
    display: none;
  }
}

@media (max-width: 768px) {

  .container {
    width: 92%;
  }

  .hero h1 {
    font-size: 42px;
  }

  .section-title {
    font-size: 38px;
  }

  .hero-form-card,
  .estimator-card,
  .pricing-card {

    padding: 32px;
  }

  .form-row {

    grid-template-columns:
      1fr;
  }

  .stats-grid {

    grid-template-columns:
      1fr;
  }

  .hero-trust {

    flex-direction:
      column;
  }

  .hero-buttons {

    width: 100%;
  }

  .primary-btn,
  .secondary-btn,
  .submit-btn {

    width: 100%;
    justify-content: center;
  }
}

/* =====================================
   MOBILE MENU FIX
===================================== */

.menu-toggle {

  display: none;

  background: transparent;
  border: none;

  cursor: pointer;

  flex-direction: column;
  gap: 6px;

  z-index: 1001;
}

.menu-toggle span {

  width: 30px;
  height: 2px;

  background:
    var(--green);

  border-radius:
    999px;

  transition:
    var(--transition);
}

/* =====================================
   MOBILE NAV
===================================== */

@media (max-width: 992px) {

  .menu-toggle {
    display: flex;
  }

  .nav-links {

    gap: 18px;
  }

  .nav-menu {

    position: fixed;

    top: 95px;
    left: 50%;

    transform:
      translateX(-50%)
      translateY(-20px);

    width: 92%;

    background:
      rgba(248,243,235,0.95);

    backdrop-filter:
      blur(28px);

    border:
      1px solid
      rgba(184,150,90,0.12);

    border-radius:
      32px;

    padding:
      32px;

    display: flex;
    flex-direction: column;

    align-items: center;
    gap: 28px;

    box-shadow:
      0 30px 80px
      rgba(0,0,0,0.12);

    opacity: 0;
    visibility: hidden;

    pointer-events: none;

    transition:
      all .35s ease;
  }

  .nav-menu.active {

    opacity: 1;
    visibility: visible;

    pointer-events: auto;

    transform:
      translateX(-50%)
      translateY(0);
  }

  .nav-menu a {

    font-size: 18px;
    font-weight: 600;
  }

  .nav-btn {

    display: none;
  }

  .lang-switch {

    margin-left: auto;
  }

  /* HERO */

  .hero {

    min-height: auto;

    padding:
      140px 0 80px;
  }

  .hero-container {

    gap: 50px;
  }

  .hero-content {

    text-align: center;

    margin: auto;
  }

  .hero-description {

    margin:
      auto;
  }

  .hero-trust {

    justify-content:
      center;
  }

  .response-line {

    justify-content:
      center;
  }

  .platforms {

    text-align:
      center;
  }

  .platform-logos {

    justify-content:
      center;
  }

  /* FORM */

  .hero-form-card {

    padding:
      32px 24px;
  }

  .form-header h3 {

    font-size:
      30px;
  }

  /* BUTTONS */

  .hero-buttons {

    width: 100%;
  }

  .primary-btn,
  .secondary-btn {

    width: 100%;

    justify-content:
      center;
  }
}

/* =====================================
   SMALL MOBILE
===================================== */

@media (max-width: 768px) {

  .hero h1 {

    font-size:
      38px;

    line-height:
      1.05;
  }

  .hero-description {

    font-size:
      17px;
  }

  .section-title {

    font-size:
      36px;
  }

  .section-header {

    margin-bottom:
      50px;
  }

  .who-card,
  .service-card,
  .why-card {

    padding:
      32px 26px;
  }

  .pain-section,
  .services-section,
  .why-us-section,
  .pricing-section,
  .faq-section,
  .estimator-section {

    padding:
      100px 0;
  }

  .final-cta {

    padding:
      120px 0;
  }

  .footer-links {

    flex-direction:
      column;

    gap: 14px;
  }
}

/* =====================================
   BODY LOCK
===================================== */

body.menu-open {
  overflow: hidden;
}

/* =====================================
   ESTIMATOR INPUT FIX
===================================== */

.estimator-section .lead-gate input {

  background:
    rgba(255,255,255,0.95) !important;

  color:
    #232323 !important;

  border:
    1px solid
    rgba(255,255,255,0.15);

  font-size: 16px;
}

.estimator-section .lead-gate input::placeholder {

  color:
    rgba(35,35,35,0.45) !important;

  opacity: 1;
}

/* SELECT TEXT FIX */

.estimator-section select {

  color:
    #232323 !important;

  font-size: 16px;

  font-weight: 500;
}

/* LABEL SPACING */

.estimator-section .form-group {

  margin-bottom: 8px;
}

/* BUTTON LOOKS MORE PREMIUM */

.estimate-btn {

  border-radius:
    22px !important;

  font-size:
    18px !important;

  min-height:
    68px;

  box-shadow:
    0 18px 40px
    rgba(184,150,90,0.25);
}

.estimate-btn:hover {

  transform:
    translateY(-3px) scale(1.01);
}

/* =====================================
   SUCCESS MODAL
===================================== */

.success-modal {

  position: fixed;

  inset: 0;

  display: flex;
  align-items: center;
  justify-content: center;

  z-index: 99999;

  opacity: 0;
  visibility: hidden;

  transition:
    all .35s ease;
}

.success-modal.active {

  opacity: 1;
  visibility: visible;
}

.modal-overlay {

  position: absolute;

  inset: 0;

  background:
    rgba(15,15,15,0.60);

  backdrop-filter:
    blur(10px);
}

.modal-card {

  position: relative;

  width: 92%;
  max-width: 580px;

  background:
    rgba(255,255,255,0.92);

  backdrop-filter:
    blur(28px);

  border-radius:
    36px;

  padding:
    50px;

  text-align: center;

  box-shadow:
    0 50px 120px
    rgba(0,0,0,0.18);

  z-index: 2;

  animation:
    modalSlide
    .4s ease;
}

@keyframes modalSlide {

  from {

    opacity: 0;

    transform:
      translateY(30px)
      scale(.96);
  }

  to {

    opacity: 1;

    transform:
      translateY(0)
      scale(1);
  }
}

.modal-close {

  position: absolute;

  top: 22px;
  right: 22px;

  width: 42px;
  height: 42px;

  border-radius:
    50%;

  background:
    rgba(184,150,90,0.08);

  color:
    var(--green);

  font-size: 22px;

  cursor: pointer;
}

.modal-icon {

  width: 90px;
  height: 90px;

  margin:
    auto auto 26px;

  border-radius:
    50%;

  background:
    rgba(184,150,90,0.12);

  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-icon i {

  color:
    var(--gold);

  font-size: 34px;
}

.modal-label {

  color:
    var(--gold);

  font-size: 13px;

  text-transform:
    uppercase;

  letter-spacing:
    2px;
}

.modal-card h3 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size:
    42px;

  margin:
    20px 0 14px;
}

.modal-card p {

  color:
    var(--text-soft);

  line-height: 1.8;

  margin-bottom: 28px;
}

.estimate-result {

  background:
    rgba(184,150,90,0.08);

  border-radius:
    26px;

  padding:
    30px;

  margin-bottom: 30px;
}

.estimate-result span {

  display: block;

  color:
    var(--text-soft);

  margin-bottom: 12px;
}

.estimate-result h2 {

  font-family:
    "Playfair Display",
    serif;

  color:
    var(--green);

  font-size:
    48px;
}

.modal-actions {

  display: flex;
  gap: 14px;
}

.modal-secondary {

  flex: 1;
}

.modal-actions .primary-btn {

  flex: 2;
}

@media (max-width: 768px) {

  .modal-card {

    padding: 34px 24px;
  }

  .modal-actions {

    flex-direction:
      column;
  }

  .modal-card h3 {

    font-size: 34px;
  }
}

.seo-text {

  margin-top: 16px;

  font-size: 15px;

  color:
    rgba(35,35,35,0.65);

  line-height: 1.8;
}