:root {
  --navy: #0b1f3a;
  --navy-soft: #12355f;
  --emerald: #10b981;
  --emerald-dark: #047857;
  --white: #ffffff;
  --off-white: #f7fbff;
  --muted: #64748b;
  --text: #14213d;
  --border: #dbe7f3;
  --shadow: 0 24px 70px rgba(11, 31, 58, 0.14);
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

body.nav-open {
  overflow: hidden;
}

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

img,
svg {
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--white);
  background: var(--emerald-dark);
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(219, 231, 243, 0.85);
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
}

.navbar {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), var(--emerald));
  font-weight: 900;
  letter-spacing: 0.04em;
}

.brand-logo {
  width: 58px;
  height: 58px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand strong {
  display: block;
  font-size: 1rem;
  letter-spacing: 0.08em;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--navy);
  font-weight: 700;
}

.nav-menu a {
  position: relative;
}

.language-link {
  min-width: 42px;
  padding: 7px 11px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--emerald-dark);
  text-align: center;
}

.language-link::after {
  display: none;
}

.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--emerald);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s ease;
}

.nav-menu a:hover::after,
.nav-menu a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 14px;
  background: var(--off-white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--navy);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.18), transparent 30%),
    linear-gradient(135deg, #f9fcff 0%, #eaf5ff 52%, #ffffff 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  align-items: center;
  gap: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--emerald-dark);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: clamp(2.6rem, 6vw, 5.35rem);
  line-height: 0.95;
  letter-spacing: -0.07em;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 1.06;
  letter-spacing: -0.045em;
}

h3 {
  color: var(--navy);
  font-size: 1.18rem;
}

.hero-text {
  max-width: 690px;
  color: var(--muted);
  font-size: 1.12rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 32px 0 22px;
}

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: var(--emerald);
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--emerald-dark);
}

.btn-secondary {
  color: var(--navy);
  background: var(--white);
  border-color: var(--border);
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.trust-list li {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.75);
  font-weight: 800;
  font-size: 0.9rem;
}

.quote-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: var(--radius);
  color: var(--white);
  background:
    linear-gradient(160deg, rgba(11, 31, 58, 0.96), rgba(18, 53, 95, 0.94)),
    linear-gradient(135deg, rgba(16, 185, 129, 0.38), transparent);
  box-shadow: var(--shadow);
}

.quote-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -80px auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.28);
}

.quote-card h2,
.quote-card p,
.quote-card a {
  position: relative;
}

.quote-card h2 {
  color: var(--white);
  font-size: 2.35rem;
}

.quote-card p {
  color: rgba(255, 255, 255, 0.76);
}

.quote-card-top {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 800;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--emerald);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.18);
}

.quote-metrics {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 28px 0;
}

.quote-metrics div {
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.quote-metrics strong,
.quote-metrics span {
  display: block;
}

.quote-metrics strong {
  font-size: 2rem;
  line-height: 1;
}

.quote-metrics span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.text-link {
  color: var(--white);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 6px;
}

.logos-strip {
  padding: 22px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--white);
}

.strip-content {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 16px 34px;
}

.strip-content span {
  color: var(--navy-soft);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-heading p:not(.eyebrow) {
  color: var(--muted);
}

.cards-grid,
.why-grid,
.pricing-grid,
.testimonial-grid {
  display: grid;
  gap: 22px;
}

.cards-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.why-item,
.price-card,
.testimonial-card,
.quote-form,
.contact-box {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 16px 44px rgba(11, 31, 58, 0.08);
}

.service-card {
  padding: 26px;
}

.service-card p,
.why-item p,
.price-card p,
.testimonial-card blockquote,
.contact-copy p {
  color: var(--muted);
}

.card-icon {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 28px;
  border-radius: 14px;
  color: var(--emerald-dark);
  background: rgba(16, 185, 129, 0.12);
  font-weight: 900;
}

.featured-card {
  color: var(--white);
  background: linear-gradient(145deg, var(--navy), var(--navy-soft));
}

.featured-card h3,
.featured-card p {
  color: var(--white);
}

.split-section.light,
.why-section,
.testimonials-section {
  background: var(--off-white);
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
  gap: 56px;
}

.split-grid p {
  color: var(--muted);
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 32px;
  font-weight: 800;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: var(--emerald);
}

.image-panel {
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 30px;
  border-radius: 32px;
  color: var(--white);
  box-shadow: var(--shadow);
}

.image-panel span {
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.82;
}

.image-panel strong {
  max-width: 340px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.airbnb-panel {
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.08), rgba(11, 31, 58, 0.86)),
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.5), transparent 14%),
    linear-gradient(135deg, #dff7ed, #70d4b1 52%, #0b1f3a);
}

.home-panel {
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.05), rgba(11, 31, 58, 0.88)),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.5), transparent 14%),
    linear-gradient(135deg, #eef6ff, #9ec9f4 50%, #12355f);
}

