@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700;800&display=swap');

:root {
  --bg: #f7f1eb;
  --bg-alt: #f0e5db;
  --accent: #d8a47f;
  --accent-strong: #c48661;
  --text: #2f2a28;
  --muted: #5f5550;
  --card: #ffffff;
  --border: #e3d6cb;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --golden-ratio: 1.618;
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  font-size: 18px;
}

.top-nav {
  position: sticky;
  top: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid var(--border);
  animation: slideDown 0.5s ease-out;
  z-index: 100;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.top-nav__container {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  padding: 12px 40px;
  align-items: center;
  justify-content: flex-end;
}

.top-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  padding: 12px 24px;
  border-radius: 10px;
  transition: all 0.3s ease;
  position: relative;
  font-family: "Montserrat", sans-serif;
}

.top-nav a:not(:last-child):hover {
  color: var(--accent-strong);
  background: rgba(216, 164, 127, 0.1);
  transform: translateY(-2px);
}

.top-nav a:last-child {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(200, 134, 97, 0.3);
}

.top-nav a:last-child:hover {
  background: var(--accent-strong);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200, 134, 97, 0.4);
}

h1 { 
  margin: 0 0 20px; 
  color: var(--text); 
  font-size: calc(18px * var(--golden-ratio) * var(--golden-ratio) * var(--golden-ratio));
  font-weight: 700;
  line-height: 1.2;
  animation: fadeInUp 0.8s ease-out;
}

h2 { 
  margin: 0 0 16px; 
  color: var(--text); 
  font-size: calc(18px * var(--golden-ratio) * var(--golden-ratio));
  font-weight: 600;
  line-height: 1.3;
}

h3 { 
  margin: 0 0 14px; 
  color: var(--text); 
  font-size: calc(18px * var(--golden-ratio));
  font-weight: 600;
  line-height: 1.4;
}

p { 
  margin: 0 0 16px; 
  color: var(--muted); 
  font-size: 18px;
  line-height: 1.7;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 600px;
  padding: 72px 7vw;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 1;
  animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero__bg-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  animation: fadeInUp 1s ease-out 0.2s both;
}
.hero__content h1,
.hero__content .subtitle,
.hero__content .eyebrow {
  text-shadow: 0 2px 8px rgba(255, 255, 255, 0.8);
}

.eyebrow { 
  text-transform: uppercase; 
  letter-spacing: 0.12em; 
  font-size: 14px; 
  color: var(--muted); 
  margin-bottom: 12px; 
  font-weight: 600;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}
