:root {
  --white: #ffffff;
  --black: #000000;
  --accent: #c6a96b;
  --accent-soft: rgba(198,169,107,0.14);
  --bg: #050505;
  --bg-2: #080808;
  --text: #ffffff;
  --text-soft: rgba(255,255,255,0.72);
  --text-muted: rgba(255,255,255,0.48);
  --line: rgba(255,255,255,0.10);
  --dark-line: rgba(0,0,0,0.10);
  --container: 1380px;
  --heading: "Cinzel", serif;
  --body: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

::selection {
  background: var(--accent);
  color: #111;
}

html {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  max-width: 100%;
  font-family: var(--body);
  background: var(--bg);
  color: var(--text);
  overflow-x: clip;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
  background: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(5,5,5,0.82);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: border-color .25s ease, background .25s ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255,255,255,0.10);
  background: rgba(5,5,5,0.94);
}

.header-inner {
  width: min(calc(100% - 28px), var(--container));
  height: 92px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}

.site-logo {
  margin-right: auto;
}

.site-logo img {
  height: 34px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 28px;
  align-items: center;
}

.main-nav a {
  position: relative;
  color: rgba(255,255,255,0.78);
  font-size: 13px;
  font-weight: 800;
  transition: color .25s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -9px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .3s ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  height: 44px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(198,169,107,0.32);
  border-radius: 999px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  transition: .28s ease;
}

.header-cta:hover {
  background: var(--accent);
  color: #111;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.03);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}

.menu-toggle span {
  width: 21px;
  height: 1px;
  background: var(--white);
  transition: .25s ease;
}

.menu-toggle.is-active span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-toggle.is-active span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 900;
  padding: 130px 26px 40px;
  background: rgba(5,5,5,0.98);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: .3s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
}

.mobile-menu a {
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--heading);
  font-size: clamp(30px, 9vw, 52px);
  opacity: 0;
  transform: translateY(18px);
}

.mobile-menu.is-open a {
  animation: menuIn .55s ease forwards;
}

.mobile-menu.is-open a:nth-child(1) { animation-delay: .04s; }
.mobile-menu.is-open a:nth-child(2) { animation-delay: .08s; }
.mobile-menu.is-open a:nth-child(3) { animation-delay: .12s; }
.mobile-menu.is-open a:nth-child(4) { animation-delay: .16s; }
.mobile-menu.is-open a:nth-child(5) { animation-delay: .20s; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  padding: 150px 24px 80px;
  overflow: hidden;
  background-color: #050505;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.88), rgba(0,0,0,.50), rgba(0,0,0,.86)),
    url("../imgs/reklamaatiot-hero.jpg") center/cover no-repeat;
  transform: scale(1.04);
  animation: heroZoom 12s ease forwards;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 40%, rgba(198,169,107,.16), transparent 34%),
    linear-gradient(to bottom, transparent, #050505 96%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: #8f7338;
}

.hero h1,
.intro-section h2,
.section-head h2,
.solution-content h2,
.pricing-content h2,
.partner-inner h2,
.contact-info-panel h2 {
  font-family: var(--heading);
  font-weight: 600;
  letter-spacing: -.045em;
}

.hero h1 {
  font-size: clamp(42px, 6vw, 92px);
  line-height: 1.02;
  overflow-wrap: anywhere;
}

.hero p {
  max-width: 760px;
  margin: 30px auto 0;
  color: rgba(255,255,255,.82);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.8;
}

.hero-actions {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  min-height: 54px;
  padding: 0 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 900;
  transition: .28s ease;
}

