@font-face {
  font-family: "Outfit";
  src: url(../fonts/Outfit-VariableFont_wght.ttf);
  font-display: swap;
}
@font-face {
  font-family: "Manrope";
  src: url(../fonts/Manrope-VariableFont_wght.ttf);
  font-display: swap;
}

:root {
  --white: #ffffff;
  --tint: #f7f8fa;
  --navy: #16233a;
  --navy-deep: #0f1a2e;
  --gold: #b8860b;
  --gold-light: #d4a843;
  --gold-dim: rgba(184, 134, 11, 0.08);
  --text-dark: #1a2332;
  --text-body: #3d4f63;
  --text-muted: #6b7d92;
  --border: #e4e9ef;
  --border-light: #eef1f5;
  --radius: 2px;
  --shadow-sm: 0 1px 3px rgba(22, 35, 58, 0.05);
  --shadow-md: 0 4px 20px rgba(22, 35, 58, 0.07);
  --shadow-lg: 0 12px 40px rgba(22, 35, 58, 0.1);
  --font-head: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --gap: 64px;
  --gap-mobile: 40px;
}

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

html {
  scroll-behavior: smooth;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-dark);
  line-height: 1.65;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

main {
  flex: 1;
}

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

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

ul,
ol {
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: 1rem;
}

.section {
  padding: var(--gap) 24px;
}

.section-white {
  background: var(--white);
}

.section-tint {
  background: var(--tint);
}

.section-navy {
  background: var(--navy);
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: var(--radius);
}

.logo span {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.header-notice {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  padding: 5px 14px;
  border-radius: var(--radius);
}

.hero {
  padding: var(--gap) 24px;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, var(--gold-dim) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.hero h1 {
  font-family: var(--font-head);
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 24px;
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 16px;
  margin-bottom: 30px;
}

.hero-features li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.4;
}

.feat-marker {
  color: var(--gold);
  font-size: 0.7rem;
  flex-shrink: 0;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--white);
  background: var(--navy);
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  min-height: 44px;
  min-width: 44px;
}

.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-arrow {
  transition: transform 0.25s;
  font-size: 1.1em;
}

.btn-primary:hover .btn-arrow,
.btn-outline:hover .btn-arrow,
.btn-gold:hover .btn-arrow {
  transform: translateX(4px);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  padding: 13px 26px;
  border-radius: var(--radius);
  transition: background 0.25s, color 0.25s, transform 0.2s;
  min-height: 44px;
  min-width: 44px;
  margin-top: 22px;
}

.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-1px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--navy-deep);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  padding: 15px 30px;
  border-radius: var(--radius);
  transition: transform 0.2s, box-shadow 0.25s;
  min-height: 44px;
  min-width: 44px;
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(184, 134, 11, 0.3);
}

.hero-image {
  position: relative;
}

.hero-image-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-accent {
  position: absolute;
  top: 16px;
  right: -16px;
  bottom: -16px;
  left: 16px;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius);
  opacity: 0.3;
  z-index: 0;
}

.split-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.split-inner.reverse {
  direction: rtl;
}

.split-inner.reverse>* {
  direction: ltr;
}

.section-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-eyebrow.light {
  color: var(--gold-light);
}

.split-text h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.split-text.on-dark h2 {
  color: var(--white);
}

.split-text p {
  color: var(--text-body);
  font-size: 0.98rem;
  line-height: 1.8;
  margin-bottom: 14px;
}

.split-text.on-dark p {
  color: rgba(255, 255, 255, 0.75);
}

.sub-heading {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  margin-top: 22px;
  margin-bottom: 14px;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.icon-list {
  display: flex;
  flex-direction: column;
  gap: 13px;
  margin-top: 14px;
}

.icon-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
}

.icon-box {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold-dim);
  border: 1px solid rgba(184, 134, 11, 0.18);
  border-radius: var(--radius);
  color: var(--gold);
  font-size: 14px;
}

.icon-list strong {
  color: var(--text-dark);
}

.spec-list {
  display: flex;
  flex-direction: column;
  gap: 11px;
  margin-top: 18px;
}

.spec-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.55;
  padding: 11px 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  transition: box-shadow 0.25s;
}

.spec-list li:hover {
  box-shadow: var(--shadow-sm);
}

.spec-bullet {
  color: var(--gold);
  font-size: 0.55rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.spec-list strong {
  color: var(--text-dark);
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.info-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--tint);
  border: 1px solid var(--border);
  padding: 8px 14px;
  border-radius: var(--radius);
  transition: border-color 0.25s;
}

.info-badge:hover {
  border-color: var(--gold);
}

.info-badge i {
  color: var(--gold);
  font-size: 12px;
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow-md);
  position: relative;
}

.image-frame::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(22, 35, 58, 0.06);
  border-radius: var(--radius);
  pointer-events: none;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.image-frame:hover img {
  transform: scale(1.025);
}

.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: start;
}

.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--navy);
}

.contact-subtitle {
  color: var(--text-body);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 26px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-body);
  letter-spacing: 0.02em;
}

.label-opt {
  font-weight: 400;
  color: var(--text-muted);
  font-size: 0.78rem;
}

.form-input,
.form-select,
.form-textarea {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 13px 16px;
  color: var(--text-dark);
  font-size: 0.95rem;
  transition: border-color 0.25s, box-shadow 0.25s;
  outline: none;
  min-height: 44px;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--text-muted);
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-dim);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%236b7d92' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.form-check-group {
  margin-top: 4px;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.84rem;
  color: var(--text-body);
  line-height: 1.5;
}

