:root {
  --bg: #f4f7ff;
  --bg-soft: #edf3ff;
  --white: #ffffff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: rgba(255, 255, 255, 0.94);
  --border: #d9e4fa;
  --border-strong: #bfd2f5;

  --text: #15315b;
  --text-soft: #556b8a;
  --title: #16366a;

  --primary: #4b88e6;
  --primary-2: #7aa3e8;
  --primary-dark: #2f6fd4;
  --primary-soft: #edf4ff;

  --shadow-sm: 0 8px 24px rgba(23, 49, 95, 0.08);
  --shadow-md: 0 18px 50px rgba(23, 49, 95, 0.12);
  --shadow-lg: 0 22px 70px rgba(23, 49, 95, 0.16);

  --radius-sm: 14px;
  --radius-md: 20px;
  --radius-lg: 28px;

  --container: 1180px;
  --transition: 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  zoom: 1.1;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background:
    radial-gradient(
      circle at top left,
      rgba(75, 136, 230, 0.08),
      transparent 28%
    ),
    linear-gradient(180deg, #f8fbff 0%, #eef4ff 100%);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 32px, var(--container));
  margin: 0 auto;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.84);
  border-bottom: 1px solid rgba(191, 210, 245, 0.7);
}

.header-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 84px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__logo {
  width: auto;
  height: 54px;
  object-fit: contain;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  transition:
    transform var(--transition),
    filter var(--transition),
    background var(--transition),
    color var(--transition),
    border-color var(--transition),
    box-shadow var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--large {
  min-height: 54px;
  padding-inline: 22px;
}

.btn--primary {
  color: #fff;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  border-color: rgba(75, 136, 230, 0.42);
  box-shadow: 0 14px 30px rgba(75, 136, 230, 0.22);
}

.btn--primary:hover {
  filter: brightness(1.03);
}

.btn--ghost {
  color: var(--primary-dark);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.btn--ghost:hover {
  background: #f8fbff;
}

.phone-icon {
  color: #34c759;
  margin-right: 6px;
}

/* Header logo desktop only */
@media (min-width: 861px) {
  .brand__logo {
    height: 62px;
  }
}

/* CONTACT DROPDOWN */
.contact-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  padding-top: 10px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition:
    opacity 0.22s ease,
    transform 0.22s ease;
  z-index: 2000;
}

.contact-dropdown.is-open {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.contact-dropdown__card {
  width: 320px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 18px 50px rgba(23, 49, 95, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.contact-dropdown__name {
  display: block;
  font-size: 16px;
  font-weight: 800;
  color: var(--title);
  padding-right: 26px;
  margin-bottom: 2px;
}

.contact-dropdown__row {
  display: grid;
  grid-template-columns: 22px 1fr;
  align-items: center;
  column-gap: 14px;
  text-decoration: none;
}

.contact-dropdown__rowIcon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  text-align: center;
}

.contact-dropdown__rowText {
  line-height: 1.35;
}

a.contact-dropdown__row .contact-dropdown__rowText {
  color: var(--primary-dark);
  font-weight: 600;
}

div.contact-dropdown__row .contact-dropdown__rowText {
  color: var(--text-soft);
  font-weight: 500;
}

.contact-dropdown__close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: none;
  background: transparent;
  font-size: 18px;
  cursor: pointer;
  color: var(--text-soft);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(500px, 72vh, 700px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(244, 248, 255, 0.96) 0%,
    rgba(244, 248, 255, 0.82) 34%,
    rgba(244, 248, 255, 0.5) 68%,
    rgba(244, 248, 255, 0.2) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 0 0 56px;
}

.hero__text {
  width: min(100%, 860px);
  background: rgba(255, 255, 255, 0.46);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(219, 230, 251, 0.9);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-lg);
  padding: 30px;
}

.eyebrow,
.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-title,
.hero h1 {
  margin: 0;
  font-size: clamp(20px, 2.6vw, 36px);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 500;
  color: var(--text-soft);
  white-space: nowrap;
}

.hero-title .highlight,
.hero h1 .highlight {
  font-weight: 800;
  color: var(--title);
}

.hero-line {
  width: 100%;
  height: 2px;
  margin: 16px 0 20px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(75, 136, 230, 0.6),
    transparent
  );
}

.hero__lead {
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
  color: var(--text);
  font-weight: 500;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hero__bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero__priceTag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
  white-space: nowrap;
  padding: 14px 18px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  color: #fff;
  font-weight: 700;
  box-shadow: 0 16px 34px rgba(75, 136, 230, 0.2);
}

.hero__priceTag strong {
  margin-left: 6px;
  font-size: 24px;
}

.hero__divider {
  width: 1px;
  height: 16px;
  background: rgba(255, 255, 255, 0.6);
}

.hero__location {
  font-size: 14px;
  font-weight: 800;
  opacity: 0.95;
  letter-spacing: 0.02em;
}

/* Sections */
.section {
  padding: 88px 0;
}

.section--soft {
  background:
    radial-gradient(
      circle at top right,
      rgba(122, 163, 232, 0.08),
      transparent 24%
    ),
    linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42),
      rgba(238, 244, 255, 0.56)
    );
  border-top: 1px solid rgba(217, 228, 250, 0.7);
  border-bottom: 1px solid rgba(217, 228, 250, 0.7);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 36px;
  text-align: center;
}

