:root {
  --blue: #0b2545;
  --blue-light: #123c69;
  --turquoise: #1aa6a6;
  --orange: #f59e0b;
  --gray: #f5f7fa;
  --text: #1f2937;
  --muted: #6b7280;
  --white: #ffffff;
  --radius: 18px;
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
}

img {
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  border-bottom: 1px solid #e5e7eb;
  backdrop-filter: blur(10px);
}

.nav {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 76px;
  width: auto;
  display: block;
}

nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 0.95rem;
}

nav a {
  transition: opacity 0.2s ease;
}

nav a:hover {
  opacity: 0.75;
}

.nav-cta {
  background: var(--blue);
  color: var(--white);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 10px;
}

.language-switch a {
  width: 30px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.language-switch a:hover {
  transform: scale(1.12);
}

.language-switch img {
  width: 26px;
  height: 18px;
  object-fit: cover;
  border-radius: 3px;
  display: block;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.hero {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  padding: 90px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: center;
}

.hero-visual {
  position: relative;
}

.hero-visual img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card {
  margin-top: -70px;
  margin-left: 24px;
  margin-right: 24px;
  position: relative;
  z-index: 2;
  background: var(--white);
  color: var(--text);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-card h2 {
  font-size: 1.5rem;
}

.hero-card ul {
  margin: 0;
  padding-left: 20px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--turquoise);
}

.hero .eyebrow {
  color: #7dd3fc;
}

h1,
h2,
h3 {
  line-height: 1.15;
  margin: 0 0 18px;
}

h1 {
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  max-width: 850px;
}

h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--blue);
}

.hero h1 {
  color: var(--white);
}

.hero-text {
  max-width: 720px;
  font-size: 1.18rem;
  color: #dbeafe;
}

