:root {
  --color-blue: #0f5eba;
  --color-blue-dark: #0b4d98;
  --color-green: #5e9b2d;
  --color-green-dark: #4d8224;
  --color-ink: #263042;
  --color-ink-soft: #435166;
  --color-text: #1f2937;
  --color-text-muted: #667085;
  --color-border: #d9e1ec;
  --color-surface: #ffffff;
  --color-surface-alt: #f7f9fc;
  --color-surface-soft: #eef4fb;
  --color-surface-glass: rgba(255, 255, 255, 0.7);
  --color-surface-deep: rgba(10, 21, 38, 0.92);
  --color-dark: #172232;
  --color-cyan: #44c8ff;
  --color-violet: #6a7cff;
  --color-success-bg: #ecfdf5;
  --color-success-text: #047857;
  --color-error-bg: #fef2f2;
  --color-error-text: #b91c1c;
  --shadow-soft: 0 18px 50px rgba(28, 51, 84, 0.08);
  --shadow-medium: 0 26px 70px rgba(18, 50, 95, 0.14);
  --shadow-hover: 0 30px 80px rgba(18, 50, 95, 0.18);
  --shadow-glow: 0 0 0 1px rgba(68, 200, 255, 0.08), 0 28px 90px rgba(15, 94, 186, 0.18);
  --radius-lg: 28px;
  --radius-md: 22px;
  --radius-sm: 16px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--color-text);
  background:
    radial-gradient(circle at top left, rgba(15, 94, 186, 0.16), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(68, 200, 255, 0.12), transparent 18%),
    radial-gradient(circle at 76% 42%, rgba(94, 155, 45, 0.1), transparent 18%),
    linear-gradient(180deg, #f8fbff 0%, #f3f7fc 26%, #ffffff 62%, #f7faff 100%);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -2;
}

body::before {
  background:
    linear-gradient(rgba(68, 200, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.85), rgba(0, 0, 0, 0.45));
}

body::after {
  background:
    radial-gradient(circle at 12% 10%, rgba(15, 94, 186, 0.12), transparent 24%),
    radial-gradient(circle at 88% 8%, rgba(68, 200, 255, 0.1), transparent 22%),
    radial-gradient(circle at 70% 70%, rgba(106, 124, 255, 0.08), transparent 24%);
  z-index: -3;
}

img,
svg {
  display: block;
  max-width: 100%;
}

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

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

button {
  border: 0;
  background: none;
  cursor: pointer;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: var(--color-surface);
  padding: 0.95rem 1rem;
  color: var(--color-text);
  transition: border-color 0.24s ease, box-shadow 0.24s ease, transform 0.24s ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  box-shadow: 0 0 0 4px rgba(15, 94, 186, 0.12);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 0.7rem;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  line-height: 1.08;
}

h1 {
  font-size: clamp(2.45rem, 5vw, 3.85rem);
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(1.72rem, 3vw, 2.45rem);
  letter-spacing: -0.04em;
}

h3 {
  font-size: clamp(1.3rem, 2vw, 1.7rem);
  letter-spacing: -0.03em;
}

p {
  margin: 0 0 1rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

th,
td {
  padding: 1rem 1.15rem;
  text-align: left;
  border-bottom: 1px solid rgba(217, 225, 236, 0.9);
}

th {
  color: var(--color-ink);
  font-family: "Manrope", sans-serif;
  background: #edf2f8;
}

tbody tr:nth-child(even) td {
  background: rgba(247, 249, 252, 0.8);
}

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

.shell {
  width: min(var(--max-width), calc(100% - 2rem));
  margin: 0 auto;
}

.shell.narrow {
  width: min(860px, calc(100% - 2rem));
}

.section {
  padding: 6.5rem 0;
  position: relative;
  isolation: isolate;
}

.section-alt {
  background:
    linear-gradient(180deg, rgba(244, 249, 255, 0.92), rgba(255, 255, 255, 0.96));
}

.section-dark {
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at top left, rgba(68, 200, 255, 0.15), transparent 24%),
    radial-gradient(circle at 85% 15%, rgba(94, 155, 45, 0.16), transparent 24%),
    linear-gradient(145deg, #0e1c2e 0%, #15263d 58%, #1b355c 100%);
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 20%, rgba(15, 94, 186, 0.06), transparent 18%),
    radial-gradient(circle at 92% 12%, rgba(68, 200, 255, 0.06), transparent 16%);
  pointer-events: none;
  z-index: -1;
}

