:root {
  --blue-dark: #062B57;
  --blue: #0A3D73;
  --blue-light: #14518F;

  --orange: #7CCB2D;
  --orange-dark: #5FAF1B;

  --white: #ffffff;
  --gray: #f8fafc;

  --text: #1f2937;
  --muted: #6b7280;

  --border: rgba(15, 23, 42, 0.08);

  --shadow: 0 8px 24px rgba(15, 23, 42, 0.06);

  --radius: 16px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.top-bar {
  background: var(--blue-dark);
  color: var(--white);
  display: flex;
  justify-content: center;
  gap: 30px;
  padding: 9px 20px;
  font-size: 14px;
}

.top-bar a {
  color: #A7E236;
  font-weight: 800;
}

.navbar {
  height: 96px;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(18px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.06);
}

.logo-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  flex-shrink: 0;
}

.logo {
  width: 185px;
  max-height: 72px;
  height: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a {
  font-weight: 800;
  font-size: 15px;
  color: var(--blue-dark);
  position: relative;
}

.nav-menu a::after {
  content: "";
  width: 0;
  height: 3px;
  background: var(--orange);
  position: absolute;
  left: 0;
  bottom: -8px;
  border-radius: 20px;
  transition: 0.3s;
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 900;
  transition: 0.3s;
  cursor: pointer;
}

.header-cta {
  background: var(--orange);
  color: white;
  padding: 14px 26px;
  box-shadow: 0 14px 35px rgba(255, 122, 0, 0.32);
}

.header-cta:hover,
.btn-primary:hover,
.btn-submit:hover {
  background: var(--orange-dark);
  transform: translateY(-3px);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--blue-dark);
  border-radius: 20px;
}

.hero {
  position: relative;
  min-height: 740px;
  background:
  linear-gradient(rgba(6, 43, 87, 0.65), rgba(6, 43, 87, 0.65)),
  url("images/hero-ite.webp") center/cover no-repeat;
  color: white;
  overflow: hidden;
}

.hero::before {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 92%);
  margin: auto;
  min-height: 740px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 60px;
}

.premium-badge,
.section-label {
  display: inline-block;
  background: rgba(255, 122, 0, 0.12);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.05;
  margin-bottom: 24px;
  max-width: 820px;
}

.hero-subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.84);
  max-width: 720px;
  margin-bottom: 34px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 28px;
}

.btn {
  padding: 16px 28px;
  font-size: 15px;
}

.btn-primary,
.btn-submit {
  background: var(--orange);
  color: white;
  box-shadow: 0 18px 40px rgba(255, 122, 0, 0.30);
  border: none;
}