.btn-primary {
  background: linear-gradient(135deg, #e4c987, var(--accent), #9d834c);
  color: #111;
  box-shadow: 0 22px 50px rgba(198,169,107,.18);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 28px 60px rgba(198,169,107,.28);
}

.btn-ghost {
  border: 1px solid var(--line);
  color: var(--white);
  background: rgba(255,255,255,.04);
}

.btn-ghost:hover {
  border-color: rgba(198,169,107,.32);
  color: var(--accent);
}

.btn-dark {
  background: #080808;
  color: var(--white);
}

.btn-dark:hover {
  background: var(--accent);
  color: #111;
}

.hero-metrics {
  margin: 64px auto 0;
  max-width: 940px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.045);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.hero-metrics div {
  padding: 26px 18px;
  border-right: 1px solid var(--line);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics strong {
  display: block;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 34px;
}

.hero-metrics span {
  display: block;
  margin-top: 7px;
  color: var(--text-soft);
  font-size: 13px;
  font-weight: 700;
}

.intro-section,
.process-section,
.partner-section {
  background: #fff;
  color: #090909;
  padding: clamp(90px, 9vw, 150px) 24px;
  overflow: hidden;
}

.intro-inner,
.partner-inner {
  max-width: 1080px;
  margin: auto;
  text-align: center;
}

.intro-section h2,
.partner-inner h2 {
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 1.1;
}

.intro-section p,
.partner-inner p {
  max-width: 850px;
  margin: 32px auto 0;
  color: rgba(0,0,0,.66);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.85;
  font-weight: 500;
}

.partner-inner .btn {
  margin-top: 36px;
}

.services-section,
.benefits-section {
  padding: clamp(90px, 10vw, 150px) 24px;
  background:
    radial-gradient(circle at top right, rgba(198,169,107,.10), transparent 32%),
    #050505;
  overflow: hidden;
}

.section-head {
  width: min(100%, var(--container));
  margin: 0 auto 54px;
}

.section-head h2 {
  max-width: 860px;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1.1;
}

.services-grid,
.benefits-grid {
  width: min(100%, var(--container));
  margin: auto;
  display: grid;
  gap: 18px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.benefits-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.benefit-card,
.process-card {
  position: relative;
  padding: 36px;
  min-height: 330px;
  border: 1px solid var(--line);
  background: linear-gradient(160deg, rgba(255,255,255,.065), rgba(255,255,255,.018));
  overflow: hidden;
  transition: .35s ease;
}

.service-card::after,
.benefit-card::after,
.process-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -45% auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(198,169,107,.16), transparent 70%);
}

.service-card:hover,
.benefit-card:hover,
.process-card:hover {
  transform: translateY(-6px);
  border-color: rgba(198,169,107,.32);
}

.service-card i,
.benefit-card i {
  color: var(--accent);
  font-size: 34px;
}

.service-card h3,
.benefit-card h3,
.process-card h3,
.premium-note h3 {
  margin-top: 28px;
  font-family: var(--heading);
  font-size: 28px;
  font-weight: 600;
}

.service-card p,
.benefit-card p,
.process-card p {
  margin-top: 18px;
  color: var(--text-soft);
  font-size: 15px;
  line-height: 1.85;
}

.solution-section {
  padding: clamp(90px, 10vw, 150px) 24px;
  background: #080808;
  overflow: hidden;
}

.solution-grid {
  width: min(100%, var(--container));
  margin: auto;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
  gap: clamp(52px, 7vw, 110px);
  align-items: center;
}

.solution-image {
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 40px 100px rgba(0,0,0,.38);
}

.solution-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .8s ease;
}

.solution-image:hover img {
  transform: scale(1.045);
}

.solution-content h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1.1;
}

.solution-content .lead {
  margin-top: 28px;
  color: var(--white);
  font-size: clamp(18px, 1.35vw, 24px);
  font-weight: 700;
  line-height: 1.6;
}

.solution-content p:not(.lead) {
  margin-top: 22px;
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.9;
}

.premium-note {
  margin-top: 40px;
  padding: 28px;
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  border: 1px solid rgba(198,169,107,.24);
  background: rgba(198,169,107,.07);
}

.premium-note i {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  color: var(--accent);
  border: 1px solid rgba(198,169,107,.3);
}

.premium-note h3 {
  margin-top: 0;
  font-size: 25px;
}

.process-section {
  padding: clamp(90px, 10vw, 150px) 24px;
  background: #fff;
  color: #080808;
  overflow: hidden;
}

.process-timeline {
  position: relative;
  width: min(100%, 1120px);
  margin: 72px auto 0;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.process-line {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(
    to bottom,
    rgba(154,123,62,0),
    rgba(154,123,62,.65),
    rgba(154,123,62,0)
  );
  transform: translateX(-50%);
}

.process-step {
  position: relative;
  min-height: 168px;
  display: flex;
  justify-content: flex-end;
}

.process-step.is-left {
  justify-content: flex-start;
}

.process-number {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 84px;
  height: 84px;
  border-radius: 50%;
  border: 1px solid rgba(154,123,62,.38);
  background: #f7f5ef;
  color: #9a7b3e;
  font-family: var(--heading);
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  box-shadow: 0 20px 50px rgba(0,0,0,.08);
}

.process-card {
  position: relative;
  width: calc(50% - 76px);
  min-height: 168px;
  padding: 34px 38px;
  border: 1px solid rgba(0,0,0,.10);
  background: linear-gradient(135deg, #ffffff, #f7f5ef);
  overflow: hidden;
  transition: .35s ease;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -15px;
  width: 28px;
  height: 28px;
  background: #f7f5ef;
  border-left: 1px solid rgba(0,0,0,.10);
  border-bottom: 1px solid rgba(0,0,0,.10);
  transform: translateY(-50%) rotate(45deg);
}

.process-step.is-left .process-card::before {
  left: auto;
  right: -15px;
  border-left: 0;
  border-bottom: 0;
  border-right: 1px solid rgba(0,0,0,.10);
  border-top: 1px solid rgba(0,0,0,.10);
}

.process-card::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -90px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(198,169,107,.16), transparent 70%);
}