.section-heading--left {
  margin-inline: 0;
  text-align: left;
}

.section-heading h2 {
  margin: 0 0 12px;
  color: var(--title);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.section-heading p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

/* Intro */
.intro-section {
  margin-top: -56px;
  position: relative;
  z-index: 2;
  padding-bottom: 28px;
}

.intro-card {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  align-items: start;
  min-height: 460px;
  padding: 34px 34px 0;
  border-radius: 30px;
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0.82) 38%,
      rgba(255, 255, 255, 0.58) 62%,
      rgba(255, 255, 255, 0.3) 100%
    ),
    url("room.png") center center / cover no-repeat;
  border: 1px solid rgba(217, 228, 250, 0.95);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.intro-copy {
  align-self: start;
  padding-top: 65px;
}

.intro-title {
  margin: 0 0 18px;
  color: var(--title);
  font-size: clamp(20px, 2.2vw, 32px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.intro-title span {
  display: inline;
  color: var(--primary);
  font-weight: 800;
}

.intro-copy p {
  margin: 18px 0 0;
  color: var(--text);
  font-size: 17px;
  max-width: 620px;
  white-space: nowrap;
}

.intro-highlight {
  display: block;
  font-size: clamp(22px, 2.6vw, 20px);
  margin-top: 50px;
  color: var(--title);
  font-weight: 600;
  line-height: 1.2;
}

.highlight-blue {
  color: var(--primary);
  font-weight: 800;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.check-list li {
  position: relative;
  padding-left: 56px;
  min-height: 38px;
  display: flex;
  align-items: center;
  color: var(--title);
  font-size: 22px;
  font-weight: 700;
  white-space: nowrap;
}

.check-list li::before {
  position: absolute;
  left: 0;
  top: 50%;
  width: 38px;
  height: 38px;
  transform: translateY(-50%);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  box-shadow: 0 10px 22px rgba(75, 136, 230, 0.18);
  font-size: 18px;
  font-weight: 900;
}

.check-list li:nth-child(1)::before {
  content: "⏱";
}

.check-list li:nth-child(2)::before {
  content: "📋";
}

.intro-visual {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  padding-top: 0;
}

.agent-frame {
  position: relative;
  width: min(100%, 500px);
  border-radius: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.agent-frame img {
  width: 100%;
  height: auto;
  max-height: 520px;
  object-fit: contain;
  object-position: top center;
}

.agent-badge {
  display: none;
}

/* Services */
#services.section {
  position: relative;
  margin-top: -34px;
  z-index: 3;
}

.services-list-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.services-list-card {
  padding: 26px 24px;
  border-radius: 24px;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.95),
    rgba(248, 251, 255, 0.95)
  );
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 16px;
}

.services-list li {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 0 16px 60px;
  min-height: 48px;
  color: var(--title);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
  border-bottom: 1px solid rgba(191, 210, 245, 0.6);
}

.services-list li::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(180deg, var(--primary-2), var(--primary));
  box-shadow: 0 10px 22px rgba(75, 136, 230, 0.18);
  font-size: 18px;
  font-weight: 900;
}

