:root {
  --primary-dark: #579FAC;
  --primary-cta: #579FAC;
  --neutral-dark: #606060;
  --neutral-nav: #6A697A;
  --border-light: #9EC4CB;
  --neutral-white: #FFFFFF;
  --partner-color: #939DBA;
  --quote-bg: #3d7a85;
  --quote-input-bg: #4a8a95;
  --quote-btn-bg: #E5F5F7;
  --font: "Plus Jakarta Sans", sans-serif;
}

html {
  scroll-behavior: smooth;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--primary-dark);
  background: var(--neutral-white);
  line-height: 1.6;
}

main > section {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.28s ease-out, transform 0.28s ease-out;
}

main > section.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.header {
  background: var(--neutral-white);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 18px;
}

.logo-icon {
  width: 58px;
  height: 100%;
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--neutral-nav);
  text-decoration: none;
  font-size: 16px;
  font-weight: 400;
}

.nav a:hover {
  color: var(--primary-dark);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: none;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  color: var(--primary-dark);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle:hover { background: rgba(87, 159, 172, 0.08); }
.nav-toggle-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.25s ease, opacity 0.2s ease;
}
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}
.btn-contact-nav { display: none; }
.btn-contact-desk { display: inline-flex; align-items: center; }

.btn-contact {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: var(--neutral-white);
  color: var(--primary-dark);
  border: 1px solid var(--border-light);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-contact-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.btn-contact:hover {
  background: #F5F4FA;
  border-color: var(--primary-dark);
}

@media (min-width: 901px) {
  .btn-contact-nav {
    display: none;
  }
}

.hero-wrap {
  position: relative;
  overflow: visible;
}

@keyframes shape-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.shape {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  object-fit: contain;
  animation: shape-float 4s ease-in-out infinite;
}

.shape-1 {
  top: 20px;
  right: 5%;
  width: min(140px, 18vw);
  height: auto;
  opacity: 0.09;
  animation-delay: 0s;
}

.shape-2 {
  bottom: 60px;
  left: 3%;
  width: min(120px, 16vw);
  height: auto;
  opacity: 0.07;
  animation-delay: 1.2s;
}

.hero-wrap .hero {
  position: relative;
  z-index: 1;
}

.hero {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 24px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 48px;
}

.hero-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0;
  color: #424242;
  margin-bottom: 0px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat-value {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
}

.hero-stat-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--primary-dark);
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-nav);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  background: var(--primary-cta);
  color: var(--neutral-white);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  align-self: flex-start;
}

.btn-cta:hover {
  background: #4a8a95;
  transform: translateY(-1px);
}

.hero-cta-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-video-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.btn-cta-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  gap: 8px;
  background: transparent;
  color: var(--primary-cta);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  border: 2px solid var(--primary-cta);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-cta-outline:hover {
  background: var(--primary-cta);
  color: var(--neutral-white);
  transform: translateY(-1px);
}

.hero-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1200 / 480;
  max-height: 480px;
  background: #E5EDFF;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes hero-stat-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.hero-image-stat-set {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition: opacity 0.28s ease-out, visibility 0.28s ease-out;
}

.hero-image-stat-set .hero-image-stat {
  pointer-events: auto;
  transition: opacity 0.28s ease-out;
}

.hero-image-stat-set-2 {
  opacity: 0;
  visibility: hidden;
}

.hero-image-stat-set-2 .hero-image-stat {
  opacity: 0;
}

.hero-image-wrap.stat-alt .hero-image-stat-set-1 .hero-image-stat {
  opacity: 0;
}

.hero-image-wrap.stat-alt .hero-image-stat-set-1 {
  pointer-events: none;
}

.hero-image-wrap.stat-alt .hero-image-stat-set-2 {
  opacity: 1;
  visibility: visible;
  pointer-events: none;
}

.hero-image-wrap.stat-alt .hero-image-stat-set-2 .hero-image-stat {
  opacity: 1;
}

.hero-image-stat {
  position: absolute;
  background: var(--neutral-white);
  padding: 20px 28px;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 4px;
  animation: hero-stat-float 3s ease-in-out infinite;
}

.hero-image-stat-tl {
  top: 24px;
  left: 24px;
}

.hero-image-stat-br {
  bottom: 24px;
  right: 24px;
  animation-delay: 0.8s;
}

.hero-image-stat-value {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
  color: var(--primary-dark);
}

.hero-image-stat-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
  color: var(--neutral-nav);
}

