:root {
  --bg: #cfeefe;
  --bg-soft: #eaf7ff;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --line: rgba(28, 102, 163, 0.14);
  --text: #205581;
  --muted: #5f7e97;
  --blue: #2d87cf;
  --blue-deep: #1f6db0;
  --green: #7fc738;
  --green-deep: #63ab26;
  --dark: #1d5e91;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow: 0 24px 60px rgba(14, 56, 80, 0.14);
  --shadow-soft: 0 14px 32px rgba(14, 56, 80, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Trebuchet MS", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(45, 135, 207, 0.2), transparent 28%),
    radial-gradient(circle at top right, rgba(127, 199, 56, 0.16), transparent 34%),
    linear-gradient(180deg, #f8fdff 0%, var(--bg) 52%, var(--bg-soft) 100%);
}

.site-bg::before,
.site-bg::after {
  content: "";
  position: fixed;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  filter: blur(38px);
  pointer-events: none;
  z-index: -1;
}

.site-bg::before {
  top: -10rem;
  right: -6rem;
  background: rgba(134, 198, 31, 0.12);
}

.site-bg::after {
  left: -8rem;
  bottom: -10rem;
  background: rgba(20, 148, 219, 0.1);
}

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

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

p,
h1,
h2,
h3,
ul {
  margin: 0;
}

.container {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(239, 249, 255, 0.78);
  border-bottom: 1px solid rgba(28, 102, 163, 0.08);
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
}

.brand {
  width: min(260px, 100%);
  flex: 0 0 auto;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.site-nav a,
.nav-toggle {
  padding: 11px 16px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--muted);
  transition: 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: rgba(255, 255, 255, 0.84);
  color: var(--text);
  transform: translateY(-1px);
}

.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  background: linear-gradient(135deg, rgba(20, 148, 219, 0.12), rgba(134, 198, 31, 0.16));
  color: var(--text);
  box-shadow: inset 0 0 0 1px rgba(20, 148, 219, 0.08);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
}

.hero-section,
.section,
.stats-section {
  padding: 34px 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 24px;
  align-items: stretch;
}

.hero-slider {
  position: relative;
  min-height: calc(100vh - 88px);
  overflow: hidden;
  background: #0f2e40;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 720ms ease, visibility 720ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  visibility: visible;
}

.hero-slide__image,
.hero-slide__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-slide__image {
  object-fit: cover;
  transform: scale(1.04);
}

.hero-slide__overlay {
  background:
    linear-gradient(90deg, rgba(18, 86, 140, 0.78) 0%, rgba(18, 86, 140, 0.58) 34%, rgba(18, 86, 140, 0.24) 62%, rgba(18, 86, 140, 0.08) 100%),
    linear-gradient(180deg, rgba(26, 108, 174, 0.14), rgba(26, 108, 174, 0.38));
}

.hero-slide__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 96px 0 184px;
}

.hero-slide__copy {
  max-width: 720px;
  color: #ffffff;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(127, 199, 56, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #f2ffcf;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-slide__copy h1 {
  max-width: 11ch;
  margin-top: 20px;
  color: #ffffff;
  font-size: clamp(2.9rem, 5.2vw, 5.3rem);
  line-height: 1;
  letter-spacing: -0.06em;
  text-shadow: 0 12px 24px rgba(8, 31, 45, 0.18);
}

.hero-slide__lead {
  max-width: 33ch;
  margin-top: 22px;
  font-size: 1.06rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.88);
}

.hero-slider__bottom {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  transform: translateX(-50%);
}

.hero-slider__panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px 22px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 91, 145, 0.5);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 50px rgba(8, 31, 45, 0.18);
}

.hero-slider__meta {
  max-width: 540px;
}

.mini-tag--light {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero-slider__meta p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.6;
}

.hero-slider__dots {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-slider__dot {
  width: 14px;
  height: 14px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease, width 180ms ease;
}

.hero-slider__dot.is-active {
  width: 42px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.hero-slider__dot:hover,
.hero-slider__dot:focus-visible {
  transform: scale(1.06);
}

.quick-services-section {
  padding: 34px 0 46px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(231, 247, 255, 0.94));
}

.quick-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
  position: relative;
  z-index: 4;
}

