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

:root {
  --dark: #122c4e;
  --dark-2: #0c1f3a;
  --accent: #0d64b0;
  --accent-dark: #0a4e8b;
  --accent-light: #7db8e6;
  --accent-text: #0d5da3;
  --green: #5f9e2c;
  --green-text: #467c1d;
  --green-soft: #eef6e5;
  --blue-tint: #eef4fb;
  --white: #ffffff;
  --grey-soft: #f4f5f7;
  --grey-line: #e3e6ea;
  --text-body: #435061;
  --sec-y: 120px;
  --header-space: 64px;
  --copy-size: 1.125rem;
  --copy-lh: 1.75;
  --radius: 6px;
  --radius-btn: 8px;
  --radius-card: 16px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-offset, 110px);
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-title {
  font-size: clamp(2.5rem, 4.6vw, 3.625rem);
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.06;
  text-wrap: balance;
}

.section-divider {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent);
  margin-bottom: 24px;
}

.section-header {
  margin-bottom: var(--header-space);
}

.section-header--center {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-header--left {
  max-width: 640px;
  text-align: left;
}

.section-header--center .section-divider,
.section-header--center .section-copy {
  margin-left: auto;
  margin-right: auto;
}

.section-divider-light {
  background: var(--accent-light);
}

.section-copy {
  max-width: 640px;
  color: var(--text-body);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.optional-text {
  color: #6b7683;
  font-weight: 400;
}

.campaign-bar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1001;
  background: var(--dark-2);
  color: var(--white);
  text-align: center;
  padding: calc(10px + env(safe-area-inset-top, 0px)) 24px 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.campaign-bar strong {
  color: #8fd14f;
  font-weight: 700;
}

.campaign-bar:hover {
  color: var(--accent-light);
}

.campaign-bar.hidden {
  transform: translate3d(0, -100%, 0);
}

body.menu-open .campaign-bar {
  transform: translate3d(0, -100%, 0);
  pointer-events: none;
}

body.menu-open .nav {
  top: env(safe-area-inset-top, 0px);
  background: var(--white);
  border-bottom-color: transparent;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body.menu-open .nav .nav-toggle span {
  background: var(--dark);
}

.nav {
  position: fixed;
  top: var(--bar-height, 0px);
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(18, 44, 78, 0.07);
  transform: translateY(0);
  transition: background-color 0.2s ease, box-shadow 0.2s ease;
}

.nav.scrolled {
  box-shadow: 0 1px 20px rgba(16, 22, 27, 0.08);
}

.nav-logo img {
  height: 44px;
  width: auto;
  display: block;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: 1.1875rem;
  letter-spacing: -0.015em;
  color: var(--dark);
  margin-left: 11px;
  line-height: 1.1;
}

.nav-logo-text small {
  font-family: 'Inter', sans-serif;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--text-body);
  margin-top: 3px;
}

.nav.bar-hidden {
  top: env(safe-area-inset-top, 0px);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: 0.03em;
  position: relative;
  transition: color 0.3s ease;
}

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

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

.nav-links a.active {
  color: var(--accent-text);
  font-weight: 600;
}

.nav-links a.nav-cta,
.nav.scrolled .nav-links a.nav-cta {
  background: var(--accent);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(13, 100, 176, 0.28);
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.nav-links a.nav-cta::after {
  display: none;
}

.nav-links a.nav-cta:hover,
.nav-links a.nav-cta:active {
  background: var(--accent-dark);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hero {
  position: relative;
  overflow: clip;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 60%;
}

.hero-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: linear-gradient(
    100deg,
    rgba(10, 24, 44, 0.9) 0%,
    rgba(10, 24, 44, 0.72) 52%,
    rgba(10, 24, 44, 0.45) 100%
  );
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
  align-items: center;
  padding: 200px 0 110px;
  min-height: min(880px, 95vh);
}

.hero h1 {
  font-size: clamp(2.875rem, 5.2vw, 4.375rem);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.028em;
  line-height: 1.04;
  text-wrap: balance;
}

.hero h1 em,
.section-title em {
  font-style: normal;
  color: var(--accent-light);
}

.section-title em {
  color: var(--accent);
}

.hero-text {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.87);
  margin: 26px 0 34px;
  max-width: 560px;
  line-height: 1.75;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}

.hero-proof {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 44px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-proof-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 10px;
}

.hero-proof-icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent-light);
}

.hero-proof-item strong {
  display: block;
  font-family: 'Hanken Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.hero-proof-item div span {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.35;
}

.hero-form-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 34px 32px 30px;
  box-shadow: 0 26px 60px rgba(6, 16, 32, 0.35);
}

