:root {
  --green-950: #071D16;
  --green-925: #0B2A1F;
  --green-900: #0E2F23;
  --green-800: #123B2C;
  --green-700: #1D4C38;
  --cream: #F7F2EA;
  --cream-2: #FCF8F1;
  --white: #FFFFFF;
  --amber: #D98212;
  --amber-2: #F2A12B;
  --text: #161616;
  --muted: #6B6B6B;
  --line-dark: rgba(255, 255, 255, 0.13);
  --line-light: rgba(0, 0, 0, 0.08);
  --shadow-soft: 0 24px 70px rgba(7, 29, 22, 0.15);
  --shadow-strong: 0 35px 90px rgba(0, 0, 0, 0.28);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --container: 1180px;
  --font-title: "Arial Rounded MT Bold", "Avenir Next", "Segoe UI", system-ui, sans-serif;
  --font-body: Inter, "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

button,
a {
  font: inherit;
}

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

button {
  border: 0;
  cursor: pointer;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.section-dark {
  position: relative;
  isolation: isolate;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 12%, rgba(242, 161, 43, 0.16), transparent 27%),
    radial-gradient(circle at 84% 24%, rgba(63, 111, 86, 0.42), transparent 31%),
    linear-gradient(135deg, var(--green-950), var(--green-925) 48%, var(--green-800));
}

.section-light {
  background:
    radial-gradient(circle at 12% 20%, rgba(217, 130, 18, 0.08), transparent 25%),
    radial-gradient(circle at 82% 0%, rgba(11, 42, 31, 0.06), transparent 30%),
    linear-gradient(180deg, var(--cream), var(--cream-2));
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: rgba(7, 29, 22, 0.86);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 29, 22, 0.95);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.22);
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 176px;
}

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

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 7px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
}

.main-nav a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
  padding: 11px 15px;
  border-radius: 999px;
  transition: color 180ms ease, background 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.09);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 900;
  letter-spacing: -0.02em;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.btn-primary {
  color: #211306;
  background: linear-gradient(135deg, var(--amber-2), var(--amber));
  box-shadow: 0 18px 40px rgba(217, 130, 18, 0.34);
}

.btn-primary:hover {
  box-shadow: 0 22px 52px rgba(217, 130, 18, 0.44);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.11);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line-dark);
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  min-height: 100vh;
  padding: 142px 0 82px;
  display: flex;
  align-items: center;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(560px, 1.18fr);
  align-items: center;
  gap: 54px;
}

.hero-copy h1,
.section-heading h2,
.features-copy h2,
.pricing-copy h2,
.cta-card h2,
.footer-copy h2 {
  margin: 0;
  font-family: var(--font-title);
  letter-spacing: -0.07em;
  line-height: 0.94;
}

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(3.3rem, 6.1vw, 6.25rem);
}

.hero-copy p {
  max-width: 560px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.12rem;
  line-height: 1.68;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--amber-2);
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: currentColor;
  box-shadow: 0 0 0 7px rgba(242, 161, 43, 0.13);
}

.eyebrow-light {
  color: var(--amber);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  font-weight: 750;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.trust-row i {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: rgba(242, 161, 43, 0.16);
  border: 1px solid rgba(242, 161, 43, 0.44);
  position: relative;
}

.trust-row i::after {
  content: "";
  position: absolute;
  inset: 5px;
  border-radius: inherit;
  background: var(--amber-2);
}

.hero-glow {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  filter: blur(8px);
  opacity: 0.8;
}

.hero-glow-one {
  width: 300px;
  height: 300px;
  left: -80px;
  bottom: 70px;
  border-radius: 999px;
  background: rgba(242, 161, 43, 0.1);
}

.hero-glow-two {
  width: 420px;
  height: 420px;
  right: -150px;
  top: 80px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
}

.product-frame {
  overflow: hidden;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: var(--shadow-strong);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transform: perspective(1200px) rotateY(-5deg) rotateX(2deg);
}

.hero-frame {
  width: min(760px, 100%);
  justify-self: end;
}

.frame-topbar {
  min-height: 48px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.08));
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.frame-topbar strong {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 900;
}

.frame-topbar em {
  color: rgba(255, 255, 255, 0.56);
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 800;
}

.window-dots {
  display: flex;
  gap: 7px;
}

.window-dots span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.32);
}

.window-dots span:nth-child(1) {
  background: #F26B5B;
}

.window-dots span:nth-child(2) {
  background: #F2C94C;
}

.window-dots span:nth-child(3) {
  background: #2FC36B;
}

.screen-wrap {
  padding: 10px;
}

