@font-face {
  font-family: "Plus Jakarta Sans";
  src: url(../fonts/PlusJakartaSans-VariableFont_wght.ttf);
  font-display: swap;
}
:root {
  --primary: #0b3b5c;
  --primary-light: #2a6a8e;
  --accent: #c7522a;
  --accent-glow: #f28e6c;
  --bg-light: #f9f7f5;
  --bg-white: #ffffff;
  --text-dark: #1e2b32;
  --text-muted: #4a5c66;
  --border-light: #e2e6e9;
  --shadow-sm: 0 8px 20px rgba(0,0,0,0.04);
  --shadow-md: 0 15px 30px rgba(0,0,0,0.07);
  --shadow-lg: 0 25px 40px -10px rgba(0,0,0,0.12);
  --glass-bg: rgba(255,255,255,0.7);
  --glass-border: rgba(255,255,255,0.3);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Plus Jakarta Sans', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.5;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.btn {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 60px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: all 0.2s ease;
  border: none;
  cursor: pointer;
  background: none;
  font-size: 1rem;
}

.btn--primary {
  background: var(--primary);
  color: white;
  box-shadow: 0 8px 16px rgba(11,59,92,0.15);
}
.btn--primary:hover {
  background: var(--primary-light);
  transform: scale(1.02);
  box-shadow: 0 12px 20px rgba(11,59,92,0.2);
}

.btn--outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn--outline:hover {
  background: var(--primary);
  color: white;
}

.btn--nav {
  background: var(--accent);
  color: white !important;
  padding: 8px 20px;
}
.btn--nav:hover {
  background: #b03f1e;
}

.btn--block {
  width: 100%;
  text-align: center;
}

.section-tag {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  background: rgba(199,82,42,0.08);
  padding: 4px 12px;
  border-radius: 30px;
  backdrop-filter: blur(4px);
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}

.section-header {
  margin-bottom: 48px;
}

.section-header--center {
  text-align: center;
}

.section-header--inline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

@media (max-width: 640px) {
  .d-none-mobile {
    display: none;
  }
  .section-header--inline {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
}

.header {
  background: var(--bg-white);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(255,255,255,0.85);
}

.header__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary);
}
.logo img {
  width: 50px;
  height: 50px;
}

.header__notice {
  font-size: 0.8rem;
  color: var(--text-muted);
  background: rgba(11,59,92,0.05);
  padding: 6px 14px;
  border-radius: 40px;
  margin-left: 16px;
  white-space: nowrap;
}

.nav {
  display: flex;
  align-items: center;
}

.nav__list {
  display: flex;
  list-style: none;
  gap: 28px;
  align-items: center;
}
.nav__list a {
  font-weight: 500;
}
.nav__list a:hover {
  color: var(--accent);
}

.nav__toggle {
  display: none;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
  padding: 8px;
}
.nav__toggle-bar {
  width: 28px;
  height: 3px;
  background: var(--primary);
  border-radius: 4px;
  transition: 0.2s;
}

@media (max-width: 900px) {
  .header__notice {
    display: none;
  }
  .nav__list {
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
    box-shadow: var(--shadow-md);
    transform: translateY(-150%);
    transition: transform 0.3s;
    z-index: 40;
    gap: 20px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
  }
  .nav__list.active {
    transform: translateY(0);
  }
  .nav__toggle {
    display: flex;
  }
}