.quick-service-card {
  min-height: 270px;
  padding: 34px 26px;
  border: 1px solid rgba(16, 51, 70, 0.22);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 22px;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.quick-service-card:hover,
.quick-service-card:focus-visible {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(20, 148, 219, 0.24);
}

.quick-service-card--accent {
  background: linear-gradient(180deg, rgba(233, 249, 219, 0.98), rgba(246, 255, 233, 0.98));
}

.quick-service-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(20, 148, 219, 0.08);
}

.quick-service-card--accent .quick-service-card__icon {
  background: rgba(134, 198, 31, 0.16);
}

.quick-service-card__icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: var(--dark);
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.quick-service-card strong {
  max-width: 12ch;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.quick-service-card--accent strong {
  max-width: 14ch;
  text-align: center;
}

.about-feature-section {
  padding: 44px 0 34px;
}

.about-feature {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 44px;
  align-items: center;
  padding: 58px 56px;
  background: linear-gradient(180deg, #d8f1ff, #cfeefe);
  border-radius: 0;
}

.about-feature__copy {
  max-width: 690px;
}

.about-feature__copy h2 {
  margin-top: 18px;
  max-width: 10ch;
  font-size: clamp(2.7rem, 4.5vw, 4.6rem);
}

.about-feature__copy p {
  margin-top: 22px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: var(--text);
}

.about-feature__media {
  display: flex;
  justify-content: flex-end;
}

.about-feature__image {
  width: min(100%, 634px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #d8edf8;
}

.about-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-feature-section {
  padding: 44px 0 26px;
}

.services-feature__head {
  max-width: 980px;
  margin: 0 auto 46px;
  text-align: center;
}

.services-feature__head h2 {
  margin-top: 16px;
  font-size: clamp(2.8rem, 4.8vw, 4.9rem);
}

.services-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.services-feature-card {
  background: #f4fbff;
  padding: 22px 22px 26px;
  box-shadow: var(--shadow-soft);
}

.services-feature-card__image {
  aspect-ratio: 1.28 / 1;
  overflow: hidden;
  background: #d8edf8;
}

.services-feature-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.services-feature-card__body {
  padding-top: 18px;
}

.services-feature-card__body h3 {
  font-size: clamp(1.8rem, 2.6vw, 2.8rem);
}

.services-feature-card__body p {
  margin-top: 14px;
  color: var(--text);
  line-height: 1.72;
  font-size: 1.04rem;
}

.services-feature-card__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  font-weight: 700;
  color: var(--text);
  border-bottom: 1px solid rgba(16, 51, 70, 0.28);
  padding-bottom: 4px;
}

.services-feature-card__link::after {
  content: "↗";
  font-size: 1rem;
}

.team-feature-section {
  padding: 44px 0 30px;
}

.team-feature {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
  padding: 68px 56px;
  background: #9fd4f2;
}

.eyebrow--light {
  color: #ffffff;
}

.eyebrow--light::before {
  background: rgba(255, 255, 255, 0.8);
}

.team-feature__copy {
  max-width: 540px;
  color: #ffffff;
}

.team-feature__copy .eyebrow {
  color: #1f5f95;
}

.team-feature__copy .eyebrow.eyebrow--light {
  color: #1f5f95;
}

.team-feature__copy .eyebrow::before {
  background: rgba(31, 95, 149, 0.78);
}

.team-feature__copy .eyebrow.eyebrow--light::before {
  background: rgba(31, 95, 149, 0.78);
}

.team-feature__copy h2 {
  margin-top: 18px;
  max-width: 10ch;
  color: #1f5f95;
  font-size: clamp(2.8rem, 4.4vw, 4.7rem);
}

.team-feature__copy p {
  margin-top: 22px;
  color: #1f5f95;
  line-height: 1.84;
  font-size: 1.06rem;
}

.team-feature__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.team-feature__image {
  aspect-ratio: 0.8 / 1;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.26);
}

.team-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.workflow-feature-section {
  padding: 54px 0 36px;
}

.workflow-feature__head {
  max-width: 920px;
  margin: 0 auto 48px;
  text-align: center;
}

.workflow-feature__head h2 {
  margin-top: 18px;
  font-size: clamp(2.9rem, 4.8vw, 5rem);
}

.workflow-feature-grid {
  display: grid;
  grid-template-columns: 1fr 120px 1fr 120px 1fr;
  align-items: center;
  gap: 10px;
}

.workflow-card {
  min-height: 280px;
  padding: 34px 28px;
  border: 1px solid rgba(16, 51, 70, 0.22);
  background: rgba(255, 255, 255, 0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  text-align: center;
}

.workflow-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  background: rgba(127, 199, 56, 0.14);
}

.workflow-card__icon svg,
.workflow-arrow svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #2a73ac;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.workflow-card strong {
  max-width: 12ch;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.workflow-arrow {
  display: flex;
  justify-content: center;
}

.workflow-arrow svg {
  width: 100%;
  height: 54px;
  stroke: #8cc4e7;
  stroke-width: 3;
}

.testimonial-feature-section {
  padding: 42px 0 34px;
}

.testimonial-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
  padding: 52px 56px;
  background: #2f7dbc;
}

