/* AV Marketplace OÜ – brand: ink #0C0D10, electric blue #005CE6 */

:root {
  --ink: #0C0D10;
  --ink-mid: #16181D;
  --ink-soft: #1E2128;
  --blue: #005CE6;
  --blue-bright: #2B7BFF;
  --blue-deep: #0047B8;
  --blue-soft: #E8F0FF;
  --paper: #F4F6F9;
  --paper-dark: #E8ECF1;
  --white: #ffffff;
  --gray-100: #E4E8EE;
  --gray-400: #8B93A1;
  --gray-600: #4B5563;
  --shadow-sm: 0 2px 8px rgba(12, 13, 16, 0.06);
  --shadow-md: 0 10px 32px rgba(12, 13, 16, 0.08);
  --shadow-lg: 0 22px 50px rgba(12, 13, 16, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --header-h: 80px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--gray-600);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.88rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn--blue {
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  color: var(--white);
  border-color: var(--blue);
}

.btn--blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 26px rgba(0, 92, 230, 0.38);
}

.btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--blue-bright);
  color: var(--white);
}

.btn--sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.82rem;
}

.btn--full {
  width: 100%;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--header-h);
  background: #ffffff;
  border-bottom: 1px solid var(--gray-100);
  transition: var(--transition);
}

.header--scrolled {
  background: #ffffff;
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.header__logo img {
  height: 58px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.header__nav a:not(.btn) {
  font-weight: 600;
  color: var(--ink);
  font-size: 0.9rem;
  transition: color var(--transition);
}

.header__nav a:not(.btn):hover {
  color: var(--blue);
}

.header__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.header__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: var(--transition);
}

/* Language switch */
.lang-switch {
  display: flex;
  align-items: center;
  border: 1px solid var(--gray-100);
  border-radius: 6px;
  overflow: hidden;
  background: var(--paper);
}

.lang-switch__btn {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.38rem 0.58rem;
  border: none;
  background: transparent;
  color: var(--gray-400);
  cursor: pointer;
  transition: var(--transition);
}

.lang-switch__btn.is-active {
  background: var(--ink);
  color: var(--white);
}

.lang-switch__btn:not(.is-active):hover {
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  padding: calc(var(--header-h) + 5rem) 0 6.5rem;
  background: var(--ink);
  color: var(--white);
  overflow: hidden;
}

.hero__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.07;
  background-image:
    linear-gradient(135deg, var(--blue) 12%, transparent 12.5%, transparent 87%, var(--blue) 87.5%, var(--blue)),
    linear-gradient(45deg, var(--blue) 12%, transparent 12.5%, transparent 87%, var(--blue) 87.5%, var(--blue));
  background-size: 72px 72px;
  pointer-events: none;
}

.hero__glow {
  position: absolute;
  top: -25%;
  right: -8%;
  width: 58%;
  height: 90%;
  background: radial-gradient(ellipse, rgba(0, 92, 230, 0.38) 0%, transparent 68%);
  pointer-events: none;
}

.hero__chevron {
  position: absolute;
  right: 6%;
  top: 22%;
  width: 220px;
  height: 220px;
  border: 2px solid rgba(0, 92, 230, 0.22);
  transform: rotate(45deg) skewX(-12deg);
  pointer-events: none;
}

.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 4rem;
  align-items: center;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--blue-bright);
  margin-bottom: 1.35rem;
}

.hero__dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--blue-bright);
  box-shadow: 0 0 0 4px rgba(43, 123, 255, 0.22);
}

.hero h1 {
  font-family: var(--font-sans);
  font-size: clamp(1.75rem, 4vw, 2.65rem);
  font-weight: 700;
  line-height: 1.22;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.25rem;
  max-width: 18ch;
}

.hero__lead {
  font-size: 1.06rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  max-width: 520px;
  margin-bottom: 2.1rem;
  line-height: 1.7;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.hero__note {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.42);
}

.hero__aside {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 1.25rem;
}

