/* ===================== RESET & BASE ===================== */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overscroll-behavior: auto;
  -webkit-tap-highlight-color: transparent;
  overflow-x: hidden;
}

body {
  font-family: 'Open Sans', sans-serif;
  color: #2A2A2A;
  background: #F4FDFF;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  width: 100%;
  overscroll-behavior: auto;
  padding-top: 104px;
}

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

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

/* ===================== ACCESSIBILITY ===================== */
.skip-link {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  background: #006E96;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  z-index: 1000;
  transition: top 0.3s ease;
}

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

/* Focus visible for keyboard navigation */
*:focus-visible {
  outline: 3px solid #006E96;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #006E96;
  outline-offset: 2px;
}

/* ===================== UTILITIES ===================== */
.text-blue {
  color: #006E96;
}

.highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.highlight::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 2px;
  width: 100%;
  height: 20px;
  background: #FFD66B;
  z-index: -1;
}

/* ===================== HEADER ===================== */
.header {
  background: #fff;
  box-shadow: 0 4px 50px rgba(0, 0, 0, 0.05);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

.header-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 67px;
  width: auto;
}

.btn-contact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid #2A2A2A;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 18px;
  white-space: nowrap;
  color: #2A2A2A;
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background: #2A2A2A;
  color: #fff;
}

.btn-contact:hover svg path {
  fill: #fff;
}

.btn-contact:active {
  transform: scale(0.98);
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-block;
  background: #000;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-primary:hover {
  background: #333;
  transform: translateY(-1px);
}

.btn-primary:active {
  transform: scale(0.98);
}

.btn-submit {
  display: inline-block;
  background: #006E96;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  align-self: flex-start;
}

.btn-submit:hover {
  background: #005a7a;
  transform: translateY(-1px);
}

.btn-submit:active {
  transform: scale(0.98);
}

/* ===================== HERO ===================== */
.hero {
  padding: 70px 0 70px 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-image {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: 500px;
}

.hero-image-bg {
  position: absolute;
  width: 560px;
  height: 560px;
  background: linear-gradient(180deg, #A2EEFF 0%, rgba(162, 238, 255, 0.2) 100%);
  border-radius: 40px;
  transform: rotate(-7deg);
  top: -30px;
  left: -50px;
  z-index: 0;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
}

.hero-content {
  flex: 1;
  max-width: 585px;
}

.hero-content h1 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.15;
  color: #2A2A2A;
  margin-bottom: 32px;
}

.hero-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #000;
  margin-bottom: 24px;
}

.hero-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 30px;
  color: #4A4A4A;
  margin-bottom: 48px;
}

/* ===================== FEATURES ===================== */
.features {
  padding: 40px 0 60px;
  overflow: hidden;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.features-row {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-bottom: 24px;
}

.feature-card {
  position: relative;
  width: 311px;
  padding-top: 0px;
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  border-radius: 15px;
  box-shadow: 4px 2px 12px rgba(0, 110, 150, 0.1);
  z-index: 0;
  transition: box-shadow 0.3s ease;
}

.feature-card:hover::after {
  box-shadow: 6px 4px 20px rgba(0, 110, 150, 0.18);
}

.feature-icon {
  position: relative;
  z-index: 1;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto;
  overflow: hidden;
  box-shadow: 4px 2px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-title {
  position: relative;
  z-index: 1;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 20px;
  color: #000;
  text-align: center;
  padding: 20px 30px 40px;
}

/* ===================== SERVICE ===================== */
.service {
  padding: 160px 0;
  overflow: hidden;
}

.service-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  align-items: center;
  gap: 150px;
}

.service-content {
  flex: 1;
}

.service-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: auto;
  margin-bottom: 24px;
  max-width: 590px;
}

.service-content h2 .text-blue {
  display: block;
  margin-bottom: -9px;
}

.service-description {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 32px;
  color: #4A4A4A;
  margin-bottom: 48px;
  max-width: 589px;
}

.service-image {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: 527px;
}