.testimonial-feature__media {
  display: flex;
}

.testimonial-feature__image {
  width: 100%;
  aspect-ratio: 0.82 / 1;
  overflow: hidden;
  background: #d6eefb;
}

.testimonial-feature__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-feature__content {
  color: #ffffff;
  min-width: 0;
}

.testimonial-feature__content .eyebrow {
  color: #ffffff;
}

.testimonial-feature__content .eyebrow::before {
  background: rgba(255, 255, 255, 0.8);
}

.testimonial-feature__content h2 {
  margin-top: 18px;
  max-width: 10ch;
  color: #ffffff;
  font-size: clamp(2.4rem, 3.9vw, 3.9rem);
}

.testimonial-feature__card {
  margin-top: 20px;
  max-width: 520px;
  padding: 24px 28px;
  background: rgba(255, 255, 255, 0.98);
  color: var(--text);
}

.testimonial-feature__card--soft {
  background: rgba(255, 255, 255, 0.96);
}

.testimonial-feature__card p {
  line-height: 1.72;
  font-size: 0.98rem;
}

.testimonial-feature__card strong {
  display: block;
  margin-top: 18px;
  font-size: 0.96rem;
}

.testimonial-slider {
  margin-top: 22px;
}

.testimonial-slider__viewport {
  overflow: hidden;
  width: 100%;
  min-width: 0;
}

.testimonial-slider__track {
  display: flex;
  transition: transform 360ms ease;
  touch-action: pan-y;
}

.testimonial-slide {
  min-width: 100%;
  flex: 0 0 100%;
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}

.testimonial-slide .testimonial-feature__card {
  margin-top: 0;
  width: 100%;
  max-width: none;
}

.testimonial-slider__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  width: 100%;
}

.testimonial-slider__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 1;
}

.testimonial-slider__dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: transform 180ms ease, background-color 180ms ease;
}

.testimonial-slider__dot.is-active {
  transform: scale(1.15);
  background: #ffffff;
}

.testimonial-slider__arrow {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font: inherit;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 180ms ease, transform 180ms ease;
}

.testimonial-slider__arrow:hover,
.testimonial-slider__arrow:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
}

.glass-card,
.showcase-panel,
.showcase-card,
.stat-card,
.service-box,
.step-card,
.audience-card,
.cta-card,
.page-hero,
.page-layout,
.detail-card,
.image-panel,
.comparison-card,
.site-footer,
.legal-card,
.cookie-banner {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.glass-card,
.page-hero,
.page-layout,
.legal-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.78));
}

.glass-card,
.page-hero {
  padding: 46px;
  border-radius: var(--radius-xl);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-deep);
}

.eyebrow::before {
  content: "";
  width: 40px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--green));
}

.eyebrow.eyebrow--light {
  color: #ffffff;
}

.eyebrow.eyebrow--light::before {
  background: rgba(255, 255, 255, 0.8);
}