.section-dark::before {
  background:
    linear-gradient(rgba(68, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 255, 0.05) 1px, transparent 1px),
    radial-gradient(circle at 10% 12%, rgba(68, 200, 255, 0.18), transparent 18%);
  background-size: 60px 60px, 60px 60px, auto;
  opacity: 0.45;
}

.section-header {
  max-width: 760px;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.15rem;
}

.section-header::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 110px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-blue), rgba(94, 155, 45, 0.8));
}

.section-header p,
.lead {
  color: var(--color-text-muted);
  font-size: 1.08rem;
}

.section-header-light h2,
.section-header-light p {
  color: #ffffff;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: rgba(15, 94, 186, 0.1);
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow-light {
  background: rgba(255, 255, 255, 0.12);
  color: #dce9ff;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.35rem;
  border-radius: 17px;
  font-weight: 700;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease, color 0.24s ease, border-color 0.24s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  background: linear-gradient(135deg, var(--color-blue) 0%, #2478de 55%, var(--color-cyan) 100%);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 94, 186, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: linear-gradient(135deg, var(--color-blue-dark) 0%, #1c67c2 55%, #2db8f4 100%);
  box-shadow: 0 22px 50px rgba(15, 94, 186, 0.34);
}

.button-secondary {
  background: linear-gradient(135deg, var(--color-green) 0%, #67aa2e 62%, #8fd74d 100%);
  color: #ffffff;
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: linear-gradient(135deg, var(--color-green-dark) 0%, #5b9628 62%, #7fc73f 100%);
}

.button-ghost {
  border: 1.5px solid rgba(68, 200, 255, 0.18);
  color: var(--color-blue);
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(12px);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  background: rgba(68, 200, 255, 0.1);
}

.card,
.proof-card,
.feature-card,
.service-card,
.offer-card,
.sector-card,
.method-card,
.case-card,
.value-card,
.cta-panel,
.contact-form-wrap,
.contact-aside {
  border: 1px solid rgba(205, 219, 236, 0.9);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(246, 250, 255, 0.84));
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.card,
.proof-card,
.feature-card,
.service-card,
.offer-card,
.sector-card,
.method-card,
.case-card,
.value-card,
.contact-form-wrap,
.contact-aside {
  padding: 1.6rem;
}

.card-soft {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(241, 247, 255, 0.92));
}

.proof-card::before,
.feature-card::before,
.service-card::before,
.offer-card::before,
.sector-card::before,
.method-card::before,
.case-card::before,
.value-card::before,
.contact-form-wrap::before,
.contact-aside::before,
.timeline-step::before,
.about-story::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(15, 94, 186, 0.14), transparent 36%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.14), transparent 54%);
  opacity: 0;
  transition: opacity 0.34s ease;
  pointer-events: none;
  z-index: -1;
}

.proof-card::after,
.feature-card::after,
.service-card::after,
.offer-card::after,
.sector-card::after,
.method-card::after,
.case-card::after,
.value-card::after,
.timeline-step::after,
.about-story::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(15, 94, 186, 0), rgba(15, 94, 186, 0.55), rgba(94, 155, 45, 0.55), rgba(94, 155, 45, 0));
  transform: scaleX(0.18);
  opacity: 0;
  transform-origin: center;
  transition: transform 0.34s ease, opacity 0.34s ease;
}

.proof-card:hover,
.proof-card:focus-within,
.feature-card:hover,
.feature-card:focus-within,
.service-card:hover,
.service-card:focus-within,
.offer-card:hover,
.offer-card:focus-within,
.sector-card:hover,
.sector-card:focus-within,
.method-card:hover,
.method-card:focus-within,
.case-card:hover,
.case-card:focus-within,
.value-card:hover,
.value-card:focus-within,
.timeline-step:hover,
.timeline-step:focus-within,
.about-story:hover,
.contact-form-wrap:hover,
.contact-aside:hover {
  transform: translateY(-8px);
  border-color: rgba(15, 94, 186, 0.2);
  box-shadow: var(--shadow-hover);
}