.microcopy {
  font-size: 0.9rem;
  color: #cbd5e1;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin: 30px 0 12px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border: none;
  border-radius: 999px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.primary {
  background: var(--orange);
  color: #111827;
}

.secondary {
  background: rgba(255,255,255,0.75);

  backdrop-filter: blur(10px);

  color: var(--blue);

  border: 2px solid var(--blue);

  font-weight: 700;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.secondary:hover {
  background: var(--blue);

  color: var(--white);

  box-shadow: 0 14px 35px rgba(11, 37, 69, 0.22);

  transform: translateY(-2px);
}

.section {
  padding: 85px 0;
}

.alt {
  background: var(--gray);
}

.problem {
  text-align: center;
}

.section-intro {
  max-width: 780px;
  margin-bottom: 34px;
  color: var(--muted);
}

.cards,
.benefits {
  display: grid;
  gap: 22px;
}

.cards {
  grid-template-columns: repeat(4, 1fr);
}

.benefits {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
}

.card,
.benefits div,
.quote-box,
.contact-form {
  background: var(--white);
  padding: 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.card h3,
.benefits strong {
  color: var(--blue);
}

.benefits strong {
  display: block;
  margin-bottom: 8px;
}

.trust-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: start;
}

.quote-box {
  border-left: 5px solid var(--turquoise);
  font-size: 1.2rem;
  color: var(--blue);
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.pill-grid span {
  background: var(--gray);
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.steps div {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.steps span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  border-radius: 50%;
  background: var(--turquoise);
  color: var(--white);
  font-weight: 800;
}

details {
  padding: 18px 0;
  border-bottom: 1px solid #e5e7eb;
}

summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue);
}

.contact {
  background: linear-gradient(180deg, var(--gray), #ffffff);
}

.contact-info {
  margin-top: 28px;
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form {
  display: grid;
  gap: 12px;
}

label {
  font-weight: 650;
}

input,
textarea,
select {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #d1d5db;
  border-radius: 12px;
  font: inherit;
  background: var(--white);
}

input:focus,
textarea:focus,
select:focus {
  outline: 3px solid rgba(26,166,166,0.18);
  border-color: var(--turquoise);
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.checkbox input {
  width: auto;
  margin-top: 5px;
}

.form-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.hidden {
  display: none;
}

.footer {
  background: var(--blue);
  color: var(--white);
  padding: 38px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.footer p {
  color: #cbd5e1;
}

.footer-links {
  display: flex;
  gap: 20px;
}

@media (max-width: 900px) {
  .nav {
    height: auto;
    padding: 14px 0;
    flex-direction: column;
    gap: 14px;
  }

  nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px;
  }

  .hero-grid,
  .trust-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .benefits,
  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .hero {
    padding: 70px 0;
  }

  .hero-visual img {
    height: 320px;
  }
}

@media (max-width: 600px) {
  .cards,
  .benefits,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 62px 0;
  }

  .footer-grid {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-actions {
    flex-direction: column;
  }

  .btn {
    min-width: 220px;
  }

  .hero-visual img {
    height: 260px;
  }

  .hero-card {
    margin: -40px 12px 0;
  }
}

.social-icons {
  display: flex;
  gap: 18px;
  margin-top: 18px;
  align-items: center;
}

.social-icons a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.social-icons a:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 35px rgba(15, 23, 42, 0.14);
}

.social-icons img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.social-icons img:hover {
  transform: scale(1.12);
}

.flyer-section {
  background: var(--white);
  overflow: hidden;
}

.flyer-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 34px;
  padding: 18px 0;
}

.flyer-track {
  display: flex;
  width: max-content;
  animation: flyerMove 24s linear infinite;
}

.flyer-track:hover {
  animation-play-state: paused;
}

.flyer-group {
  display: flex;
  gap: 28px;
  padding-right: 28px;
}

.flyer-group a {
  display: block;
  flex: 0 0 auto;
}

.flyer-group img {
  width: 220px;
  height: 310px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
  display: block;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.flyer-group img:hover {
  transform: scale(1.08);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.18);
}

@keyframes flyerMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 600px) {
  .flyer-group img {
    width: 170px;
    height: 240px;
  }
}

.whatsapp-floating {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9999;

  width: 62px;
  height: 62px;

  border-radius: 50%;
  background: #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.25);

  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.whatsapp-floating:hover {
  transform: scale(1.08);
  box-shadow: 0 22px 50px rgba(15, 23, 42, 0.35);
}

.whatsapp-floating img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.about-logo-box {
  margin-top: 28px;
  padding: 0;

  background: transparent;
  box-shadow: none;
  border-radius: 0;

  display: flex;
  justify-content: center;
  align-items: center;

  perspective: 1200px;
}

.logo-3d {
  width: 420px;
  height: 420px;

  position: relative;

  transform-style: preserve-3d;

  animation: rotateLogo 12s ease-in-out infinite;
}

.logo-face {
  position: absolute;

  width: 100%;
  height: 100%;

  backface-visibility: hidden;

  border-radius: 50%;
  overflow: hidden;

  background: transparent;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: none;
}

.logo-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter:
    drop-shadow(0 12px 28px rgba(0,0,0,0.18));
}

.logo-face.back {
  transform: rotateY(180deg);
}

@keyframes rotateLogo {

  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }

}

@media (max-width: 600px) {

  .logo-3d {
    width: 200px;
    height: 200px;
  }

}

@media (max-width: 600px) {
  .whatsapp-floating {
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
  }

  .whatsapp-floating img {
    width: 30px;
    height: 30px;
  }
}

.stats-marquee {
  width: 100%;
  overflow: hidden;
  margin-top: 42px;
  padding: 18px 0;
}

.stats-track {
  display: flex;
  width: max-content;
  animation: statsMove 22s linear infinite;
}

.stats-track:hover {
  animation-play-state: paused;
}

.stats-group {
  display: flex;
  gap: 26px;
  padding-right: 26px;
}

.stat-card {
  min-width: 220px;
  height: 140px;

  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  text-align: center;
  padding: 24px;

  flex: 0 0 auto;
}

.stat-card strong {
  font-size: 2.7rem;
  line-height: 1;
  color: var(--turquoise);
  margin-bottom: 12px;
}

.stat-card span {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@keyframes statsMove {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 600px) {
  .stat-card {
    min-width: 180px;
    height: 120px;
  }

  .stat-card strong {
    font-size: 2.2rem;
  }
}

.tunisia-rotate-box {
  margin-top: 34px;
  background: transparent;
  box-shadow: none;
  display: flex;
  justify-content: center;
  align-items: center;
  perspective: 1200px;
  min-height: 320px;
}

.tunisia-3d {
  width: 260px;
  height: 320px;
  position: relative;
  transform-style: preserve-3d;
  animation: rotateTunisia 8s linear infinite;
}

.tunisia-face {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tunisia-face img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.tunisia-face.back {
  transform: rotateY(180deg);
}

@keyframes rotateTunisia {
  0% {
    transform: rotateY(0deg);
  }

  100% {
    transform: rotateY(360deg);
  }
}

@media (max-width: 600px) {
  .tunisia-rotate-box {
    min-height: 260px;
  }

  .tunisia-3d {
    width: 210px;
    height: 260px;
  }
}

@media (max-width: 768px) {

  .logo-3d {
    width: 260px;
    height: 260px;
  }

}