.btn-secondary {
  background: white;
  color: var(--blue-dark);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust span {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.hero-card {
  background: #ffffff;
  color: var(--blue-dark);
  padding: 36px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 30px;
  margin-bottom: 12px;
}

.hero-card p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 17px;
}

.hero-card ul {
  margin: 0 0 24px 20px;
}

.hero-card li {
  margin-bottom: 10px;
  font-weight: 800;
}

.btn-card {
  background: var(--blue-dark);
  color: white;
  width: 100%;
}

.stats-section {
  margin-top: 0;
  position: relative;
  z-index: 5;
  background: #ffffff;
  padding: 45px 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: white;
  border-radius: 28px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.stat-card {
  text-align: center;
  padding: 36px 20px;
  border-right: 1px solid var(--border);
}

.stat-card:last-child {
  border-right: none;
}

.stat-card strong {
  font-size: 34px;
}

.stat-card span {
  color: var(--muted);
  font-weight: 800;
}

.trust-bar {
  background: #ffffff;
  padding: 26px 0 70px;
  text-align: center;
}

.trust-bar p {
  display: inline-block;
  max-width: 1050px;
  background: white;
  color: var(--blue-dark);
  font-weight: 800;
  padding: 16px 28px;
  border-radius: 999px;
  box-shadow: 0 14px 35px rgba(6, 27, 51, 0.08);
  margin: 0;
}

.section {
  padding: 95px 0;
}

.two-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

h2 {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  color: var(--blue-dark);
  margin-bottom: 22px;
}

h3 { color: var(--blue-dark); }

p { margin-bottom: 16px; }

.image-card {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  min-height: 420px;
  background: linear-gradient(135deg, #eef3f8, #ffffff);
}

.image-card img {
  height: 460px;
  width: 100%;
  object-fit: cover;
  transition: 0.6s;
}

.image-card:hover img { transform: scale(1.06); }

.mini-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 24px;
}

.mini-links a {
  color: var(--blue);
  font-weight: 900;
  border-bottom: 2px solid var(--orange);
}

.benefits-section,
.faq-section {
  background: var(--gray);
}

.section-heading {
  text-align: center;
  max-width: 820px;
  margin: 0 auto 60px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}

.benefit-card {
  background: white;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.2s;
}

.benefit-card:hover {
  transform: translateY(-2px);
}

.benefit-card h3 {
  font-size: 23px;
  margin-bottom: 12px;
}

.benefit-card p { color: var(--muted); }

.process-section {
  background: var(--blue-dark);
  color: white;
}

.process-section h2,
.process-section h3 {
  color: white;
}

.section-heading.light p {
  color: rgba(255, 255, 255, 0.75);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.process-step {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  padding: 28px;
  border-radius: 12px;
}

.process-step:hover {
  background: rgba(255, 255, 255, 0.16);
  transform: translateY(-8px);
}

.process-step span {
  color: var(--orange);
  font-size: 32px;
  font-weight: 900;
}

.process-step p {
  color: rgba(255, 255, 255, 0.78);
  margin-top: 10px;
}

.zones-list {
  display: grid;
  gap: 16px;
}

.zones-list a {
  background: white;
  padding: 22px 26px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(6, 27, 51, 0.08);
  font-weight: 900;
  color: var(--blue-dark);
  transition: 0.3s;
  border-left: 5px solid var(--orange);
}

.zones-list a:hover {
  transform: translateX(8px);
  background: var(--blue-dark);
  color: white;
}

.certifications-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.certifications-grid span {
  background: white;
  border: 1px solid var(--border);
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 25px rgba(6, 27, 51, 0.06);
}

.cta-band {
  background: var(--blue-dark);
  color: white;
  padding: 70px 0;
}

.cta-band h2 { color: white; }

.cta-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: center;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.75);
  max-width: 700px;
}

.faq-grid {
  display: grid;
  gap: 16px;
  max-width: 950px;
  margin: auto;
}

details {
  background: white;
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 12px 35px rgba(6, 27, 51, 0.07);
}

summary {
  font-weight: 900;
  color: var(--blue-dark);
  cursor: pointer;
  font-size: 18px;
}

details p {
  margin-top: 16px;
  color: var(--muted);
}

.form-section {
  background: linear-gradient(180deg, #ffffff, #f4f7fb);
}

.form-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 55px;
  align-items: start;
}

.form-info {
  position: sticky;
  top: 130px;
}

.contact-box {
  margin-top: 28px;
  background: var(--blue-dark);
  color: white;
  padding: 28px;
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.contact-box a {
  color: #A7E236;
  font-weight: 900;
}

.lead-form {
  background: white;
  border-radius: 16px;
  padding: 34px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-group.full { grid-column: 1 / -1; }

label {
  display: block;
  font-weight: 900;
  color: var(--blue-dark);
  margin-bottom: 8px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 15px 16px;
  font-size: 16px;
  background: #fbfdff;
  color: var(--text);
  outline: none;
  transition: 0.25s;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 122, 0, 0.12);
  background: white;
}

.rgpd label {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-weight: 700;
  color: var(--muted);
}

.rgpd input {
  width: auto;
  margin-top: 5px;
}

.btn-submit {
  width: 100%;
  margin-top: 24px;
  padding: 18px 28px;
  font-size: 16px;
}

.site-footer {
  background: #041528;
  color: white;
  padding-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 45px;
}

.footer-logo {
  width: 190px;
  height: auto;
  background: white;
  padding: 10px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.site-footer h3 {
  color: white;
  margin-bottom: 18px;
}

.site-footer a {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
  transition: 0.25s;
}

.site-footer a:hover {
  color: var(--orange);
  transform: translateX(4px);
}

.footer-cta {
  background: var(--orange);
  color: white !important;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  text-align: center;
  margin-top: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  padding: 24px;
  margin-top: 55px;
  color: rgba(255, 255, 255, 0.65);
}

@keyframes floatCard {
  0%,100% {
    transform:none;
  }
}

@media (max-width: 1050px) {
  .nav-menu,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .nav-menu.open {
    display: flex;
    position: absolute;
    top: 96px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
  }

  .hero-content,
  .two-columns,
  .form-layout,
  .cta-content {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 80px 0;
  }

  .hero-card {
    animation: none;
  }

  .stats-grid,
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .form-info {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .top-bar {
    flex-direction: column;
    gap: 4px;
    text-align: center;
    font-size: 13px;
  }

  .navbar {
    height: 78px;
    padding: 0 20px;
  }

  .logo {
    width: 145px;
    max-height: 58px;
  }

  .nav-menu.open {
    top: 78px;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    min-height: auto;
    padding: 55px 0 70px;
  }

  .hero h1 {
    font-size: 34px;
  }

  .hero-subtitle {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .stats-section {
    margin-top: 0;
    padding: 35px 0 0;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid,
  .process-grid,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stat-card {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .stat-card:last-child {
    border-bottom: none;
  }

  .trust-bar {
    padding: 22px 0 55px;
  }

  .trust-bar p {
    border-radius: 24px;
    padding: 18px 22px;
  }

  .section {
    padding: 70px 0;
  }

  .lead-form {
    padding: 24px;
  }

  .image-card {
    min-height: 300px;
  }

  .image-card img {
    height: 310px;
  }
}
.thank-you-section{
min-height:80vh;
display:flex;
align-items:center;
justify-content:center;
padding:60px 20px;
}

.thank-you-card{
max-width:700px;
width:100%;
background:#fff;
padding:50px;
border-radius:20px;
box-shadow:0 15px 40px rgba(0,0,0,.08);
text-align:center;
}

.thank-you-logo{
max-width:220px;
margin-bottom:30px;
}

.success-icon{
width:90px;
height:90px;
margin:0 auto 25px;
border-radius:50%;
display:flex;
align-items:center;
justify-content:center;
font-size:40px;
font-weight:700;
}

.btn-home{
display:inline-block;
padding:16px 30px;
border-radius:999px;
text-decoration:none;
font-weight:700;
}