.hero {
  padding: 60px 0 80px;
  background: linear-gradient(145deg, #fff 0%, #f2f5f7 100%);
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--primary) 0%, #1e5a7a 80%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 90%;
}
.hero__actions {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.hero__badge {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 500;
}
.hero__visual {
  position: relative;
}
.hero__image-wrapper {
  position: relative;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero__glass-card {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: var(--glass-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--glass-border);
  padding: 16px 24px;
  border-radius: 60px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-md);
}
.hero__price {
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--primary);
}
.hero__vat {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.hero__quick-faq {
  margin-top: 40px;
  display: flex;
  gap: 24px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  padding: 16px 24px;
  border-radius: 60px;
  border: 1px solid #fff;
  width: fit-content;
}
.quick-faq__item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quick-faq__item i {
  color: var(--accent);
}

@media (max-width: 800px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__quick-faq {
    flex-wrap: wrap;
  }
}

.features {
  padding: 80px 0;
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  background: var(--bg-white);
  padding: 28px 20px;
  border-radius: 32px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
  position: relative;
  border: 1px solid rgba(255,255,255,0.5);
  backdrop-filter: blur(4px);
}
.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-lg);
}
.feature-card--large {
  grid-column: span 2;
  grid-row: span 1;
  background: linear-gradient(145deg, #fff, #f4f8fa);
}
.feature-card--tall {
  grid-row: span 2;
}
.feature-card--wide {
  grid-column: span 2;
}
.feature-card__icon {
  font-size: 2.2rem;
  color: var(--accent);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}
.feature-card p {
  color: var(--text-muted);
}
.feature-card__badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent);
  color: white;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
}
.feature-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  background: radial-gradient(circle at 80% 20%, rgba(199,82,42,0.08), transparent 70%);
  pointer-events: none;
}

@media (max-width: 900px) {
  .features__grid {
    grid-template-columns: 1fr 1fr;
  }
  .feature-card--large, .feature-card--wide {
    grid-column: span 2;
  }
}
@media (max-width: 500px) {
  .features__grid {
    grid-template-columns: 1fr;
  }
  .feature-card--large, .feature-card--wide, .feature-card--tall {
    grid-column: span 1;
  }
}

.description-specs {
  padding: 70px 0;
  background: var(--bg-white);
  border-radius: 48px 48px 0 0;
  margin-top: -30px;
}
.description-specs__wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.description-specs__text {
  font-size: 1.2rem;
  margin: 24px 0;
  color: var(--text-muted);
}
.description-specs__checklist {
  list-style: none;
}
.description-specs__checklist li {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.description-specs__checklist i {
  color: var(--accent);
}
.specs-card {
  background: var(--bg-light);
  padding: 32px;
  border-radius: 40px;
  box-shadow: inset 0 2px 8px rgba(0,0,0,0.02), var(--shadow-md);
  border: 1px solid var(--border-light);
}
.specs-card__title {
  font-size: 1.8rem;
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.specs-list {
  list-style: none;
}
.specs-list li {
  display: flex;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border-light);
}
.specs-list li:last-child {
  border: none;
}

@media (max-width: 700px) {
  .description-specs__wrapper {
    grid-template-columns: 1fr;
  }
}

.gallery-section {
  padding: 80px 0;
}
.gallery {
  max-width: 900px;
  margin: 0 auto;
}
.gallery__main {
  border-radius: 32px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 20px;
}
.gallery__main img {
  width: 100%;
  height: auto;
}
.gallery__thumbs {
  display: flex;
  gap: 16px;
  justify-content: center;
}
.gallery__thumb {
  width: 100px;
  height: 70px;
  border-radius: 16px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  opacity: 0.7;
  transition: 0.2s;
  padding: 0;
  background: none;
}
.gallery__thumb.active {
  border-color: var(--accent);
  opacity: 1;
}
.gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews {
  padding: 70px 0;
  background: linear-gradient(120deg, #eef3f6, #fff);
}
.reviews__carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  overflow-x: auto;
  padding-bottom: 8px;
  scroll-snap-type: x mandatory;
}
.review-card {
  background: var(--bg-white);
  padding: 28px;
  border-radius: 28px;
  box-shadow: var(--shadow-sm);
  scroll-snap-align: start;
  transition: transform 0.2s, box-shadow 0.2s;
  border: 1px solid rgba(255,255,255,0.7);
}
.review-card:hover {
  box-shadow: var(--shadow-md);
}
.review-card--featured {
  background: var(--primary);
  color: white;
}
.review-card--featured .review-card__text,
.review-card--featured .review-card__location {
  color: rgba(255,255,255,0.8);
}
.review-card__stars {
  color: #fbbf24;
  margin-bottom: 16px;
}
.review-card__text {
  font-style: italic;
  margin-bottom: 24px;
}
.review-card__author {
  display: flex;
  flex-direction: column;
}
.review-card__name {
  font-weight: 700;
}
.review-card__location {
  font-size: 0.9rem;
  color: var(--text-muted);
}
@media (max-width: 1000px) {
  .reviews__carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .reviews__carousel {
    display: flex;
    overflow-x: auto;
    gap: 16px;
  }
  .review-card {
    min-width: 280px;
  }
}

.faq-section {
  padding: 80px 0;
}
.faq-section__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}
.faq-section__desc {
  margin: 24px 0 32px;
  color: var(--text-muted);
}
.faq-accordion {
  background: var(--bg-white);
  border-radius: 32px;
  padding: 8px;
  box-shadow: var(--shadow-md);
}
.faq-item {
  border-bottom: 1px solid var(--border-light);
}
.faq-item:last-child {
  border: none;
}
.faq-item__question {
  width: 100%;
  text-align: left;
  padding: 20px 24px;
  font-weight: 600;
  font-size: 1.1rem;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 24px;
}
.faq-item.active .faq-item__answer {
  max-height: 200px;
  padding-bottom: 20px;
}
.faq-item__answer p {
  color: var(--text-muted);
}
@media (max-width: 700px) {
  .faq-section__grid {
    grid-template-columns: 1fr;
  }
}