.process-step.is-left .process-card {
  text-align: right;
}

.process-step:hover .process-card {
  border-color: rgba(154,123,62,.35);
  box-shadow: 0 30px 80px rgba(0,0,0,.08);
}

.process-step:not(.is-left):hover .process-card {
  transform: translateX(8px);
}

.process-step.is-left:hover .process-card {
  transform: translateX(-8px);
}

.process-card h3 {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #080808;
  font-family: var(--heading);
  font-size: clamp(23px, 2vw, 32px);
  line-height: 1.18;
  font-weight: 600;
  letter-spacing: -.025em;
  text-transform: none;
  overflow-wrap: normal;
  word-break: normal;
  hyphens: none;
}

.process-card p {
  position: relative;
  z-index: 2;
  max-width: 620px;
  margin-top: 16px;
  color: rgba(0,0,0,.64);
  font-size: 16px;
  line-height: 1.85;
  font-weight: 500;
}

.process-step.is-left .process-card p {
  margin-left: auto;
}

@media (max-width: 900px) {
  .process-timeline {
    width: min(100%, 720px);
    gap: 28px;
    margin-top: 48px;
  }

  .process-line {
    left: 34px;
    transform: none;
  }

  .process-step,
  .process-step.is-left {
    min-height: auto;
    justify-content: flex-start;
    padding-left: 74px;
  }

  .process-number {
    top: 34px;
    left: 34px;
    width: 58px;
    height: 58px;
    font-size: 22px;
    transform: translate(-50%, 0);
  }

  .process-card,
  .process-step.is-left .process-card {
    width: 100%;
    min-height: auto;
    padding: 28px;
    text-align: left;
  }

  .process-card::before,
  .process-step.is-left .process-card::before {
    top: 44px;
    left: -13px;
    right: auto;
    width: 24px;
    height: 24px;
    border-left: 1px solid rgba(0,0,0,.10);
    border-bottom: 1px solid rgba(0,0,0,.10);
    border-right: 0;
    border-top: 0;
    transform: rotate(45deg);
  }

  .process-step.is-left .process-card p {
    margin-left: 0;
  }

  .process-step:hover .process-card,
  .process-step:not(.is-left):hover .process-card,
  .process-step.is-left:hover .process-card {
    transform: none;
  }
}

@media (max-width: 520px) {
  .process-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .process-timeline {
    gap: 22px;
  }

  .process-step,
  .process-step.is-left {
    padding-left: 62px;
  }

  .process-line {
    left: 26px;
  }

  .process-number {
    left: 26px;
    width: 52px;
    height: 52px;
    font-size: 20px;
  }

  .process-card,
  .process-step.is-left .process-card {
    padding: 24px;
  }

  .process-card h3 {
    font-size: 23px;
    line-height: 1.22;
  }

  .process-card p {
    font-size: 15px;
  }
}

.pricing-section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 24px;
  overflow: hidden;
  background: #050505;
}

.pricing-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.90), rgba(0,0,0,.72)),
    url("../imgs/reklamaatiot-pricing.jpg") center/cover no-repeat;
  opacity: .8;
}

.pricing-inner {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 60px;
  align-items: center;
}

.pricing-content h2 {
  max-width: 760px;
  font-size: clamp(34px, 4.2vw, 68px);
  line-height: 1.1;
}

.pricing-content p {
  max-width: 720px;
  margin-top: 28px;
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.85;
}

.pricing-card {
  padding: 42px;
  border: 1px solid rgba(198,169,107,.28);
  background: linear-gradient(160deg, rgba(255,255,255,.10), rgba(255,255,255,.025));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.pricing-label {
  display: inline-flex;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.price {
  margin-top: 20px;
  color: var(--accent);
  font-family: var(--heading);
  font-size: 64px;
  line-height: 1;
}

.price small {
  color: var(--text-soft);
  font-family: var(--body);
  font-size: 18px;
}

.pricing-card p {
  margin-top: 16px;
  color: var(--text-soft);
  line-height: 1.7;
}

.pricing-card ul {
  list-style: none;
  margin: 30px 0;
  display: grid;
  gap: 14px;
}

.pricing-card li {
  color: var(--text-soft);
  line-height: 1.5;
}

.pricing-card li i {
  color: var(--accent);
  margin-right: 8px;
}

.contact-section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 24px;
  overflow: hidden;
}

.contact-bg {
  position: absolute;
  inset: 0;
  background: url("../imgs/reklamaatiot-contact-bg.jpg") center/cover no-repeat;
  opacity: .36;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.78), rgba(0,0,0,.92));
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.contact-layout {
  position: relative;
  z-index: 2;
  width: min(100%, var(--container));
  margin: auto;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 20px;
}