.services-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.services-heading {
  max-width: 760px;
  margin: 0 0 28px;
  text-align: left;
}

.services-heading h2 {
  margin: 0;
  color: var(--title);
  font-size: clamp(28px, 4vw, 33px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.services-heading__line {
  width: min(100%, 520px);
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(
    to right,
    rgba(75, 136, 230, 0.65),
    rgba(75, 136, 230, 0.35),
    transparent
  );
}

.services-list-card:first-child .services-list li:nth-child(1)::before {
  content: "📅";
}

.services-list-card:first-child .services-list li:nth-child(2)::before {
  content: "💻";
}

.services-list-card:first-child .services-list li:nth-child(3)::before {
  content: "📋";
}

.services-list-card:first-child .services-list li:nth-child(4)::before {
  content: "📷";
}

.services-list-card:last-child .services-list li:nth-child(1)::before {
  content: "🏠";
}

.services-list-card:last-child .services-list li:nth-child(2)::before {
  content: "🔑";
}

.services-list-card:last-child .services-list li:nth-child(3)::before {
  content: "📤";
}

.services-list-card:last-child .services-list li:nth-child(4)::before {
  content: "🗂";
}

/* Zone */
.zone-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 22px;
  align-items: stretch;
}

.zone-layout--simple {
  align-items: start;
}

.zone-left {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.zone-heading-custom {
  max-width: 760px;
  text-align: left;
}

.zone-heading-custom h2 {
  margin: 0;
  color: var(--title);
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  white-space: nowrap;
}

.zone-heading-custom__line {
  width: min(100%, 420px);
  height: 2px;
  margin-top: 14px;
  background: linear-gradient(
    to right,
    rgba(75, 136, 230, 0.65),
    rgba(75, 136, 230, 0.35),
    transparent
  );
}

.zone-simple-card {
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.zone-simple-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
}

.zone-simple-item + .zone-simple-item {
  border-top: 1px solid rgba(191, 210, 245, 0.6);
}

.zone-simple-item p {
  margin: 0;
  color: var(--title);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.3;
}

.info-tile__icon {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(180deg, #f3f8ff, #e7f0ff);
  border: 1px solid var(--border);
  font-size: 20px;
}

.zone-map {
  position: relative;
  height: 320px;
  min-height: 320px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  background: #fff;
}

.zone-map iframe,
.zone-map img {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.zone-map__label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(217, 228, 250, 0.95);
  color: var(--primary-dark);
  font-weight: 800;
  box-shadow: var(--shadow-sm);
}

/* Tarifs */
.tarifs-section {
  padding-top: 34px;
  padding-bottom: 42px;
}

.tarifs-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-bottom: 22px;
}

.tarifs-heading h2 {
  margin: 0;
  color: var(--title);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
  font-weight: 700;
}

.tarifs-heading__line {
  flex: 1;
  max-width: 380px;
  height: 1px;
  background: rgba(191, 210, 245, 0.8);
}

.pricing-grid--simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.price-card--simple {
  padding: 18px 20px;
  border-radius: 8px;
  text-align: left;
  background: linear-gradient(
    180deg,
    rgba(248, 250, 255, 0.98),
    rgba(242, 246, 255, 0.96)
  );
  border: 1px solid rgba(217, 228, 250, 0.9);
  box-shadow: none;
  transform: none;
}

.price-card--simple .price-card__top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.price-card--simple .price-card__icon {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}

.price-card--simple h3 {
  margin: 0;
  color: var(--title);
  font-size: 22px;
  font-weight: 500;
}

.price-card--simple .price-card__from {
  margin: 0;
  color: var(--text);
  font-size: 18px;
  line-height: 1.3;
}

.price-card--simple .price-card__from strong {
  color: var(--primary);
  font-size: 24px;
  font-weight: 800;
}

.price-card--simple .price-card__from span {
  color: var(--primary-dark);
  font-size: 18px;
  font-weight: 700;
}

.price-card--featured,
.price-card__badge,
.price-card__value {
  display: none;
}

/* CTA */
.cta-section {
  padding: 22px 0 88px;
}

.cta-panel {
  display: grid;
  grid-template-columns: 1.2fr auto;
  gap: 22px;
  align-items: center;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.96),
    rgba(234, 241, 255, 0.94)
  );
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.cta-panel__copy h2 {
  margin: 0 0 10px;
  color: var(--title);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.cta-panel__copy p {
  margin: 0;
  color: var(--text-soft);
  font-size: 17px;
}

.cta-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

/* Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  margin: 0;
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
}

.review-card p {
  margin: 0 0 16px;
  color: #32517c;
  font-size: 16px;
}

.review-card footer {
  color: var(--primary-dark);
  font-weight: 800;
}

/* Footer */
.site-footer {
  padding: 26px 0 38px;
  border-top: 1px solid rgba(217, 228, 250, 0.8);
  background: rgba(255, 255, 255, 0.76);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-soft);
  font-size: 14px;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-links a {
  color: var(--primary-dark);
  font-weight: 700;
}

/* Large tablets / small laptops */
@media (max-width: 1200px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .hero__text {
    width: min(100%, 760px);
  }

  .hero-title,
  .hero h1 {
    font-size: 24px;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 17px;
    white-space: nowrap;
  }

  .intro-title {
    font-size: 24px;
    white-space: nowrap;
  }

  .check-list li {
    font-size: 20px;
    white-space: nowrap;
  }

  .intro-copy p {
    font-size: 16px;
    white-space: nowrap;
  }

  .intro-highlight {
    font-size: 16px;
    margin-top: 35px;
  }

  .services-heading h2,
  .zone-heading-custom h2 {
    font-size: 28px;
    white-space: nowrap;
  }

  .services-list li {
    font-size: 17px;
  }

  .zone-simple-item p {
    font-size: 15px;
    white-space: nowrap;
  }

  .tarifs-heading h2 {
    font-size: 30px;
    white-space: nowrap;
  }
}

/* Tablets */
@media (max-width: 1100px) {
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-card,
  .zone-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .services-list-layout {
    grid-template-columns: 1fr 1fr;
  }

  .zone-layout {
    grid-template-columns: 1fr;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }

  .hero {
    min-height: 560px;
  }

  .hero__text {
    width: min(100%, 680px);
    padding: 26px;
  }

  .hero-title,
  .hero h1 {
    font-size: 22px;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 16px;
    white-space: nowrap;
  }

  .intro-card {
    min-height: auto;
    padding: 28px 28px 0;
    background:
      linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.92) 0%,
        rgba(255, 255, 255, 0.82) 48%,
        rgba(255, 255, 255, 0.68) 100%
      ),
      url("room.png") center center / cover no-repeat;
  }

  .intro-copy {
    padding-top: 30px;
  }

  .intro-title {
    font-size: 22px;
    white-space: nowrap;
  }

  .check-list li {
    font-size: 18px;
    white-space: nowrap;
  }

  .intro-copy p {
    font-size: 15px;
    white-space: nowrap;
  }

  .intro-highlight {
    font-size: 16px;
    margin-top: 35px;
  }

  .intro-visual {
    justify-content: center;
  }

  .agent-frame img {
    max-height: 440px;
  }

  .services-heading h2,
  .zone-heading-custom h2 {
    font-size: 24px;
    white-space: nowrap;
  }

  .services-list li {
    font-size: 16px;
  }

  .zone-simple-item p {
    font-size: 14px;
    white-space: nowrap;
  }

  .zone-map {
    height: 280px;
    min-height: 280px;
  }

  .tarifs-heading h2 {
    font-size: 28px;
    white-space: nowrap;
  }
}