@media (max-width: 900px) {
  .header-inner {
    flex-wrap: nowrap;
  }

  .btn-contact-desk { display: none; }
  .btn-contact-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 8px;
    padding: 14px 20px;
  }
  .nav-toggle {
    display: flex;
    order: 2;
    margin-left: auto;
  }
  .nav-overlay {
    display: block;
  }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: 80px 24px 24px;
    background: var(--neutral-white);
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    z-index: 99;
    transform: translateX(100%);
    visibility: hidden;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s;
    overflow-y: auto;
  }
  .nav a {
    padding: 14px 0;
    font-size: 17px;
    font-weight: 500;
    border-bottom: 1px solid rgba(106, 105, 122, 0.12);
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .nav a:last-of-type { border-bottom: none; }
  .header.is-open .nav-overlay {
    opacity: 1;
    visibility: visible;
  }
  .header.is-open .nav {
    transform: translateX(0);
    visibility: visible;
  }
  .header.is-open .nav-toggle {
    position: fixed;
    right: 12px;
    top: 18px;
    z-index: 100;
  }
  .header.is-open .nav-toggle-bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .header.is-open .nav-toggle-bar:nth-child(2) {
    opacity: 0;
  }
  .header.is-open .nav-toggle-bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  body.nav-open { overflow: hidden; }

  .shape-1 {
    top: 10px;
    right: 2%;
    width: min(100px, 14vw);
    opacity: 0.08;
  }

  .shape-2 {
    bottom: 40px;
    left: 1%;
    width: min(85px, 12vw);
    opacity: 0.06;
  }

  .hero {
    padding: 48px 24px 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    margin-bottom: 40px;
  }

  .hero-title {
    font-size: 40px;
    line-height: 1.2;
    margin-bottom: 24px;
  }

  .hero-right {
    gap: 24px;
  }

  .hero-desc {
    font-size: 16px;
    line-height: 1.65;
  }

  .hero-image-wrap {
    border-radius: 16px;
    aspect-ratio: 16 / 10;
    max-height: 360px;
  }

  .hero-stat-value {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .shape-1 {
    width: min(72px, 20vw);
    top: 5px;
    right: 0;
    opacity: 0.07;
  }

  .shape-2 {
    width: min(60px, 18vw);
    bottom: 24px;
    left: -8px;
    opacity: 0.05;
  }

  .hero {
    padding: 32px 20px 0;
  }

  .hero-inner {
    gap: 24px;
    margin-bottom: 32px;
  }

  .hero-right {
    gap: 20px;
  }

  .hero-title {
    font-size: 28px;
    line-height: 1.25;
    margin-bottom: 0px;
    letter-spacing: -0.02em;
  }

  .hero-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .btn-cta {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    justify-content: center;
    border-radius: 12px;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-cta-wrap {
    flex-direction: column;
  }

  .btn-cta-outline {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 16px;
    -webkit-tap-highlight-color: transparent;
  }

  .hero-image-wrap {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    max-height: 280px;
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
    border-radius: 0;
  }

  .hero-image-stat {
    padding: 12px 16px;
    border-radius: 12px;
    gap: 2px;
    animation: none;
  }

  .hero-image-stat-tl {
    top: 12px;
    left: 12px;
  }

  .hero-image-stat-br {
    bottom: 12px;
    right: 12px;
  }

  .hero-image-stat-value {
    font-size: 24px;
  }

  .hero-image-stat-label {
    font-size: 11px;
    line-height: 1.3;
    max-width: 100px;
  }

  .hero-image-stat-br .hero-image-stat-label {
    max-width: 90px;
  }
}

@media (max-width: 380px) {
  .hero {
    padding: 28px 16px 0;
  }

  .hero-title {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-desc {
    font-size: 14px;
  }

  .hero-image-wrap {
    margin-left: -16px;
    margin-right: -16px;
    width: calc(100% + 32px);
    max-height: 220px;
  }

  .hero-image-stat-value {
    font-size: 20px;
  }

  .hero-image-stat-label {
    font-size: 10px;
    max-width: 85px;
  }
}

@keyframes partners-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.partners {
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px 24px 80px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.partners-inner {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 12%, black 88%, transparent 100%);
  mask-size: 100% 100%;
  -webkit-mask-size: 100% 100%;
}

.partners-track {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 48px;
  width: max-content;
  animation: partners-scroll 40s linear infinite;
}

.partner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 0;
  min-height: 48px;
}

.partner-logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: 140px;
  object-fit: contain;
}

@media (max-width: 600px) {
  .partners {
    padding: 48px 0 64px;
  }

  .partners-track {
    gap: 32px;
    animation-duration: 30s;
  }

  .partner-item {
    min-width: 100px;
  }
}

.quote-section {
  background: var(--quote-bg);
  border-radius: 24px;
  max-width: 1200px;
  margin: 40px auto 40px;
  padding: 56px 24px;
}

.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.quote-content {
  color: var(--neutral-white);
}

.quote-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

@keyframes quote-bullet-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0.25; }
}

