:root {
  --navy: #102235;
  --navy-dark: #0a1725;
  --text: #17212b;
  --text-soft: #5f6b76;
  --accent: #1697a6;
  --accent-dark: #117581;
}
*, *::before, *::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  margin: 0;
  background: white;
  color: var(--text);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, textarea {
  font: inherit;
}
.container {
  width: min(100% - 48px, 1180px);
  margin-inline: auto;
}
/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10,23,37,.97);
  border-bottom: 1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(10px);
}
.nav-wrap {
  width: 100%;
  min-height: 88px;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.logo {
  width: 130px;
  height: 78px;
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.logo img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .4px;
}
.main-nav a {
  position: relative;
  white-space: nowrap;
  color: rgba(255,255,255,.86);
  transition: color .2s ease;
}
.main-nav a:hover, .main-nav a.active {
  color: #fff;
}
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  background: var(--accent);
}
.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid rgba(255,255,255,.35);
  background: transparent;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .25s ease, opacity .2s ease;
}
/* Hero */
.hero {
  min-height: calc(100svh - 88px);
  position: relative;
  overflow: hidden;
  background: linear-gradient(rgba(10,23,37,.48),rgba(10,23,37,.48)), url("images/serhat.jpg") center / cover no-repeat;
}
.hero-content {
  position: absolute;
  top: 20%;
  left: 8%;
  z-index: 2;
  width: min(700px,84%);
  color: #fff;
}
.hero h1 {
  margin: 0 0 10px;
  font-size: clamp(42px,5vw,68px);
  line-height: 1.04;
  letter-spacing: -2.2px;
  font-weight: 700;
}
.hero h5 {
  margin: 0;
  font-size: clamp(14px,1.3vw,19px);
  line-height: 1.5;
  letter-spacing: .5px;
  font-weight: 400;
}
.hero-title, .hero h5 {
  opacity: 0;
  transform: translateY(15px);
  animation: heroAppear 1s ease forwards;
}
.hero h5 {
  animation-delay: 2s;
}
@keyframes heroAppear {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Shared headings */
.eyebrow {
  margin: 0 0 7px;
  color: var(--accent-dark);
  font-family: Georgia,"Times New Roman",serif;
  font-style: italic;
  font-size: 16px;
}
.heading-line {
  width: 70px;
  height: 2px;
  margin: 16px auto 25px;
  background: var(--accent);
}
.lead {
  margin: 0;
  color: var(--text-soft);
  font-family: Georgia,"Times New Roman",serif;
  font-size: 16px;
  line-height: 1.55;
}
/* Process */
.process {
  padding: 100px 0 105px;
  background: #fff;
}
.process-heading {
  max-width: 800px;
  margin: 0 auto 68px;
  text-align: center;
}
.process-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
}
.process-heading .eyebrow {
  font-size: 20px;
}
.process-heading .lead {
  font-size: 18px;
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 100px;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}
.process-step {
  position: relative;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.process-step:not(:last-child)::after {
  content: "›";
  position: absolute;
  top: 52px;
  right: -22px;
  color: var(--accent);
  font-size: 42px;
  line-height: 1;
}
.process-icon {
  position: relative;
  width: 135px;
  height: 135px;
  margin: 0 auto 24px;
  flex: 0 0 135px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #cdcdcd;
}
.process-icon img {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.process-number {
  position: absolute;
  top: -5px;
  right: -5px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}
.process-step h3 {
  width: 100%;
  max-width: 230px;
  margin: 0 auto 0;
  text-align: center;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.35;
  font-weight: 800;
}
.process-step p {
  text-align: center;
  color: #687684;
  font-size: 20px;
  line-height: 1.6;
  width: 200px;
}
/* Experts */
.experts {
  padding: 100px 0;
  background: #fff;
}
.section-heading {
  max-width: 700px;
  margin: 0 auto 65px;
  text-align: center;
}
.section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 30px;
  line-height: 1.2;
  font-weight: 800;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3,minmax(0,1fr));
  gap: 58px;
}
.feature {
  display: grid;
  grid-template-columns: 82px minmax(0,1fr);
  gap: 14px;
}
.number {
  color: var(--navy);
  font-family: Georgia,"Times New Roman",serif;
  font-size: 52px;
  font-weight: 700;
  line-height: 1;
}
.feature-kicker {
  margin: 0 0 3px;
  color: var(--accent-dark);
  font-family: Georgia,"Times New Roman",serif;
  font-style: italic;
  font-size: 17px;
}
.feature h3 {
  margin: 0 0 13px;
  color: var(--navy);
  font-size: 19px;
  line-height: 1.25;
}
.feature p:not(.feature-kicker) {
  margin: 0;
  color: var(--text-soft);
  font-size: 19px;
  line-height: 1.65;
}
/* Reviews */
.reviews {
  padding: 70px 0 75px;
  overflow: hidden;
}
.reviews-heading {
  text-align: center;
}
.reviews-heading h2 {
  margin: 5px 0;
  color: var(--navy);
  font-size: 36px;
  line-height: 1.15;
  font-weight: 800;
}
.reviews-slider {
  width: 100%;
  margin-top: 65px;
  overflow: hidden;
}
.reviews-track {
  width: 100%;
  overflow: visible;
}