.hero__board {
  background: linear-gradient(180deg, var(--ink-soft) 0%, #12141A 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.4rem 1.2rem;
  box-shadow: var(--shadow-lg);
}

.hero__board-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.15rem;
}

.hero__board-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.hero__board-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.18);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  50% { opacity: 0.45; }
}

.hero__metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}

.hero__metric {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 0.75rem 0.65rem;
}

.hero__metric span {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 0.3rem;
}

.hero__metric strong {
  font-family: var(--font-sans);
  font-size: 1.35rem;
  color: var(--white);
}

.hero__bars {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 72px;
}

.hero__bars span {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue) 100%);
  animation: barGrow 1.1s ease-out backwards;
}

.hero__bars span:nth-child(1) { height: 38%; animation-delay: 0.1s; }
.hero__bars span:nth-child(2) { height: 62%; animation-delay: 0.18s; }
.hero__bars span:nth-child(3) { height: 48%; animation-delay: 0.26s; }
.hero__bars span:nth-child(4) { height: 86%; animation-delay: 0.34s; }
.hero__bars span:nth-child(5) { height: 70%; animation-delay: 0.42s; }
.hero__bars span:nth-child(6) { height: 54%; animation-delay: 0.5s; }
.hero__bars span:nth-child(7) { height: 92%; animation-delay: 0.58s; }

@keyframes barGrow {
  from { height: 0; opacity: 0; }
  to { opacity: 1; }
}

.hero__quote {
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(0, 92, 230, 0.28);
  border-radius: var(--radius-lg);
  background: rgba(0, 92, 230, 0.1);
}

.hero__quote p {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 0.65rem;
  line-height: 1.5;
}

.hero__quote cite {
  font-size: 0.75rem;
  font-style: normal;
  font-weight: 700;
  color: var(--blue-bright);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* Pillars */
.pillars {
  background: var(--paper);
  padding: 0;
  margin-top: -2.25rem;
  position: relative;
  z-index: 2;
}

.pillars__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.pillar {
  padding: 2.35rem 1.85rem;
  text-align: left;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}

.pillar:last-child {
  border-right: none;
}

.pillar:hover {
  background: var(--blue-soft);
}

.pillar__num {
  display: block;
  font-family: var(--font-sans);
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 0.7rem;
  line-height: 1;
}

.pillar h3 {
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.pillar p {
  font-size: 0.9rem;
  color: var(--gray-400);
  line-height: 1.55;
}

/* Section header */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-header__label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--gray-400);
  font-size: 1.02rem;
}

.section-header--light h2,
.section-header--light p {
  color: var(--white);
}

.section-header--light .section-header__label {
  color: var(--blue-bright);
}

/* Services */
.services {
  padding: 6rem 0 5rem;
  background: var(--white);
}

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--paper);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.1rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, var(--blue-bright) 0%, var(--blue) 100%);
  transition: height var(--transition);
}

.service-card:hover {
  border-color: rgba(0, 92, 230, 0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.service-card:hover::before {
  height: 100%;
}

.service-card--accent {
  background: var(--ink);
  border-color: var(--ink);
}

.service-card--accent::before {
  background: var(--blue-bright);
}

.service-card--accent h3 {
  color: var(--white);
}

.service-card--accent p {
  color: rgba(255, 255, 255, 0.68);
}

.service-card--accent .service-card__icon {
  background: rgba(0, 92, 230, 0.22);
  color: var(--blue-bright);
}

.service-card__icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  color: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  box-shadow: var(--shadow-sm);
}

.service-card__icon svg {
  width: 24px;
  height: 24px;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--gray-400);
  line-height: 1.6;
}

/* Process */
.process {
  padding: 5rem 0 6rem;
  background: var(--ink-mid);
  position: relative;
  overflow: hidden;
}

.process::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}

.process__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}

.process__steps::before {
  content: '';
  position: absolute;
  top: 26px;
  left: 12%;
  right: 12%;
  height: 1px;
  background: rgba(0, 92, 230, 0.35);
}

