/* ==========================================================================
   Base
   ========================================================================== */

.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 10px 16px;
  z-index: 9999;
}

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

/* ── Syne Bold 700 ── */
@font-face {
  font-family: 'Syne';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/syne-700.woff2') format('woff2');
}



/* ── DM Sans Regular 400 ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/dm-sans-400.woff2') format('woff2');
}

/* ── DM Sans Medium 500 ── */
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/dm-sans-500.woff2') format('woff2');
}




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

* {
  margin: 0;
  padding: 0;
}

:root {
  --blue: #0047cc;
  --blue-dark: #0039a6;
  --blue-light: #eef3ff;
  --blue-border: #c7d7f5;
  --navy: #0d1333;
  --text: #1a1f36;
  --text-soft: #3d4566;
  --muted: #5c6380;
  --muted-light: #6b728c;
  --border: #e8ecf4;
  --border-strong: #d6dce8;
  --page: #f8f9fc;
  --section-alt: #f0f4ff;
  --surface: #ffffff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0, 71, 204, 0.08);
  --shadow-strong: 0 8px 24px rgba(0, 71, 204, 0.35);
  --font-body: 'DM Sans', 'Segoe UI', sans-serif;
  --font-display: 'Syne', sans-serif;
  --transition-fast: 0.2s ease;
  --transition-base: 0.25s ease;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  min-height: 100vh;
  font-family: var(--font-body);
  background: var(--page);
  color: var(--text);
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ==========================================================================
   Layout utilities
   ========================================================================== */

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

.section {
  padding: 88px 0;
}

.section-alt {
  background: var(--section-alt);
}

.section-dark {
  background: var(--navy);
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin-inline: auto;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}

/* ==========================================================================
   Typography helpers
   ========================================================================== */

.label {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-title {
  margin-bottom: 16px;
  color: var(--navy);
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
}

.section-sub {
  max-width: 540px;
  color: var(--muted);
  font-size: 17px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border: 0;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition:
    background var(--transition-fast),
    border-color var(--transition-fast),
    color var(--transition-fast),
    transform var(--transition-fast);
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
}

.btn-outline:hover {
  background: var(--blue-light);
}

.btn-white {
  background: #fff;
  color: var(--blue);
  font-weight: 700;
}

.btn-white:hover {
  background: var(--section-alt);
}

/* ==========================================================================
   Cards
   ========================================================================== */

.card {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  transition:
    box-shadow var(--transition-fast),
    transform var(--transition-fast);
}

.card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

/* ==========================================================================
   Navigation
   ========================================================================== */

nav {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition:
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
  gap: 24px;

}

.nav-logo {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 14px;

}

.nav-logo-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 14px;
  object-fit: contain;
  padding: 0px;
}

.nav-logo-icon img {

  width: 140%;
  height: 140%;

  object-fit: cover;

  transform: scale(1);

  display: block;

}

.nav-logo-text {
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.3;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  position: relative;
  padding: 8px 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 600;
  transition: color var(--transition-base);
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--blue);
}

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

.nav-links .nav-cta {
  padding: 12px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
}

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

.hamburger {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 44px;
  min-height: 44px;
  padding: 8px;
  border: 0;
  border-radius: 8px;
  background: none;
  cursor: pointer;
  transition: background var(--transition-fast);
}

.hamburger:hover {
  background: var(--blue-light);
}

.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Burger → X when menu is open */
.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 92px;
  /* nav desktop height — overridden in @media 900px */
  left: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0 24px;
  border-bottom: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  /* Slide-down animation */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition:
    max-height 0.35s ease,
    opacity 0.25s ease,
    padding 0.35s ease;
}

.mobile-menu.open {
  max-height: 420px;
  opacity: 1;
  padding: 12px 24px 20px;
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 16px;
  font-weight: 500;
  transition: color var(--transition-fast);
}

.mobile-menu a:hover {
  color: var(--blue);
}

.mobile-menu a:last-child {
  border-bottom: 0;
}

.mobile-menu .ml-link {
  color: var(--blue);
  font-size: 14px;
}

/* ==========================================================================
   Hero
   ========================================================================== */

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: linear-gradient(135deg, #eef3ff 0%, #f8f9fc 55%, #e8f4ff 100%);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  top: 60px;
  right: -80px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(0, 71, 204, 0.07) 0%, transparent 70%);
}

.hero::after {
  bottom: -100px;
  left: -100px;
  width: 360px;
  height: 360px;
  background: radial-gradient(circle, rgba(0, 71, 204, 0.05) 0%, transparent 70%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 28px;
  padding: 6px 16px;
  border: 1px solid var(--blue-border);
  border-radius: 100px;
  background: var(--blue-light);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--blue);
}

.hero-badge span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 24px;
  color: var(--navy);
  font-size: clamp(26px, 5vw, 66px);
  font-weight: 800;
  overflow-wrap: break-word;
}

.hero h1 em {
  color: var(--blue);
  font-style: normal;
}

.hero-sub {
  max-width: 540px;
  margin-bottom: 40px;
  color: var(--muted);
  font-size: clamp(15px, 2.5vw, 19px);
  line-height: 1.65;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 56px;
}

.hero-btns .btn {
  padding: 16px 32px;
  font-size: 16px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
}

.hero-stat-val {
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
}