.hero-form-title {
  font-size: 1.4375rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 4px;
}

.hero-form-sub {
  font-size: 0.9375rem;
  color: var(--text-body);
  margin-bottom: 20px;
}

.hero-form-card .form-group {
  margin-bottom: 14px;
}

.hero-form-card textarea {
  min-height: 60px;
}

.hero-form-card .form-row {
  grid-template-columns: 1fr 1fr;
  gap: 0 10px;
}

.hero-form-card .btn-submit {
  margin-top: 4px;
  padding: 14px 32px;
}

.hero-form-note {
  margin-top: 12px;
  font-size: 0.78125rem;
  color: var(--text-body);
  text-align: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 15px 34px;
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-btn);
  border: none;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

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

.btn-primary:hover,
.btn-primary:active {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(16, 22, 27, 0.18);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
}

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

.services {
  padding: var(--sec-y) 0;
  background: var(--white);
}

.scard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.scard {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(18, 44, 78, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.scard:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(18, 44, 78, 0.12);
}

.scard-media {
  aspect-ratio: 4/3;
  overflow: hidden;
}

.scard-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.scard:hover .scard-media img {
  transform: scale(1.06);
}

.scard-body {
  padding: 26px 26px 28px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.scard-body h3 {
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: 10px;
}

.scard-body p {
  color: var(--text-body);
  font-size: 0.96875rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.scard-link {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--accent-text);
  font-weight: 600;
  font-size: 0.9375rem;
}

.scard-link svg {
  width: 15px;
  height: 15px;
  transition: transform 0.2s ease;
}

.scard:hover .scard-link svg {
  transform: translateX(3px);
}

.about {
  padding: var(--sec-y) 0;
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-grid .section-header {
  margin-bottom: 20px;
}

.about-image {
  position: relative;
  z-index: 0;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-copy {
  color: var(--text-body);
  font-size: var(--copy-size);
  margin-bottom: 20px;
  line-height: var(--copy-lh);
}

.about-cta-btn {
  margin-top: 24px;
  color: var(--dark);
  border-color: rgba(24, 32, 38, 0.3);
}

.about-cta-btn:hover,
.about-cta-btn:active {
  border-color: var(--accent);
  color: var(--accent-text);
}

.contact {
  padding: var(--sec-y) 0;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.contact-panel {
  margin-top: 10px;
  background: var(--dark);
  border-radius: var(--radius-card);
  padding: 34px 34px 30px;
  box-shadow: 0 22px 48px rgba(18, 44, 78, 0.18);
}

.contact-panel-label {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 12px;
}

.contact-panel-tel {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 2.4vw, 2.125rem);
  letter-spacing: -0.01em;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-panel-tel svg {
  width: 26px;
  height: 26px;
  color: var(--accent-light);
  flex-shrink: 0;
}

.contact-panel-tel:hover,
.contact-panel-tel:active {
  color: var(--accent-light);
}

.contact-panel-rows {
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  gap: 15px;
}

.contact-panel-row {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.96875rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-panel-row svg {
  width: 18px;
  height: 18px;
  color: var(--accent-light);
  flex-shrink: 0;
}

a.contact-panel-row:hover,
a.contact-panel-row:active {
  color: var(--white);
}

.contact-form-wrapper {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: var(--radius-card);
  padding: 40px;
  box-shadow: 0 18px 44px rgba(18, 44, 78, 0.08);
}

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

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--grey-soft);
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 100, 176, 0.12);
}

.form-group input:focus-visible,
.form-group textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #6b7683;
}

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

.btn-submit {
  width: 100%;
  justify-content: center;
  padding: 16px 32px;
  font-size: 1rem;
}

#contact-form {
  max-width: 100%;
  min-width: 0;
}

.ms-recaptcha-notice {
  text-align: center;
}

@media (max-width: 1024px) {

  .about-grid {
    grid-template-columns: 2fr 3fr;
    gap: 40px;
  }

  .contact-grid {
    grid-template-columns: 5fr 7fr;
    gap: 40px;
  }

  .contact-form-wrapper {
    padding: 32px;
  }

  .container {
    padding: 0 32px;
  }
}

@media (max-width: 900px) {
  .fade-in-left,
  .fade-in-right {
    transform: translateY(30px);
  }

  .fade-in-left.visible,
  .fade-in-right.visible {
    transform: translateY(0);
  }

  .nav {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 1px 20px rgba(16, 22, 27, 0.08);
    backdrop-filter: blur(12px);
  }

  .nav .nav-toggle span {
    background: var(--dark);
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: auto;
    width: 100%;
    max-height: 100dvh;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 84px 20px 18px;
    gap: 0;
    box-shadow: 0 18px 40px rgba(6, 16, 32, 0.16);
    border-radius: 0 0 16px 16px;
    transform: translateY(-104%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 998;
  }

  .nav-links.open {
    transform: translateY(0);
  }

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

  .nav-links > li {
    width: 100%;
  }

  .nav-links > li > a,
  .nav.scrolled .nav-links > li > a {
    color: var(--dark);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0;
    padding: 12px 0;
    border-bottom: 1px solid #eef1f4;
    display: block;
    width: 100%;
  }

  .nav-links > li > a.nav-cta,
  .nav.scrolled .nav-links > li > a.nav-cta {
    color: var(--white);
    background: var(--accent);
    text-align: center;
    margin-top: 14px;
    padding: 12px 24px;
    border-bottom: none;
    border-radius: var(--radius-btn);
    box-shadow: none;
  }

  .nav-links > li > a.nav-cta:hover,
  .nav-links > li > a.nav-cta:active {
    background: var(--accent-dark);
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-logo {
    position: relative;
    z-index: 999;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    order: -1;
    max-width: 400px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  :root {
    --sec-y: 64px;
    --header-space: 38px;
    --copy-size: 1rem;
  }

  .section-title {
    font-size: clamp(1.9rem, 7vw, 2.25rem);
  }

  .campaign-bar {
    font-size: 0.7rem;
    padding: 8px 16px;
    white-space: normal;
  }

  .nav-inner {
    height: 60px;
  }

  .nav-links {
    padding-top: 66px;
  }

  .hero h1 {
    font-size: clamp(2rem, 7.6vw, 2.5rem);
  }

  .hero-text {
    font-size: 1.0625rem;
  }

  .scard-body h3 {
    font-size: 1.1875rem;
  }

  .value-row h3,
  .process-card h3 {
    font-size: 1.1875rem;
  }

  .rut-percent {
    font-size: clamp(4rem, 17vw, 5rem);
  }

  .cta-band h2 {
    font-size: clamp(1.75rem, 6.6vw, 2.125rem);
  }

  .ftr-tagline {
    font-size: 1.5rem;
  }

  .contact-panel {
    padding: 26px 24px 24px;
  }

  .hero-proof-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width: 480px) {
  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .contact-form-wrapper {
    padding: 24px;
  }
}

@media (hover: none) {
  a, button {
    -webkit-tap-highlight-color: transparent;
  }

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

  .form-group input,
  .form-group textarea {
    font-size: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .fade-in-left,
  .fade-in-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  z-index: 10000;
  background: var(--accent);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 0 0 4px 4px;
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}

.skip-link:focus {
  top: 0;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 2px;
}

a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

.mobile-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(16, 22, 27, 0.34);
  z-index: 997;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.value-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-line);
}

.value-row:first-child {
  padding-top: 0;
}

.value-row:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  margin-top: 3px;
  background: var(--green-soft);
  color: var(--green-text);
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9375rem;
}

.value-row h3 {
  font-size: 1.375rem;
  color: var(--dark);
  margin-bottom: 6px;
}

.value-row p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.services .section-copy {
  max-width: 560px;
}

.varfor {
  padding: var(--sec-y) 0;
  background: var(--white);
}

.varfor-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.varfor-image {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: 0 18px 44px rgba(18, 44, 78, 0.12);
}

.varfor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.varfor-content .section-header {
  margin-bottom: 8px;
}

.varfor-content .btn {
  margin-top: 30px;
}

.varfor-rows .value-row {
  padding: 16px 0;
}

.varfor-rows .value-row p {
  font-size: 1rem;
}

.process {
  padding: var(--sec-y) 0;
  background: var(--blue-tint);
}

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

.process-card {
  position: relative;
  padding: 10px 44px;
  border-left: 1px solid rgba(18, 44, 78, 0.14);
}

.process-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--grey-line);
  box-shadow: 0 6px 18px rgba(18, 44, 78, 0.08);
  margin-bottom: 22px;
}

