:root {
  --blue: #4C93D9;
  --blue-deep: #3A7BC0;
  --blue-ink: #16294A;
  --gold: #F7B217;
  --gold-dark: #E39F0A;
  --ink: #16213D;
  --ink-soft: rgba(22, 33, 61, 0.68);
  --white: #FFFFFF;
  --bg-soft: #F4F7FB;
  --radius: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

@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;
  }
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Poppins", "Segoe UI", -apple-system, BlinkMacSystemFont, Roboto, Helvetica, Arial, sans-serif;
  background: var(--white);
  color: var(--ink);
}

.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;
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 72px);
}

.eyebrow {
  display: inline-block;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-deep);
  margin-bottom: 10px;
}

.section-title {
  font-weight: 600;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  line-height: 1.25;
  margin: 0 0 14px;
  color: var(--ink);
}

.section-sub {
  font-weight: 300;
  font-size: 1rem;
  color: var(--ink-soft);
  max-width: 640px;
  line-height: 1.6;
  margin: 0 0 40px;
}

/* Topbar / nav */
.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 rgba(22, 33, 61, 0.08);
}

.topbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px clamp(20px, 5vw, 72px);
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand { display: inline-flex; margin-right: auto; }

.brand-logo {
  height: 40px;
  width: auto;
  display: block;
}

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

.nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.92rem;
  transition: color .2s ease;
}

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

.nav a.active {
  color: var(--blue-deep);
  font-weight: 600;
}

.cta-btn--nav { padding: 11px 26px; font-size: 0.88rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 34px;
  height: 34px;
  border: none;
  background: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
}

.blob-corner {
  position: absolute;
  top: -110px;
  right: -110px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.08;
  z-index: 0;
  pointer-events: none;
}

.blob-main {
  position: absolute;
  right: -32vw;
  top: 30%;
  width: 78vw;
  height: 78vw;
  max-width: 1400px;
  max-height: 1400px;
  border-radius: 50%;
  background: var(--white);
  opacity: 0.06;
  z-index: 0;
  pointer-events: none;
  animation: breathe 10s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.02); }
}

.hero .layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 64px clamp(20px, 5vw, 72px) 80px;
  min-height: 70vh;
}

.hero .content { max-width: 640px; }

.pill {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: var(--white);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  padding: 8px 18px;
  border-radius: 999px;
  margin-bottom: 28px;
  animation: fadeUp .7s ease .05s both;
}

.tagline {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
  animation: fadeUp .7s ease .15s both;
}

.tagline-sub {
  font-weight: 300;
  font-size: clamp(0.95rem, 1.4vw, 1.05rem);
  color: rgba(255, 255, 255, 0.88);
  max-width: 500px;
  line-height: 1.6;
  margin: 0 0 36px;
  animation: fadeUp .7s ease .22s both;
}

.hero-cta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  animation: fadeUp .7s ease .3s both;
}

.cta-link {
  color: var(--white);
  font-weight: 500;
  font-size: 0.92rem;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity .2s ease;
}

.cta-link:hover { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

/* CTA button */
.cta-btn {
  display: inline-block;
  background: var(--white);
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 16px 38px;
  border-radius: 999px;
  box-shadow: 0 14px 26px rgba(10, 30, 60, 0.2);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.cta-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 32px rgba(10, 30, 60, 0.28);
  background: var(--gold);
}

.cta-btn--white {
  background: var(--white);
  color: var(--blue-deep);
}

/* Device mockups (real product screenshots) */
.device-laptop {
  width: 100%;
  filter: drop-shadow(0 30px 50px rgba(10, 20, 40, 0.35));
}

.device-laptop .screen {
  background: #17171d;
  border-radius: 16px 16px 4px 4px;
  padding: 12px 12px 6px;
}

.device-laptop .screen-inner {
  aspect-ratio: 3 / 2;
  border-radius: 6px;
  overflow: hidden;
  background: var(--bg-soft);
}

.device-laptop .screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.device-laptop .base {
  height: 12px;
  background: linear-gradient(180deg, #3a3a44, #202027);
  border-radius: 0 0 8px 8px;
  position: relative;
}

.device-laptop .base::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 15%;
  height: 4px;
  background: #14141a;
  border-radius: 0 0 6px 6px;
}

.device-tablet {
  background: #17171d;
  border-radius: 26px;
  padding: 12px 8px 16px;
}

.device-tablet .screen-inner {
  aspect-ratio: 946 / 1744;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-soft);
}