h1,
.page-hero h1 {
  margin-top: 18px;
  font-size: clamp(2.7rem, 5vw, 5.4rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
}

h2 {
  font-size: clamp(2rem, 3vw, 3.4rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

h3 {
  font-size: 1.42rem;
}

.lead,
.page-hero p,
.section-head p,
.detail-card p,
.legal-card p,
.legal-card li,
.service-box p,
.step-card span,
.audience-card p,
.cta-card p,
.showcase-panel p {
  line-height: 1.72;
  color: var(--muted);
}

.lead {
  max-width: 60ch;
  font-size: 1.08rem;
  margin-top: 20px;
}

.button-row,
.cta-actions,
.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button-row {
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  border: 0;
  cursor: pointer;
  font: inherit;
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

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

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  box-shadow: 0 16px 30px rgba(95, 165, 16, 0.24);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(16, 51, 70, 0.1);
}

.inline-points,
.chip-list,
.link-list,
.legal-list,
.footer-grid ul {
  list-style: none;
  padding: 0;
}

.inline-points,
.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.inline-points {
  margin-top: 26px;
}

.inline-points li,
.chip-list li a,
.chip-list li span,
.link-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
}

.inline-points li {
  background: rgba(20, 148, 219, 0.09);
  color: var(--blue-deep);
  font-weight: 600;
}

.hero-showcase {
  display: grid;
  gap: 16px;
}

.showcase-panel {
  padding: 30px;
  border-radius: var(--radius-xl);
  color: #f7fcff;
  background:
    linear-gradient(180deg, rgba(16, 109, 175, 0.96), rgba(15, 46, 64, 0.95)),
    linear-gradient(135deg, rgba(134, 198, 31, 0.2), transparent);
}

.mini-tag {
  display: inline-flex;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  font-weight: 700;
}

.showcase-panel h2 {
  margin-top: 18px;
  max-width: 11ch;
}

.showcase-panel p {
  margin-top: 16px;
  color: rgba(247, 252, 255, 0.82);
}

.showcase-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.showcase-card,
.stat-card,
.step-card,
.audience-card,
.detail-card,
.legal-card {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.86);
}

.showcase-card.accent {
  background: linear-gradient(180deg, rgba(247, 252, 243, 0.95), rgba(239, 248, 228, 0.95));
}

.showcase-card strong,
.stat-card strong,
.step-card strong,
.detail-card strong {
  display: block;
  font-size: 1.04rem;
}

.showcase-card span,
.stat-card span,
.detail-card p {
  display: block;
  margin-top: 8px;
}

.stats-grid,
.steps-grid,
.audience-grid,
.detail-grid {
  display: grid;
  gap: 18px;
}

.detail-grid--stacked {
  grid-template-columns: 1fr;
  align-content: start;
}

.detail-grid--stacked .detail-card {
  position: relative;
  padding-left: 28px;
  background: rgba(255, 255, 255, 0.9);
}

.detail-grid--stacked .detail-card::before {
  content: "";
  position: absolute;
  top: 22px;
  bottom: 22px;
  left: 0;
  width: 6px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.detail-grid--feature-list {
  grid-template-columns: 1fr;
  align-content: start;
  gap: 14px;
}

.detail-grid--feature-list .detail-card {
  position: relative;
  padding: 22px 24px 22px 34px;
  border: 1px solid rgba(30, 94, 145, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.96));
  box-shadow: 0 18px 36px rgba(10, 50, 74, 0.06);
}

.detail-grid--feature-list .detail-card::before {
  content: "";
  position: absolute;
  top: 20px;
  bottom: 20px;
  left: 14px;
  width: 5px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--blue), var(--green));
}

.detail-grid--feature-list .detail-card strong {
  color: var(--blue-deep);
  font-size: 1.06rem;
}

.detail-grid--feature-list .detail-card p {
  margin-top: 10px;
  line-height: 1.72;
}

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

.section-head {
  max-width: 780px;
}

.section-head h2 {
  margin-top: 14px;
}

.section-head p {
  margin-top: 18px;
}

.service-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 28px;
}

.service-box {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
}

.accent-box {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(241, 249, 232, 0.95));
}

.service-box-head {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--blue), var(--green));
  color: #fff;
  font-weight: 800;
}

