﻿:root {
  --slate-950: #05131d;
  --slate-900: #0a1f2f;
  --slate-800: #11334a;
  --slate-700: #2c4858;
  --slate-600: #526674;
  --slate-500: #74838c;
  --slate-200: #e6ded0;
  --slate-100: #eee8dc;
  --slate-50: #f8f4ec;
  --blue: #2c8b8a;
  --blue-dark: #216c70;
  --gold: #c9a35a;
  --white: #ffffff;
  --shadow: 0 28px 70px rgba(10, 31, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.skip-link {
  position: absolute;
  left: 8px;
  top: -48px;
  z-index: 99;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--blue);
}

.skip-link:focus {
  top: 8px;
}

.notice {
  height: 0;
  overflow: hidden;
  color: var(--white);
  background: var(--slate-900);
  opacity: 0;
  transition: height 0.35s ease, opacity 0.35s ease;
}

.notice.show {
  height: 108px;
  opacity: 1;
}

.notice-inner {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 14px 44px 14px 0;
  font-size: 14px;
}

.notice-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  margin-top: 2px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-weight: 900;
  line-height: 1;
}

.notice p {
  margin: 0 0 6px;
}

.notice p:last-child {
  margin-bottom: 0;
  opacity: 0.78;
  font-style: italic;
}

.notice strong,
.notice a {
  color: var(--gold);
  font-weight: 800;
}

.notice-close {
  position: absolute;
  top: 12px;
  right: 0;
  width: 30px;
  height: 30px;
  border: 0;
  color: #94a3b8;
  background: transparent;
  font-size: 24px;
  cursor: pointer;
}

.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(14px);
}

.nav-inner {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand img {
  width: 284px;
  height: auto;
}

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

.nav-links a {
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 700;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-links a:hover {
  color: var(--slate-900);
}

.account-link {
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--blue);
}

.started-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: 999px;
  color: var(--white) !important;
  background: var(--slate-900);
}

.started-link:hover,
.account-link:hover {
  transform: translateY(-1px);
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--slate-600);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 128px;
}

.hero-shape {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 50%;
  height: 100%;
  border-bottom-left-radius: 100px;
  background: var(--slate-50);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  padding: 5px 12px;
  border-radius: 999px;
  color: var(--blue-dark);
  background: rgba(44, 139, 138, 0.12);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pill span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s infinite;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: Outfit, Inter, Arial, sans-serif;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 28px;
  color: var(--slate-900);
  font-size: clamp(50px, 6vw, 78px);
  line-height: 1.08;
  font-weight: 800;
}

h1 mark {
  color: var(--blue);
  background: transparent;
}

.hero-content > p {
  max-width: 560px;
  margin: 0 0 38px;
  color: var(--slate-600);
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 30px;
  border-radius: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

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

.button.dark {
  color: var(--white);
  background: var(--slate-900);
  box-shadow: 0 18px 30px rgba(10, 31, 47, 0.13);
}

.button.dark:hover {
  background: var(--slate-800);
}

.button.light {
  border: 1px solid var(--slate-200);
  background: var(--white);
}

.hero-actions .button.dark,
.cta .button.dark,
.footer-button {
  background: var(--gold);
  color: var(--slate-900);
}

.hero-actions .button.dark:hover,
.cta .button.dark:hover {
  background: #d7b871;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
  margin-top: 64px;
  padding-top: 46px;
  border-top: 1px solid var(--slate-100);
}

.stats div {
  display: flex;
  min-width: 110px;
  flex-direction: column;
}

.stat-icon {
  margin-bottom: 8px;
  color: #94a3b8;
  font-size: 20px;
}

.stats strong {
  color: var(--slate-900);
  font-size: 25px;
  line-height: 1.1;
}

.stats small {
  color: var(--slate-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
}

.square-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 40px;
  background: var(--slate-200);
  box-shadow: 0 32px 80px rgba(15, 23, 42, 0.18);
}

.square-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
  transition: filter 0.8s ease, transform 1s ease;
}

.hero-media:hover img {
  filter: grayscale(0);
  transform: scale(1.04);
}

