:root {
  --bg: #f4f7fb;
  --bg-soft: #edf2f8;
  --surface: #ffffff;
  --ink: #0e1a2b;
  --ink-soft: #2d3a4d;
  --brand: #20c997;
  --brand-strong: #0f9f78;
  --accent: #ffb703;
  --border: #dce3ee;
  --shadow: 0 18px 40px rgba(14, 26, 43, 0.08);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 20% -10%, rgba(32, 201, 151, 0.2), transparent 40%),
    radial-gradient(circle at 80% -20%, rgba(255, 183, 3, 0.2), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, #f4f7fb 45%, #eef3f9 100%);
  line-height: 1.6;
}

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

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.container {
  width: min(1140px, calc(100% - 2.4rem));
  margin: 0 auto;
}

.section {
  padding: 4.8rem 0;
  position: relative;
}

.section-divider::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 40%);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--accent), transparent);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(248, 251, 255, 0.75);
  border-bottom: 1px solid rgba(220, 227, 238, 0.4);
  box-shadow: 0 4px 24px rgba(14, 26, 43, 0.03);
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.4rem;
  min-height: 72px;
}

.brand {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-weight: 700;
  letter-spacing: 0.02em;
  font-size: 1.1rem;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--ink-soft);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 6px 20px rgba(14, 26, 43, 0.08);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 999px;
  padding: 0.85rem 1.6rem;
  font-weight: 700;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--ink) 0%, #1d3149 100%);
  color: #fff;
  box-shadow: 0 10px 24px rgba(14, 26, 43, 0.15);
}

.btn-primary:hover {
  box-shadow: 0 14px 32px rgba(14, 26, 43, 0.25);
}

.btn-secondary {
  background: var(--surface);
  border-color: var(--border);
  color: var(--ink);
}

.hero {
  padding: 8rem 0 6rem;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  top: -20%;
  left: 10%;
  width: 50%;
  height: 100%;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.08), transparent 60%);
  z-index: -1;
}

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

.hero h1,
.page-hero h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 1.2rem;
  background: linear-gradient(135deg, var(--ink) 0%, #2d4561 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p,
.page-hero p {
  margin: 0 0 1.5rem;
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 90%;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.hero-media img {
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.band {
  background: var(--ink);
  color: #fff;
  padding: 3.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.band::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 50% 150%, rgba(32, 201, 151, 0.25), transparent 70%);
  pointer-events: none;
}

.band p {
  margin: 0;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin-inline: auto;
  line-height: 1.6;
}

.split {
  display: grid;
  gap: 1.8rem 3rem;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
  max-width: 600px;
  margin-inline: auto;
}

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.5rem);
}

.split h2,
.section h2,
.section h3,
.section h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin: 0 0 0.8rem;
  line-height: 1.2;
}

.split p,
.section p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.grid-3,
.grid-4,
.grid-5 {
  display: grid;
  gap: 1rem;
}

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

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

.grid-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  counter-reset: process-counter;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.6rem;
  box-shadow: 0 8px 24px rgba(14, 26, 43, 0.03);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(14, 26, 43, 0.08);
  border-color: rgba(32, 201, 151, 0.4);
}

.glass-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.tagline {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: linear-gradient(90deg, var(--brand-strong), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 0.5rem;
  display: inline-block;
}

.card h3,
.card h4 {
  margin-top: 0;
}

.card p,
.card li {
  color: var(--ink-soft);
}

.process-card {
  position: relative;
  overflow: hidden;
  z-index: 1;
  counter-increment: process-counter;
}

.process-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.process-card::before {
  content: counter(process-counter);
  position: absolute;
  top: -10px;
  right: -10px;
  font-size: 6rem;
  font-weight: 800;
  color: rgba(32, 201, 151, 0.08);
  z-index: -1;
  pointer-events: none;
  font-family: "Sora", sans-serif;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(32, 201, 151, 0.15), transparent 70%);
  z-index: -2;
}

.impact-section {
  background: linear-gradient(145deg, #f8fcff 0%, #eef6fd 100%);
  color: var(--ink);
  padding: 5.5rem 3rem;
  text-align: center;
  border-radius: 24px;
  margin: 4rem auto;
  border: 1px solid #d8e5f4;
  box-shadow: 0 20px 50px rgba(14, 26, 43, 0.08);
  width: min(1200px, calc(100% - 2.4rem));
  position: relative;
  overflow: hidden;
}

.impact-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brand), var(--accent));
}

.impact-section h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: var(--ink);
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  margin-bottom: 1.8rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.impact-section p {
  color: #31465f;
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 850px;
  margin: 0 auto;
}