.contact-info-panel,
.contact-form-panel {
  padding: clamp(34px, 4vw, 56px);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.contact-info-panel h2 {
  margin-top: 20px;
  font-size: clamp(40px, 4.8vw, 76px);
  line-height: 1.06;
}

.contact-info-panel p {
  margin-top: 28px;
  color: var(--text-soft);
  line-height: 1.9;
}

.contact-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.contact-item {
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: center;
}

.contact-item i {
  color: var(--accent);
}

.contact-item small {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.contact-item strong {
  font-size: 15px;
}

.form-label {
  display: inline-flex;
  margin-bottom: 28px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label span {
  display: block;
  margin-bottom: 9px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.045);
  color: var(--white);
  outline: none;
  transition: .25s ease;
}

.contact-form input {
  height: 58px;
  padding: 0 18px;
}

.contact-form textarea {
  height: 180px;
  padding: 18px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(198,169,107,.45);
  box-shadow: 0 0 0 4px rgba(198,169,107,.08);
}

.form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-soft);
  font-size: 14px;
}

.check input {
  width: 14px;
  height: 14px;
  accent-color: var(--accent);
}

.contact-form button {
  min-width: 180px;
  height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, #e4c987, var(--accent), #9d834c);
  color: #111;
  font-size: 14px;
  font-weight: 900;
  transition: .28s ease;
}

.contact-form button:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 48px rgba(198,169,107,.22);
}

.site-footer {
  background: #050505;
  border-top: 1px solid var(--line);
}

.footer-inner {
  width: min(100%, var(--container));
  margin: auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.2fr .7fr .9fr;
  gap: 70px;
}

.footer-logo {
  width: 76px;
}

.site-footer p {
  max-width: 430px;
  margin-top: 24px;
  color: var(--text-soft);
  line-height: 1.9;
}

.site-footer strong {
  display: block;
  margin-bottom: 22px;
  font-size: 13px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.site-footer nav,
.site-footer .footer-inner > div:last-child {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.site-footer a,
.site-footer span {
  color: var(--text-soft);
  font-size: 14px;
  transition: color .25s ease;
}

.site-footer a:hover {
  color: var(--accent);
}

.footer-bottom {
  width: min(100%, var(--container));
  margin: auto;
  padding: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--text-muted);
}

.footer-bottom div {
  display: flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes menuIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

@media (max-width: 1200px) {
  .process-grid.five {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1100px) {
  .main-nav,
  .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .header-inner {
    height: 78px;
  }

  .services-grid,
  .benefits-grid,
  .solution-grid,
  .pricing-inner,
  .contact-layout,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .solution-grid {
    gap: 52px;
  }
}

@media (max-width: 768px) {
  .header-inner {
    width: calc(100% - 28px);
  }

  .site-logo img{
      height:32px;
      width:auto;
  }

  .hero {
    min-height: auto;
    padding: 130px 20px 80px;
  }

  .hero h1 {
    font-size: clamp(38px, 12vw, 58px);
  }

  .hero h1,
  .intro-section h2,
  .section-head h2,
  .solution-content h2,
  .pricing-content h2,
  .partner-inner h2,
  .contact-info-panel h2 {
    overflow-wrap: anywhere;
    word-break: normal;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
  }

  .hero-metrics div {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .hero-metrics div:last-child {
    border-bottom: 0;
  }

  .intro-section,
  .services-section,
  .solution-section,
  .process-section,
  .benefits-section,
  .pricing-section,
  .partner-section,
  .contact-section {
    padding-left: 20px;
    padding-right: 20px;
  }

  .service-card,
  .benefit-card,
  .process-card,
  .pricing-card,
  .contact-info-panel,
  .contact-form-panel {
    padding: 28px;
  }

  .service-card,
  .benefit-card,
  .process-card {
    min-height: auto;
  }

  .process-grid.five {
    grid-template-columns: 1fr;
  }

  .premium-note {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .form-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .contact-form button {
    width: 100%;
  }

  .footer-inner {
    padding: 64px 20px;
    gap: 44px;
  }

  .footer-bottom {
    padding: 22px 20px;
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom div {
    flex-wrap: wrap;
  }
}