.quote-box {
  position: absolute;
  left: -24px;
  bottom: -24px;
  max-width: 320px;
  padding: 24px;
  border: 1px solid var(--slate-100);
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.quote-box p {
  margin: 0;
  color: var(--slate-600);
  font-size: 14px;
}

.quote-box div {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  color: var(--slate-900);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quote-box span {
  width: 34px;
  height: 4px;
  border-radius: 99px;
  background: var(--gold);
}

.about {
  padding: 96px 0;
  border-top: 1px solid var(--slate-100);
  background: var(--white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-text h2,
.section-head h2,
.partners-head h2 {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.about-text h3,
.section-head h3,
.partners-head h3 {
  color: var(--slate-900);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}

.about-text p {
  margin: 28px 0 24px;
  color: var(--slate-600);
  font-size: 18px;
}

.under-link {
  display: inline-block;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--slate-900);
  color: var(--slate-900);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.under-link:hover {
  border-color: var(--blue);
  color: var(--blue);
}

.photo-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.portrait {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 28px;
  background: var(--slate-100);
}

.portrait.down {
  margin-top: 34px;
}

.portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.services {
  padding: 96px 0;
  background: var(--slate-50);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 32px;
  margin-bottom: 64px;
}

.section-head > div {
  max-width: 720px;
}

.section-head p {
  max-width: 400px;
  margin: 0;
  color: var(--slate-600);
}

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

.card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 32px;
  border: 1px solid var(--slate-100);
  border-radius: 32px;
  background: var(--white);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(44, 139, 138, 0.32);
  box-shadow: 0 30px 60px rgba(10, 31, 47, 0.08);
}

.card-corner {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  border-bottom-left-radius: 64px;
  background: var(--slate-50);
  transition: background 0.2s ease;
}

.card:hover .card-corner {
  background: rgba(44, 139, 138, 0.1);
}

.card-icon {
  position: relative;
  z-index: 1;
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 48px;
  border-radius: 18px;
  color: var(--white);
  background: var(--slate-900);
  font-size: 25px;
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
  transition: transform 0.4s ease, background 0.2s ease;
}

.card:hover .card-icon {
  transform: scale(1.08);
  background: var(--gold);
  color: var(--slate-900);
}

.card h4 {
  position: relative;
  z-index: 1;
  margin-bottom: 14px;
  color: var(--slate-900);
  font-size: 26px;
  line-height: 1.15;
}

.card p {
  position: relative;
  z-index: 1;
  margin: 0 0 32px;
  color: var(--slate-600);
}

.card span {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #94a3b8;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.card i {
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.3s ease;
}

.card:hover span {
  color: var(--blue);
}

.card:hover i {
  width: 34px;
}

.focus {
  padding: 82px 0;
  background: var(--white);
}

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

.focus-item {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  justify-content: center;
  padding: 28px;
  border: 1px solid var(--slate-100);
  border-radius: 24px;
  background: var(--white);
}

.focus-item h4 {
  margin-bottom: 16px;
  color: var(--slate-900);
  font-size: 22px;
}

.focus-item p {
  margin: 0;
  color: var(--slate-600);
}

.partners {
  padding: 88px 0 96px;
  background: var(--slate-50);
}

.partners-head {
  max-width: 700px;
  margin-bottom: 42px;
}

.partners-head p {
  color: var(--slate-600);
  font-size: 18px;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}

.partner-grid div {
  min-height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  border: 1px solid var(--slate-100);
  border-radius: 28px;
  background: var(--white);
}

.partner-grid strong {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  margin-bottom: 18px;
  border-radius: 14px;
  color: var(--white);
  background: var(--slate-900);
  border: 2px solid var(--gold);
  font-size: 22px;
}

.partner-grid span {
  color: var(--slate-900);
  font-size: 18px;
  font-weight: 900;
}

.partner-grid small {
  color: var(--slate-500);
}

.cta {
  padding: 96px 0;
  text-align: center;
  background: var(--white);
}

.cta-inner {
  max-width: 900px;
}

.cta h2 {
  color: var(--slate-900);
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.08;
}

.cta p {
  max-width: 660px;
  margin: 24px auto 34px;
  color: var(--slate-600);
  font-size: 19px;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 0 108px;
  background: linear-gradient(90deg, var(--white) 0 50%, var(--slate-50) 50% 100%);
}

.page-hero.slim {
  background: var(--white);
  border-bottom: 1px solid var(--slate-100);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 56px;
  align-items: center;
}

.page-hero h1 {
  max-width: 900px;
}

.page-hero p {
  max-width: 680px;
  margin: 0;
  color: var(--slate-600);
  font-size: 20px;
}

.page-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: var(--shadow);
}

.page-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.page-section {
  padding-top: 86px;
}

.service-detail {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 30px;
  align-items: center;
  margin-bottom: 28px;
  padding: 36px;
  border: 1px solid var(--slate-100);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 22px 42px rgba(15, 23, 42, 0.05);
}

.service-detail:last-child {
  margin-bottom: 0;
}

.detail-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--white);
  background: var(--slate-900);
  font-size: 28px;
  font-weight: 900;
}

.service-detail h2,
.form-card h2,
.start-panel h2 {
  margin-bottom: 14px;
  color: var(--slate-900);
  font-size: 34px;
  line-height: 1.15;
}

.service-detail p,
.form-card p,
.start-panel p {
  max-width: 840px;
  margin: 0 0 18px;
  color: var(--slate-600);
  font-size: 17px;
}

.service-detail ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  padding: 0;
  margin: 22px 0 28px;
  list-style: none;
}