.proof-card:hover::before,
.proof-card:focus-within::before,
.feature-card:hover::before,
.feature-card:focus-within::before,
.service-card:hover::before,
.service-card:focus-within::before,
.offer-card:hover::before,
.offer-card:focus-within::before,
.sector-card:hover::before,
.sector-card:focus-within::before,
.method-card:hover::before,
.method-card:focus-within::before,
.case-card:hover::before,
.case-card:focus-within::before,
.value-card:hover::before,
.value-card:focus-within::before,
.timeline-step:hover::before,
.timeline-step:focus-within::before,
.about-story:hover::before,
.contact-form-wrap:hover::before,
.contact-aside:hover::before {
  opacity: 1;
}

.proof-card:hover::after,
.proof-card:focus-within::after,
.feature-card:hover::after,
.feature-card:focus-within::after,
.service-card:hover::after,
.service-card:focus-within::after,
.offer-card:hover::after,
.offer-card:focus-within::after,
.sector-card:hover::after,
.sector-card:focus-within::after,
.method-card:hover::after,
.method-card:focus-within::after,
.case-card:hover::after,
.case-card:focus-within::after,
.value-card:hover::after,
.value-card:focus-within::after,
.timeline-step:hover::after,
.timeline-step:focus-within::after,
.about-story:hover::after {
  transform: scaleX(1);
  opacity: 1;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.8rem 1rem;
  border-radius: 12px;
  background: var(--color-blue);
  color: #ffffff;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(18px);
  background:
    linear-gradient(180deg, rgba(247, 251, 255, 0.84), rgba(255, 255, 255, 0.7));
  border-bottom: 1px solid rgba(194, 214, 238, 0.7);
  box-shadow: 0 10px 30px rgba(18, 50, 95, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  min-height: 88px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.95rem;
  min-width: 0;
}

.brand-mark-image {
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  filter: drop-shadow(0 12px 28px rgba(15, 94, 186, 0.22));
  transition: transform 0.28s ease, filter 0.28s ease;
}

.brand:hover .brand-mark-image,
.brand:focus-visible .brand-mark-image {
  transform: rotate(-6deg) scale(1.04);
  filter: drop-shadow(0 18px 34px rgba(15, 94, 186, 0.28));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-copy strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: var(--color-ink);
}

.brand-copy span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-left: auto;
}

.site-nav a {
  position: relative;
  padding: 0.45rem 0.7rem;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
  color: var(--color-ink-soft);
  transition: color 0.24s ease, background 0.24s ease, transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--color-blue);
  background: rgba(15, 94, 186, 0.08);
  transform: translateY(-1px);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  bottom: 0.15rem;
  width: calc(100% - 1.4rem);
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: linear-gradient(90deg, var(--color-blue), var(--color-green));
  transition: transform 0.24s ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  margin-left: 0.4rem;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  border: 1px solid rgba(217, 225, 236, 0.95);
  background: rgba(255, 255, 255, 0.95);
  margin-left: auto;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 999px;
  position: absolute;
  transition: transform 0.24s ease, opacity 0.24s ease;
}

.menu-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.menu-toggle span:nth-child(2) {
  transform: translateY(0);
}

.menu-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg);
}

.hero {
  overflow: hidden;
  padding-top: 5.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(15, 94, 186, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 94, 186, 0.04) 1px, transparent 1px);
  background-size: 84px 84px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.9), transparent 95%);
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 6% -10% auto auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(68, 200, 255, 0.12), transparent 60%);
  filter: blur(8px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 2.4rem;
}

.hero-copy {
  position: relative;
  z-index: 1;
}

.hero-copy .lead {
  max-width: 720px;
  font-size: 1.14rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2rem 0 1.8rem;
}

.hero-signals {
  display: grid;
  gap: 0.9rem;
}

.hero-signals li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--color-text-muted);
}

.hero-signals li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
}

.hero-visual {
  position: relative;
  min-height: 520px;
}