.promise-card {
  background: #ffffff;
  border: none;
  border-top: 4px solid var(--brand);
  border-radius: 14px;
  padding: 2.5rem 1.8rem;
  box-shadow: 0 10px 30px rgba(14, 26, 43, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.promise-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(32, 201, 151, 0.12);
}

.promise-card h3 {
  font-size: 1.25rem;
  margin: 0;
  color: var(--ink);
}

.highlight {
  background: linear-gradient(135deg, #f6fffc 0%, #fff9ea 100%);
}

.cta {
  background: linear-gradient(135deg, #071322 0%, #15263d 100%);
  color: #ffffff;
  border-radius: 28px;
  padding: 4rem 3rem;
  text-align: center;
  box-shadow: 0 20px 48px rgba(7, 19, 34, 0.2);
}

.cta h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
  margin-bottom: 1.2rem;
}

.cta p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.cta .btn-primary {
  background: var(--brand);
  color: #062a1f;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.price {
  font-family: "Sora", "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1;
}

ul {
  padding-left: 1.1rem;
}

.site-footer {
  margin-top: 4rem;
  background: var(--ink);
  color: #fff;
  padding: 3rem 0 0;
}

.footer-container {
  max-width: 1400px;
  width: calc(100% - 2.4rem);
  margin: 0 auto;
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 1.4rem 2.4rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
  max-width: 400px;
}

.footer-brand .brand {
  color: #fff;
  font-size: 1.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-logo {
  width: 176px;
  height: auto;
  display: block;
  margin-bottom: 0.8rem;
}

.footer-col h4 {
  font-family: "Sora", "Segoe UI", sans-serif;
  color: #fff;
  font-size: 1.1rem;
  margin: 0 0 1.5rem;
}

.footer-col nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-company-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 1.2rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.footer-contact-info p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.footer-contact-info img {
  width: 16px;
  height: 16px;
  border-radius: 0;
  margin-top: 0.2rem;
  opacity: 0.92;
}

.footer-contact-info a {
  color: var(--brand);
  text-decoration: none;
}

.footer-contact-info a:hover {
  text-decoration: underline;
}

.footer-bottom {
  padding: 0.65rem 0 0.85rem;
}

.footer-legal {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  white-space: nowrap;
  font-size: 0.88rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #fff;
}

.page-hero {
  padding: 4.5rem 0 3rem;
}

.page-media {
  margin-top: 1.2rem;
}

.contact-grid {
  display: grid;
  gap: 1.2rem;
  grid-template-columns: 1fr 1fr;
}

.contact-top {
  margin-bottom: 1rem;
}

.contact-top h2 {
  margin: 0;
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
}

.contact-info-card {
  border-left: 4px solid var(--brand);
}

.contact-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: #24384f;
}

.contact-meta {
  margin-top: 1.8rem;
}

.contact-meta p {
  margin: 0 0 0.95rem;
}

.contact-inline-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 14px;
  margin: 1.3rem 0 0.3rem;
  box-shadow: 0 10px 24px rgba(14, 26, 43, 0.12);
}

form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
}

label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.72rem 0.85rem;
  font: inherit;
  margin-bottom: 0.9rem;
}

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

.form-note {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.legal-layout {
  width: min(980px, calc(100% - 2.4rem));
  margin: 2.6rem auto 4rem;
}

.legal-layout h1 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-bottom: 0.8rem;
}

.legal-layout h2 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-top: 2rem;
  margin-bottom: 0.6rem;
}

.legal-layout h3 {
  font-family: "Sora", "Segoe UI", sans-serif;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.legal-layout p,
.legal-layout li {
  color: var(--ink-soft);
  max-width: none;
}

#contact,
#about {
  scroll-margin-top: 92px;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 50;
  max-width: 620px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 1rem;
}

.cookie-banner h3 {
  margin: 0 0 0.5rem;
  font-family: "Sora", "Segoe UI", sans-serif;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.8rem;
}

.cookie-hidden {
  display: none;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin-bottom: 0.9rem;
}

.checkbox-row input {
  width: auto;
  margin: 0.2rem 0 0;
}

@media (max-width: 980px) {
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
  .grid-5 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .grid-3,
  .hero-grid,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

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

  .grid-5,
  .grid-4,
  .grid-3,
  .footer-main,
  .footer-company-grid {
    grid-template-columns: 1fr;
  }

  .footer-legal a {
    margin-left: 0;
  }

  .footer-legal {
    white-space: normal;
    flex-wrap: wrap;
  }

  .nav-wrap {
    min-height: 64px;
    align-items: start;
    padding: 0.7rem 0;
  }

  .nav-links {
    justify-content: flex-end;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.about-cards {
  display: grid;
  gap: 1.5rem;
}

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