:root {
  --color-accent: #d6d3ce;
  --color-orange: #f59d2a;
  --color-primary: #1a1a1a;
  --color-bg: #ffffff;
  --color-bg-alt: #f9f8f6;
  --color-text: #1a1a1a;
  --color-muted: #6b7280;
  --color-border: #e5e7eb;
  --color-dark: #0b0b0b;
  --font-main: 'Inter', sans-serif;
  --font-display: 'Cormorant Garamond', serif;
  --radius-sm: 8px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-pill: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 12px 36px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 18px 60px rgba(0, 0, 0, 0.18);
  --transition: all 0.25s ease;
  --max-width: 1280px;
  --section-padding: clamp(64px, 7vw, 92px);
  --text-xs: clamp(11px, 1.5vw, 12px);
  --text-sm: clamp(13px, 1.8vw, 14px);
  --text-base: clamp(15px, 2vw, 16px);
  --text-lg: clamp(18px, 2.6vw, 20px);
  --text-xl: clamp(22px, 3vw, 28px);
  --text-2xl: clamp(28px, 4vw, 36px);
  --text-3xl: clamp(34px, 5vw, 52px);
  --text-4xl: clamp(40px, 6vw, 64px);
  --text-hero: clamp(54px, 10vw, 128px);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-main);
  color: var(--color-text);
  background: linear-gradient(180deg, #ffffff 0%, #fbfaf7 100%);
  font-size: var(--text-base);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  min-height: 48px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.06);
  color: inherit;
  font-size: 16px;
}

input::placeholder,
textarea::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 4px),
    calc(100% - 14px) calc(50% - 4px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

textarea {
  min-height: 132px;
  resize: vertical;
}

summary {
  cursor: pointer;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: var(--section-padding) 0;
}

.section--alt {
  background: var(--color-bg-alt);
}

.section--dark {
  position: relative;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(214, 211, 206, 0.12), transparent 24%),
    linear-gradient(180deg, #111111 0%, #050505 100%);
}

.section__header {
  max-width: 820px;
  margin-bottom: 28px;
}

.section__header--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section__header--light .section__label,
.section__header--light .section__sub {
  color: rgba(255, 255, 255, 0.72);
}

.section__label {
  display: inline-flex;
  margin-bottom: 12px;
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-muted);
}

.section__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: var(--text-4xl);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.section__sub {
  margin: 16px 0 0;
  color: var(--color-muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  min-height: 48px;
  border: none;
  border-radius: var(--radius-pill);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: var(--transition);
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--color-orange);
  color: #1a1a1a;
}

.btn--dark {
  background: #ffffff;
  color: #111111;
}

.btn--ghost {
  background: transparent;
  color: #ffffff;
  border: 1.5px solid rgba(255, 255, 255, 0.56);
}

.btn--outline {
  background: transparent;
  color: var(--color-text);
  border: 1.5px solid var(--color-border);
}

.navbar {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  transition: var(--transition);
}

.navbar.scrolled {
  inset: 10px 0 auto;
  background: transparent;
  border-bottom: none;
  box-shadow: none;
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1200px;
  padding-top: 8px;
  padding-bottom: 8px;
  border-radius: var(--radius-pill);
  transition: var(--transition);
}

.navbar.scrolled .navbar__inner {
  padding-top: 8px;
  padding-bottom: 8px;
  background: rgba(9, 9, 9, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(18px);
}

.navbar__logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  min-width: 170px;
}

.navbar.scrolled .navbar__logo,
.navbar.scrolled .navbar__links a,
.navbar.scrolled .navbar__burger {
  color: #ffffff;
}

.navbar__logo-mark {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  backdrop-filter: blur(10px);
}

.navbar.scrolled .navbar__logo-mark {
  background: #ffffff;
}

.navbar__logo-mark svg {
  width: 24px;
  height: 24px;
}

.navbar__logo-img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.navbar__logo-text {
  display: grid;
  gap: 2px;
  line-height: 1.05;
  font-size: var(--text-xs);
  white-space: nowrap;
}

.navbar__logo-text strong {
  font-size: var(--text-sm);
}

.navbar__links,
.navbar__actions {
  display: none;
}