.visual-surface {
  position: relative;
  min-height: 520px;
  border-radius: 40px;
  border: 1px solid rgba(68, 200, 255, 0.18);
  background:
    radial-gradient(circle at 50% 50%, rgba(68, 200, 255, 0.18), transparent 32%),
    radial-gradient(circle at 18% 18%, rgba(15, 94, 186, 0.16), transparent 20%),
    linear-gradient(155deg, rgba(10, 22, 38, 0.96), rgba(16, 37, 64, 0.94) 56%, rgba(28, 73, 128, 0.88) 100%);
  box-shadow: var(--shadow-medium), 0 0 0 1px rgba(68, 200, 255, 0.08) inset;
  overflow: hidden;
}

.visual-center {
  position: absolute;
  inset: 50%;
  width: min(360px, 70%);
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
}

.visual-core {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 180px;
  height: 180px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 1.4rem;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(214, 235, 255, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.94);
  box-shadow: 0 20px 55px rgba(15, 94, 186, 0.22), 0 0 40px rgba(68, 200, 255, 0.08);
}

.visual-core span,
.visual-core small {
  display: block;
  color: var(--color-text-muted);
}

.visual-core strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 1.8rem;
  color: #12345a;
}

.visual-ring,
.network-pulse {
  position: absolute;
  inset: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.visual-ring {
  border: 1px dashed rgba(68, 200, 255, 0.28);
}

.ring-one {
  width: 72%;
  height: 72%;
}

.ring-two {
  width: 100%;
  height: 100%;
  border-color: rgba(106, 124, 255, 0.22);
}

.network-pulse {
  width: 66%;
  height: 66%;
  background: radial-gradient(circle, rgba(15, 94, 186, 0.14), transparent 64%);
  animation: pulse 5.2s ease-in-out infinite;
}

.visual-grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(68, 200, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 255, 0.08) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 38%, transparent 82%);
}

.floating-card {
  position: absolute;
  width: min(270px, calc(100% - 2rem));
  padding: 1rem 1.15rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 18px 45px rgba(8, 20, 36, 0.22);
  backdrop-filter: blur(14px);
}

.floating-card strong {
  font-family: "Manrope", sans-serif;
  font-size: 1rem;
  color: #f2f8ff;
}

.floating-card.top {
  top: 1.4rem;
  right: 1.4rem;
  animation: floatUp 6s ease-in-out infinite;
}

.floating-card.left {
  left: 1.4rem;
  bottom: 6rem;
  animation: floatSide 6.8s ease-in-out infinite;
}

.floating-card.bottom {
  right: 2rem;
  bottom: 1.5rem;
  animation: floatUp 7.4s ease-in-out infinite reverse;
}

.mini-badge {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  padding: 0.35rem 0.7rem;
  margin-bottom: 0.8rem;
  border-radius: 999px;
  background: rgba(68, 200, 255, 0.14);
  color: var(--color-cyan);
  font-size: 0.78rem;
  font-weight: 700;
}

.mini-badge-green {
  background: rgba(94, 155, 45, 0.16);
  color: #9bdc61;
}

.mini-badge-solid {
  background: var(--color-blue);
  color: #ffffff;
}

.proof-strip {
  margin-top: -1rem;
  position: relative;
  z-index: 2;
}

.proof-strip::before {
  content: "";
  position: absolute;
  inset: -2rem 0 auto 0;
  height: 180px;
  background: linear-gradient(180deg, rgba(68, 200, 255, 0.08), transparent);
  pointer-events: none;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.proof-label {
  display: block;
  margin-bottom: 0.85rem;
  color: var(--color-blue);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.proof-card h2 {
  font-size: 1.18rem;
  margin-bottom: 0.75rem;
}

.about-layout,
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1.4rem;
}

.about-story {
  padding: 2rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(239, 246, 255, 0.9));
}

.about-stack,
.method-grid,
.values-grid,
.service-grid,
.offers-grid,
.sector-grid,
.case-grid {
  display: grid;
  gap: 1.2rem;
}

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

.feature-card {
  min-height: 160px;
}

.feature-card:hover h3,
.proof-card:hover h2,
.value-card:hover h3,
.sector-card:hover h3,
.method-card:hover h3,
.case-card:hover h3 {
  color: var(--color-blue);
}

.values-grid {
  margin-top: 1.4rem;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-card {
  position: relative;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.service-card:hover,
.service-card:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(230, 244, 255, 0.96));
}