.service-box p {
  margin-top: 10px;
}

.chip-list {
  margin-top: 22px;
}

.chip-list li a,
.chip-list li span,
.link-list a {
  background: #f1f8fb;
  color: var(--text);
  border: 1px solid rgba(20, 148, 219, 0.1);
  font-weight: 600;
}

.accent-box .chip-list li a {
  background: #f5faec;
  border-color: rgba(134, 198, 31, 0.18);
}

.surface-section {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(236, 246, 240, 0.5));
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
  align-items: start;
}

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

.audience-grid {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.78)),
    linear-gradient(135deg, rgba(20, 148, 219, 0.08), rgba(134, 198, 31, 0.12));
}

.visual-frame,
.comparison-media,
.page-hero-image {
  overflow: hidden;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.82);
}

.visual-frame img,
.comparison-media img,
.page-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  margin: 34px auto 120px;
  width: min(1240px, calc(100% - 20px));
  border-radius: var(--radius-xl);
  background: linear-gradient(180deg, rgba(30, 94, 145, 0.98), rgba(45, 135, 207, 0.96));
  color: #f7fcff;
  overflow: hidden;
}

.site-footer .container {
  width: min(1180px, calc(100% - 60px));
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 0.8fr;
  gap: 24px;
  padding: 34px 0;
}

.footer-grid h3 {
  font-size: 1rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid li,
.footer-bottom p {
  color: rgba(247, 252, 255, 0.8);
  line-height: 1.7;
}

.footer-grid ul {
  margin-top: 12px;
}

.footer-logo {
  width: min(260px, 100%);
  padding: 0;
  border-radius: 0;
  background: transparent;
  margin-bottom: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 0 26px;
}

.page-hero {
  margin-top: 34px;
}

.page-hero p {
  margin-top: 18px;
  max-width: 72ch;
}

.page-layout,
.legal-card {
  margin-top: 24px;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.page-layout--split,
.about-grid,
.comparison-grid,
.seo-grid {
  display: grid;
  gap: 24px;
}

.page-layout--split,
.about-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.detail-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 24px;
}

.detail-grid.detail-grid--feature-list {
  grid-template-columns: 1fr;
  margin-top: 24px;
}

.image-panel {
  padding: 14px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.84);
}

.comparison-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.comparison-card {
  padding: 16px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.86);
}

.comparison-card h3 {
  margin: 14px 4px 6px;
}

.comparison-card p {
  margin: 0 4px 4px;
  color: var(--muted);
  line-height: 1.68;
}

.seo-grid {
  grid-template-columns: 1.08fr 0.92fr;
  align-items: start;
}

.seo-copy p + p,
.seo-copy ul,
.detail-copy p + p {
  margin-top: 16px;
}

.seo-copy ul {
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.72;
}

.seo-copy li + li {
  margin-top: 10px;
}

.detail-copy h2 {
  margin-top: 0;
}

.detail-copy p {
  color: var(--muted);
  line-height: 1.75;
}

.detail-copy h3 {
  margin-top: 26px;
}

.detail-copy .link-list {
  margin-top: 24px;
}

.testimonial-grid,
.city-grid,
.contact-layout,
.contact-points {
  display: grid;
  gap: 18px;
}

.testimonial-grid,
.city-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-top: 28px;
}

.testimonial-card,
.city-card,
.contact-card-panel,
.contact-form-panel {
  padding: 24px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  background: rgba(255, 255, 255, 0.86);
}

.contact-card-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(240, 248, 251, 0.92)),
    rgba(255, 255, 255, 0.9);
}

.contact-form-panel {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(248, 252, 247, 0.94)),
    rgba(255, 255, 255, 0.96);
}

.testimonial-card p,
.city-card p,
.contact-card-panel p,
.contact-form-panel p,
.contact-point span,
.contact-form-note {
  color: var(--muted);
  line-height: 1.72;
}

.testimonial-meta {
  margin-top: 16px;
  font-weight: 700;
  color: var(--text);
}

.city-card h3,
.contact-card-panel h3,
.contact-form-panel h3 {
  margin-bottom: 10px;
}