.form-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  margin-top: 1px;
}

.form-check input:checked+.check-box {
  background: var(--navy);
  border-color: var(--navy);
}

.form-check input:checked+.check-box::after {
  content: '✓';
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.form-check a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.btn-submit {
  align-self: flex-start;
  margin-top: 8px;
}

.contact-faq-wrap h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 18px;
  color: var(--navy);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  transition: border-color 0.25s;
}

.faq-item.active {
  border-color: var(--gold);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 18px;
  font-size: 0.88rem;
  font-weight: 700;
  text-align: left;
  color: var(--text-dark);
  transition: background 0.2s;
  min-height: 44px;
}

.faq-question:hover {
  background: var(--tint);
}

.faq-toggle {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--gold);
  transition: transform 0.3s;
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 18px 18px;
  font-size: 0.86rem;
  color: var(--text-body);
  line-height: 1.7;
}

.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 40px;
}

.section-header h2 {
  font-family: var(--font-head);
  font-size: clamp(1.5rem, 2.8vw, 2.1rem);
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: rgba(184, 134, 11, 0.3);
}

.testimonial-quote {
  position: absolute;
  top: 16px;
  right: 18px;
  font-size: 1.1rem;
  color: var(--gold);
  opacity: 0.4;
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}

.testimonial-stars i {
  font-size: 12px;
  color: var(--gold);
}

.testimonial-text {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.75;
  flex: 1;
  margin-bottom: 18px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
}

.author-initials {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-size: 0.72rem;
  font-weight: 800;
  border-radius: var(--radius);
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.76rem;
  color: var(--text-muted);
}

.testimonial-disclaimer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  padding: 12px 16px;
  background: var(--tint);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
}

.testimonial-disclaimer i {
  font-size: 13px;
  flex-shrink: 0;
}

.footer {
  background: var(--navy-deep);
  color: rgba(255, 255, 255, 0.85);
  margin-top: auto;
  padding: 48px 24px 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
}

.footer-logo {
  margin-bottom: 14px;
}

.footer .logo span {
  color: var(--white);
}

.footer-desc {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 14px;
}

.footer-link {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  padding: 4px 0;
  transition: color 0.25s;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-contact-item {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
  margin-bottom: 5px;
}

.footer-disclaimer {
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-disclaimer p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.7;
  max-width: 900px;
}

.footer-bottom {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.45);
}

.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  font-size: 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s, background 0.25s;
  z-index: 90;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--gold);
  color: var(--navy-deep);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.legal-content h1 {
  font-family: var(--font-head);
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: var(--navy);
}

.legal-content h2 {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  margin-top: 36px;
  margin-bottom: 14px;
  color: var(--navy);
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.legal-content h3 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  margin-top: 24px;
  margin-bottom: 10px;
  color: var(--navy);
}

.legal-content p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 14px;
}

.legal-content ul,
.legal-content ol {
  margin: 14px 0;
  padding-left: 1.5rem;
  list-style: disc;
}

.legal-content ol {
  list-style: decimal;
}

.legal-content li {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 8px;
}

.legal-content strong {
  color: var(--text-dark);
}

.legal-date {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  padding: 10px 16px;
  background: var(--tint);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: inline-block;
}

.legal-page {
  background: var(--white);
  min-height: 60vh;
}

.thanks-page {
  background: var(--tint);
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 24px;
}

.thanks-content {
  text-align: center;
  max-width: 560px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.thanks-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--navy));
}

.thanks-logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
  margin: 0 auto 24px;
  border-radius: var(--radius);
}

.thanks-content h1 {
  font-family: var(--font-head);
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--navy);
}

.thanks-content p {
  font-size: 1.2rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 12px;
}

.thanks-content .thanks-highlight {
  color: var(--gold);
  font-weight: 700;
}

.thanks-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 24px auto;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .hero-image {
    order: -1;
  }

  .hero-image-accent {
    display: none;
  }

  .split-inner,
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .split-inner.reverse {
    direction: ltr;
  }

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

  .testimonials-grid .testimonial-card:last-child {
    grid-column: 1 / -1;
    max-width: 50%;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .section {
    padding: var(--gap-mobile) 16px;
  }

  .hero {
    padding: var(--gap-mobile) 16px;
  }

  .hero-features {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid .testimonial-card:last-child {
    max-width: 100%;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer {
    padding: 36px 16px 0;
  }

  .footer-desc {
    max-width: 100%;
  }

  .footer-bottom p {
    font-size: 0.85rem;
  }

  .footer-disclaimer p {
    font-size: 0.8rem;
  }

  .footer-link {
    font-size: 0.85rem;
  }

  .footer-contact-item {
    font-size: 0.85rem;
  }

  .back-to-top {
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
  }

  .thanks-content {
    padding: 36px 24px;
  }

  .thanks-content p {
    font-size: 1.1rem;
  }

  .legal-content {
    padding: 28px 16px;
  }

  .legal-content h1 {
    font-size: 1.6rem;
  }

  .legal-content h2 {
    font-size: 1.3rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-gold {
    width: 100%;
    justify-content: center;
  }

  .btn-submit {
    align-self: stretch;
  }
  .logo img {
    width: 36px;
    height: 36px;
  }
  .logo span {
    font-size: 1rem;
  }
}