.device-tablet .screen-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.device-tablet .home-bar {
  width: 36px;
  height: 4px;
  border-radius: 3px;
  background: #3a3a44;
  margin: 8px auto 0;
}

/* Hero device showcase */
.showcase-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0 60px;
}

.showcase-laptop {
  width: min(480px, 86vw);
  animation: floatLaptop 6s ease-in-out 1s infinite, fadeUp .8s ease .2s both;
}

@keyframes floatLaptop {
  0%, 100% { transform: rotate(-2deg) translateY(0); }
  50% { transform: rotate(-2deg) translateY(-10px); }
}

.showcase-tablet {
  position: absolute;
  width: min(160px, 34vw);
  left: 2%;
  bottom: -6%;
  z-index: 3;
  animation: floatTablet 5.5s ease-in-out .6s infinite, fadeUp .8s ease .35s both;
}

@keyframes floatTablet {
  0%, 100% { transform: rotate(8deg) translateY(0); }
  50% { transform: rotate(8deg) translateY(-12px); }
}

.showcase-tablet .device-tablet {
  filter: drop-shadow(0 20px 30px rgba(10, 20, 40, 0.4));
}

/* Side-by-side device showcase (Solutions page) */
.showcase-duo {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 40px;
  margin-top: 56px;
  flex-wrap: wrap;
}

.showcase-duo .device-laptop {
  width: min(520px, 100%);
  filter: drop-shadow(0 24px 40px rgba(22, 33, 61, 0.16));
}

.showcase-duo .device-tablet {
  width: min(170px, 60%);
  filter: drop-shadow(0 24px 40px rgba(22, 33, 61, 0.16));
}

/* Service tabs (interactive module showcase) */
.service-tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-bottom: 48px;
}

.service-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 108px;
  padding: 16px 8px;
  background: var(--bg-soft);
  border: 1.5px solid transparent;
  border-radius: 16px;
  cursor: pointer;
  font-family: inherit;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.service-tab:hover { transform: translateY(-2px); }

.service-tab .service-tab-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(76, 147, 217, 0.14);
  color: var(--blue-deep);
}

.service-tab .service-tab-icon svg { width: 22px; height: 22px; }

.service-tab span:last-child {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ink);
  text-align: center;
  line-height: 1.3;
}

.service-tab.active {
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 12px 24px rgba(22, 33, 61, 0.1);
}

.service-tab.active .service-tab-icon {
  background: var(--blue);
  color: var(--white);
}

.service-showcase-frame {
  position: relative;
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.service-showcase-frame::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 70%;
  height: 70%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(76, 147, 217, 0.16), transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
  z-index: 0;
}

@keyframes glowPulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.08); }
}

.service-showcase-frame .device-laptop {
  position: relative;
  z-index: 1;
  width: min(640px, 100%);
  filter: drop-shadow(0 30px 50px rgba(22, 33, 61, 0.18));
  animation: floatShowcase 5s ease-in-out infinite;
}

.service-showcase-frame .device-tablet {
  position: relative;
  z-index: 1;
  width: min(220px, 70%);
  filter: drop-shadow(0 30px 50px rgba(22, 33, 61, 0.18));
  animation: floatShowcase 5s ease-in-out infinite;
}

@keyframes floatShowcase {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.device-laptop .screen-inner img,
.device-tablet .screen-inner img {
  transition: opacity .2s ease;
}

.service-showcase-frame .device-tablet-duo {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 28px;
  align-items: flex-end;
  justify-content: center;
  animation: floatShowcase 5s ease-in-out infinite;
}

.service-showcase-frame .device-tablet-duo[hidden] {
  display: none;
}

.service-showcase-frame .device-tablet-duo .device-tablet {
  width: min(190px, 40vw);
  filter: drop-shadow(0 30px 50px rgba(22, 33, 61, 0.18));
}

/* Subscription highlight */
.subscription {
  position: relative;
  padding: 100px 0;
  text-align: center;
  overflow: hidden;
}

.subscription-rings {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(680px, 140vw);
  height: min(680px, 140vw);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 178, 23, 0.16), transparent 68%);
  z-index: 0;
  pointer-events: none;
}