.screen-wrap img {
  width: 100%;
  aspect-ratio: 1427 / 778;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.benefits,
.screens,
.testimonial {
  padding: 102px 0;
}

.section-heading {
  max-width: 650px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading h2,
.features-copy h2,
.pricing-copy h2,
.footer-copy h2 {
  color: inherit;
  font-size: clamp(2.25rem, 4vw, 4.15rem);
}

.section-light .section-heading h2 {
  color: var(--text);
}

.section-heading p,
.features-copy > p,
.pricing-copy p,
.cta-card p,
.footer-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.section-dark .features-copy > p,
.section-dark .pricing-copy p,
.section-dark .footer-copy p {
  color: rgba(255, 255, 255, 0.72);
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 48px;
}

.benefit-card,
.quote-card,
.cta-card,
.price-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow-soft);
}

.benefit-card {
  padding: 30px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 78px rgba(7, 29, 22, 0.19);
}

.icon-box {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--amber);
  background: rgba(217, 130, 18, 0.11);
  border: 1px solid rgba(217, 130, 18, 0.18);
}

.icon-box svg {
  width: 25px;
  height: 25px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-card h3,
.resource-grid h3,
.price-card h3 {
  margin: 22px 0 0;
  font-size: 1.2rem;
  letter-spacing: -0.04em;
}

.benefit-card p,
.resource-grid p,
.price-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.62;
}

.features {
  padding: 110px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(500px, 1.1fr);
  gap: 58px;
  align-items: center;
}

.features-copy h2,
.pricing-copy h2,
.footer-copy h2 {
  max-width: 610px;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 34px;
}

.resource-grid article {
  padding: 22px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.105), rgba(255, 255, 255, 0.045));
}

.resource-grid h3 {
  margin: 0;
  color: var(--white);
}

.resource-grid p {
  color: rgba(255, 255, 255, 0.66);
}

.text-link {
  display: inline-flex;
  margin-top: 28px;
  color: var(--amber-2);
  font-weight: 950;
}

.dashboard-frame {
  transform: perspective(1200px) rotateY(4deg) rotateX(2deg);
}

.feature-glow {
  width: 330px;
  height: 330px;
  border-radius: 999px;
  left: 42%;
  bottom: 0;
  background: rgba(242, 161, 43, 0.08);
}

.screens-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(470px, 1.18fr);
  align-items: center;
  gap: 46px;
}

.screen-stack {
  display: grid;
  gap: 18px;
}

.mini-screen {
  display: grid;
  grid-template-columns: 210px 1fr;
  align-items: center;
  gap: 20px;
  padding: 14px;
  border: 1px solid var(--line-light);
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 52px rgba(7, 29, 22, 0.12);
}

.mini-screen.active {
  border-color: rgba(217, 130, 18, 0.36);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(247, 242, 234, 0.84));
}

.mini-screen img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: left top;
  border-radius: 17px;
  border: 1px solid var(--line-light);
}

.mini-screen strong {
  display: block;
  font-size: 1.06rem;
  letter-spacing: -0.035em;
}

.mini-screen span {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  line-height: 1.55;
}

.pricing {
  padding: 88px 0;
}

.compact-dark {
  background:
    radial-gradient(circle at 70% 20%, rgba(242, 161, 43, 0.13), transparent 25%),
    linear-gradient(135deg, var(--green-950), var(--green-925));
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  gap: 46px;
  align-items: center;
}

.price-card {
  padding: 30px;
  color: var(--text);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.94), rgba(247, 242, 234, 0.88));
  border-color: rgba(242, 161, 43, 0.28);
}

.price-card > span {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  color: #7a4306;
  background: rgba(217, 130, 18, 0.12);
  font-weight: 950;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.price-card h3 {
  font-size: 2rem;
  line-height: 1.03;
}

.price-card ul,
.footer-copy ul {
  list-style: none;
  padding: 0;
  margin: 24px 0;
  display: grid;
  gap: 12px;
}

.price-card li,
.footer-copy li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.price-card li::before,
.footer-copy li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  color: var(--amber);
  font-weight: 950;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(430px, 1.1fr);
  gap: 24px;
}

.quote-card,
.cta-card {
  padding: 34px;
}

.avatar {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green-800), var(--green-950));
  font-weight: 950;
  font-size: 1.5rem;
}

.stars {
  margin-top: 22px;
  color: var(--amber);
  letter-spacing: 0.08em;
}

blockquote {
  margin: 18px 0 22px;
  font-size: 1.45rem;
  line-height: 1.45;
  letter-spacing: -0.04em;
  font-weight: 850;
}

.quote-card > span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-weight: 700;
}

.cta-card {
  border-color: rgba(217, 130, 18, 0.3);
  background:
    radial-gradient(circle at 86% 12%, rgba(242, 161, 43, 0.16), transparent 28%),
    rgba(255, 255, 255, 0.82);
}