.office-panel {
  background:
    linear-gradient(180deg, rgba(11, 31, 58, 0.05), rgba(11, 31, 58, 0.86)),
    radial-gradient(circle at 20% 26%, rgba(255, 255, 255, 0.5), transparent 16%),
    linear-gradient(135deg, #e9fff7, #49c49a 48%, #0b1f3a);
}

.why-grid {
  grid-template-columns: repeat(4, 1fr);
}

.why-item {
  padding: 24px;
}

.pricing-section {
  background: linear-gradient(180deg, var(--white), #eef8f5);
}

.pricing-grid {
  grid-template-columns: repeat(3, 1fr);
}

.price-card {
  padding: 30px;
}

.price-card.highlighted {
  border-color: rgba(16, 185, 129, 0.55);
  transform: translateY(-10px);
}

.price {
  margin: 18px 0;
  color: var(--emerald-dark) !important;
  font-size: 2rem;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.pricing-note {
  max-width: 760px;
  margin: 22px auto 0;
  color: var(--muted);
  text-align: center;
  font-size: 0.94rem;
}

.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
}

.testimonial-card {
  margin: 0;
  padding: 28px;
}

.testimonial-card blockquote {
  margin: 0 0 20px;
  font-size: 1.02rem;
}

.testimonial-card figcaption {
  color: var(--navy);
  font-weight: 900;
}

.contact-section {
  background:
    radial-gradient(circle at 15% 10%, rgba(16, 185, 129, 0.16), transparent 28%),
    var(--navy);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1fr);
  align-items: start;
  gap: 46px;
}

.contact-copy h2,
.contact-copy p,
.contact-copy .eyebrow {
  color: var(--white);
}

.contact-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.contact-box {
  display: grid;
  gap: 12px;
  margin-top: 26px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: none;
}

.contact-box p {
  margin: 0;
}

.contact-box a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 5px;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
  text-decoration: none;
}

.social-links a:hover,
.social-links a:focus-visible {
  border-color: var(--emerald);
  background: rgba(16, 185, 129, 0.16);
}

.quote-form {
  padding: 30px;
}

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

.two-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

label {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--text);
  background: var(--off-white);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--emerald);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.form-submit {
  width: 100%;
  cursor: pointer;
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

.hidden-field {
  display: none;
}

.thank-you-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px 20px;
  background:
    radial-gradient(circle at 85% 15%, rgba(16, 185, 129, 0.18), transparent 30%),
    linear-gradient(135deg, #f9fcff 0%, #eaf5ff 52%, #ffffff 100%);
}

.thank-you-card {
  width: min(680px, 100%);
  padding: 48px;
  border: 1px solid var(--border);
  border-radius: 32px;
  background: var(--white);
  box-shadow: var(--shadow);
  text-align: center;
}

.thank-you-card h1 {
  margin-bottom: 22px;
  font-size: clamp(2.2rem, 7vw, 4rem);
}

.thank-you-card p:not(.eyebrow) {
  color: var(--muted);
}

.thank-you-card .hero-actions {
  justify-content: center;
}

.thank-you-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  object-fit: contain;
}

.site-footer {
  color: rgba(255, 255, 255, 0.76);
  background: #071529;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 34px;
  padding: 56px 0 32px;
}

.footer-brand,
.footer-brand strong,
.footer-brand small {
  color: var(--white);
}

.site-footer h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: 1rem;
  letter-spacing: 0;
}

.site-footer a,
.site-footer span {
  display: block;
  margin-bottom: 9px;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--emerald);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .section {
    padding: 72px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-menu {
    position: fixed;
    inset: 82px 16px auto 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    padding: 14px;
  }

  .nav-menu .language-link {
    margin-top: 8px;
    border-color: rgba(16, 185, 129, 0.35);
    background: rgba(16, 185, 129, 0.08);
  }

  .nav-menu a::after {
    display: none;
  }

  .hero-grid,
  .split-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .why-grid,
  .pricing-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reverse .image-panel {
    order: 2;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  .section {
    padding: 58px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }

  .brand-logo {
    width: 50px;
    height: 50px;
  }

  .brand strong {
    font-size: 0.9rem;
  }

  .brand small {
    font-size: 0.7rem;
  }

  .nav-menu {
    top: 74px;
  }

  .hero {
    min-height: auto;
    padding-top: 64px;
  }

  h1 {
    font-size: clamp(2.4rem, 13vw, 4rem);
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quote-card,
  .quote-form {
    padding: 24px;
  }

  .quote-metrics,
  .cards-grid,
  .why-grid,
  .pricing-grid,
  .testimonial-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

  .image-panel {
    min-height: 310px;
    border-radius: 24px;
  }

  .price-card.highlighted {
    transform: none;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