.process__step {
  text-align: center;
  position: relative;
}

.process__marker {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-bright) 0%, var(--blue) 100%);
  border-radius: 8px;
  position: relative;
  z-index: 1;
  box-shadow: 0 6px 18px rgba(0, 92, 230, 0.35);
}

.process__body h3 {
  font-family: var(--font-sans);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
}

.process__body p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.58);
  line-height: 1.55;
}

.process__quote {
  max-width: 720px;
  margin: 2.75rem auto 0;
  padding: 1.35rem 1.5rem;
  border: 1px solid rgba(0, 92, 230, 0.3);
  border-radius: var(--radius-lg);
  background: rgba(0, 92, 230, 0.12);
  text-align: center;
}

.process__quote p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.02rem;
  line-height: 1.55;
}

/* Connect */
.connect {
  padding: 5.5rem 0;
  background: var(--white);
}

.connect__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.connect-card {
  background: var(--paper);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 1.85rem;
}

.connect-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.55rem;
}

.connect-card p {
  font-size: 0.92rem;
  color: var(--gray-400);
  margin-bottom: 1rem;
}

.connect-card ul {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.connect-card li {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  padding-left: 1rem;
  position: relative;
}

.connect-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
}

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

.connect__perks article {
  background: var(--blue-soft);
  border-radius: var(--radius);
  padding: 1.15rem 1.1rem;
}

.connect__perks strong {
  display: block;
  color: var(--ink);
  font-size: 0.92rem;
  margin-bottom: 0.3rem;
}

.connect__perks span {
  display: block;
  font-size: 0.82rem;
  color: var(--gray-600);
}

/* About */
.about {
  padding: 6rem 0;
  background: var(--paper);
}

.about__inner {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 4rem;
  align-items: center;
}

.about__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
}

.about__logo {
  max-width: 320px;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.about__accent {
  position: absolute;
  inset: 8%;
  border: 2px solid var(--blue);
  border-radius: var(--radius-lg);
  opacity: 0.22;
  transform: rotate(4deg);
}

.about__content .section-header__label {
  text-align: left;
}

.about__content h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1.2rem;
}

.about__content > p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  font-size: 1.02rem;
}

.about__list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin-top: 1.65rem;
}

.about__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-weight: 600;
  color: var(--ink);
  font-size: 0.95rem;
}

.about__list svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Contact */
.contact {
  padding: 6rem 0;
  background: var(--white);
}

.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 4rem;
  align-items: start;
}

.contact__info .section-header__label {
  text-align: left;
}

.contact__info h2 {
  font-family: var(--font-sans);
  font-size: clamp(1.55rem, 3.4vw, 2.15rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.contact__info > p {
  color: var(--gray-400);
  margin-bottom: 2rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--ink);
  font-weight: 600;
  transition: color var(--transition);
}

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

.contact__detail svg {
  width: 22px;
  height: 22px;
  color: var(--blue);
  flex-shrink: 0;
}

.contact__company {
  padding: 1.2rem 1.4rem;
  background: var(--blue-soft);
  border-left: 3px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.contact__company strong {
  color: var(--ink);
  font-size: 1.05rem;
}

.contact__company span {
  font-size: 0.9rem;
  color: var(--gray-400);
}

/* Form */
.contact__form {
  background: var(--paper);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.15rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.78rem 0.95rem;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0, 92, 230, 0.16);
}

.form-group textarea {
  resize: vertical;
  min-height: 110px;
}

.contact__form .btn--full {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  font-size: 0.78rem;
  color: var(--gray-400);
  text-align: center;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

/* Footer */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.75);
  padding-top: 3.5rem;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}

.footer__brand img {
  margin-bottom: 1rem;
  border-radius: 8px;
  background: var(--white);
}

.footer__brand p {
  font-size: 0.9rem;
  opacity: 0.65;
  max-width: 280px;
}