.service-image-bg {
  position: absolute;
  width: 570px;
  height: 570px;
  background: linear-gradient(180deg, #A2EEFF 0%, rgba(162, 238, 255, 0.2) 100%);
  border-radius: 40px;
  transform: rotate(8deg);
  top: -30px;
  left: -10px;
  z-index: 0;
}

.service-photo {
  position: relative;
  z-index: 2;
  width: 500px;
  height: 500px;
  object-fit: cover;
  border-radius: 0px;
}

.service-image-ornament {
  position: absolute;
  width: 254px;
  height: 244px;
  background-image: url('assets/ornament-lines.svg');
  background-size: contain;
  background-repeat: no-repeat;
  left: 180px;
  bottom: -80px;
  transform: rotate(-45deg);
  z-index: 1;
  pointer-events: none;
}

/* ===================== CAPABILITIES ===================== */
.capabilities {
  background: linear-gradient(180deg, #F4FDFF 0%, #fff 100%);
  padding: 80px 0 40px;
}

.capabilities-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.capabilities-header h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 48px;
}

.capabilities-subtitle {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  color: #2A2A2A;
  margin-bottom: 32px;
}

.capabilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 48px;
}

.capability-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 4px 2px 12px rgba(0, 110, 150, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.capability-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 24px rgba(0, 110, 150, 0.18);
}

.capability-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(180deg, #00ABE9 0%, #A2EEFF 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.capability-card span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #2A2A2A;
}

/* ===================== STEPS ===================== */
.steps {
  padding: 0 0 80px;
  background: linear-gradient(180deg, #fff 0%, #F4FDFF 100%);
}

.steps-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 100px;
}

.steps-inner > h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}

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

.step-card {
  background: #fff;
  border-radius: 20px;
  box-shadow: 4px 2px 12px rgba(0, 110, 150, 0.15);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 6px 6px 24px rgba(0, 110, 150, 0.2);
}

.step-number {
  width: 64px;
  height: 64px;
  background: #FFD66B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  color: #2A2A2A;
}

.step-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #006E96;
  line-height: 1.3;
}

.step-card p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #4A4A4A;
}

/* ===================== FAQ ===================== */
.faq {
  padding: 100px 0;
}

.faq-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.faq-content {
  flex: 1;
  max-width: 590px;
}

.faq-content h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 38px;
  color: #2A2A2A;
  margin-bottom: 32px;
}

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

.faq-item {
  position: relative;
  background: #fff;
  border-radius: 24px;
  box-shadow: 4px 2px 12px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 40px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: background-color 0.25s ease;
}

.faq-question span {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 32px;
  color: #2A2A2A;
  transition: color 0.25s ease;
}

.faq-question:hover {
  background: #ffffff;
}

.faq-question:hover span {
  color: #006E96;
}

.faq-question:active {
  background: rgb(240, 250, 253);
}

.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  transform: rotate(90deg);
}

.faq-question:hover .faq-chevron {
  transform: rotate(90deg) translateX(2px);
    color: #006E96;

}

.faq-item--open .faq-chevron {
  transform: rotate(-90deg);
}

.faq-item--open .faq-question:hover .faq-chevron {
  transform: rotate(-90deg) translateX(-2px);
}

.faq-answer {
  position: relative;
  padding: 0 40px 16px;
  display: none;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 32px;
  color: #4A4A4A;
}

.faq-item--open .faq-answer {
  display: block;
}

.faq-answer-bar {
  position: absolute;
  top: 0px;
  left: 0;
  right: 0;
  height: 8px;
  background: #FFD66B;
  display: none;
}

.faq-item--open .faq-answer-bar {
  display: none;
}

.faq-item--open .faq-question {
  position: relative;
  padding-top: 24px;
}

.faq-item--open .faq-question::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 8px;
  background: #FFD66B;
}

.faq-answer p,
.faq-answer .faq-bullets li {
  font: inherit;
  color: inherit;
}

.faq-answer p {
  margin-bottom: 8px;
}

.faq-answer p.faq-note {
  font-size: 13px !important;
  line-height: 20px !important;
  color: #5a656c !important;
  font-weight: 400;
  opacity: 0.95;
  margin-top: 10px;
  margin-bottom: 12px;
}

.faq-answer .faq-bullets {
  list-style: disc;
  margin: 0 0 8px 22px;
  padding: 0;
}

.faq-answer .faq-bullets li {
  margin-bottom: 6px;
}