/* Mobile / large phones */
@media (max-width: 860px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .services-list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 14px 54px;
    min-height: 44px;
    font-size: 13px;
    line-height: 1.3;
  }

  .services-list li::before {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .hero {
    min-height: auto;
    padding: 36px 0 56px;
    align-items: flex-start;
  }

  .hero__bg {
    object-position: center center;
  }

  .hero__overlay {
    background: linear-gradient(
      180deg,
      rgba(244, 248, 255, 0.95) 0%,
      rgba(244, 248, 255, 0.84) 42%,
      rgba(244, 248, 255, 0.66) 100%
    );
  }

  .hero__content {
    padding: 0;
  }

  .hero__text {
    width: 100%;
    padding: 22px;
  }

  .hero-title,
  .hero h1 {
    font-size: 20px;
    line-height: 1.12;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 15px;
    white-space: nowrap;
  }

  .hero__bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__bottom .btn,
  .hero__priceTag {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero__priceTag {
    gap: 6px;
  }

  .hero__location {
    font-size: 12px;
  }

  .hero__divider {
    height: 14px;
  }

  .intro-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 18px 22px 0;
    min-height: auto;
    overflow: hidden;
  }

  .intro-copy {
    width: 100%;
    padding-top: 6px;
    margin-bottom: 8px;
    position: relative;
    z-index: 2;
  }

  .intro-highlight {
    font-size: 16px;
    margin-top: 35px;
  }

  .intro-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    min-height: auto;
    margin-top: 0;
  }

  .agent-frame {
    width: 100%;
    max-width: 360px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: visible;
  }

  .intro-section {
    margin-top: -20px;
    padding-bottom: 48px;
  }

  #services.section {
    margin-top: 0;
  }

  .agent-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    display: block;
  }

  .section {
    padding: 72px 0;
  }

  .services-list-layout {
    grid-template-columns: 1fr;
  }

  .services-heading h2 {
    font-size: 20px;
    white-space: nowrap;
  }

  .services-heading__line {
    width: 100%;
  }

  .services-list-card {
    padding: 20px;
  }

  .services-list li {
    padding: 0 0 14px 46px;
    font-size: 12px;
    min-height: 32px;
  }

  .services-list li::before {
    width: 30px;
    height: 30px;
    font-size: 15px;
  }

  .zone-heading-custom h2 {
    font-size: 20px;
    white-space: nowrap;
  }

  .zone-heading-custom__line {
    width: 100%;
  }

  .zone-simple-card {
    padding: 20px;
  }

  .zone-simple-item {
    gap: 12px;
    padding: 12px 0;
  }

  .zone-simple-item p {
    font-size: 14px;
    white-space: nowrap;
  }

  .zone-map {
    height: 260px;
    min-height: 260px;
  }

  .pricing-grid--simple,
  .pricing-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .tarifs-heading {
    gap: 10px;
  }

  .tarifs-heading h2 {
    font-size: 26px;
    white-space: nowrap;
  }

  .cta-panel__actions {
    justify-content: flex-start;
  }
}