.subtitle { 
  font-size: calc(18px * var(--golden-ratio)); 
  margin-bottom: 32px; 
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.bullets {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.8s both;
}
.bullets li {
  position: relative;
  padding-left: 32px;
  flex: 1;
  min-width: 200px;
  font-size: 16px;
  line-height: 1.6;
  transition: transform 0.3s ease;
}
.bullets li:hover {
  transform: translateX(4px);
}
.bullets li::before {
  content: "✔";
  position: absolute;
  left: 0;
  color: var(--accent-strong);
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.btn-large {
  padding: 18px 40px;
  font-size: 20px;
  margin-bottom: 32px;
  animation: fadeInUp 0.8s ease-out 1s both;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(200, 134, 97, 0.35);
}
.btn-primary:hover { 
  background: var(--accent-strong); 
  transform: translateY(-3px); 
  box-shadow: 0 15px 35px rgba(200, 134, 97, 0.45);
}
.btn-primary:active {
  transform: translateY(-1px);
}
.btn:disabled { opacity: 0.5; cursor: not-allowed; transform: none; box-shadow: none; }

.section {
  padding: 80px 7vw;
  background: var(--bg);
  animation: fadeIn 0.8s ease-out;
}
.section--alt { background: var(--bg-alt); }
.section__header { 
  margin-bottom: 48px; 
  max-width: calc(680px * var(--golden-ratio));
}
.section__header p {
  font-size: calc(18px * var(--golden-ratio));
  line-height: 1.7;
}

.timeline {
  display: grid;
  gap: 24px;
}

.timeline__item {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 24px;
  padding: 28px;
  border-radius: 16px;
  background: var(--card);
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
  position: relative;
  overflow: hidden;
}

.timeline__item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}

.timeline__item:hover::before {
  transform: scaleY(1);
}

.timeline__item:nth-child(1) { 
  animation-delay: 0.1s; 
}
.timeline__item:nth-child(2) { 
  animation-delay: 0.3s; 
}
.timeline__item:nth-child(3) { 
  animation-delay: 0.5s; 
}

.timeline__item:hover {
  transform: translateY(-6px) translateX(8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  background: linear-gradient(135deg, var(--card) 0%, rgba(247, 241, 235, 0.5) 100%);
}
.timeline__date { 
  color: var(--accent-strong); 
  font-weight: 700; 
  font-size: calc(18px * var(--golden-ratio));
}
.timeline__item h3 {
  font-size: calc(18px * var(--golden-ratio));
  margin-bottom: 12px;
}
.timeline__item p {
  font-size: 18px;
  line-height: 1.7;
}

.services-grid {
  display: grid;
  gap: 48px;
}

.service-item {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 48px;
  align-items: center;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out both;
  transition: transform 0.4s ease;
}

.service-item:nth-child(1) { 
  animation-delay: 0.1s; 
}
.service-item:nth-child(2) { 
  animation-delay: 0.3s; 
}
.service-item:nth-child(3) { 
  animation-delay: 0.5s; 
}

.service-item:hover {
  transform: translateY(-8px);
}
.service-item__image {
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}

.service-item__image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(216, 164, 127, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 1;
  border-radius: 16px;
}

.service-item__image:hover::before {
  opacity: 1;
}

.service-item__image:hover {
  transform: scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.service-item__image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-item__image:hover img {
  transform: scale(1.08);
}
.service-item__content {
  transition: transform 0.3s ease;
}

.service-item:hover .service-item__content {
  transform: translateX(8px);
}

.service-item__content h3 {
  margin-top: 0;
  margin-bottom: 16px;
  font-size: calc(18px * var(--golden-ratio));
  transition: color 0.3s ease;
}

.service-item:hover .service-item__content h3 {
  color: var(--accent-strong);
}

.service-item__content p {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-cta-btn {
  margin-top: 16px;
}

.section__cta {
  text-align: center;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--border);
}

#process {
  background: var(--bg);
}

#process .section__header p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
}

.faq-list {
  display: grid;
  gap: 16px;
  max-width: 100%;
  margin: 0;
}

.faq-item {
  background: var(--card);
  border-radius: 16px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 28px;
  background: transparent;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--accent-strong);
  background: rgba(216, 164, 127, 0.05);
}

.faq-question span:first-child {
  flex: 1;
  padding-right: 20px;
}

.faq-icon {
  font-size: 28px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.3s ease;
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(216, 164, 127, 0.1);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--accent);
  color: #fff;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 28px;
}

.faq-item.active .faq-answer {
  padding: 0 28px 24px 28px;
}

.faq-answer p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  padding-top: 8px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.card {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.quote {
  background: var(--card);
  padding: 22px;
  border-left: 4px solid var(--accent);
  border-radius: 10px;
  max-width: 640px;
  box-shadow: var(--shadow);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}
.contact-options div {
  background: var(--card);
  padding: 18px;
  border-radius: 12px;
  box-shadow: var(--shadow);
}

.footer {
  background: linear-gradient(135deg, var(--bg-alt) 0%, var(--bg) 100%);
  border-top: 2px solid var(--border);
  padding: 60px 7vw 40px;
  margin-top: 80px;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
}

.footer__container {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__copyright {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  font-family: "Montserrat", sans-serif;
}

.footer__description {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 400px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer__links-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  font-family: "Montserrat", sans-serif;
}

.footer__links a { 
  color: var(--muted); 
  text-decoration: none; 
  font-size: 16px;
  transition: all 0.3s ease;
  padding: 8px 0;
  position: relative;
  display: inline-block;
  width: fit-content;
}

.footer__links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer__links a:hover { 
  color: var(--accent-strong);
  transform: translateX(4px);
}

.footer__links a:hover::after {
  width: 100%;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  z-index: 10;
}
.modal.open { display: flex; }
.modal__dialog {
  background: var(--card);
  border-radius: 20px;
  width: 900px;
  max-width: 90vw;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  position: relative;
  height: 85vh;
  max-height: 85vh;
  overflow: hidden;
  border: 3px solid var(--accent);
  padding: 6px;
}
.modal__body {
  padding: 50px;
  background: var(--card);
  border-radius: 16px;
  height: calc(85vh - 12px);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.modal__body::-webkit-scrollbar {
  width: 10px;
}
.modal__body::-webkit-scrollbar-track {
  background: var(--bg);
  border-radius: 10px;
}
.modal__body::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 10px;
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: var(--accent-strong);
}
.modal__close {
  position: absolute;
  top: 10px;
  right: 12px;
  border: none;
  background: transparent;
  font-size: 22px;
  cursor: pointer;
  color: var(--muted);
}

.quiz-header {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.quiz-header__text {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.quiz-step-footer {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0 0 20px 0;
  padding-bottom: 0;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}

.quiz-footer {
  display: none;
}

.quiz-step {
  margin-bottom: 28px;
  flex: 1;
}
.quiz-step h3 {
  margin-bottom: 32px;
  font-size: calc(20px * var(--golden-ratio));
  color: var(--text);
  font-weight: 600;
  font-family: "Montserrat", sans-serif;
}
.quiz-step .options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}
.pill {
  padding: 18px 32px;
  border-radius: 12px;
  border: 2px solid var(--border);
  background: #fff;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-size: 20px;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
}
.pill:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(216, 164, 127, 0.25);
}
.pill.active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent-strong);
  box-shadow: 0 8px 25px rgba(200, 134, 97, 0.45);
  transform: translateY(-3px);
  animation: pulse 0.3s ease;
}