.faq-answer .faq-bullets li::marker {
  color: currentColor;
}

.faq-answer .faq-placeholder {
  color: #6C777F;
  font-style: italic;
}

.faq-image {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  height: 530px;
}

.faq-image-bg {
  position: absolute;
  width: 503px;
  height: 503px;
  background: linear-gradient(180deg, #A2EEFF 0%, rgba(162, 238, 255, 0.2) 100%);
  border-radius: 40px;
  top: -40px;
  left: 100px;
  z-index: 0;
}

.faq-photo {
  position: relative;
  z-index: 2;
  width: 480px;
  height: 530px;
  object-fit: cover;
  border-radius: 0px;
  margin-left: 60px;
}

.faq-image-ornament {
  position: absolute;
  width: 254px;
  height: 244px;
  background-image: url('assets/ornament-lines.svg');
  background-size: contain;
  background-repeat: no-repeat;
  right: -60px;
  bottom: -60px;
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
}

/* ===================== CONTACT ===================== */
.contact {
  padding: 90px 0 0;
  overflow: hidden;
}

.contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 90px 90px 90px;
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.contact-image {
  position: relative;
  flex-shrink: 0;
  width: 615px;
  height: 560px;
}

.contact-image-bg {
  position: absolute;
  width: 616px;
  height: 616px;
  background: linear-gradient(180deg, #A2EEFF 0%, rgba(162, 238, 255, 0.2) 100%);
  border-radius: 40px;
  transform: rotate(-15deg);
  top: -30px;
  left: -40px;
  z-index: 0;
}

.contact-photo {
  position: relative;
  z-index: 2;
  width: 615px;
  height: 504px;
  object-fit: cover;
  border-radius: 0px;
}

.contact-form-wrapper {
  flex: 1;
  max-width: 506px;
}

.contact-form-wrapper h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 48px;
  color: #1F1914;
  margin-bottom: 8px;
}

.contact-subtitle {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 27px;
  color: #1F1914;
  margin-bottom: 40px;
}

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

.form-row {
  display: flex;
  gap: 30px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #4E3E31;
  margin-bottom: 10px;
}

.form-group input {
  width: 100%;
  height: 52px;
  padding: 0 20px;
  background: #fff;
  border: 1px solid #4E3E31;
  border-radius: 10px;
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  color: #4E3E31;
  transition: border-color 0.3s ease;
}

.form-group input::placeholder {
  color: #4E3E31;
  opacity: 0.38;
}

.form-group input:focus {
  outline: none;
  border-color: #006E96;
  box-shadow: 0 0 0 3px rgba(0, 110, 150, 0.1);
}

.form-checkbox {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.form-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: #006E96;
  cursor: pointer;
}

.form-checkbox label {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: #4E3E31;
  cursor: pointer;
}

.form-privacy {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
  color: #4E3E31;
}

.form-privacy a {
  text-decoration: underline;
}

.form-status {
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 1.5;
  border-radius: 8px;
  min-height: 0;
  padding: 0;
  transition: all 0.3s ease;
}

.form-status--success {
  background: #e8f8f0;
  color: #1a7a4a;
  padding: 14px 18px;
  border: 1px solid #a3d9be;
}

.form-status--error {
  background: #fef2f2;
  color: #b91c1c;
  padding: 14px 18px;
  border: 1px solid #fca5a5;
}

/* ===================== FOOTER ===================== */
.footer {
  background: #fff;
  padding: 100px 0 40px;
}

.footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 100px;
}

.footer-logo img {
  height: 68px;
  width: auto;
  margin-bottom: 32px;
}

.footer-divider {
  height: 1px;
  background: #D9D9D9;
  margin-bottom: 20px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #4A4A4A;
}

.footer-bottom a {
  text-decoration: underline;
}

.footer-links {
  display: flex;
  gap: 32px;
}