.service-detail li {
  position: relative;
  padding-left: 18px;
  color: var(--slate-700);
  font-weight: 700;
}

.service-detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
}

.form-section {
  padding: 88px 0 110px;
  background: var(--slate-50);
}

.form-grid,
.auth-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 34px;
  align-items: center;
}

.form-grid > *,
.auth-grid > * {
  align-self: center;
}

.auth-grid {
  max-width: 980px;
}

.contact-card,
.form-card,
.start-panel {
  padding: 34px;
  border: 1px solid var(--slate-100);
  border-radius: 32px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(15, 23, 42, 0.06);
}

.form-card.soft,
.start-panel {
  background: var(--slate-900);
  color: var(--white);
}

.form-card.soft h2,
.start-panel h2 {
  color: var(--white);
}

.form-card.soft p,
.start-panel li {
  color: #cbd5e1;
}

.contact-card .contact-icon {
  margin-bottom: 24px;
}

.contact-card span {
  display: block;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-card a {
  display: block;
  margin: 6px 0 18px;
  color: var(--slate-900);
  font-size: 22px;
  font-weight: 900;
  word-break: break-word;
}

.contact-card p {
  margin: 0;
  color: var(--slate-600);
}

.form-card {
  display: grid;
  gap: 18px;
}

.contact-form-wrap {
  max-width: 760px;
}

.contact-form {
  padding: 42px;
}

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

.form-card label {
  display: grid;
  gap: 8px;
  color: var(--slate-700);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-card input,
.form-card textarea,
.form-card select {
  width: 100%;
  border: 1px solid var(--slate-200);
  border-radius: 16px;
  padding: 15px 16px;
  color: var(--slate-900);
  background: var(--white);
  font: inherit;
}

.website-field {
  position: absolute;
  left: -9999px;
  width: 1px !important;
  height: 1px;
  opacity: 0;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

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

.form-status-error {
  color: #7f1d1d;
  background: #fee2e2;
}

.form-status-info {
  color: var(--slate-800);
  background: rgba(201, 163, 90, 0.22);
}

.form-card textarea {
  resize: vertical;
}

.form-card input:focus,
.form-card textarea:focus,
.form-card select:focus {
  outline: 3px solid rgba(44, 139, 138, 0.2);
  border-color: var(--blue);
}

.form-card .under-link {
  justify-self: start;
  margin-top: 4px;
}

.consent-row {
  grid-template-columns: 20px 1fr;
  align-items: start;
  gap: 12px !important;
  color: var(--slate-600) !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0 !important;
  line-height: 1.5;
  text-transform: none !important;
}

.consent-row input {
  width: 18px !important;
  height: 18px;
  margin-top: 2px;
  padding: 0;
}

.consent-row a {
  color: var(--blue-dark);
  font-weight: 900;
  text-decoration: underline;
}

.back-link {
  display: inline-flex;
  justify-self: start;
  margin-top: 4px;
  color: var(--slate-700);
  font-weight: 900;
}

.legal-section {
  padding: 86px 0 110px;
  background: var(--slate-50);
}

.legal-wrap {
  max-width: 860px;
  padding: 44px;
  border: 1px solid var(--slate-100);
  border-radius: 28px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-wrap h1 {
  margin-bottom: 20px;
  font-size: clamp(42px, 5vw, 64px);
}

.legal-wrap h2 {
  margin: 30px 0 10px;
  color: var(--slate-900);
  font-size: 24px;
}

.legal-wrap p {
  color: var(--slate-600);
}

.legal-wrap a {
  color: var(--blue-dark);
  font-weight: 800;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 20px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border: 1px solid rgba(238, 232, 220, 0.35);
  border-radius: 20px;
  color: var(--white);
  background: rgba(10, 31, 47, 0.96);
  box-shadow: 0 24px 60px rgba(10, 31, 47, 0.25);
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  color: var(--gold);
}

.cookie-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-actions a {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-decoration: underline;
  white-space: nowrap;
}

.cookie-actions button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  padding: 0 18px;
  color: var(--slate-900);
  background: var(--gold);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.start-panel ol {
  display: grid;
  gap: 16px;
  padding-left: 24px;
  margin: 24px 0 30px;
}

.start-panel .under-link {
  color: var(--white);
  border-color: var(--white);
}

.footer {
  position: relative;
  overflow: hidden;
  padding: 96px 0 48px;
  color: var(--white);
  background: var(--slate-900);
}

.footer-glow {
  position: absolute;
  inset: auto 0 0;
  height: 50%;
  pointer-events: none;
  background: linear-gradient(to top, rgba(44, 139, 138, 0.12), transparent);
}

.footer-inner {
  position: relative;
  z-index: 1;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 70px;
}

.footer-brand img {
  width: 320px;
  margin-bottom: 28px;
}

.footer-brand p {
  max-width: 520px;
  color: #94a3b8;
  font-size: 18px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer h4 {
  margin-bottom: 26px;
  font-size: 18px;
}

.footer-links a {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: #94a3b8;
  font-size: 14px;
  transition: color 0.2s ease;
}

.footer-links a::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--slate-700);
}

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

.footer-contact {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 32px;
  align-items: center;
  padding: 42px 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
}

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

.contact-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: var(--white);
  background: var(--slate-800);
}

.contact-row span {
  display: block;
  margin-bottom: 3px;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-row a,
.contact-row strong {
  color: var(--white);
  font-weight: 900;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  padding: 16px 30px;
  border-radius: 18px;
  color: var(--slate-900);
  background: var(--white);
  font-weight: 900;
}

.copyright {
  margin: 42px 0 0;
  color: var(--slate-500);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

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

.delay-1 {
  transition-delay: 0.12s;
}

.delay-2 {
  transition-delay: 0.22s;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

@media (max-width: 980px) {
  .notice.show {
    height: 140px;
  }

  .brand img {
    width: 240px;
  }

  .menu-button {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 80px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--slate-100);
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .account-link,
  .started-link {
    margin-top: 8px;
    justify-content: center;
  }

  .hero-grid,
  .about-grid,
  .page-hero-grid,
  .section-head,
  .footer-top,
  .footer-contact,
  .form-grid,
  .auth-grid {
    grid-template-columns: 1fr;
  }

  .form-grid,
  .auth-grid {
    align-items: start;
  }

  .form-grid > *,
  .auth-grid > * {
    align-self: stretch;
  }

  .hero-shape {
    display: none;
  }

  .hero {
    padding-top: 56px;
  }

  .section-head {
    display: grid;
  }

  .cards,
  .focus-grid,
  .partner-grid,
  .service-detail ul,
  .form-two {
    grid-template-columns: 1fr;
  }

  .page-hero {
    background: var(--white);
    padding-top: 56px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    left: 14px;
    right: 14px;
  }

  .cookie-actions {
    justify-content: space-between;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .notice.show {
    height: 174px;
  }

  .brand img {
    width: 208px;
  }

  h1 {
    font-size: 46px;
  }

  .hero-actions {
    display: grid;
  }

  .stats {
    gap: 26px;
  }

  .quote-box {
    position: relative;
    left: 0;
    bottom: 0;
    margin: -30px auto 0;
  }

  .photo-pair {
    gap: 12px;
  }

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

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

