:root {
  --primary: #20377E;
  --primary-dark: #182A5F;
  --accent: #63B8E8;
  --accent-dark: #3f9fd6;
  --dark: #0F1A3D;
  --text: #22283a;
  --bg: #f4f6fb;
  --bg-tint: #e9eef8;
  --white: #FFFFFF;
  --muted: #5c637a;
  --border: #e0e5f0;
  --shadow: 0 10px 30px rgba(15, 26, 61, 0.07);
  --shadow-lg: 0 24px 56px rgba(15, 26, 61, 0.15);
  --radius: 14px;
  --radius-sm: 9px;
  --container: 1180px;
  --header-h: 74px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--dark);
  line-height: 1.22;
  font-weight: 700;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover { color: var(--accent-dark); }

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

ul { list-style: none; }

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

section { position: relative; }

/* ---------- Section header (centered, accent eyebrow) ---------- */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-dark);
  margin-bottom: 16px;
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--accent);
}

.section-header h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--muted);
  font-size: 1.08rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.25s var(--ease);
  text-align: center;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 10px 26px rgba(32, 55, 126, 0.28);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(32, 55, 126, 0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-block { width: 100%; }
.btn-full { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 6px 22px rgba(15, 26, 61, 0.09);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo { display: inline-flex; align-items: center; line-height: 0; }

.logo img { height: 44px; width: auto; max-width: 60vw; display: block; }

.nav-right { display: flex; align-items: center; gap: 26px; }

.nav-links { display: flex; align-items: center; gap: 28px; }

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

/* ---------- Language switch ---------- */
.lang-switch {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--bg);
}

.lang-btn {
  border: none;
  background: transparent;
  color: var(--muted);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.03em;
  padding: 7px 13px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.lang-btn + .lang-btn { border-left: 1px solid var(--border); }

.lang-btn:hover { color: var(--primary); }

.lang-btn.active { background: var(--primary); color: var(--white); }

/* ---------- Hamburger ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Mobile menu ---------- */
.mobile-menu {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 12px 24px 24px;
  transform: translateY(-120%);
  transition: transform 0.35s var(--ease);
  z-index: 999;
  box-shadow: 0 20px 40px rgba(15, 26, 61, 0.12);
  display: flex;
  flex-direction: column;
}

.mobile-menu.open { transform: translateY(0); }

.mobile-menu a {
  display: block;
  color: var(--text);
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}

.mobile-menu a:last-child { border-bottom: none; }

/* ---------- Hero (deep navy, sky glow, centered) ---------- */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 94px) 0 104px;
  background:
    radial-gradient(820px 440px at 82% -12%, rgba(99, 184, 232, 0.28), transparent 62%),
    linear-gradient(158deg, var(--dark) 0%, var(--primary-dark) 58%, var(--primary) 120%);
  color: var(--white);
  overflow: hidden;
  text-align: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  -webkit-mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 76%);
  mask-image: radial-gradient(ellipse at 50% 30%, #000 0%, transparent 76%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  width: 520px;
  height: 520px;
  right: -160px;
  bottom: -260px;
  border-radius: 50%;
  border: 1px solid rgba(99, 184, 232, 0.22);
  box-shadow: 0 0 0 46px rgba(99, 184, 232, 0.05);
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 2; max-width: 860px; }

.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 5.1vw, 3.6rem);
  line-height: 1.12;
  margin-bottom: 22px;
  font-weight: 800;
}

.hero .sub {
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  color: rgba(255, 255, 255, 0.84);
  margin: 0 auto 36px;
  max-width: 680px;
}

.hero-cta { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ---------- Trust bar (svg direct children) ---------- */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 30px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-align: left;
}

.trust-item svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  color: var(--accent);
}

/* ---------- Sections ---------- */
.section-pad { padding: 94px 0; }
.services { background: var(--white); }
.how-it-works { background: var(--bg); }
.why-choose { background: var(--white); }
.reviews { background: var(--bg); }
.faq { background: var(--white); }

/* ---------- Services (top-accent cards, sky tiles) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.service-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 34px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(99, 184, 232, 0.22), rgba(32, 55, 126, 0.12));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--primary);
}

.service-icon svg { width: 30px; height: 30px; }

.service-card h3 { font-size: 1.22rem; margin-bottom: 12px; }
.service-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- How it works (numbered, dashed connector) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }

.steps::before {
  content: '';
  position: absolute;
  top: 32px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: repeating-linear-gradient(90deg, var(--accent) 0 9px, transparent 9px 18px);
  opacity: 0.55;
  z-index: 0;
}

.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }

.step-number {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--primary);
  border: 4px solid var(--white);
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 0 0 2px var(--accent), 0 10px 22px rgba(32, 55, 126, 0.22);
}

.step h3 { font-size: 1.12rem; margin-bottom: 10px; }
.step p { color: var(--muted); font-size: 0.92rem; }

/* ---------- Why choose (row cards, navy icon) ---------- */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.why-card {
  display: flex;
  gap: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}

.why-icon svg { width: 28px; height: 28px; }

.why-card h3 { font-size: 1.18rem; margin-bottom: 8px; }
.why-card p { color: var(--muted); font-size: 0.96rem; }