/* ===================== RESPONSIVE - TABLET ===================== */
@media (max-width: 1200px) {
  .header-inner {
    padding: 0 40px;
    height: 90px;
  }

  .logo img {
    height: 56px;
  }

  .btn-contact {
    padding: 12px 16px;
    font-size: 16px;
    gap: 8px;
  }

  .hero-inner {
    padding: 0 40px 100px 40px;
    gap: 40px;
  }

  .hero-image {
    width: 380px;
    height: 380px;
  }

  .hero-image-bg {
    width: 420px;
    height: 420px;
  }

  .hero-photo {
    width: 380px;
    height: 380px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-subtitle,
  .hero-description {
    font-size: 17px;
  }

  .service-inner {
    padding: 0 40px;
  }

  .service-image {
    width: 380px;
    height: 400px;
  }

  .service-image-bg {
    width: 420px;
    height: 420px;
  }

  .service-photo {
    width: 380px;
    height: 380px;
  }

  .service-image-ornament {
    width: 180px;
    height: 170px;
    left: 140px;
    bottom: -50px;
  }

  .capabilities-inner {
    padding: 0 40px;
  }

  .capabilities-header h2 {
    font-size: 32px;
  }

  .steps-inner {
    padding: 0 40px;
  }

  .faq-inner {
    padding: 0 40px;
  }

  .faq-image {
    width: 400px;
    height: 440px;
  }

  .faq-photo {
    width: 380px;
    height: 430px;
  }

  .faq-image-bg {
    width: 403px;
    height: 403px;
    left: 30px;
  }

  .faq-image-ornament {
    width: 180px;
    height: 170px;
    right: -40px;
    bottom: -40px;
  }

  .contact-inner {
    padding: 0px 40px 40px 40px;
  }

  .contact-image {
    width: 450px;
    height: 420px;
  }

  .contact-image-bg {
    width: 470px;
    height: 470px;
  }

  .contact-photo {
    width: 450px;
    height: 400px;
  }

  .footer-inner {
    padding: 0 40px;
  }
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .capabilities-header h2 {
    font-size: 28px;
  }

  .faq-inner {
    flex-direction: column;
  }

  .faq-content {
    max-width: 100%;
  }

  .faq-image {
    display: none;
  }

  .contact-inner {
    flex-direction: column;
    align-items: center;
  }

  .contact-image {
    order: 2;
    width: 100%;
    max-width: 500px;
    height: 400px;
  }

  .contact-image-bg {
    width: 100%;
    height: 100%;
  }

  .contact-photo {
    width: 100%;
    height: 380px;
  }

  .contact-form-wrapper {
    max-width: 100%;
  }
}

/* ===================== RESPONSIVE - MOBILE ===================== */
@media (max-width: 768px) {
  .header-inner {
    padding: 0 20px;
    height: 70px;
  }

  .logo img {
    height: 44px;
  }

  .btn-contact span {
    display: none;
  }

  .btn-contact {
    padding: 10px;
    border: none;
  }

  .btn-primary,
  .btn-submit {
    display: block;
    width: 100%;
    text-align: center;
    align-self: stretch;
  }

  .btn-primary--inline {
    display: inline-block;
    width: auto;
    align-self: flex-start;
  }

  .hero {
    padding: 40px 0 0;
  }

  .hero-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 30px;
  }

  .hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    max-width: 360px;
    margin: 0 auto;
  }

  .hero-image-bg {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
  }

  .hero-photo {
    width: 100%;
    height: 100%;
  }

  .hero-content {
    text-align: left;
    max-width: 100%;
  }

  .hero-content h1 {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 30px;
  }

  .features {
    padding: 30px 0 40px;
  }

  .features-row {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .feature-card {
    width: 100%;
    max-width: 311px;
  }

  .service {
    padding: 60px 0;
  }

  .service-inner {
    flex-direction: column;
    padding: 0 20px;
    gap: 100px;
  }

  .service-content h2 {
    font-size: 24px;
  }

  .service-description {
    font-size: 16px;
    margin-bottom: 30px;
  }

  .service-image {
    width: 100%;
    max-width: 360px;
    height: auto;
    aspect-ratio: 1;
    margin: 0 auto;
  }

  .service-image-bg {
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
  }

  .service-photo {
    width: 100%;
    height: 100%;
  }

  .service-image-ornament {
    width: 120px;
    height: 115px;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    bottom: -40px;
  }

  .capabilities {
    padding: 60px 0 30px;
  }

  .capabilities-inner {
    padding: 0 20px;
  }

  .capabilities-header h2 {
    font-size: 24px;
  }

  .capabilities-subtitle {
    font-size: 20px;
  }

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

  .steps {
    padding: 0 0 60px;
  }

  .steps-inner {
    padding: 0 20px;
  }

  .steps-inner > h2 {
    font-size: 24px;
  }

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

  .faq {
    padding: 60px 0;
  }

  .faq-inner {
    padding: 0 20px;
    flex-direction: column;
  }

  .faq-content h2 {
    font-size: 28px;
  }

  .faq-image {
    display: none;
  }

  .faq-question {
    padding: 16px 20px;
    min-height: 56px;
  }

  .faq-question span {
    font-size: 17px;
  }

  .faq-answer {
    padding: 16px 20px 16px;
  }

  .faq-answer {
    font-size: 16px;
    line-height: 28px;
  }

  .faq-answer p.faq-note {
    font-size: 12px !important;
    line-height: 18px !important;
  }

  .faq-answer .faq-bullets {
    margin-left: 20px;
  }

  .contact {
    padding: 60px 0 0;
  }

  .contact-inner {
    padding: 0px 20px 20px 20px;
    flex-direction: column;
    gap: 40px;
  }

  .contact-image {
    display: none;
  }

  .contact-form-wrapper h2 {
    font-size: 26px;
    line-height: 1.3;
  }

  .contact-subtitle {
    font-size: 16px;
  }

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

  .footer {
    padding: 50px 0 30px;
  }

  .footer-inner {
    padding: 0 20px;
  }

  .footer-logo img {
    height: 50px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
    font-size: 14px;
  }

  .footer-links {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 24px;
  }

  .capabilities-header h2 {
    font-size: 20px;
  }

  .step-card {
    padding: 24px;
  }
}