.hero-stat-label {
  margin-top: 2px;
  color: var(--muted-light);
  font-size: 13px;
}

.hero-panel {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero-panel-title {
  margin-bottom: 18px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
}

.hero-panel-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 15px;
}

.hero-panel-item:last-child {
  border-bottom: 0;
}

/* ==========================================================================
   Audit banner
   ========================================================================== */

.audit-banner {
  padding: 26px 0;
  background: var(--blue);
}

.audit-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.audit-title {
  color: #fff;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
}

.audit-sub {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
}

/* ==========================================================================
   Service, offer, and content cards
   ========================================================================== */

.service-icon {
  margin-bottom: 16px;
  font-size: 32px;
}

.reason-icon {
  margin-bottom: 10px;
  font-size: 28px;
}

.tech-icon {
  margin-bottom: 10px;
  font-size: 26px;
}

.service-title,
.offer-name,
.reason-title,
.process-title,
.tech-title {
  color: var(--navy);
  font-weight: 700;
}

.service-title {
  margin-bottom: 10px;
  font-size: 18px;
}

.offer-name {
  margin-bottom: 8px;
  font-size: 20px;
}

.reason-title {
  margin-bottom: 6px;
  font-size: 15px;
}

.process-title {
  margin-bottom: 8px;
  font-size: 16px;
}

.tech-title {
  margin-bottom: 8px;
  font-size: 16px;
}

.service-desc,
.reason-desc,
.process-desc,
.tech-desc {
  color: var(--muted);
  line-height: 1.6;
}

.service-desc,
.process-desc {
  font-size: 14px;
  line-height: 1.65;
}

.reason-desc,
.tech-desc {
  font-size: 13px;
}

.offer-card {
  position: relative;
}

.offer-tag {
  position: absolute;
  top: -14px;
  left: 24px;
  padding: 4px 14px;
  border-radius: 100px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.offer-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 28px;
}

.offer-amount {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
}

.offer-unit {
  color: var(--muted-light);
  font-size: 14px;
}

.offer-features {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  list-style: none;
}

.offer-features li {
  display: flex;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
  line-height: 1.5;
}

.offer-check {
  flex-shrink: 0;
  color: var(--blue);
  font-size: 16px;
}

.offer-highlight {
  border: 2px solid var(--blue);
}

.offer-highlight .offer-amount {
  color: var(--blue);
}

.process-num {
  margin-bottom: 8px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 800;
  opacity: 0.25;
}

.avis-placeholder {
  padding: 48px 32px;
  border: 1px dashed var(--blue-border);
  border-radius: var(--radius);
  background: var(--blue-light);
  text-align: center;
}

.faq-item {
  padding: 24px 28px;
  cursor: default;
}

.faq-q {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 16px;
  font-weight: 700;
}

.faq-q::before {
  content: "Q";
  flex-shrink: 0;
  margin-top: 1px;
  padding: 2px 7px;
  border-radius: 6px;
  background: var(--blue-light);
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.faq-a {
  padding-left: 32px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

/* ==========================================================================
   Contact and forms
   ========================================================================== */

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 22px;
}

.contact-icon {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-light);
  font-size: 20px;
}

.contact-label {
  color: var(--muted-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-val {
  color: var(--text);
  font-size: 15px;
  font-weight: 500;
}

.contact-val a {
  color: var(--blue);
}

label {
  display: block;
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  margin-bottom: 18px;
  padding: 13px 16px;
  border: 1.5px solid var(--border-strong);
  border-radius: 10px;
  outline: 0;
  background: #fff;
  color: var(--text);
  font-size: 15px;
  transition: border-color var(--transition-fast);
}

textarea {
  resize: vertical;
}

input:focus,
textarea:focus,
select:focus {
  border-color: var(--blue);
}

/* ==========================================================================
   About
   ========================================================================== */

.apropos-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 24px;
  border-radius: 50%;
  background: #1e2a50;
  font-size: 40px;
}

.tag-pill {
  display: inline-block;
  margin: 4px;
  padding: 6px 14px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13px;
  font-weight: 500;
}

/* ==========================================================================
   Footer
   ========================================================================== */

footer {
  padding: 32px 0;
  background: var(--navy);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--blue);
  color: #fff;
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 800;
}

.footer-logo-text {
  color: #fff;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.85);
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

/* ==========================================================================
   Fixed actions and animation helpers
   ========================================================================== */

.floating-call {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 100px;
  background: var(--blue);
  box-shadow: var(--shadow-strong);
  color: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 700;
  transition:
    background var(--transition-fast),
    transform var(--transition-fast);
}

.floating-call:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}

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

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

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .nav-inner {
    min-height: 78px;
  }

  .nav-logo-icon {
    width: 58px;
    height: 58px;
  }

  .nav-logo-text {
    font-size: 11px;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Mobile menu aligns with reduced nav height */
  .mobile-menu {
    top: 78px;
  }

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

  .hero-panel {
    display: none;
  }

  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .grid-2.about-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    padding-inline: 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding: 116px 0 64px;
  }

  .hero-btns {
    flex-direction: column;
  }

  .hero-btns .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    gap: 28px;
  }

  .audit-inner,
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .section {
    padding: 60px 0;
  }

  .floating-call {
    right: 16px;
    bottom: 16px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}