/* ---------- Reviews (quote cards) ---------- */
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.review-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 30px 26px 26px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 8px;
  right: 22px;
  font-family: Georgia, serif;
  font-size: 4.2rem;
  line-height: 1;
  color: rgba(99, 184, 232, 0.28);
}

.review-stars { color: #F5A623; font-size: 1rem; letter-spacing: 2px; margin-bottom: 14px; }

.review-text { color: var(--text); font-size: 0.96rem; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }

.review-author { display: flex; flex-direction: column; gap: 2px; border-top: 1px solid var(--border); padding-top: 16px; }
.review-author strong { color: var(--dark); font-family: 'Montserrat', sans-serif; font-size: 1rem; }
.review-author span { color: var(--muted); font-size: 0.85rem; }

/* ---------- FAQ (drawn +/- icon) ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  overflow: hidden;
  transition: box-shadow 0.25s ease, border-color 0.25s ease;
}

.faq-item.open { box-shadow: var(--shadow); border-color: rgba(99, 184, 232, 0.6); }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: transparent;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--dark);
}

.faq-icon {
  position: relative;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(99, 184, 232, 0.18);
  transition: background 0.3s ease;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 11px;
  height: 2px;
  border-radius: 2px;
  background: var(--primary);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, background 0.3s ease;
}

.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }

.faq-item.open .faq-icon { background: var(--primary); }
.faq-item.open .faq-icon::before,
.faq-item.open .faq-icon::after { background: var(--white); }
.faq-item.open .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }

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

.faq-answer p { padding: 0 24px 22px; color: var(--muted); font-size: 0.98rem; }

/* ---------- Contact (navy panel + white form) ---------- */
.contact { background: var(--dark); color: var(--white); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 52px; align-items: start; }

.contact-info h2 { color: var(--white); font-size: clamp(1.8rem, 3.4vw, 2.5rem); margin-bottom: 18px; }
.contact-info > p { color: rgba(255, 255, 255, 0.78); margin-bottom: 30px; font-size: 1.05rem; }

.contact-details { display: flex; flex-direction: column; gap: 22px; }

.contact-item { display: flex; align-items: flex-start; gap: 15px; }

.contact-item svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-item strong {
  display: block;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 3px;
}

.contact-item p { color: rgba(255, 255, 255, 0.78); font-size: 0.95rem; margin: 0; }
.contact-item a { color: rgba(255, 255, 255, 0.9); }
.contact-item a:hover { color: var(--accent); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 38px;
  box-shadow: var(--shadow-lg);
}

.contact-form h3 { font-size: 1.3rem; margin-bottom: 22px; color: var(--dark); }

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

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 7px;
  font-family: 'Montserrat', sans-serif;
}

.form-control {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  color: var(--text);
  background: var(--white);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(99, 184, 232, 0.22);
}

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

select.form-control {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235c637a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}

.form-checkbox label {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 0.84rem;
  color: var(--muted);
  line-height: 1.5;
}

.form-checkbox input {
  margin-top: 3px;
  width: 17px;
  height: 17px;
  accent-color: var(--primary);
  flex-shrink: 0;
  cursor: pointer;
}

.form-control.invalid { border-color: #d33; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px 10px;
}

.form-success.show { display: block; animation: pop 0.5s var(--ease); }

.form-success .check {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(99, 184, 232, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.form-success .check svg { width: 38px; height: 38px; color: var(--primary); }
.form-success h3 { color: var(--dark); margin-bottom: 12px; }
.form-success p { color: var(--muted); font-size: 1rem; }

@keyframes pop {
  0% { transform: scale(0.95); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.72);
  padding: 62px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.6fr;
  gap: 44px;
  margin-bottom: 38px;
}

.footer-col .logo { margin-bottom: 16px; }
.footer-col .logo img { height: 40px; width: auto; }

.footer-col > p { font-size: 0.92rem; line-height: 1.7; color: rgba(255, 255, 255, 0.65); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-family: 'Montserrat', sans-serif;
  position: relative;
  padding-bottom: 12px;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }
.footer-links a { color: rgba(255, 255, 255, 0.68); font-size: 0.92rem; transition: color 0.2s ease; }
.footer-links a:hover { color: var(--accent); }

.footer-meta {
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.68);
}
.footer-meta strong { color: rgba(255, 255, 255, 0.85); font-weight: 600; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-right .lang-switch { display: none; }
  .hamburger { display: flex; }

  .section-pad { padding: 66px 0; }

  .steps { grid-template-columns: 1fr; gap: 0; }
  .steps::before { display: none; }
  .step {
    display: grid;
    grid-template-columns: 66px 1fr;
    gap: 20px;
    text-align: left;
    align-items: start;
    padding-bottom: 30px;
    position: relative;
  }
  .step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 32px;
    top: 66px;
    bottom: 6px;
    width: 2px;
    background: repeating-linear-gradient(180deg, var(--accent) 0 8px, transparent 8px 16px);
    opacity: 0.55;
  }
  .step-number { margin: 0; }

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

@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .contact-form-wrap { padding: 26px 22px; }
  .trust-grid { grid-template-columns: 1fr; gap: 16px; justify-items: center; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