.process-icon svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
}

.process-card:first-child {
  border-left: none;
  padding-left: 0;
}

.process-card:last-child {
  padding-right: 0;
}

.process-card h3 {
  font-size: 1.375rem;
  margin-bottom: 12px;
  color: var(--dark);
}

.process-card p {
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.faq {
  padding: var(--sec-y) 0;
  background: var(--grey-soft);
}

.faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--grey-line);
  border-radius: 14px;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.faq-item[open] {
  border-color: rgba(13, 100, 176, 0.35);
  box-shadow: 0 12px 30px rgba(18, 44, 78, 0.09);
}

.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 23px 28px;
  cursor: pointer;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--dark);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-chevron {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex-shrink: 0;
  border-radius: 8px;
  background: var(--blue-tint);
  transition: transform 0.3s ease;
}

.faq-chevron svg {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.faq-item[open] .faq-chevron {
  transform: rotate(45deg);
}

.faq-item > p {
  padding: 0 64px 26px 28px;
  color: var(--text-body);
  font-size: 1rem;
  line-height: 1.7;
}

.rut {
  padding: var(--sec-y) 0;
  background: var(--dark-2);
}

.rut-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 72px;
  align-items: center;
}

.rut-grid .section-header {
  margin-bottom: 20px;
}