/* ===================== BACK TO TOP BUTTON ===================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #006E96;
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 4px 15px rgba(0, 110, 150, 0.3);
}

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

.back-to-top:hover {
  background: #005a7a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 110, 150, 0.4);
}

.back-to-top:active {
  transform: translateY(0);
}

/* ===================== FORM VALIDATION ===================== */
.field-error {
  display: block;
  font-size: 13px;
  color: #dc3545;
  margin-top: 4px;
  min-height: 18px;
}

.form-group input.error {
  border-color: #dc3545;
}

.form-group input.valid {
  border-color: #28a745;
}

/* Button loading state */
.btn-submit.loading {
  position: relative;
  color: transparent;
  pointer-events: none;
}

.btn-submit.loading::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  top: 50%;
  left: 50%;
  margin: -10px 0 0 -10px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ===================== SCROLL ANIMATIONS ===================== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

/* Staggered animations for grid items */
.step-card,
.feature-card,
.capability-card {
  opacity: 1;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.6s ease-out;
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  
  html {
    scroll-behavior: auto;
  }
  
  .fade-in {
    opacity: 1;
    transform: none;
  }
  
  .feature-card:hover,
  .capability-card:hover,
  .step-card:hover {
    transform: none;
  }
}

/* ===================== LANDING TELEPHONE STYLES ===================== */

/* Logo Group with Partner */
.logo-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.partner-badge {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  padding: 4px 10px;
}

.partner-logo {
  height: 60px;
  width: auto;
}

/* Phone Button Style - BLACK background */
.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #2A2A2A;
  color: #fff;
}

.btn-phone:hover {
  background: #444;
}

.btn-phone svg {
  flex-shrink: 0;
}

/* Outline Button - BLACK border */
.btn-primary--outline {
  background: transparent;
  border: 2px solid #2A2A2A;
  color: #2A2A2A;
  border-radius: 30px;
}

.btn-primary--outline:hover {
  background: #2A2A2A;
  color: #fff;
}

/* ===================== SAVINGS TABLE SECTION ===================== */
.savings {
  padding: 80px 0;
}

.savings-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

.savings-header {
  display: flex;
  gap: 60px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.savings-title {
  flex: 0 0 auto;
  max-width: 580px;
}

.savings-title h2 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 36px;
  line-height: 1.25;
  color: #2A2A2A;
}

.savings-description {
  flex: 1;
}

.savings-description p {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.7;
  color: #2A2A2A;
  margin-bottom: 16px;
}

.savings-description p:last-child {
  margin-bottom: 0;
}