.icon-wrap {
  display: inline-grid;
  place-items: center;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  margin-bottom: 1rem;
  background: linear-gradient(145deg, rgba(15, 94, 186, 0.12), rgba(94, 155, 45, 0.08));
  transition: transform 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.icon-wrap svg {
  width: 24px;
  height: 24px;
  fill: var(--color-blue);
  transition: transform 0.28s ease, fill 0.28s ease;
}

.service-card:hover .icon-wrap,
.feature-card:hover .icon-wrap {
  transform: translateY(-3px) rotate(-6deg) scale(1.06);
  background: linear-gradient(145deg, rgba(15, 94, 186, 0.2), rgba(94, 155, 45, 0.14));
  box-shadow: 0 16px 30px rgba(15, 94, 186, 0.14);
}

.service-card:hover .icon-wrap svg,
.feature-card:hover .icon-wrap svg {
  transform: scale(1.08);
  fill: var(--color-blue-dark);
}

.offers-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.hero-copy h1 {
  max-width: 11ch;
  font-size: clamp(2.1rem, 4.25vw, 3.2rem);
}

.offer-card {
  display: flex;
  flex-direction: column;
  gap: 0.95rem;
}

.offer-heading {
  display: grid;
  gap: 0.75rem;
  margin-bottom: 0.1rem;
}

.offer-heading::after {
  content: "";
  width: 74px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(68, 200, 255, 0.9), rgba(15, 94, 186, 0.26));
}

.offer-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 1.7vw, 1.86rem);
  letter-spacing: -0.045em;
}

.offer-card > p:not(.price) {
  color: var(--color-text-muted);
}

.offer-card ul {
  display: grid;
  gap: 0.7rem;
  margin: 0.4rem 0 1rem;
}

.offer-card li {
  position: relative;
  padding-left: 1.35rem;
  color: var(--color-text-muted);
}

.offer-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-blue), var(--color-green));
}

.offer-card .price {
  margin-bottom: 0;
  display: inline-grid;
  gap: 0.32rem;
  width: fit-content;
  padding: 0.85rem 1rem 0.95rem;
  border-radius: 20px;
  border: 1px solid rgba(68, 200, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.82), rgba(233, 243, 255, 0.9));
  box-shadow:
    0 12px 28px rgba(10, 36, 99, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
  font-family: "Manrope", sans-serif;
  font-size: 1.34rem;
  font-weight: 800;
  line-height: 1.05;
  color: var(--color-ink);
  transition: color 0.28s ease, transform 0.28s ease;
}

.offer-card .price::before {
  content: "Tarif";
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(15, 94, 186, 0.74);
}

.offer-card .button {
  margin-top: auto;
}

.offer-card.featured {
  border: 2px solid rgba(68, 200, 255, 0.28);
  box-shadow: 0 24px 70px rgba(15, 94, 186, 0.16), 0 0 0 1px rgba(68, 200, 255, 0.12) inset;
  transform: translateY(-8px);
}

.offer-card.featured .price {
  border-color: rgba(68, 200, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(228, 244, 255, 0.94), rgba(209, 235, 255, 0.88));
  box-shadow:
    0 18px 34px rgba(15, 94, 186, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.offer-card:hover .price,
.offer-card:focus-within .price {
  color: var(--color-blue);
  transform: translate(4px, -2px);
}

.offer-card:hover li::before,
.offer-card:focus-within li::before {
  transform: scale(1.2);
  box-shadow: 0 0 0 6px rgba(15, 94, 186, 0.08);
}

.comparison {
  margin-top: 1.4rem;
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}

.comparison-head {
  margin-bottom: 1rem;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 1rem;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(15, 94, 186, 0.34) rgba(220, 229, 240, 0.45);
}

.table-wrap::-webkit-scrollbar {
  height: 10px;
}

.table-wrap::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(220, 229, 240, 0.45);
}

.table-wrap::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(15, 94, 186, 0.68), rgba(68, 200, 255, 0.62));
}

.comparison th:first-child,
.comparison td:first-child {
  color: var(--color-ink);
  font-weight: 700;
}

.comparison th {
  background:
    linear-gradient(180deg, rgba(233, 243, 255, 0.98), rgba(225, 238, 255, 0.94));
}

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

.sector-card {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 246, 255, 0.9));
}