.rut-grid .section-title {
  color: var(--white);
  font-size: clamp(2.25rem, 3.8vw, 3rem);
}

.rut .section-divider-light {
  background: #8fd14f;
}

.rut-copy {
  color: rgba(255, 255, 255, 0.76);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
  margin-bottom: 14px;
}

.rut-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  color: var(--accent-light);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.rut-link svg {
  width: 15px;
  height: 15px;
}

.rut-link:hover,
.rut-link:active {
  color: var(--white);
  text-decoration: underline;
}

.rut-figure {
  text-align: center;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding-left: 72px;
}

.rut-percent {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(5rem, 9vw, 7.5rem);
  line-height: 1;
  color: #8fd14f;
  letter-spacing: -0.02em;
}

.rut-percent-label {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  margin-top: 10px;
}

.rut-price {
  display: inline-block;
  margin-top: 26px;
  background: rgba(143, 209, 79, 0.14);
  color: #e4f6cd;
  font-weight: 600;
  font-size: 0.9375rem;
  line-height: 1.5;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
}

.about-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 28px;
  margin-top: 30px;
}

.about-check {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 0.96875rem;
  color: var(--dark);
}

.about-check .value-check {
  margin-top: 0;
}

.cta-band {
  position: relative;
  padding: calc(var(--sec-y) + 16px) 0;
  overflow: clip;
  background: var(--dark);
}

.cta-band-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

.cta-band-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cta-band-bg::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(9, 22, 41, 0.6);
}

.cta-band .container {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-band h2 {
  color: var(--white);
  font-size: clamp(2.25rem, 4.2vw, 3.25rem);
  font-weight: 800;
  margin-bottom: 16px;
  text-wrap: balance;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--copy-size);
  line-height: var(--copy-lh);
  max-width: 540px;
  margin: 0 auto 34px;
}

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

.btn-light {
  background: var(--white);
  color: var(--dark);
}

.btn-light:hover,
.btn-light:active {
  background: var(--blue-tint);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(6, 16, 32, 0.25);
}

.btn-light svg {
  color: var(--accent);
}

.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.55);
}

.btn-ghost:hover,
.btn-ghost:active {
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  background: var(--white);
}

.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid transparent;
  border-radius: var(--radius);
  font-family: 'Inter', sans-serif;
  font-size: 0.9375rem;
  color: var(--dark);
  background: var(--grey-soft);
  cursor: pointer;
  transition: border-color 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease;
}

.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(13, 100, 176, 0.12);
}

.form-group select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.radio-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 8px;
}

.radio-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.radio-chip {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 10px 10px;
  background: var(--grey-soft);
  border: 1.5px solid transparent;
  border-radius: var(--radius-btn);
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--dark);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease;
}

.radio-chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.radio-chip:has(input:checked) {
  border-color: var(--accent);
  background: var(--white);
  color: var(--accent-text);
  font-weight: 600;
}

.radio-chip:has(input:focus-visible) {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.ftr {
  background: var(--dark-2);
  border-radius: 40px 40px 0 0;
  padding: calc(var(--sec-y) - 40px) 0 0;
}

.ftr-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  flex-wrap: wrap;
  padding-bottom: 44px;
  margin-bottom: 56px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ftr-tagline {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 800;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
}

.ftr-tagline em {
  font-style: normal;
  color: var(--accent-light);
}

.ftr-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 48px;
}

.ftr-logo {
  display: inline-block;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 18px;
}

.ftr-logo img {
  height: 96px;
  width: auto;
  display: block;
}

.ftr-brand > p {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9375rem;
  line-height: 1.7;
  max-width: 300px;
  margin-top: 22px;
}

.ftr-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 20px;
}

.ftr-links {
  list-style: none;
}

.ftr-links li {
  margin-bottom: 10px;
}