.savings-table-wrapper {
  overflow-x: auto;
  overflow-y: visible;
  margin-bottom: 40px;
  padding-top: 30px;
  padding-right: 10px;
}

.savings-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  font-family: 'Open Sans', sans-serif;
}

.savings-table th,
.savings-table td {
  padding: 20px 24px;
  text-align: center;
  vertical-align: middle;
  background: #fff;
}

.savings-table thead th {
  font-weight: 700;
  font-size: 14px;
  color: #2A2A2A;
  background: #fff;
  border-bottom: 1px solid #A2EEFF;
  border-right: 1px solid #A2EEFF;

}

.savings-table thead th:first-child {
  text-align: left;
  background: transparent;
}

.savings-table th.highlight-col {
  position: relative;
  overflow: visible;
  background: #006E96;
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  border-radius: 12px 12px 0 0;
  border-bottom: none;
  padding-top: 16px;
}

.savings-table th.highlight-col .checkmark {
  position: absolute;
  top: -16px;
  right: -8px;
  width: 43px;
  height: 43px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #006E96 !important;
  border-radius: 50%;
  z-index: 2;
}

.savings-table th.highlight-col .checkmark svg {
  display: block;
}

.savings-table tbody td {
  font-size: 15px;
  font-weight: 600;
  color: #2A2A2A;
  border-bottom: none;
    border-right: 1px solid #A2EEFF;

}

.savings-table tbody tr:last-child td {
  border-bottom: none;
}

.savings-table .profile-cell {
  font-weight: 600;
  color: #1F1914;
  text-align: left;
}

.savings-table .savings-amount {
  font-weight: 700;
  font-size: 18px;
  color: #2A2A2A;
  background: #D6F4FA;
  border-left: 1px solid #006E96;
  border-right: 1px solid #006E96;
}

.savings-table tbody tr:first-child .savings-amount {
  border-top: none;
}

.savings-table tbody tr:last-child .savings-amount {
  border-radius: 0 0 12px 12px;
  border-bottom: 1px solid #006E96;
}

.savings-note {
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #666;
  text-align: right;
  position: relative;
}

.savings-note::after {
  content: '';
  position: absolute;
  right: 0;
  top: -20px;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #A2EEFF 0%, #90E8B4 100%);
  border-radius: 2px;
}

/* ===================== ASTUCE BANNER ===================== */
.astuce-banner {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  background: linear-gradient(165.53deg, #A2EEFF 19.31%, #E2FAFF 66.72%);
  border-radius: 40px;
  padding: 82px 68px;
  overflow: hidden;
}

.astuce-bg-left,
.astuce-bg-right {
  position: absolute;
  width: 515px;
  height: 423px;
  background-size: contain;
  background-repeat: no-repeat;
  pointer-events: none;
}

.astuce-bg-left {
  left: -158px;
  bottom: -280px;
  background-image: url('assets/astuce-bg-left.svg');
  transform: rotate(180deg) scaleY(-1);
}

.astuce-bg-right {
  right: -158px;
  bottom: -280px;
  background-image: url('assets/astuce-bg-right.svg');
}

.astuce-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 48px;
  text-align: center;
}

.astuce-inner p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.4;
  color: #2A2A2A;
  max-width: 1104px;
}

.astuce-inner .highlight {
  position: relative;
  display: inline-block;
  z-index: 0;
}

.astuce-inner .highlight::after {
  height: 23px;
  bottom: 0;
}

.astuce-inner .btn-primary {
  padding: 14px 44px;
}

/* ===================== SERVICE ALT LAYOUT ===================== */
.service-alt {
  background: #F4FDFF;
}

.service-inner-reverse {
  flex-direction: row-reverse;
}

/* ===================== CONTACT PHONE VARIANT ===================== */
.contact-phone .contact-form-wrapper h2 {
  font-size: 32px;
  line-height: 1.3;
}

.btn-call-now {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #FFB800;
  color: #2A2A2A;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 4px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.btn-call-now:hover {
  background: #E5A500;
  transform: translateY(-2px);
}

.btn-call-now:active {
  transform: scale(0.98);
}

.btn-callback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #000;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  padding: 14px 24px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn-callback:hover {
  background: #333;
  transform: translateY(-2px);
}