.sector-card:hover,
.sector-card:focus-within {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 1), rgba(231, 243, 255, 0.98));
}

.timeline {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.85rem;
  margin-bottom: 1.4rem;
}

.timeline-step {
  padding: 1.1rem;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 243, 255, 0.92));
  border: 1px solid rgba(217, 225, 236, 0.95);
  box-shadow: var(--shadow-soft);
  transition:
    transform 0.34s ease,
    box-shadow 0.34s ease,
    border-color 0.34s ease,
    background 0.34s ease;
}

.timeline-step span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--color-blue);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  transition: transform 0.28s ease, color 0.28s ease;
}

.timeline-step:hover span,
.timeline-step:focus-within span {
  transform: translateX(6px);
  color: var(--color-green);
}

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

.method-card,
.value-card {
  background: rgba(255, 255, 255, 0.94);
}

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

.case-card {
  color: rgba(255, 255, 255, 0.88);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.case-card h3,
.case-card p {
  color: inherit;
}

.case-card:hover,
.case-card:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.05));
}

.domain-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.5rem;
}

.domain-cloud span {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.28s ease, background 0.28s ease, border-color 0.28s ease;
}

.domain-cloud span:hover,
.domain-cloud span:focus-visible {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.24);
}

.faq-list {
  display: grid;
  gap: 1rem;
}

.faq-item {
  border: 1px solid rgba(217, 225, 236, 0.95);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.faq-item:hover,
.faq-item:focus-within {
  transform: translateY(-4px);
  border-color: rgba(15, 94, 186, 0.16);
  box-shadow: 0 24px 55px rgba(18, 50, 95, 0.12);
}

.faq-item summary {
  position: relative;
  padding: 1.35rem 1.5rem;
  font-family: "Manrope", sans-serif;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-ink);
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-blue);
  font-size: 1.35rem;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  padding: 0 1.5rem 1.35rem;
  margin: 0;
  color: var(--color-text-muted);
}

.cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  padding: 2.2rem;
  color: #ffffff;
  background:
    radial-gradient(circle at top left, rgba(68, 200, 255, 0.18), transparent 26%),
    radial-gradient(circle at 85% 20%, rgba(94, 155, 45, 0.14), transparent 22%),
    linear-gradient(145deg, #0d1b2d 0%, #18283d 58%, #163f78 100%);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 70px rgba(14, 34, 63, 0.22);
}

.cta-panel h2,
.cta-panel p {
  color: inherit;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.9rem;
}

.contact-points {
  display: grid;
  gap: 1rem;
}

.contact-points strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--color-ink);
}

.contact-points span,
.contact-points a,
.contact-note p {
  color: var(--color-text-muted);
}

.contact-note {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(217, 225, 236, 0.9);
}

.contact-form {
  display: grid;
  gap: 1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--color-ink);
}

.field-full {
  grid-column: 1 / -1;
}

.field-error {
  min-height: 1.1rem;
  color: var(--color-error-text);
  font-size: 0.82rem;
}

.field.has-error input,
.field.has-error select,
.field.has-error textarea {
  border-color: rgba(185, 28, 28, 0.55);
  box-shadow: 0 0 0 4px rgba(185, 28, 28, 0.08);
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 0.94rem;
  color: var(--color-text-muted);
}