.ftr-links a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.9375rem;
  transition: color 0.3s ease;
}

.ftr-links a:hover,
.ftr-links a:active {
  color: var(--accent-light);
}

.ftr-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.9375rem;
  line-height: 1.5;
}

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

.ftr-contact-item a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  transition: color 0.3s ease;
}

.ftr-contact-item a:hover,
.ftr-contact-item a:active {
  color: var(--accent-light);
}

.ftr-contact-item a[href^="tel"] {
  font-family: 'Hanken Grotesk', sans-serif;
  font-weight: 700;
  font-size: 1.0625rem;
  color: var(--white);
}

.ftr-strip {
  margin-top: calc(var(--sec-y) - 48px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}

.ftr-strip p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.8125rem;
  text-align: center;
}

@media (max-width: 1024px) {
  .process-card {
    padding: 10px 24px;
  }

  .varfor-grid {
    gap: 40px;
  }

  .rut-grid {
    gap: 44px;
  }

  .rut-figure {
    padding-left: 44px;
  }

  .ftr-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}

@media (max-width: 900px) {

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

  .varfor-image {
    max-width: 560px;
    margin: 0 auto;
    width: 100%;
  }

  .rut-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .rut-figure {
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    padding-left: 0;
    padding-top: 36px;
    text-align: left;
  }

}

@media (max-width: 640px) {

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

  .ftr-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .ftr {
    border-radius: 28px 28px 0 0;
  }

  .ftr-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 22px;
    padding-bottom: 36px;
    margin-bottom: 40px;
  }

  .varfor-content .about-cta-btn {
    display: flex;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }

  .cta-band-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 320px;
    margin: 0 auto;
  }

  .cta-band-buttons .btn {
    justify-content: center;
    width: 100%;
  }

  .ftr-logo img {
    height: 92px;
  }

  .faq-item summary {
    padding: 17px 18px;
    font-size: 0.96875rem;
  }

  .faq-item > p {
    padding: 0 18px 18px;
  }
}

@media (max-width: 900px) {
  .nav-logo-text small {
    display: none;
  }

  .nav-logo img {
    height: 38px;
  }

  .nav-logo-text {
    font-size: 1.0625rem;
  }
}

@media (max-width: 420px) {
  .nav-logo-text {
    font-size: 0.9375rem;
  }

}

@media (hover: none) {
  .process-card:hover {
    transform: none;
    box-shadow: 0 6px 22px rgba(18, 44, 78, 0.06);
  }
}

@media (min-width: 901px) and (max-width: 1150px) {
  .nav-links {
    gap: 22px;
  }

  .nav-links a {
    font-size: 0.8438rem;
  }
}

@media (max-width: 1024px) {
  .hero-grid {
    gap: 48px;
    padding: 176px 0 88px;
  }

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

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 160px 0 76px;
    min-height: 0;
  }

  .hero-form-card {
    max-width: 560px;
  }

  .hero-proof {
    margin-top: 32px;
  }
}

@media (max-width: 640px) {
  .scard-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }

  .hero-form-card {
    padding: 24px 20px 22px;
  }
}

@media (max-width: 700px) {
  .process-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .process-card {
    border-left: none;
    border-top: 1px solid rgba(18, 44, 78, 0.14);
    padding: 34px 0;
    text-align: center;
  }

  .process-icon {
    margin-left: auto;
    margin-right: auto;
  }

  .process-card p {
    max-width: 46ch;
    margin-left: auto;
    margin-right: auto;
  }

  .process-card:first-child {
    border-top: none;
    padding-top: 0;
  }

  .process-card:last-child {
    padding-bottom: 0;
  }
}

@media (max-width: 420px) {
  .about-checks {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.menu-tel {
  display: none;
}

@media (max-width: 900px) {
  .nav-links > li.menu-tel {
    display: block;
  }

  .nav-links > li.menu-tel > a.menu-tel-link,
  .nav.scrolled .nav-links > li.menu-tel > a.menu-tel-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    margin-top: 10px;
    padding: 12px 24px;
    border: 1.5px solid var(--grey-line);
    border-radius: var(--radius-btn);
    color: var(--dark);
    font-weight: 600;
    font-size: 1rem;
    width: 100%;
    border-bottom: 1.5px solid var(--grey-line);
  }

  .nav-links > li.menu-tel > a.menu-tel-link svg {
    color: var(--accent);
  }
}

fieldset.form-group {
  border: none;
  padding: 0;
  margin: 0 0 20px;
  min-width: 0;
}

legend.radio-label {
  padding: 0;
}