.cta-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: rgba(217, 130, 18, 0.11);
  border: 1px solid rgba(217, 130, 18, 0.18);
}

.cta-icon img {
  width: 34px;
  height: 40px;
  object-fit: contain;
}

.cta-card h2 {
  margin-top: 24px;
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  color: var(--text);
}

.cta-card .btn {
  margin-top: 26px;
}

.site-footer {
  padding: 82px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: end;
}

.footer-logo {
  width: 178px;
  margin-bottom: 24px;
}

.footer-copy p {
  max-width: 590px;
}

.footer-action {
  display: grid;
  justify-items: end;
  gap: 22px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.07);
  font-weight: 950;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 58px;
  padding-top: 22px;
  border-top: 1px solid var(--line-dark);
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
}

.footer-bottom nav {
  display: flex;
  gap: 18px;
}

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

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

@media (max-width: 1120px) {
  .hero-grid,
  .features-grid,
  .screens-grid {
    grid-template-columns: 1fr;
  }

  .hero-copy,
  .features-copy,
  .pricing-copy {
    max-width: 760px;
  }

  .hero-frame,
  .dashboard-frame {
    justify-self: stretch;
    transform: none;
  }

  .pricing-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-action {
    justify-items: start;
  }
}

@media (max-width: 920px) {
  .header-inner {
    min-height: 72px;
  }

  .brand {
    min-width: auto;
  }

  .brand img {
    width: 145px;
  }

  .header-cta,
  .main-nav {
    display: none;
  }

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

  .main-nav.is-open {
    position: fixed;
    top: 82px;
    left: 20px;
    right: 20px;
    z-index: 60;
    display: grid;
    gap: 8px;
    padding: 12px;
    border-radius: 24px;
    background: rgba(7, 29, 22, 0.97);
    box-shadow: var(--shadow-strong);
  }

  .main-nav.is-open a {
    width: 100%;
    padding: 15px 16px;
  }

  .hero {
    min-height: auto;
    padding: 122px 0 68px;
  }

  .benefits,
  .features,
  .screens,
  .testimonial {
    padding: 76px 0;
  }

  .benefit-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .product-frame {
    border-radius: 22px;
  }

  .frame-topbar {
    min-height: 44px;
    grid-template-columns: auto 1fr;
  }

  .frame-topbar em {
    display: none;
  }

  .screen-wrap {
    padding: 8px;
  }

  .screen-wrap img {
    border-radius: 15px;
  }

  .mini-screen {
    grid-template-columns: 1fr;
  }

  .mini-screen img {
    max-height: 240px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 15vw, 4rem);
  }

  .hero-copy p,
  .section-heading p,
  .features-copy > p,
  .pricing-copy p,
  .cta-card p,
  .footer-copy p {
    font-size: 1rem;
  }

  .hero-actions,
  .hero-actions .btn,
  .price-card .btn,
  .cta-card .btn,
  .footer-action .btn {
    width: 100%;
  }

  .trust-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .section-heading h2,
  .features-copy h2,
  .pricing-copy h2,
  .footer-copy h2 {
    font-size: clamp(2rem, 12vw, 3.1rem);
  }

  .benefit-card,
  .quote-card,
  .cta-card,
  .price-card {
    padding: 24px;
    border-radius: 22px;
  }

  .resource-grid article {
    padding: 19px;
  }

  blockquote {
    font-size: 1.24rem;
  }

  .price-card h3 {
    font-size: 1.7rem;
  }

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

  .footer-bottom nav {
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Footer redesign */
.site-footer {
  padding: 64px 0 24px;
}

.footer-top {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 28px;
  align-items: start;
}

.footer-brand,
.footer-benefits {
  padding-top: 8px;
}

.footer-brand p,
.footer-benefits li,
.footer-contact p,
.footer-bottom {
  color: rgba(255, 255, 255, 0.74);
}

.footer-benefits h3,
.footer-contact h3 {
  font-size: 1.35rem;
  margin-bottom: 18px;
  color: var(--white);
}

.footer-benefits ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-benefits li {
  position: relative;
  padding-left: 22px;
}

.footer-benefits li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--accent), var(--accent-strong));
  box-shadow: 0 0 0 5px rgba(217, 130, 18, 0.12);
  transform: translateY(-50%);
}

.footer-contact-card {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04));
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.18);
}

.footer-kicker {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.footer-contact-card .btn {
  margin-top: 22px;
  width: 100%;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  min-width: 120px;
  height: 44px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
}

.footer-bottom {
  margin-top: 42px;
  padding-top: 20px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.66);
}

@media (max-width: 1024px) {
  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-contact-card {
    max-width: 560px;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: 48px 0 22px;
  }

  .footer-contact-card {
    padding: 22px;
    border-radius: 22px;
  }

  .social-links a {
    width: 100%;
  }
}