.contact-layout {
  grid-template-columns: 0.9fr 1.1fr;
  margin-top: 28px;
  align-items: start;
}

.contact-points {
  margin-top: 18px;
}

.contact-point {
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(20, 148, 219, 0.06);
  border: 1px solid rgba(20, 148, 219, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.contact-point strong {
  display: block;
  margin-bottom: 6px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-status {
  padding: 16px 18px;
  border-radius: 18px;
  font-weight: 600;
  line-height: 1.6;
}

.form-status--success {
  border: 1px solid rgba(72, 166, 80, 0.22);
  background: rgba(240, 252, 240, 0.94);
  color: #236a2d;
}

.form-status--error {
  border: 1px solid rgba(198, 58, 58, 0.18);
  background: rgba(255, 244, 244, 0.96);
  color: #8f2c2c;
}

.contact-form-panel .button {
  width: 100%;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.field label {
  font-weight: 700;
  color: var(--text);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(16, 51, 70, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  box-shadow: 0 10px 24px rgba(14, 56, 80, 0.05);
  transition: border-color 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
  appearance: none;
  -webkit-appearance: none;
}

.field textarea {
  min-height: 144px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: #86a0ad;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: rgba(20, 148, 219, 0.46);
  box-shadow:
    0 0 0 4px rgba(20, 148, 219, 0.12),
    0 12px 28px rgba(14, 56, 80, 0.08);
  background: #ffffff;
}

.contact-form-note {
  font-size: 0.95rem;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(20, 148, 219, 0.06);
  border: 1px solid rgba(20, 148, 219, 0.08);
}

.link-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.legal-card h2 {
  margin-top: 0;
  font-size: 1.6rem;
}

.legal-card h3 {
  margin-top: 24px;
  font-size: 1.14rem;
}

.legal-card p + p,
.legal-card ul {
  margin-top: 14px;
}

.legal-list li {
  margin-top: 10px;
  line-height: 1.72;
  color: var(--muted);
}

.legal-note {
  margin-top: 20px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 231, 167, 0.38);
  color: #624b00;
  font-weight: 600;
}

.cookie-banner {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: min(620px, calc(100% - 32px));
  padding: 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.96);
  z-index: 100;
}

.cookie-banner__content p {
  margin-top: 10px;
  line-height: 1.65;
  color: var(--muted);
}

.cookie-banner__actions {
  margin-top: 18px;
}

.cookie-banner__settings {
  margin-top: 18px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(20, 148, 219, 0.05);
  border: 1px solid rgba(20, 148, 219, 0.08);
}

.cookie-option {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.cookie-option + .cookie-option {
  border-top: 1px solid rgba(16, 51, 70, 0.08);
}

.cookie-option strong {
  display: block;
  margin-bottom: 6px;
}

.cookie-option p {
  color: var(--muted);
  line-height: 1.6;
}

.cookie-list {
  margin: 10px 0 0;
  padding-left: 18px;
  color: var(--muted);
}

.cookie-list li + li {
  margin-top: 6px;
}

.cookie-list code {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 0.92em;
  color: var(--text);
  background: rgba(20, 148, 219, 0.08);
  padding: 2px 6px;
  border-radius: 8px;
}

.cookie-option input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--blue);
  margin-top: 6px;
}

.cookie-manage {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(16, 51, 70, 0.08);
  background: rgba(255, 255, 255, 0.86);
  font: inherit;
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}

.cookie-manage:hover,
.cookie-manage:focus-visible {
  transform: translateY(-1px);
}

.cookie-manage--floating {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 120;
  box-shadow: 0 14px 36px rgba(8, 27, 40, 0.14);
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: fade-up 700ms ease forwards;
}

.delay-1 {
  animation-delay: 120ms;
}

.delay-2 {
  animation-delay: 220ms;
}

.delay-3 {
  animation-delay: 320ms;
}

@keyframes fade-up {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1024px) {
  .hero-slider {
    min-height: 860px;
  }

  .hero-slide__inner {
    min-height: 860px;
    padding-bottom: 220px;
  }

  .hero-slide__copy h1 {
    max-width: 13ch;
  }

  .hero-slider__panel {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-grid,
  .about-feature,
  .services-feature-grid,
  .team-feature,
  .workflow-feature-grid,
  .testimonial-feature,
  .service-columns,
  .split-section,
  .cta-card,
  .footer-grid,
  .detail-grid,
  .stats-grid,
  .audience-grid,
  .page-layout--split,
  .about-grid,
  .comparison-grid,
  .seo-grid,
  .testimonial-grid,
  .city-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .showcase-split,
  .steps-grid {
    grid-template-columns: 1fr;
  }

  .quick-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .topbar {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    width: 100%;
    justify-content: center;
    background: rgba(255, 255, 255, 0.76);
  }

  .hero-slider {
    min-height: auto;
  }

  .hero-slide,
  .hero-slide.is-active {
    position: relative;
  }

  .hero-slide:not(.is-active) {
    display: none;
  }

  .hero-slide__inner {
    min-height: 700px;
    padding: 56px 0 160px;
  }

  .hero-slide__copy h1 {
    max-width: none;
    font-size: clamp(2.4rem, 8vw, 3.8rem);
  }

  .hero-slide__lead {
    max-width: none;
    font-size: 1rem;
  }

  .hero-slider__bottom {
    right: 0;
    left: 0;
    bottom: 18px;
    transform: none;
  }

  .hero-slider__panel {
    gap: 18px;
    padding: 18px;
  }

  .quick-services-grid {
    margin-top: 48px;
  }

  .about-feature {
    gap: 28px;
    padding: 34px 28px;
  }

  .services-feature__head {
    margin-bottom: 28px;
  }

  .team-feature {
    gap: 28px;
    padding: 34px 28px;
  }

  .workflow-feature__head {
    margin-bottom: 28px;
  }

  .testimonial-feature {
    gap: 28px;
    padding: 34px 28px;
  }

  .testimonial-feature__card {
    padding: 20px 20px;
  }

  .testimonial-slider__controls {
    gap: 12px;
  }

  .testimonial-slider__arrow {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
  }

  .glass-card,
  .page-hero,
  .page-layout,
  .service-box,
  .cta-card,
  .legal-card {
    padding: 24px;
  }

  .footer-bottom {
    flex-direction: column;
  }

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

@media (max-width: 560px) {
  .container {
    width: min(100% - 20px, 1200px);
  }

  h1,
  .page-hero h1 {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.6rem);
  }

  .button,
  .button-row a,
  .cta-actions a,
  .cookie-banner__actions .button {
    width: 100%;
  }

  .testimonial-feature__card {
    padding: 18px 16px;
  }

  .testimonial-feature__card p {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .testimonial-feature__card strong {
    margin-top: 14px;
    font-size: 0.92rem;
  }

  .testimonial-slider__controls {
    gap: 10px;
  }

  .testimonial-slider__dots {
    gap: 8px;
  }

  .testimonial-slider__dot {
    width: 9px;
    height: 9px;
  }

  .hero-slide__inner {
    min-height: 640px;
    padding-bottom: 184px;
  }

  .about-feature {
    padding: 28px 18px;
  }

  .about-feature__copy h2 {
    max-width: none;
  }

  .team-feature {
    padding: 28px 18px;
  }

  .team-feature__copy h2 {
    max-width: none;
  }

  .team-feature__gallery {
    grid-template-columns: 1fr;
  }

  .workflow-card {
    min-height: 220px;
    padding: 28px 18px;
  }

  .workflow-arrow {
    display: none;
  }

  .testimonial-feature__content h2 {
    max-width: none;
  }

  .testimonial-feature__card {
    padding: 24px 22px;
  }

  .testimonial-mini-card {
    padding: 18px 18px;
  }

  .services-feature-card {
    padding: 16px 16px 22px;
  }

  .quick-service-card {
    min-height: 220px;
    padding: 28px 18px;
  }

  .hero-kicker {
    min-height: 38px;
    padding: 0 14px;
    font-size: 0.76rem;
  }

  .hero-slider__meta p {
    font-size: 0.94rem;
  }

  .hero-slider__dot {
    width: 12px;
    height: 12px;
  }

  .hero-slider__dot.is-active {
    width: 32px;
  }
}