.consent-row input {
  width: auto;
  margin-top: 0.2rem;
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.form-legal-note {
  margin-bottom: 0;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.form-legal-note a {
  color: var(--color-blue);
  font-weight: 700;
}

.form-status {
  display: none;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  font-weight: 600;
}

.form-status.active {
  display: block;
}

.form-status.success {
  display: block;
  background: var(--color-success-bg);
  color: var(--color-success-text);
}

.form-status.error {
  display: block;
  background: var(--color-error-bg);
  color: var(--color-error-text);
}

.flash-stack {
  margin-bottom: 1rem;
}

.site-footer {
  padding: 4rem 0 2rem;
  color: rgba(255, 255, 255, 0.82);
  background:
    linear-gradient(rgba(68, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(68, 200, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #101926 0%, #0f1722 100%);
  background-size: 52px 52px, 52px 52px, auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 0.8fr;
  gap: 1.6rem;
}

.brand-footer .brand-copy strong,
.brand-footer .brand-copy span,
.site-footer h3,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: #ffffff;
}

.site-footer h3 {
  font-size: 1rem;
  margin-bottom: 1rem;
}

.footer-text,
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: grid;
  gap: 0.75rem;
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.legal-page {
  min-height: 100vh;
}

.legal-hero {
  padding-bottom: 2rem;
}

.legal-stack {
  display: grid;
  gap: 1rem;
}

.legal-notice {
  padding: 1rem 1.1rem;
  border-radius: 16px;
  margin-top: 1rem;
  background: rgba(15, 94, 186, 0.08);
  color: var(--color-ink-soft);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
  color: var(--color-blue);
  font-weight: 700;
}

.mobile-cta {
  display: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.95);
    opacity: 0.75;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.1);
    opacity: 1;
  }
}

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

@keyframes floatSide {
  0%,
  100% {
    transform: translateX(0);
  }
  50% {
    transform: translateX(10px);
  }
}

@media (max-width: 1180px) {
  .site-nav {
    gap: 0.95rem;
  }

  .proof-grid,
  .values-grid,
  .service-grid,
  .offers-grid,
  .sector-grid,
  .method-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

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

@media (max-width: 980px) {
  .menu-toggle {
    display: inline-flex;
    position: relative;
  }

  .header-cta {
    display: none;
  }

  .site-nav {
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: calc(100% + 0.8rem);
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    border-radius: 24px;
    border: 1px solid rgba(217, 225, 236, 0.95);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.24s ease, transform 0.24s ease, visibility 0.24s ease;
  }

  .site-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .hero-grid,
  .about-layout,
  .contact-layout,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 440px;
  }

  .visual-surface {
    min-height: 440px;
  }

  .proof-grid,
  .service-grid,
  .offers-grid,
  .sector-grid,
  .method-grid,
  .values-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 720px) {
  .section {
    padding: 5rem 0;
  }

  .header-inner {
    min-height: 76px;
  }

  .brand-copy span {
    display: none;
  }

  .hero {
    padding-top: 4.4rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 8.8vw, 2.6rem);
  }

  .hero-visual,
  .visual-surface {
    min-height: 380px;
  }

  .floating-card {
    width: calc(100% - 2rem);
  }

  .floating-card.left {
    bottom: 5rem;
  }

  .visual-core {
    width: 150px;
    height: 150px;
  }

  .visual-core strong {
    font-size: 1.45rem;
  }

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

  .comparison {
    padding: 1.2rem;
  }

  .table-wrap {
    overflow: visible;
    padding-bottom: 0;
  }

  .table-wrap table,
  .table-wrap thead,
  .table-wrap tbody,
  .table-wrap tr,
  .table-wrap td {
    display: block;
  }

  .table-wrap table {
    min-width: 0;
  }

  .table-wrap thead {
    display: none;
  }

  .table-wrap tbody {
    display: grid;
    gap: 1rem;
  }

  .table-wrap tr {
    display: grid;
    gap: 0.15rem;
    padding: 1rem 1rem 0.2rem;
    border-radius: 22px;
    border: 1px solid rgba(205, 219, 236, 0.88);
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(236, 245, 255, 0.92));
    box-shadow: 0 16px 36px rgba(10, 36, 99, 0.08);
  }

  .table-wrap td {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.78rem 0;
    border-bottom: 1px solid rgba(217, 225, 236, 0.8);
    background: transparent !important;
  }

  .table-wrap td:first-child {
    display: block;
    padding: 0 0 0.82rem;
    margin-bottom: 0.1rem;
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-ink);
  }

  .table-wrap td:last-child {
    border-bottom: 0;
  }

  .table-wrap td:not(:first-child)::before {
    content: attr(data-label);
    flex: 0 0 44%;
    max-width: 150px;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-ink-soft);
  }

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

  .mobile-cta {
    position: sticky;
    bottom: 0;
    display: block;
    padding: 0.85rem 1rem calc(0.85rem + env(safe-area-inset-bottom));
    backdrop-filter: blur(14px);
    background: rgba(255, 255, 255, 0.88);
    border-top: 1px solid rgba(217, 225, 236, 0.9);
  }

  .mobile-cta .button {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