.reviews-group {
  display: flex;
  gap: 24px;
  width: max-content;
  will-change: transform;
}
.review {
  width: 365px;
  min-height: 245px;
  padding: 30px;
  flex: 0 0 365px;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 2px solid var(--navy);
  box-shadow: 0 10px 30px rgba(16,34,53,.08);
}
.stars {
  margin-bottom: 15px;
  font-size: 20px;
  letter-spacing: 2px;
}
.review p {
  margin: 0 0 20px;
  color: #17212b;
  font-family: Georgia,"Times New Roman",serif;
  font-size: 16px;
  line-height: 1.6;
}
.review strong {
  margin-top: auto;
  color: #17212b;
  font-size: 14px;
}
.review span {
  margin-top: 3px;
  color: #7a858d;
  font-size: 12px;
}
.google-review-container {
  margin-top: 55px;
  text-align: center;
}
.google-review-btn {
  display: inline-block;
  padding: 13px 24px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  transition: .2s ease;
}
.google-review-btn:hover {
  background: var(--navy);
  color: #fff;
}
.google-blue {
  color: #4285f4
}
.google-red {
  color: #ea4335
}
.google-yellow {
  color: #fbbc05
}
.google-green {
  color: #34a853
}
/* FAQ */
.faq {
  position: relative;
  padding: 100px 0 110px;
  overflow: hidden;
}
.faq-heading {
  max-width: 760px;
  margin: 0 auto 58px;
  text-align: center;
}
.faq-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 38px;
  line-height: 1.2;
  font-weight: 800;
}
.faq-list {
  width: min(1000px,100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 18px;
  align-items: start;
}
.faq-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: stretch;
}
.faq-item {
  position: relative;
  min-width: 0;
  margin: 0;
  background: #d0d1d1;
  border: 1px solid #e1e7eb;
  border-radius: 15px;
  box-shadow: 0 8px 26px rgba(16,34,53,.045);
  overflow: hidden;
  transition: border-color .35s ease,box-shadow .35s ease,transform .35s ease;
}
.faq-item::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--accent);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.faq-item:hover,.faq-item[open] {
  border-color: rgba(22,151,166,.35);
  box-shadow: 0 16px 38px rgba(16,34,53,.09);
  transform: translateY(-2px);
}
.faq-item[open]::before {
  transform: scaleY(1);
}
.faq-item summary {
  min-height: 78px;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-question {
  color: var(--navy);
  font-size: 19px;
  line-height: 1.45;
  font-weight: 700;
}
.faq-icon {
  position: relative;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #d8e1e6;
  border-radius: 50%;
  color: var(--accent);
  transition: background .35s ease,border-color .35s ease,transform .45s cubic-bezier(.22,1,.36,1);
}
.faq-icon span {
  position: absolute;
  width: 11px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.faq-icon span:last-child {
  transform: rotate(90deg);
}
.faq-item[open] .faq-icon {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
  transform: rotate(180deg);
}
.faq-item[open] .faq-icon span:last-child {
  transform: rotate(0deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-10px);
  transition: max-height .5s ease,opacity .35s ease,transform .5s ease;
}
.faq-item[open] .faq-answer {
  opacity: 1;
  transform: translateY(0);
}
.faq-answer-inner {
  padding: 0 22px 22px;
}
.faq-answer p {
  margin: 0;
  color: var(--text);
  font-family: Georgia,"Times New Roman",serif;
  font-size: 20px;
  line-height: 1.7;
}
/* Contact */
.contact-strip {
  padding: 80px 0;
  background: #fff;
}
.contact-content {
  max-width: 900px;
}
.contact-inner {
  display: flex;
  align-items: center;
  gap: 30px;
}
.contact-inner h2 {
  margin: 4px 0 0;
  color: var(--navy);
  font-size: clamp(28px,4vw,44px);
  line-height: 1.15;
}
.contact-strip .eyebrow {
  color: var(--accent-dark);
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 35px;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  padding-left: 16px;
  border-left: 2px solid var(--accent);
  transition: .2s ease;
}
.contact-icon {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact-label {
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.contact-value {
  margin-top: 2px;
  color: var(--accent-dark);
  font-size: 18px;
  font-weight: 700;
}
.contact-item:hover {
  padding-left: 22px;
}
.contact-item:hover .contact-value {
  color: var(--accent);
}
.contact-form-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 50px;
  min-height: 48px;
  padding: 0 24px;
  background: var(--navy);
  border: 1px solid var(--navy);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  transition: background .2s ease,border-color .2s ease,transform .2s ease;
}
.contact-form-btn:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-1px);
}
.contact-form-btn span {
  font-size: 18px;
}
/* Footer */
.footer {
  padding: 24px 0;
  background: var(--navy-dark);
  color: #aeb9c3;
  font-size: 12px;
}
.footer .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.footer-links {
  display: flex;
  gap: 40px;
}
.footer a:hover {
  color: #fff;
}
/* Legal pages */
.legal-page {
  min-height: calc(100vh - 160px);
  padding: 90px 20px;
  background: #fff;
}
.legal-container {
  width: min(900px,100%);
  margin: 0 auto;
}
.legal-heading {
  margin: 0 auto 65px;
  text-align: center;
}
.legal-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px,5vw,58px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}
.legal-section {
  margin-bottom: 42px;
}
.legal-section h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 25px;
  line-height: 1.3;
  font-weight: 800;
}
.legal-section p,.legal-section li {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.75;
}
.legal-section p {
  margin: 0 0 15px;
}
.legal-section strong {
  color: var(--navy);
}
.legal-section ul {
  margin: 0 0 18px;
  padding-left: 23px;
}
.legal-section li {
  margin-bottom: 6px;
}
.legal-section a {
  color: var(--accent-dark);
  font-weight: 700;
}
.legal-section a:hover {
  color: var(--accent);
  text-decoration: underline;
}
.legal-date {
  margin-top: 55px;
  padding-top: 22px;
  border-top: 1px solid var(--accent);
  color: #8a959e;
  font-size: 14px;
}
/* Contact form */
.contact-page {
  min-height: calc(100vh - 88px);
  padding: 90px 20px 100px;
  background: #fff;
}
.contact-form-container {
  width: min(900px,100%);
  margin: 0 auto;
}
.contact-form-heading {
  max-width: 760px;
  margin: 0 auto 55px;
  text-align: center;
}
.contact-form-heading h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(38px,5vw,58px);
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -1px;
}
.contact-form-heading .lead {
  max-width: 680px;
  margin-inline: auto;
}
.contact-form {
  padding: clamp(28px,5vw,48px);
  background: var(--surface);
  border: 1px solid var(--accent);
  box-shadow: 0 18px 45px rgba(16,34,53,.08);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 24px 22px;
}
.form-field {
  min-width: 0;
}
.form-field-full {
  grid-column: 1/-1;
}
.form-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 800;
}
.form-field label span,.privacy-check strong {
  color: var(--accent-dark);
}
.form-field input,.form-field textarea {
  width: 100%;
  border: 1px solid #aeb7bd;
  border-radius: 0;
  padding: 14px 15px;
  background: #fff;
  color: var(--text);
  font: inherit;
  font-size: 16px;
  outline: none;
  transition: border-color .2s ease,box-shadow .2s ease;
}
.form-field input:focus,.form-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(22,151,166,.12);
}
.form-field textarea {
  min-height: 170px;
  resize: vertical;
}
.form-field small {
  display: block;
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 13px;
}
.privacy-check {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}
.privacy-check input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  flex: 0 0 auto;
  accent-color: var(--accent);
}
.privacy-check a {
  color: var(--accent-dark);
  font-weight: 700;
  text-decoration: underline;
}
.form-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.form-submit,.form-back {
  min-height: 48px;
  padding: 0 24px;
  border: 1px solid var(--navy);
  font-size: 13px;
  font-weight: 800;
  transition: .2s ease;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  background: var(--navy);
  color: #fff;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}
.form-submit span {
  font-size: 18px;
}
.form-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: transparent;
}
.form-back:hover {
  background: var(--navy);
  color: #fff;
}
.form-message {
  margin: 0 0 24px;
  padding: 18px 20px;
  border-left: 3px solid var(--accent);
  background: var(--surface);
  color: var(--text);
}
.form-message strong,.form-message span {
  display: block;
}
.form-message span {
  margin-top: 4px;
  color: var(--text-soft);
}
.form-error {
  border-left-color: #b23b3b;
}
.form-error ul {
  margin: 8px 0 0;
  padding-left: 20px;
  color: var(--text-soft);
}
.honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
/* Scroll reveal */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease,transform .7s ease;
}
.scroll-animate.visible {
  opacity: 1;
  transform: none;
}
/* Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--navy-dark);
}
::-webkit-scrollbar-thumb {
  background: #53606c;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}
/* Responsive */
@media (max-width: 1100px) {
  .nav-wrap {
    padding-inline: 28px;
  }
  .main-nav {
    gap: 20px;
  }
  .process-steps {
    grid-template-columns: repeat(3,minmax(0,1fr));
    gap: 55px 30px;
  }
  .process-step::after {
    display: none;
  }
  .feature-grid {
    gap: 35px;
  }
}
@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, 1180px);
  }
  .nav-wrap {
    min-height: 74px;
    padding-inline: 18px;
  }
  .logo {
    width: 105px;
    height: 64px;
  }
  .menu-toggle {
    display: block;
  }
  .main-nav {
    display: none;
    position: absolute;
    top: 74px;
    left: 18px;
    right: 18px;
    padding: 20px;
    background: var(--navy-dark);
    border: 1px solid #24394d;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 16px 35px rgba(0,0,0,.18);
  }
  .main-nav.open {
    display: flex;
  }
  .main-nav a.active::after {
    display: none;
  }
  .hero {
    min-height: calc(100svh - 74px);
    background-position: center top;
  }
  .hero-content {
    top: 18%;
    left: 5%;
    width: 90%;
  }
  .process {
    padding: 80px 0 90px;
  }
  .process-steps {
    grid-template-columns: repeat(2,minmax(0,1fr));
    gap: 50px 28px;
  }
  .process-step::after {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin-inline: auto;
  }
  .contact-inner {
    align-items: flex-start;
  }
  .faq-list {
    grid-template-columns: 1fr 1fr;
  }
  .footer .container {
    flex-wrap: wrap;
  }
}
@media (max-width: 600px) {
  .container {
    width: min(100% - 30px, 1180px);
  }
  .hero {
    min-height: calc(100svh - 74px);
    background-position: 50% 15%;
  }
  .hero-content {
    top: 17%;
    left: 6%;
    width: 88%;
  }
  .hero h1 {
    font-size: clamp(36px,10vw,46px);
    letter-spacing: -1.2px;
  }
  .hero h5 {
    font-size: 15px;
  }
  .process {
    padding: 70px 0 80px;
  }
  .process-heading {
    margin-bottom: 50px;
  }
  .process-heading h2 {
    font-size: 30px;
  }
  .process-heading .lead {
    font-size: 16px;
  }
  .process-steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .process-icon {
    width: 115px;
    height: 115px;
    margin-bottom: 20px;
  }
  .process-icon img {
    width: 50px;
    height: 50px;
  }
  .process-step h3 {
    font-size: 18px;
  }
  .process-step p {
    max-width: 330px;
    font-size: 16px;
  }
  .experts {
    padding: 70px 0;
  }
  .section-heading {
    margin-bottom: 48px;
  }
  .feature {
    grid-template-columns: 60px minmax(0,1fr);
    gap: 12px;
  }
  .number {
    font-size: 42px;
  }
  .feature h3 {
    font-size: 18px;
  }
  .feature p:not(.feature-kicker) {
    font-size: 16px;
  }
  .reviews {
    padding: 65px 0 70px;
  }
  .reviews-heading h2 {
    font-size: 30px;
  }
  .reviews-slider {
    margin-top: 50px;
  }
  .reviews-group {
    gap: 15px;
    padding-right: 15px;
  }
  .review {
    width: min(320px, calc(100vw - 48px));
    flex-basis: min(320px, calc(100vw - 48px));
    min-height: 245px;
    padding: 24px;
  }
  .faq {
    padding: 72px 0 82px;
  }
  .faq-heading {
    margin-bottom: 45px;
  }
  .faq-heading h2 {
    font-size: 28px;
  }
  .faq-list {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .faq-item {
    border-radius: 13px;
  }
  .faq-item summary {
    min-height: 68px;
    padding: 17px 18px;
    gap: 14px;
  }
  .faq-question {
    font-size: 16px;
  }
  .faq-icon {
    width: 31px;
    height: 31px;
    flex-basis: 31px;
  }
  .faq-answer-inner {
    padding: 0 18px 19px;
  }
  .faq-answer p {
    font-size: 16px;
    line-height: 1.65;
  }
  .contact-strip {
    padding: 70px 0;
  }
  .contact-details {
    margin-top: 28px;
    gap: 16px;
  }
  .contact-value {
    font-size: 16px;
  }
  .contact-form-btn {
    width: 100%;
    max-width: 320px;
  }
  .footer .container {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-links {
    gap: 20px;
    flex-wrap: wrap;
  }
  .legal-heading {
    margin-bottom: 45px;
  }
  .legal-section {
    margin-bottom: 34px;
  }
  .legal-section h2 {
    font-size: 21px;
  }
  .legal-section p,.legal-section li {
    font-size: 15px;
    line-height: 1.7;
  }
  .contact-page {
    padding: 70px 15px 75px;
  }
  .contact-form-heading {
    margin-bottom: 40px;
  }
  .contact-form {
    padding: 24px 18px;
  }
  .form-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .form-field-full {
    grid-column: auto;
  }
  .form-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .form-submit,.form-back {
    width: 100%;
  }
}
/* Very small phones: 320px and 375px */
@media (max-width: 480px) {
  .container {
    width: calc(100% - 24px);
  }
  .nav-wrap {
    min-height: 68px;
    padding: 0 12px;
  }
  .logo {
    width: 88px;
    height: 58px;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    padding: 8px;
  }
  .main-nav {
    top: 68px;
    left: 12px;
    right: 12px;
    padding: 17px;
  }
  .hero {
    min-height: calc(100svh - 68px);
    background-position: 50% 12%;
  }
  .hero-content {
    top: 15%;
    left: 12px;
    width: calc(100% - 24px);
  }
  .hero h1 {
    max-width: 330px;
    margin-bottom: 12px;
    font-size: clamp(34px, 10.5vw, 42px);
    line-height: 1.03;
    letter-spacing: -1px;
    overflow-wrap: break-word;
  }
  .hero h5 {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.55;
  }
  .process-heading h2 {
    font-size: 28px;
  }
  .process-heading .eyebrow {
    font-size: 18px;
  }
  .process-heading .lead {
    font-size: 15px;
  }
  .process-icon {
    width: 130px;
    height: 130px;
  }
  .process-icon img {
    width: 95px;
    height: 95px;
  }
  .process-number {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }
  .process-step h3 {
    font-size: 17px;
  }
  .process-step p {
    max-width: 290px;
    font-size: 15px;
  }
  .feature {
    grid-template-columns: 48px minmax(0,1fr);
    gap: 10px;
  }
  .number {
    font-size: 34px;
  }
  .feature h3 {
    font-size: 17px;
  }
  .feature p:not(.feature-kicker) {
    font-size: 15px;
  }
  .reviews-heading h2 {
    font-size: 27px;
  }
  .review {
    width: calc(100vw - 36px);
    flex-basis: calc(100vw - 36px);
    min-height: 230px;
    padding: 22px;
  }
  .faq-heading h2 {
    font-size: 26px;
  }
  .faq-question {
    font-size: 15px;
  }
  .faq-answer p {
    font-size: 15px;
  }
  .contact-inner h2 {
    font-size: clamp(27px,8vw,36px);
  }
  .contact-item {
    max-width: 100%;
  }
  .contact-value {
    font-size: 15px;
    overflow-wrap: anywhere;
  }
  .legal-heading h1 {
  font-size: 30px;
  }
  .footer {
    padding: 22px 0;
  }
  .footer .container {
    gap: 12px;
  }
  .footer-links {
    gap: 12px 18px;
  }
}
@media (max-width: 340px) {
  .hero h1 {
    font-size: 33px;
  }
  .hero h5 {
    font-size: 13px;
  }
  .process-step p {
    max-width: 275px;
  }
  .faq-item summary {
    padding: 15px;
  }
  .faq-question {
    font-size: 14px;
  }
  .faq-answer-inner {
    padding: 0 15px 17px;
  }
  .faq-answer p {
    font-size: 14px;
  }
  .contact-value {
    font-size: 14px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,*::before,*::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