.subscription-rings::before {
  content: '';
  position: absolute;
  inset: 14%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 178, 23, 0.22), transparent 70%);
  animation: glowPulse 3.2s ease-in-out infinite;
}

.subscription-content {
  position: relative;
  z-index: 1;
}

.subscription h2 {
  font-weight: 500;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  color: var(--ink);
  margin: 0 auto 6px;
  max-width: 480px;
}

.subscription-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin: 18px 0 30px;
}

.subscription-price .amount {
  font-weight: 700;
  font-size: clamp(3.4rem, 9vw, 5.6rem);
  color: var(--blue-deep);
  line-height: 1;
}

.subscription-price .unit {
  font-weight: 500;
  font-size: clamp(1.2rem, 2.4vw, 1.6rem);
  color: var(--ink-soft);
}

.subscription-note {
  font-weight: 300;
  font-size: 0.86rem;
  color: var(--ink-soft);
  margin: 18px 0 0;
}

/* Testimonials / clients (empty-state, ready for real content) */
.showcase-empty {
  padding: 88px 0;
  background: var(--bg-soft);
}

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

.testimonial-card {
  background: var(--white);
  border: 1.5px dashed rgba(22, 33, 61, 0.15);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  color: var(--ink-soft);
}

.testimonial-card .testimonial-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(76, 147, 217, 0.12);
  color: var(--blue-deep);
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-card .testimonial-icon svg { width: 20px; height: 20px; }

.testimonial-card p {
  font-size: 0.88rem;
  font-weight: 300;
  margin: 0;
}

.clients-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.clients-strip .client-slot {
  width: 140px;
  height: 64px;
  border: 1.5px dashed rgba(22, 33, 61, 0.15);
  border-radius: 12px;
  background: var(--white);
}

/* Assistance card */
.assistance {
  background: linear-gradient(135deg, var(--blue-ink), #1c3a63);
  border-radius: 24px;
  padding: 48px clamp(24px, 5vw, 56px);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px 48px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.assistance::before {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.assistance-icon {
  grid-row: 1 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgba(247, 178, 23, 0.16);
  color: var(--gold);
  flex-shrink: 0;
}

.assistance-icon svg { width: 44px; height: 44px; }

.assistance h2 {
  color: var(--white);
  font-weight: 600;
  font-size: clamp(1.4rem, 2.6vw, 1.9rem);
  margin: 0 0 8px;
}

.assistance-sub {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 300;
  font-size: 0.96rem;
  margin: 0;
}

.assistance-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 14px 28px;
  border-radius: 999px;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
  z-index: 2;
}

.assistance-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.25);
}

.assistance-phone svg { width: 18px; height: 18px; }

.assistance-points {
  grid-column: 1 / -1;
  list-style: none;
  margin: 8px 0 0;
  padding: 20px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 32px;
  position: relative;
  z-index: 2;
}

.assistance-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.9rem;
  font-weight: 300;
}

.assistance-points li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}

/* Page header (Solutions / Tarifs / Contact) */
.page-header {
  position: relative;
  overflow: hidden;
  background: var(--blue);
  color: var(--white);
  padding: 56px 0 64px;
}

.page-header .section-inner { position: relative; z-index: 2; }

.page-header .eyebrow { color: rgba(255, 255, 255, 0.85); }

.page-header h1 {
  font-weight: 600;
  font-size: clamp(1.9rem, 3.6vw, 2.6rem);
  line-height: 1.25;
  margin: 0 0 14px;
  max-width: 720px;
}

.page-header p {
  font-weight: 300;
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 620px;
  line-height: 1.6;
  margin: 0;
}

/* Solutions groups */
.solutions-group + .solutions-group { margin-top: 64px; }

.group-header { margin-bottom: 32px; }

.group-header h2 {
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--ink);
  margin: 0 0 6px;
}

.group-header p {
  font-weight: 300;
  font-size: 0.94rem;
  color: var(--ink-soft);
  margin: 0;
}

/* Solutions */
.solutions { padding: 88px 0; }

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

.card {
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 30px 26px;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 34px rgba(22, 33, 61, 0.12);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: rgba(76, 147, 217, 0.14);
  color: var(--blue-deep);
  margin-bottom: 18px;
}

.card-icon svg { width: 24px; height: 24px; }