.quote-bullet {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: var(--neutral-white);
  border-radius: 50%;
}

.quote-bullet::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  animation: quote-bullet-pulse 2.8s ease-in-out infinite;
}

.quote-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 20px;
}

.quote-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 20px;
}

.btn-cta-quote-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  gap: 8px;
  background: var(--neutral-white);
  color: var(--quote-bg);
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  border: 2px solid var(--neutral-white);
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}

.btn-cta-quote-white:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--primary-dark);
  transform: translateY(-1px);
}

.quote-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote-form-card {
  background: var(--neutral-white);
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.12);
  padding: 32px 18px;
}

.quote-form-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-nav);
  text-align: center;
  margin-bottom: 24px;
}

.quote-step {
  display: none;
}

.quote-step.is-active {
  display: block;
}

.quote-step-question {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 20px;
}

.quote-step-question .required {
  color: #c00;
}

.quote-step-error {
  font-size: 14px;
  color: #c00;
  margin: -8px 0 12px 0;
  min-height: 20px;
}

.quote-step-error:empty {
  display: none;
}

.quote-step-confirm .quote-step-confirm-message {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: center;
  margin-bottom: 28px;
  line-height: 1.4;
  white-space: pre-line;
}

.quote-confirm-title {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary-dark);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.3;
}

.quote-confirm-call-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  background: #f0f4f5;
  border-radius: 10px;
  margin-bottom: 16px;
}

.quote-confirm-call-icon {
  color: #c62828;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-confirm-call-text {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 700;
  color: #c62828;
}

.quote-confirm-warning {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  font-weight: 500;
  color: #c62828;
  margin: 0 0 24px;
  line-height: 1.4;
  text-align: left;
}

.quote-confirm-warning-icon {
  flex-shrink: 0;
  color: #f9a825;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-confirm-steps-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-dark);
  margin: 0 0 16px;
  line-height: 1.3;
}

.quote-confirm-steps-list {
  margin: 0 0 28px;
  padding-left: 24px;
  list-style: none;
  counter-reset: confirm-step;
}

.quote-confirm-steps-list li {
  position: relative;
  font-size: 15px;
  font-weight: 500;
  color: var(--neutral-dark);
  line-height: 1.5;
  margin-bottom: 12px;
  padding-left: 36px;
}

.quote-confirm-steps-list li::before {
  counter-increment: confirm-step;
  content: counter(confirm-step);
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #E8F4F6;
  color: var(--primary-dark);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 24px;
  text-align: center;
}

.quote-confirm-error {
  margin-bottom: 24px;
}

.quote-confirm-error[hidden] {
  display: none;
}

.quote-step-confirm .quote-step-nav {
  justify-content: center;
}

.quote-step-confirm-again {
  padding: 14px 24px;
  border-radius: 10px;
  border: none;
  background: var(--primary-dark);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s;
}

.quote-step-confirm-again:hover {
  opacity: 0.9;
}

.quote-step-title {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-nav);
  text-align: center;
  margin-bottom: 12px;
}

.quote-step-radios,
.quote-step-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.quote-step-input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 16px;
  color: #4a4a4a;
  outline: none;
  transition: border-color 0.2s;
}

.quote-step-input::placeholder {
  color: var(--neutral-nav);
}

.quote-step-input:focus {
  border-color: var(--primary-dark);
}

.quote-step-input-email {
  background: #E8F4F6;
  border-color: #c5e0e4;
}

.quote-step-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: var(--neutral-nav);
  margin-bottom: 20px;
}

.quote-step-phone {
  display: flex;
  gap: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
}

.quote-step-phone-prefix {
  display: flex;
  align-items: center;
  padding: 14px 12px;
  border: none;
  border-right: 1px solid #e0e0e0;
  background: #f5f5f5;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  color: var(--primary-dark);
}

.quote-step-input-phone {
  flex: 1;
  border: none;
  border-radius: 0;
}

.quote-step-disclaimer {
  font-size: 12px;
  font-weight: 400;
  color: var(--neutral-nav);
  line-height: 1.5;
  margin-bottom: 24px;
}

.quote-step-disclaimer a {
  color: var(--primary-dark);
  text-decoration: underline;
}

.quote-step-submit {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 24px;
  background: #2e7d32;
  color: var(--neutral-white);
  border: none;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 0.2s, transform 0.12s ease;
}

.quote-step-submit:hover:not(:disabled) {
  background: #1b5e20;
  transform: translateY(-1px);
}

.quote-step-submit:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.quote-step-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quote-radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e5e5e5;
  transition: border-color 0.2s, background 0.2s;
}

.quote-radio:hover {
  border-color: var(--primary-dark);
  background: rgba(87, 159, 172, 0.06);
}