/* Mobile */
@media (max-width: 640px) {
  .container {
    width: min(100% - 22px, var(--container));
  }

  .contact-dropdown {
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
  }

  .contact-dropdown__card {
    width: 100%;
    max-width: 340px;
  }

  .contact-dropdown__address {
    gap: 6px;
    font-size: 12px;
  }

  .contact-dropdown__divider {
    height: 12px;
  }

  .intro-section {
    margin-top: 0;
    padding-bottom: 56px;
  }

  #services.section {
    margin-top: 0;
  }

  .header-inner {
    min-height: 76px;
    gap: 10px;
  }

  .brand__logo {
    height: 46px;
  }

  .header-actions {
    gap: 8px;
  }

  .header-actions .btn {
    min-height: 42px;
    padding: 10px 14px;
    font-size: 13px;
  }

  .hero {
    padding: 28px 0 46px;
  }

  .hero__text,
  .intro-card,
  .price-card,
  .review-card,
  .cta-panel,
  .services-list-card,
  .zone-simple-card {
    padding: 20px;
  }

  .hero-title,
  .hero h1 {
    font-size: 17px;
    line-height: 1.1;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 14px;
    white-space: nowrap;
  }

  .hero__actions,
  .cta-panel__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero__actions .btn,
  .cta-panel__actions .btn,
  .hero__bottom .btn {
    width: 100%;
  }

  .intro-card {
    padding: 16px 20px 0;
  }

  .intro-copy {
    padding-top: 4px;
    margin-bottom: 6px;
  }

  .intro-highlight {
    font-size: 16px;
    margin-top: 35px;
  }
  .intro-visual {
    min-height: auto;
    align-items: flex-end;
  }

  .agent-frame {
    max-width: 320px;
  }

  .agent-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    display: block;
  }

  .services-heading h2 {
    font-size: 18px;
    white-space: nowrap;
  }

  .services-list li {
    font-size: 12px;
  }

  .zone-heading-custom h2 {
    font-size: 18px;
    white-space: nowrap;
  }

  .zone-simple-item p {
    font-size: 13px;
    white-space: nowrap;
  }

  .zone-map {
    height: 220px;
    min-height: 220px;
  }

  .tarifs-heading h2 {
    font-size: 22px;
    white-space: nowrap;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .section {
    padding: 56px 0;
  }
  .services-list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 14px 50px;
    min-height: 42px;
    font-size: 12px;
    line-height: 1.3;
  }

  .services-list li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    font-size: 14px;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  .container {
    width: min(100% - 20px, var(--container));
  }

  .header-inner {
    gap: 8px;
  }

  .header-actions {
    gap: 6px;
  }

  .header-actions .btn {
    padding: 10px 12px;
    font-size: 12px;
  }

  .brand__logo {
    height: 42px;
  }

  .hero__text,
  .intro-card,
  .price-card,
  .review-card,
  .cta-panel,
  .services-list-card,
  .zone-simple-card {
    padding: 18px;
    border-radius: 20px;
  }

  .intro-card {
    padding: 18px 18px 0;
  }

  .hero-title,
  .hero h1 {
    font-size: 13px;
    line-height: 1.08;
    white-space: nowrap;
  }

  .hero__lead {
    font-size: 11px;
    white-space: nowrap;
  }

  .intro-title {
    font-size: 16px;
    white-space: normal;
  }

  .check-list li {
    font-size: 13px;
    white-space: normal;
  }

  .intro-copy p {
    font-size: 12px;
    white-space: normal;
  }

  .intro-highlight {
    font-size: 13px;
    margin-top: 38px;
  }

  .agent-frame {
    max-width: 240px;
  }

  .agent-frame img {
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    display: block;
  }

  .btn {
    font-size: 13px;
  }

  .services-list-card {
    padding: 18px;
    border-radius: 20px;
  }

  .services-list li,
  .side-list li {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: clamp(11px, 2.5vw, 18px);
  }

  .services-list li {
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 0 14px 46px;
    min-height: 40px;
    font-size: 11px;
    line-height: 1.3;
  }

  .services-list li::before {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    font-size: 13px;
  }

  .services-heading h2 {
    font-size: 16px;
    white-space: nowrap;
  }

  .intro-visual {
    min-height: auto;
    align-items: flex-end;
  }

  .zone-heading-custom h2 {
    font-size: 16px;
    white-space: nowrap;
  }

  .zone-simple-item p {
    font-size: 12px;
    white-space: nowrap;
  }

  .tarifs-heading h2 {
    font-size: 20px;
    white-space: nowrap;
  }

  .zone-map__label,
  .hero__priceTag {
    font-size: 14px;
  }
}

/* Hide call button on desktop */
@media (min-width: 768px) {
  .hero__bottom .btn {
    display: none;
  }
}