.navbar__burger {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.navbar__burger span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.lang-switcher {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
}

.lang-menu {
  position: relative;
  display: inline-flex;
}

.lang-menu__button {
  min-width: 56px;
  min-height: 44px;
  padding: 0 16px;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 800;
}

.lang-menu__button::after {
  content: '';
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.lang-menu.open .lang-menu__button::after {
  transform: translateY(1px) rotate(225deg);
}

.lang-menu__list {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 86px;
  display: none;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(9, 9, 9, 0.88);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(16px);
}

.lang-menu.open .lang-menu__list {
  display: grid;
  gap: 4px;
}

.lang-menu__list button {
  min-height: 34px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 800;
}

.lang-menu__list button.active,
.lang-menu__list button:hover {
  background: #ffffff;
  color: var(--color-text);
}

.navbar.scrolled .lang-switcher {
  background: rgba(255, 255, 255, 0.12);
}

.lang-switcher button {
  min-width: 34px;
  min-height: 34px;
  padding: 0 9px;
  border: none;
  border-radius: var(--radius-pill);
  background: transparent;
  color: inherit;
}

.lang-switcher button.active {
  background: #ffffff;
  color: var(--color-text);
}

.navbar.scrolled .lang-switcher button.active {
  background: #ffffff;
  color: var(--color-text);
}

.nav-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(320px, 85vw);
  height: 100vh;
  padding: 24px;
  display: grid;
  align-content: start;
  gap: 24px;
  background: #ffffff;
  transition: right 0.3s ease;
  z-index: 200;
}

.nav-drawer.open {
  right: 0;
}

.nav-drawer__close {
  width: 48px;
  height: 48px;
  justify-self: end;
  border: none;
  border-radius: 14px;
  background: rgba(26, 26, 26, 0.06);
}

.nav-drawer__links {
  display: grid;
  gap: 14px;
}

.nav-drawer__links a {
  font-size: var(--text-lg);
  font-weight: 600;
}

.nav-drawer__footer {
  display: grid;
  gap: 16px;
}

.lang-switcher--drawer {
  background: var(--color-bg-alt);
}

.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 199;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg,
.hero__slides,
.hero__overlay {
  position: absolute;
  inset: 0;
}

.hero__slides {
  overflow: hidden;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.9s ease, transform 5s ease;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__overlay {
  background:
    radial-gradient(circle at 50% 36%, rgba(0, 0, 0, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(3, 3, 3, 0.72) 0%, rgba(3, 3, 3, 0.52) 42%, rgba(3, 3, 3, 0.84) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-top: 104px;
  padding-bottom: 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__center {
  width: min(920px, 100%);
  text-align: center;
  color: #ffffff;
  padding: clamp(16px, 2.4vw, 28px) clamp(18px, 4vw, 48px);
  transform: translateY(-8px);
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__badge--green {
  background: rgba(86, 130, 72, 0.96);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.hero__kicker {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero__title {
  max-width: 13.8ch;
  margin: 12px auto 0;
  font-family: var(--font-main);
  font-size: clamp(42px, 5.9vw, 82px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.045em;
  text-wrap: balance;
  text-shadow: 0 10px 36px rgba(0, 0, 0, 0.24);
}

.hero__sub {
  max-width: 700px;
  margin: 18px auto 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.4;
}

.hero__sub--line {
  max-width: 680px;
  font-size: clamp(16px, 1.45vw, 19px);
}

.hero__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
}

.hero__actions--center {
  justify-content: center;
  align-items: center;
}

.hero__actions--center .btn {
  min-width: 190px;
  min-height: 52px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero__proof {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
  justify-content: center;
}

.hero__proof span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 5px 0;
  border-radius: var(--radius-pill);
  border: none;
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  font-size: var(--text-xs);
}

.hero__proof span:not(:last-child)::after {
  content: '•';
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.48);
}

.hero__proof--compact {
  margin-top: 14px;
  margin-bottom: 0;
}

.hero__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 620px;
  margin: 28px auto 0;
}

.hero__stats div {
  padding: 0 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.hero__stats div:last-child {
  border-right: none;
}

.hero__stats strong {
  display: block;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.hero__stats span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-xs);
}

.hero__slider-dots {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
}

.hero__dot.is-active {
  width: 32px;
  border-radius: var(--radius-pill);
  background: #ffffff;
}

.metrics {
  padding: 34px 0;
  background: #050505;
  color: #ffffff;
}

.metrics__grid {
  display: grid;
  gap: 20px;
  text-align: center;
}

.metric strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.9;
}

.metric span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-sm);
}

.cards-grid,
.pricing__grid,
.process__grid,
.projects__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.cards-grid,
.pricing__grid,
.process__grid,
.projects__grid,
.faq__list {
  margin-top: 18px;
}

.card,
.process__step,
.pricing-card,
.project-card,
.quote-card,
.faq__item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
}

.card,
.process__step,
.quote-card {
  padding: 26px;
  background: rgba(255, 255, 255, 0.9);
}

.card:hover,
.process__step:hover,
.pricing-card:hover,
.project-card:hover,
.quote-card:hover,
.faq__item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.card__icon {
  width: 48px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(214, 211, 206, 0.3);
  font-size: var(--text-sm);
  font-weight: 700;
}

.card h3,
.process__step h3,
.pricing-card h3,
.project-card h3 {
  margin: 18px 0 10px;
  font-size: var(--text-xl);
  line-height: 1.15;
}

.card p,
.process__step p,
.project-card p,
.quote-card p,
.pricing-card__subtitle {
  margin: 0;
  color: var(--color-muted);
}

.pricing__grid {
  align-items: stretch;
}

.pricing-card {
  display: grid;
  gap: 18px;
  overflow: hidden;
  padding: 20px;
  background: #ffffff;
  align-content: start;
  min-height: 100%;
}

.pricing-card__image {
  width: 100%;
  aspect-ratio: 1 / 0.78;
  object-fit: cover;
  border-radius: 14px;
}

.pricing-card__tag {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(245, 157, 42, 0.16);
  color: #8a4b04;
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pricing-card__price {
  margin: 0;
  font-size: var(--text-3xl);
  font-weight: 800;
}

.pricing-card__list {
  margin: 0;
  padding-left: 18px;
  color: var(--color-muted);
  line-height: 1.65;
}

.pricing-card--featured {
  color: #ffffff;
  background: #101010;
  border-color: rgba(255, 255, 255, 0.08);
}

.pricing-card--featured .pricing-card__subtitle,
.pricing-card--featured .pricing-card__list {
  color: rgba(255, 255, 255, 0.72);
}

.pricing-card--featured .pricing-card__tag {
  background: rgba(245, 157, 42, 0.18);
  color: #ffd79b;
}

.models__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.model-card {
  display: grid;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: #ffffff;
  transition: var(--transition);
}

.model-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.model-card__image {
  width: 100%;
  aspect-ratio: 1 / 0.62;
  object-fit: cover;
}

.model-card__body {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.model-card__profile {
  color: var(--color-muted);
  font-size: var(--text-xs);
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.model-card h3 {
  margin: 0;
  font-size: var(--text-2xl);
  line-height: 1.05;
}

.model-card p {
  margin: 0;
  color: var(--color-muted);
}

.models__note {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.models__note article {
  padding: 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.72);
}

.models__note h3 {
  margin: 0 0 8px;
  font-size: var(--text-lg);
}

.models__note p {
  margin: 0;
  color: var(--color-muted);
}

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 24px;
}

.video-card {
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.video-card--dark {
  color: #ffffff;
  background: #101010;
  border-color: rgba(255, 255, 255, 0.08);
}

.video-card__media {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #0b0b0b;
}

.video-card__media iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.video-card__body {
  display: grid;
  gap: 10px;
  padding: 24px;
}

.video-card__body h3 {
  margin: 0;
  font-size: var(--text-xl);
  line-height: 1.08;
}

.video-card__body p {
  margin: 0;
  color: var(--color-muted);
}

.video-card--dark .video-card__body p,
.video-card--dark .section__label {
  color: rgba(255, 255, 255, 0.72);
}

.process__step {
  position: relative;
  min-height: 220px;
  display: grid;
  align-content: start;
  gap: 6px;
}

.process__number {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--color-orange);
  color: #ffffff;
  font-weight: 700;
}

.calculator__layout,
.contact__layout {
  display: grid;
  gap: 24px;
  margin-top: 20px;
}

.calculator__form,
.calculator__summary,
.contact-form {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.calculator__form {
  display: grid;
  gap: 18px;
}

.calculator__field {
  display: grid;
  gap: 12px;
}

.calculator__helper {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.calculator__helper strong {
  font-size: var(--text-sm);
}

.calculator__helper p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: var(--text-sm);
}

.calculator__label,
.contact-form span {
  font-size: var(--text-sm);
  font-weight: 600;
}

.toggle-group {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toggle-pill {
  position: relative;
  flex: 1 1 120px;
}

.toggle-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.toggle-pill span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  text-align: center;
  transition: var(--transition);
}

.toggle-pill input:checked + span {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: #111111;
}

.toggle-pill input:disabled + span {
  opacity: 0.36;
}

.calculator__usp {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.calculator__usp span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--text-xs);
}

.calculator__summary {
  display: grid;
  gap: 20px;
}

.calculator__summary h3 {
  margin: 0;
  font-size: var(--text-2xl);
}

.summary-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.summary-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.summary-list dt,
.summary-list dd {
  margin: 0;
}

.summary-list dt {
  color: rgba(255, 255, 255, 0.65);
}

.summary-list dd {
  text-align: right;
  font-weight: 600;
}

.calculator__price-block {
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
}

.calculator__price-label {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  font-size: var(--text-sm);
}

.calculator__price {
  display: block;
  margin-top: 8px;
  font-size: clamp(38px, 7vw, 56px);
  line-height: 1;
}

.calculator__price-note,
.calculator__gift {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.calculator__gift-line {
  margin: 14px 0 0;
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 600;
}

.project-card {
  overflow: hidden;
  background: #ffffff;
  align-content: start;
  min-height: 100%;
}

.project-card img {
  width: 100%;
  aspect-ratio: 1 / 0.8;
  object-fit: cover;
}

.project-card__body {
  padding: 20px;
  display: grid;
  gap: 10px;
}

.project-card__meta,
.footer__brand {
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.quote-card strong {
  display: block;
  margin-top: 18px;
  font-size: var(--text-sm);
}

.faq__list {
  display: grid;
  gap: 12px;
}

.faq__item {
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.faq__item summary {
  position: relative;
  padding-right: 24px;
  font-weight: 600;
}

.faq__item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: -2px;
  font-size: 22px;
}

.faq__item[open] summary::after {
  content: '-';
}

.faq__item p {
  margin: 14px 0 0;
  color: var(--color-muted);
}

.contact__content .section__sub {
  color: rgba(255, 255, 255, 0.72);
}

.process__note {
  margin: 18px auto 0;
  text-align: center;
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.trust-list {
  display: grid;
  gap: 14px;
  max-width: 860px;
  margin: 18px auto 0;
}

.trust-list__item {
  display: grid;
  gap: 6px;
  padding: 18px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.9);
}

.trust-list__item strong {
  font-size: var(--text-base);
}

.trust-list__item span {
  color: var(--color-muted);
  font-size: var(--text-sm);
}

.micro-cta {
  max-width: 760px;
  margin: 0 auto;
  padding: 34px 28px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  text-align: center;
}

.micro-form {
  display: grid;
  gap: 14px;
  max-width: 460px;
  margin: 24px auto 0;
}

.micro-form__field {
  display: grid;
  gap: 10px;
  text-align: left;
}

.micro-form__field span {
  font-size: var(--text-sm);
  font-weight: 600;
}

.micro-form input {
  border: 1px solid var(--color-border);
  background: #ffffff;
  color: var(--color-text);
}

.micro-form input::placeholder {
  color: var(--color-muted);
}

.contact__gift {
  margin: 18px 0 0;
  color: #ffffff;
  font-size: var(--text-sm);
  font-weight: 600;
}

.form__legal {
  margin: 14px 0 0;
  font-size: var(--text-xs);
  line-height: 1.5;
}

.form__privacy {
  margin: 6px 0 0;
  font-size: var(--text-xs);
}

.form__privacy a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.contact-form .form__legal {
  color: rgba(255, 255, 255, 0.62);
}

.micro-cta .form__legal {
  color: var(--color-muted);
}

.contact__info {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.contact__info a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.88);
}

.contact-form__grid {
  display: grid;
  gap: 16px;
}

.contact-form__message {
  grid-column: 1 / -1;
}

.footer {
  padding: 28px 0 42px;
  border-top: 1px solid var(--color-border);
  background: #ffffff;
}

.footer__inner,
.footer__links,
.footer__contacts {
  display: grid;
  gap: 14px;
}

.footer p {
  margin: 0;
  color: var(--color-muted);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(16px);
  pointer-events: auto;
}

.cookie-banner p {
  margin: 0;
  color: var(--color-text);
  font-size: var(--text-sm);
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-banner button {
  position: relative;
  z-index: 1;
  pointer-events: auto;
}

.pricing__grid > *,
.process__grid > *,
.projects__grid > *,
.trust-list > *,
.micro-cta,
.faq__list > * {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

@media (max-width: 639px) {
  .btn--block-mobile {
    width: 100%;
  }

  .hero__title {
    max-width: 12ch;
    font-size: clamp(38px, 10vw, 58px);
  }

  .hero__sub {
    font-size: 16px;
  }

  .hero__stats {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 260px;
  }

  .hero__stats div {
    border-right: none;
  }
}

@media (min-width: 640px) {
  .metrics__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .cards-grid,
  .pricing__grid,
  .projects__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .models__grid,
  .models__note,
  .video-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .hero__actions {
    flex-direction: row;
  }

  .micro-form {
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }

  .calculator__layout,
  .contact__layout {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: start;
  }

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

  .footer__inner {
    grid-template-columns: 1.2fr 0.8fr 0.8fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .navbar__links,
  .navbar__actions {
    display: inline-flex;
    align-items: center;
    gap: 12px;
  }

  .navbar__links {
    flex: 1;
    justify-content: center;
    gap: 0;
    min-width: 0;
  }

  .navbar__links a {
    position: relative;
    padding: 0 14px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    opacity: 0.88;
    white-space: nowrap;
    line-height: 1;
  }

  .navbar__links a + a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 1px;
    height: 18px;
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-50%);
  }

  .navbar__links a:hover {
    opacity: 1;
  }

  .navbar__cta {
    min-height: 44px;
    padding: 12px 26px;
    white-space: nowrap;
  }

  .navbar__burger {
    display: none;
  }

  .cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .pricing__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }

  .process__grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .projects__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
  }
}

@media (min-width: 1280px) {
  .container {
    padding: 0 64px;
  }
}