@keyframes pulse {
  0%, 100% { transform: translateY(-3px) scale(1); }
  50% { transform: translateY(-3px) scale(1.05); }
}
.quiz-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}
.btn-secondary:hover {
  background: var(--bg-alt);
  border-color: var(--accent);
}
.schedule-wrapper {
  display: grid;
  gap: 24px;
}
.schedule-days,
.schedule-time {
  margin-bottom: 16px;
}
.schedule-label {
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--text);
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}

.field {
  display: grid;
  gap: 8px;
  margin: 16px 0;
  font-family: "Montserrat", sans-serif;
}
.field span {
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
}
.field input {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 18px;
  font-family: "Montserrat", sans-serif;
}
.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 16px 0;
  color: var(--muted);
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 16px;
  line-height: 1.6;
}
.checkbox input[type="checkbox"] {
  display: none;
}
.checkbox .checkmark-square {
  width: 20px;
  height: 20px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: all 200ms ease;
  flex-shrink: 0;
  margin-top: 2px;
}
.checkbox input[type="checkbox"]:checked + .checkmark-square {
  background: var(--accent);
  border-color: var(--accent-strong);
}
.checkbox input[type="checkbox"]:checked + .checkmark-square::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.checkbox a {
  color: var(--accent);
  text-decoration: underline;
}
.checkbox a:hover {
  color: var(--accent-strong);
}
.agreements {
  margin: 20px 0;
  padding: 16px;
  background: var(--bg);
  border-radius: 10px;
}
.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 8px;
}
.contact-method {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 200ms ease;
  background: #fff;
}
.contact-method:hover {
  border-color: var(--accent);
  background: var(--bg);
}
.contact-method input[type="radio"] {
  display: none;
}
.contact-method .checkmark {
  width: 22px;
  height: 22px;
  border: 2px solid var(--border);
  border-radius: 4px;
  background: #fff;
  position: relative;
  transition: all 200ms ease;
  flex-shrink: 0;
}
.contact-method input[type="radio"]:checked + .checkmark {
  background: var(--accent);
  border-color: var(--accent-strong);
}
.contact-method input[type="radio"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 14px;
  font-weight: bold;
}
.contact-method input[type="radio"]:checked ~ .method-label {
  color: var(--text);
  font-weight: 600;
}
.method-label {
  font-size: 18px;
  color: var(--muted);
  transition: color 200ms ease;
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
}
.contact-method input[type="radio"]:checked ~ .method-label {
  color: var(--text);
  font-weight: 600;
}