.request-section {
  padding: 60px 0 100px;
}
.request-card {
  background: var(--bg-white);
  border-radius: 48px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(4px);
}
.request-card__content {
  padding: 48px 40px;
}
.request-card__title {
  font-size: 2.2rem;
  margin-bottom: 8px;
}
.request-card__subtitle {
  color: var(--text-muted);
  margin-bottom: 32px;
}
.request-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-weight: 500;
  font-size: 0.9rem;
}
.form-group input {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border-light);
  border-radius: 60px;
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border 0.2s;
}
.form-group input:focus {
  outline: none;
  border-color: var(--primary);
}
.form-group--checkbox {
  flex-direction: row;
  align-items: center;
  gap: 12px;
  margin: 20px 0;
}
.form-group--checkbox input {
  width: 20px;
  height: 20px;
}
.request-card__visual {
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.request-card__visual img {
  border-radius: 24px;
  object-fit: contain;
}
@media (max-width: 800px) {
  .request-card {
    grid-template-columns: 1fr;
  }
  .request-form .form-row {
    grid-template-columns: 1fr;
  }
}

.footer {
  background: #0b2a3e;
  color: #e0edf5;
  margin-top: auto;
  padding: 60px 0 0;
  font-size: 0.95rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 40px;
}
.footer h4 {
  color: white;
  margin-bottom: 20px;
  font-size: 1.2rem;
}
.footer__disclaimer {
  margin-top: 24px;
  font-size: 0.9rem;
  opacity: 0.8;
}
.footer__links ul {
  list-style: none;
}
.footer__links li {
  margin-bottom: 12px;
}
.footer__links a {
  opacity: 0.8;
  transition: opacity 0.2s;
}
.footer__links a:hover {
  opacity: 1;
  text-decoration: underline;
}
.footer__contacts address {
  font-style: normal;
  line-height: 1.6;
  margin-bottom: 20px;
}
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}
.footer__legal-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 0.9rem;
}
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 50px;
  padding: 24px 0;
  font-size: 0.9rem;
}
.footer__bottom-inner {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 500px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
    .specs-list li {
      flex-direction: column;
    }
        .specs-card {
          padding: 32px 16px;
        }
}

.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: var(--primary);
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transition: 0.2s;
  cursor: pointer;
  z-index: 30;
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.thanks-page {
  background: var(--bg-light);
}
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
}
.thanks-container {
  width: 100%;
}
.thanks-card {
  background: white;
  max-width: 650px;
  margin: 0 auto;
  padding: 48px 40px;
  border-radius: 48px;
  box-shadow: var(--shadow-lg);
  text-align: center;
  word-break: break-word;
}
.thanks-logo {
  margin: 0 auto 24px;
}
.thanks-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.thanks-message {
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.thanks-submessage {
  color: var(--text-muted);
  margin-bottom: 32px;
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}
.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 30px;
}
.legal-content h2 {
  font-size: 1.6rem;
  margin: 30px 0 16px;
}
.legal-content p {
  margin-bottom: 16px;
  line-height: 1.7;
  color: #333;
}
.legal-content ul {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}
footer span {
    color: #ffffff;
}