.quote-radio input {
  width: 20px;
  height: 20px;
  accent-color: var(--primary-dark);
}

.quote-radio input:checked + .quote-radio-label {
  font-weight: 600;
}

.quote-radio-label {
  font-size: 16px;
  color: #4a4a4a;
}

.quote-step-nav {
  display: flex;
  align-items: stretch;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  background: #6BB3BE;
}


.quote-step-prev {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 24px;
  background: #6BB3BE;
  border: none;
  color: var(--neutral-white);
  cursor: pointer;
  transition: background 0.2s, transform 0.12s ease;
}

.quote-step-prev:hover {
  background: #5a9fa9;
  transform: translateY(-1px);
}

.quote-step-prev:active {
  transform: translateY(0) scale(0.98);
}

.quote-step-prev-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-step-prev-text {
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
}

.quote-step-next {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: none;
  border-radius: 0;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  color: var(--neutral-white);
  cursor: pointer;
  transition: background 0.2s, transform 0.12s ease;
  padding: 16px 24px;
  background: var(--primary-dark);
}

.quote-step-nav .quote-step-next-with-text {
  flex: 1;
  min-width: 0;
}

.quote-step-next:hover:not(:disabled) {
  background: #4a8a95;
  transform: translateY(-1px);
}

.quote-step-next:active:not(:disabled) {
  transform: translateY(0) scale(0.98);
}

.quote-step-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.quote-step-next-label {
  white-space: nowrap;
}

.quote-step-next-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.quote-form-row-full {
  grid-template-columns: 1fr;
}

.quote-input {
  padding: 14px 18px;
  background: var(--quote-input-bg);
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 16px;
  color: var(--neutral-white);
  outline: none;
}

.quote-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.quote-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.7)' 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: 44px;
}

.quote-select option {
  background: var(--quote-input-bg);
  color: var(--neutral-white);
}

.quote-form-actions {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
}

.quote-btn {
  padding: 14px 28px;
  background: var(--quote-btn-bg);
  color: var(--primary-dark);
  border: none;
  border-radius: 12px;
  font-family: var(--font);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}

.quote-btn:hover {
  background: #c5e8ec;
  transform: translateY(-1px);
}

@media (min-width: 900px) {
  .quote-section {
    padding: 56px 48px;
  }
}

@media (max-width: 900px) {
  .quote-inner {
    grid-template-columns: 1fr;
  }

  .quote-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .quote-section {
    padding: 40px 10px;
    border-radius: 16px;
    margin-left: 5px;
    margin-right: 5px;
  }

  .quote-title {
    font-size: 32px;
  }

  .quote-form-row {
    grid-template-columns: 1fr;
  }
}

.contact-section {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 24px;
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.contact-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--border-light);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

@keyframes contact-bullet-pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.25); opacity: 0.25; }
}

.contact-bullet {
  position: relative;
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #16a34a;
  border-radius: 50%;
}

.contact-bullet::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.3);
  animation: contact-bullet-pulse 2.8s ease-in-out infinite;
}

.contact-title {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #424242;
  margin-bottom: 16px;
}

.contact-desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--neutral-nav);
  margin-bottom: 32px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 40px;
  height: 40px;
  color: var(--primary-dark);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-label {
  font-size: 18px;
  font-weight: 600;
  color: var(--primary-dark);
}

.contact-card-value {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--neutral-nav);
  text-decoration: none;
}

.contact-card-value:hover {
  color: var(--primary-dark);
}

.contact-map-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 1px 27px rgba(0, 0, 0, 0.05);
  aspect-ratio: 1;
  min-height: 320px;
}

.contact-map {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

@media (min-width: 900px) {
  .contact-section {
    padding: 0 48px;
  }
}

@media (max-width: 900px) {
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .contact-map-wrap {
    order: -1;
    min-height: 280px;
  }

  .contact-title {
    font-size: 36px;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 0 20px;
    margin-bottom: 64px;
  }

  .contact-title {
    font-size: 32px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.modal-overlay[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.modal-video-box {
  position: relative;
  background: #111;
  border-radius: 12px;
  overflow: hidden;
  max-width: 900px;
  width: 100%;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  transform: scale(0.95);
  transition: transform 0.25s ease;
}

.modal-overlay[aria-hidden="false"] .modal-video-box {
  transform: scale(1);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 40px;
  height: 40px;
  border: none;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  border-radius: 8px;
  z-index: 2;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.85);
}

.modal-video-player {
  display: block;
  width: 100%;
  max-height: 80vh;
}

.footer {
  background: var(--primary-dark);
  color: var(--neutral-white);
  padding: 20px 24px;
  text-align: center;
}

.footer-text {
  margin: 0;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 400;
  opacity: 0.95;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