.status {
  margin-top: 10px;
  font-size: 14px;
  color: var(--muted);
}
.status.error { color: #b94a48; }
.status.success { color: #2f7d32; }

.legal {
  background: var(--bg);
  color: var(--text);
}
.legal__container {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 7vw 72px;
  line-height: 1.7;
}
.legal__container h1 { margin-bottom: 18px; }
.legal__container h2 { margin-top: 24px; margin-bottom: 10px; }
.legal__container ul { padding-left: 18px; color: var(--muted); }

@media (max-width: 960px) {
  .top-nav__container {
    padding: 10px 24px;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-nav a {
    font-size: 15px;
    padding: 10px 16px;
  }
  .hero { 
    min-height: 500px; 
    padding: 60px 6vw 40px; 
  }
  .hero__content { 
    max-width: 100%; 
  }
  .hero__content h1 {
    font-size: calc(18px * var(--golden-ratio) * var(--golden-ratio));
  }
  .bullets { 
    flex-direction: column; 
    gap: 16px; 
  }
  .bullets li { 
    min-width: auto; 
  }
  .section {
    padding: 60px 6vw;
  }
  .section__header {
    margin-bottom: 32px;
  }
  .section__header h2 {
    font-size: calc(18px * var(--golden-ratio) * var(--golden-ratio));
  }
  .service-item { 
    grid-template-columns: 1fr; 
    gap: 32px;
  }
  .service-item__image { 
    max-width: 100%; 
  }
  .service-item__content {
    text-align: center;
  }
  .service-cta-btn {
    width: 100%;
  }
  .timeline__item { 
    grid-template-columns: 1fr; 
    gap: 16px;
  }
  .timeline__date {
    font-size: 18px;
  }
  .modal__dialog { 
    width: 95vw; 
  }
  .footer__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-question {
    font-size: 18px;
    padding: 20px 24px;
  }
  .faq-answer {
    padding: 0 24px;
  }
  .faq-item.active .faq-answer {
    padding: 0 24px 20px 24px;
  }
  .section__cta {
    margin-top: 32px;
    padding-top: 32px;
  }
}

@media (max-width: 640px) {
  .top-nav__container {
    padding: 8px 16px;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .top-nav a {
    font-size: 13px;
    padding: 8px 12px;
  }
  .hero { 
    min-height: 400px;
    padding: 40px 5vw 30px; 
  }
  .hero__content h1 {
    font-size: calc(18px * var(--golden-ratio) * var(--golden-ratio));
    margin-bottom: 16px;
  }
  .subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
  .eyebrow {
    font-size: 12px;
  }
  .section { 
    padding: 50px 5vw 30px; 
  }
  .section__header {
    margin-bottom: 24px;
  }
  .section__header h2 {
    font-size: calc(18px * var(--golden-ratio) * var(--golden-ratio));
    margin-bottom: 16px;
  }
  .section__header p {
    font-size: 16px;
    line-height: 1.6;
  }
  .btn { 
    width: 100%; 
    font-size: 16px;
    padding: 14px 20px;
  }
  .btn-large {
    font-size: 18px;
    padding: 16px 24px;
  }
  .modal__dialog { 
    width: 100%; 
    height: 100vh;
    max-height: 100vh;
    border-radius: 0;
  }
  .modal__body {
    padding: 30px 20px;
    height: 100%;
  }
  .service-item {
    gap: 24px;
  }
  .service-item__content h3 {
    font-size: calc(18px * var(--golden-ratio));
  }
  .service-item__content p {
    font-size: 16px;
  }
  .timeline__item {
    padding: 20px;
  }
  .timeline__item h3 {
    font-size: calc(18px * var(--golden-ratio));
  }
  .timeline__item p {
    font-size: 16px;
  }
  .faq-question {
    font-size: 16px;
    padding: 18px 20px;
  }
  .faq-icon {
    font-size: 24px;
    width: 28px;
    height: 28px;
  }
  .faq-answer {
    padding: 0 20px;
  }
  .faq-item.active .faq-answer {
    padding: 0 20px 18px 20px;
  }
  .faq-answer p {
    font-size: 16px;
  }
  .footer {
    padding: 40px 5vw 30px;
  }
  .footer__container {
    gap: 30px;
  }
  .footer__copyright {
    font-size: 16px;
  }
  .footer__description {
    font-size: 14px;
  }
  .footer__links-title {
    font-size: 16px;
  }
  .footer__links a {
    font-size: 14px;
  }
  .section__cta {
    margin-top: 24px;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 350px;
    padding: 30px 4vw 20px;
  }
  .section {
    padding: 40px 4vw 25px;
  }
  .top-nav__container {
    padding: 6px 12px;
    gap: 8px;
  }
  .top-nav a {
    font-size: 12px;
    padding: 6px 10px;
  }
  .service-item__image {
    border-radius: 12px;
  }
  .timeline__item {
    padding: 16px;
    border-radius: 12px;
  }
  .faq-item {
    border-radius: 12px;
  }
  .faq-question {
    padding: 16px 18px;
    font-size: 15px;
  }
}