.card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 10px;
  color: var(--ink);
}

.card p {
  font-size: 0.9rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Features */
.features { padding: 88px 0; background: var(--bg-soft); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 28px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(247, 178, 23, 0.16);
  color: var(--gold-dark);
  margin-bottom: 16px;
}

.feature-icon svg { width: 22px; height: 22px; }

.feature h3 {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.feature p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* How it works */
.how { padding: 88px 0; }

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step {
  position: relative;
  padding: 8px 4px;
}

.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 0.98rem;
  font-weight: 600;
  margin: 0 0 8px;
  color: var(--ink);
}

.step p {
  font-size: 0.88rem;
  font-weight: 300;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

/* Pricing */
.pricing { padding: 88px 0; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.price-card {
  display: flex;
  flex-direction: column;
  background: var(--bg-soft);
  border-radius: var(--radius);
  padding: 34px 28px;
  border: 1px solid transparent;
}

.price-card--highlight {
  background: var(--white);
  border-color: var(--blue);
  box-shadow: 0 20px 40px rgba(22, 33, 61, 0.12);
}

.price-card .price-tag {
  display: inline-block;
  align-self: flex-start;
  background: rgba(247, 178, 23, 0.16);
  color: var(--gold-dark);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.price-card .price-desc {
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0 0 22px;
}

.price-features {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--ink);
}

.price-features li svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue-deep);
}

.price-card .cta-btn {
  background: var(--blue);
  color: var(--white);
  text-align: center;
}

.price-card .cta-btn:hover { background: var(--gold); color: var(--ink); }

/* FAQ */
.faq { padding: 88px 0; background: var(--bg-soft); }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  max-width: 760px;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px 26px;
}

.faq-item h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 8px;
}

.faq-item p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--ink-soft);
  line-height: 1.6;
  margin: 0;
}

/* Contact page layout */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.map-embed {
  position: relative;
  width: 100%;
  padding-top: 75%;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(22, 33, 61, 0.12);
}

.map-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* CTA banner */
.cta-banner {
  background: var(--blue-ink);
  padding: 64px 0;
}

.cta-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 {
  color: var(--white);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  margin: 0;
}

/* Contact */
.contact { padding: 88px 0; }

.contact-list {
  list-style: none;
  margin: 0 0 36px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-weight: 400;
  font-size: 0.98rem;
  color: var(--ink);
}

.contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-icon {
  width: 20px;
  height: 20px;
  display: inline-flex;
  color: var(--blue-deep);
  flex-shrink: 0;
}

.contact-icon svg { width: 100%; height: 100%; }

.contact .cta-btn {
  background: var(--blue);
  color: var(--white);
}

.contact .cta-btn:hover { background: var(--gold); color: var(--ink); }

/* Footer */
.footer-bar {
  background: var(--ink);
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-logo { height: 32px; width: auto; opacity: 0.95; margin-bottom: 14px; display: block; }

.footer-col p {
  font-weight: 300;
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
  margin: 0;
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 16px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 300;
  transition: color .2s ease;
}

.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bar p.footer-copy {
  margin: 0;
  font-weight: 300;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-bar p.footer-copy a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: underline;
}

/* Responsive */
@media (max-width: 980px) {
  .nav, .cta-btn--nav { display: none; }
  .nav-toggle { display: flex; }

  .nav.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px clamp(20px, 5vw, 72px) 26px;
    box-shadow: 0 12px 20px rgba(22, 33, 61, 0.1);
  }

  .hero .layout {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    padding-top: 48px;
  }
  .hero .content { max-width: 560px; }
  .hero-cta { justify-content: center; }
  .phone-wrap { margin-top: 32px; }
  .blob-main { top: auto; bottom: -30vh; right: -30vw; width: 95vw; height: 95vw; }

  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .price-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }

  .assistance { grid-template-columns: 1fr; text-align: center; padding: 36px 24px; }
  .assistance-icon { grid-row: auto; margin: 0 auto; }
  .assistance-points { grid-template-columns: 1fr; text-align: left; }

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

  .cta-banner-inner { justify-content: center; text-align: center; }
}

@media (max-width: 560px) {
  .phone { width: 240px; }
  .phone-screen { min-height: 400px; padding: 18px 16px 22px; }
  .app-logo { width: 110px; }

  .cards-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
}