.footer__links h4 {
  color: var(--blue-bright);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
  font-weight: 700;
}

.footer__links li {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: var(--blue-bright);
}

.footer__bottom {
  border-top: 1px solid rgba(0, 92, 230, 0.2);
  padding: 1.25rem 0;
}

.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.footer__bottom p {
  font-size: 0.85rem;
  opacity: 0.55;
  text-align: center;
  margin: 0;
}

.footer__credit {
  font-size: 0.8rem;
  opacity: 0.45;
}

.footer__credit a {
  color: var(--blue-bright);
  transition: color var(--transition);
}

.footer__credit a:hover {
  color: var(--white);
  text-decoration: underline;
}

.footer__legal {
  display: inline-block;
  margin-left: 0.5rem;
  color: var(--blue-bright);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer__legal:hover {
  color: var(--white);
}

/* Privacy */
.privacy {
  padding: 4rem 0;
  background: var(--paper-dark);
  border-top: 1px solid var(--gray-100);
}

.privacy h2 {
  font-family: var(--font-sans);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 2rem;
  text-align: center;
}

.privacy__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.privacy h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.75rem;
}

.privacy p {
  font-size: 0.9rem;
  color: var(--gray-400);
  margin-bottom: 0.75rem;
  line-height: 1.6;
}

.privacy a {
  color: var(--blue);
  text-decoration: underline;
}

.privacy a:hover {
  color: var(--ink);
}

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 300;
  background: var(--ink);
  color: rgba(255, 255, 255, 0.9);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 1px solid rgba(0, 92, 230, 0.28);
}

.cookie-banner--visible {
  transform: translateY(0);
}

.cookie-banner[hidden] {
  display: block;
  visibility: hidden;
}

.cookie-banner--visible[hidden] {
  visibility: visible;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cookie-banner p {
  font-size: 0.9rem;
  flex: 1;
  min-width: 240px;
}

.cookie-banner a {
  color: var(--blue-bright);
  text-decoration: underline;
}

.cookie-banner__actions {
  display: flex;
  gap: 0.75rem;
  flex-shrink: 0;
}

.cookie-banner .btn--ghost {
  color: var(--white);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: var(--ink);
  color: var(--white);
  padding: 1rem 1.75rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(0, 92, 230, 0.35);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.35s ease;
  z-index: 200;
  pointer-events: none;
}

.toast--visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* Responsive */
@media (max-width: 992px) {
  .header__toggle {
    display: flex;
  }

  .header__nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.15rem;
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
  }

  .header__nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .header__toggle--active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .header__toggle--active span:nth-child(2) {
    opacity: 0;
  }

  .header__toggle--active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero__inner,
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__chevron {
    display: none;
  }

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

  .pillar {
    border-right: none;
    border-bottom: 1px solid var(--gray-100);
  }

  .pillar:last-child {
    border-bottom: none;
  }

  .process__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .process__steps::before {
    display: none;
  }

  .about__visual {
    order: -1;
  }

  .about__logo {
    max-width: 240px;
  }

  .connect__grid,
  .connect__perks {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --header-h: 72px;
  }

  .header__logo img {
    height: 46px;
  }

  .hero {
    padding: calc(var(--header-h) + 2.25rem) 0 4.25rem;
  }

  .hero h1 {
    font-size: 1.7rem;
    max-width: none;
  }

  .hero__lead {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
  }

  .hero__actions {
    width: 100%;
  }

  .hero__actions .btn {
    flex: 1;
    min-width: 0;
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .services,
  .about,
  .contact,
  .connect,
  .process {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .connect__grid,
  .connect__perks {
    grid-template-columns: 1fr;
  }

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

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

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

  .footer__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer__brand p {
    max-width: none;
  }

  .footer__brand img {
    margin-left: auto;
    margin-right: auto;
  }

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

  .cookie-banner__inner {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner__actions {
    width: 100%;
  }

  .cookie-banner__actions .btn {
    flex: 1;
  }
}