.btn-callback:active {
  transform: scale(0.98);
}

.contact-hours {
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #1F1914;
  margin-top: 8px;
}

.contact-ou {
  font-family: 'Open Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #1F1914;
  margin: 30px 0;
}

.contact-form-inline {
  max-width: 100%;
}

.contact-form-inline .form-group {
  margin-bottom: 0;
}

.contact-form-inline .form-group input {
  border-radius: 4px;
}

.form-inline-row {
  display: flex;
  gap: 8px;
  align-items: flex-end;
}

.form-inline-row input {
  flex: 1;
}

.form-inline-row .btn-primary,
.form-inline-row .btn-callback {
  width: 223px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* ===================== CONTACT RDV VARIANT ===================== */
.contact-rdv .contact-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0px 90px 90px 90px;
  display: block;
}

.contact-rdv .contact-form-wrapper {
  max-width: 100%;
}

.contact-rdv .contact-form-wrapper h2 {
  margin-bottom: 24px;
}

.rdv-calendar-embed {
  width: 100%;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 4px 2px 12px rgba(0, 0, 0, 0.08);
}

.rdv-calendar-embed iframe {
  display: block;
  width: 100%;
  height: 900px;
  border: 0;
}

/* ===================== RESPONSIVE - TELEPHONE LANDING ===================== */
@media (max-width: 1024px) {
  .logo-group {
    gap: 12px;
  }
  
  .partner-badge {
    font-size: 10px;
    padding: 3px 8px;
  }
  
  .partner-logo {
    height: 44px;
  }
  
  .partner-logo-text {
    font-size: 16px;
  }
  
  .savings-title h2 {
    font-size: 28px;
  }
  
  .astuce-banner {
    margin: 0 20px;
    max-width: calc(100% - 40px);
    padding: 60px 40px;
  }
  
  .astuce-inner p {
    font-size: 26px;
  }
  
  .astuce-bg-left,
  .astuce-bg-right {
    width: 350px;
    height: 280px;
  }

  .contact-rdv .contact-inner {
    padding: 0px 40px 40px 40px;
  }
}

@media (max-width: 768px) {
  .logo-group {
    gap: 8px;
  }
  
  .partner-badge {
    display: none;
  }
  
  .partner-logo {
    height: 44px;
  }
  
  .savings {
    padding: 50px 0;
  }
  
  .savings-inner {
    padding: 0 20px;
  }
  
  .savings-header {
    flex-direction: column;
    gap: 20px;
  }
  
  .savings-title {
    max-width: 100%;
  }
  
  .savings-title h2 {
    font-size: 24px;
  }
  
  .savings-table th,
  .savings-table td {
    padding: 12px 10px;
    font-size: 13px;
  }
  
  .savings-table .savings-amount {
    font-size: 15px;
  }
  
  .savings-table .profile-cell {
    min-width: 140px;
  }
  
  .astuce-banner {
    padding: 50px 20px;
    margin: 0 20px;
    max-width: calc(100% - 40px);
    border-radius: 24px;
  }
  
  .astuce-inner {
    gap: 32px;
  }
  
  .astuce-inner p {
    font-size: 20px;
  }
  
  .astuce-inner .btn-primary {
    padding: 14px 32px;
  }
  
  .astuce-bg-left,
  .astuce-bg-right {
    width: 250px;
    height: 200px;
    bottom: -140px;
  }
  
  .astuce-bg-left {
    left: -80px;
  }
  
  .astuce-bg-right {
    right: -80px;
  }
  
  .service-inner-reverse {
    flex-direction: column;
  }
  
  .contact-phone .contact-form-wrapper h2 {
    font-size: 26px;
  }
  
  .btn-call-now {
    width: 100%;
  }
  
  .form-inline-row {
    flex-direction: column;
    gap: 16px;
  }
  
  .form-inline-row input {
    width: 100%;
    height: 52px;
    flex: none;
  }
  
  .form-inline-row .btn-primary,
  .form-inline-row .btn-callback {
    width: 100%;
  }

  .contact-rdv .contact-inner {
    padding: 0px 20px 20px 20px;
  }

  .rdv-calendar-embed iframe {
    height: 700px;
  }
}
