/**
 * Charcoal palette: #000000 → #2b2b2b → #555555
 * "Merging effect": dual radial glows from left & right into a light center
 * (same layout idea as teal + orange → white in the original template).
 */

:root {
  --charcoal-0: #000000;
  --charcoal-1: #2b2b2b;
  --charcoal-2: #555555;
  --merge-center: #f5f5f5;
  --merge-center-bright: #fafafa;

  /* Simple fades (non-merge UI) */
  --charcoal-fade-v: linear-gradient(180deg, var(--charcoal-0) 0%, var(--charcoal-1) 50%, var(--charcoal-2) 100%);
  --charcoal-fade-h: linear-gradient(90deg, var(--charcoal-0) 0%, var(--charcoal-1) 50%, var(--charcoal-2) 100%);
  --charcoal-fade-overlay: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.2) 0%,
    var(--charcoal-1) 52%,
    var(--charcoal-2) 100%
  );
  --charcoal-fade-soft: linear-gradient(165deg, rgba(0, 0, 0, 0.14) 0%, rgba(85, 85, 85, 0) 62%);

  /**
   * Dual-side merge: deep charcoal from the left, lighter gray from the right,
   * both dissolving into a neutral center (replaces side color glows).
   */
  --charcoal-merge-hero:
    radial-gradient(
      ellipse 72% 160% at -2% 46%,
      var(--charcoal-0) 0%,
      var(--charcoal-1) 24%,
      rgba(43, 43, 43, 0.38) 48%,
      rgba(245, 245, 245, 0) 72%
    ),
    radial-gradient(
      ellipse 72% 160% at 102% 46%,
      var(--charcoal-2) 0%,
      var(--charcoal-1) 28%,
      rgba(43, 43, 43, 0.35) 52%,
      rgba(245, 245, 245, 0) 72%
    ),
    radial-gradient(ellipse 90% 85% at 50% 58%, rgba(255, 255, 255, 0.65) 0%, var(--merge-center-bright) 42%, var(--merge-center) 100%);

  /* Slightly tighter merge for CTA card */
  --charcoal-merge-cta:
    radial-gradient(
      ellipse 78% 150% at -4% 50%,
      var(--charcoal-0) 0%,
      var(--charcoal-1) 22%,
      rgba(43, 43, 43, 0.32) 50%,
      rgba(250, 250, 250, 0) 70%
    ),
    radial-gradient(
      ellipse 78% 150% at 104% 50%,
      var(--charcoal-2) 0%,
      var(--charcoal-1) 26%,
      rgba(43, 43, 43, 0.3) 52%,
      rgba(250, 250, 250, 0) 70%
    ),
    radial-gradient(ellipse 88% 90% at 50% 55%, rgba(255, 255, 255, 0.55) 0%, var(--merge-center-bright) 48%, #eeeeee 100%);

}

.footer-overlay {
  background-image: var(--charcoal-fade-overlay);
}

/*
 * Hero strip sits under copy with margin-top: -145px (Webflow). Without z-index,
 * this block is painted AFTER .main-container and covers the CTA — looks like
 * the button “vanishes” after load when IX / paint settles.
 */
.hero-section > .main-container {
  position: relative;
  z-index: 2;
}

.hero-section > .hero-dashboard-gradient {
  position: relative;
  z-index: 1;
}

/* Hero strip behind dashboard: side glows + light merge in the middle */
.hero-dashboard-gradient {
  position: relative;
  background-color: var(--merge-center);
  background-image: var(--charcoal-merge-hero);
  background-position: 50%, 50%, 50%;
  background-repeat: no-repeat;
  background-size: 100% 100%, 100% 100%, 100% 100%;
}

/* Soft vertical feather — keep shorter so it doesn’t reach up into the CTA row */
.hero-dashboard-gradient::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 0;
  right: 0;
  top: 0;
  height: min(100px, 18vw);
  pointer-events: none;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.85) 40%,
    rgba(245, 245, 245, 0.28) 70%,
    rgba(245, 245, 245, 0) 100%
  );
}

.hero-dashboard-gradient > * {
  position: relative;
  z-index: 1;
}

.header-border {
  background-image: var(--charcoal-fade-h);
}

/*
 * Cards & pricing “active” shell: no merge / metallic gradient — flat surface,
 * light border, soft shadow + optional accent edge (showcase instead of gradient).
 */
.page-wrapper .feature-block {
  background-image: none !important;
  background-color: #ececef;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow:
    0 14px 44px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
}

.page-wrapper .feature-box._02,
.page-wrapper .feature-box._03 {
  background-image: none !important;
  background-color: #f2f2f5;
  border: 1px solid rgba(12, 12, 12, 0.07);
  box-shadow:
    0 10px 36px rgba(0, 0, 0, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.page-wrapper .pricing-box-block.active {
  background-image: none !important;
  background-color: #f0f0f4;
  border: 1px solid rgba(12, 12, 12, 0.09);
  border-left: 3px solid var(--charcoal-1);
  box-shadow:
    0 18px 50px rgba(0, 0, 0, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.88);
}

.chart-block-first {
  background-image: var(--charcoal-fade-soft);
}

.chart-block-socend {
  background-image: var(--charcoal-fade-soft);
}

.benefits-icon-block {
  background-image: var(--charcoal-fade-v);
}

.integration-icon-box {
  background-image: var(--charcoal-fade-v);
}

.cta-wrapper {
  position: relative;
  background-image: none !important;
  background-color: #ebebef;
  border: 1px solid rgba(12, 12, 12, 0.08);
  box-shadow:
    0 16px 48px rgba(0, 0, 0, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.82);
}

/* ── Charcoal theme: buttons, accent text, chips (replaces orange #ff6500) ── */

.page-wrapper {
  --_color---theme-color: #2b2b2b;
  --_color---secondary-color: #555555;
}

/* Dark footer: keep hovers legible on near-black */
/* New premium footer styles are located at the end of this file */

/* Footer mega wordmark: CSS gradient text (replaces Zyforia.webp) */
.footer-section .footer-large-logo {
  width: 100%;
  max-width: 100%;
  margin-top: 10px;
  overflow: hidden;
  text-align: center;
}

.footer-section .footer-brand-wordmark {
  margin: 0;
  padding: 0.04em 0 0.06em;
  display: block;
  width: 100%;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-weight: 700;
  font-size: clamp(3.25rem, 15.5vw, 11.5rem);
  line-height: 0.92;
  letter-spacing: -0.045em;
  text-align: center;
  -webkit-font-smoothing: antialiased;
  background-image: linear-gradient(
    92deg,
    #c9a06c 0%,
    #8a7355 18%,
    #4a4742 42%,
    #353c3a 58%,
    #2a6f64 78%,
    #1a5c52 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.footer-section .footer-brand-wordmark--long {
  font-size: clamp(2.5rem, 11vw, 9rem);
  letter-spacing: -0.04em;
}

/* Headline accent spans: gradient text */
.page-wrapper .hilight-text {
  background-image: linear-gradient(92deg, var(--charcoal-0) 0%, var(--charcoal-1) 42%, var(--charcoal-2) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Primary CTA pill: charcoal gradient + light label */
.page-wrapper .primary-button {
  background-color: var(--charcoal-1);
  background-image: linear-gradient(118deg, var(--charcoal-0) 0%, var(--charcoal-1) 40%, var(--charcoal-2) 100%);
  color: #f4f4f4;
  border: 1px solid rgba(0, 0, 0, 0.22);
}

.page-wrapper .primary-button:hover {
  background-image: linear-gradient(118deg, var(--charcoal-1) 0%, #3d3d3d 48%, #6a6a6a 100%);
  color: #ffffff;
}

.page-wrapper .primary-button .button-text,
.page-wrapper .primary-button .button-text.top,
.page-wrapper .primary-button .button-text.bottom {
  color: inherit;
}

/* Webflow IX can reset scroll-in state after init — keep hero CTA + copy visible. */
.hero-section .hero-subtitle-block,
.hero-section .hero-title,
.hero-section .max570,
.hero-section .hero-pricing-tagline,
.hero-section .hero-dashboard-block {
  opacity: 1 !important;
}

/* Hero pricing line: marker-style accents (same font family as body — Inter Tight) */
.page-wrapper .hero-pricing-tagline {
  font-family: inherit;
  font-size: clamp(1rem, 2.6vw, 1.125rem);
  line-height: 1.65;
  letter-spacing: -0.012em;
  color: #1f1f1f;
  margin: 1rem auto 0;
  text-align: center;
}

.page-wrapper .hero-pricing-tagline__price {
  position: relative;
  display: inline-block;
  font-weight: 600;
  color: #111;
  padding-bottom: 0.18em;
}

/* Hand-drawn feel: wavy mustard underline (inspired by marker emphasis) */
.page-wrapper .hero-pricing-tagline__price::after {
  content: "";
  position: absolute;
  left: -0.06em;
  right: -0.06em;
  bottom: 0;
  height: 0.55em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 180 14' preserveAspectRatio='none'%3E%3Cpath d='M2 9 Q28 4 52 9 T104 8 T176 9' fill='none' stroke='%23D4A017' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M4 11 Q32 7 58 11 T108 10 T178 11' fill='none' stroke='%23E8C547' stroke-width='1.6' stroke-linecap='round' opacity='0.85'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: 100% 100%;
  pointer-events: none;
}

/* Highlighter sweep on trial copy (coral / salmon) — works when text wraps */
.page-wrapper .hero-pricing-tagline__trial {
  font-weight: 600;
  color: #141414;
  padding: 0 0.06em;
  background-image: linear-gradient(
    102deg,
    rgba(255, 154, 148, 0.52) 0%,
    rgba(255, 196, 168, 0.78) 45%,
    rgba(255, 220, 188, 0.62) 100%
  );
  background-size: 100% 0.58em;
  background-position: 0 88%;
  background-repeat: no-repeat;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* Fix logo dimensions for the new PNG asset */
.logo {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}

.mobile-logo {
  height: 36px;
  width: auto;
  object-fit: contain;
}

.footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
}

.main-logo {
  padding-left: 0;
  display: flex;
  align-items: center;
}


.hero-section .hero-button {
  opacity: 1 !important;
  transform: none !important;
  visibility: visible !important;
}

.hero-section .hero-button .primary-button {
  opacity: 1 !important;
  visibility: visible !important;
}

/* Blog / small round icon buttons */
.page-wrapper .only-icon-button-block {
  background-color: var(--charcoal-1);
  background-image: linear-gradient(135deg, var(--charcoal-0) 0%, var(--charcoal-1) 45%, var(--charcoal-2) 100%);
}

.page-wrapper .only-icon-button-block-2 {
  background-color: var(--charcoal-1);
  background-image: linear-gradient(135deg, var(--charcoal-0) 0%, var(--charcoal-2) 100%);
}

/* Hero “New” chip */
.page-wrapper .body-ss.extra-style {
  background-color: rgba(43, 43, 43, 0.14);
  color: #141414;
}

/* Section eyebrow pills */
.page-wrapper .subtitle-block {
  background-color: rgba(0, 0, 0, 0.055);
  border: 1px solid rgba(43, 43, 43, 0.22);
}

.page-wrapper .subtitle-text {
  color: var(--charcoal-1);
}

/* Feature card icon wells */
.page-wrapper .feature-icon-box {
  background-color: rgba(43, 43, 43, 0.08);
  border: 1px solid rgba(43, 43, 43, 0.22);
}

/* “Real-Time AI Collaboration” — light icon tile + CSS chat (replaces PNG stack) */
.page-wrapper .feature-icon-box.feature-icon-box--collab {
  background-color: #f0f0f2;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
}

.page-wrapper .feature-collab-header-icon {
  display: block;
}

.page-wrapper .feature-collab-chat {
  width: 100%;
  display: flex;
}

.page-wrapper .feature-card-box.feature-card-box--collab-chat {
  padding: 12px 14px;
}

.page-wrapper .feature-collab-chat__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 11px;
  width: 100%;
  padding: 12px 10px;
  border-radius: 10px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.page-wrapper .feature-collab-chat__row {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  width: 100%;
}

.page-wrapper .feature-collab-chat__row--agent {
  justify-content: flex-start;
}

.page-wrapper .feature-collab-chat__row--user {
  justify-content: flex-end;
}

.page-wrapper .feature-collab-chat__avatar {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-wrapper .feature-collab-chat__avatar--agent {
  background: transparent !important;
  color: #ffffff !important;
  box-shadow: none !important;
}

.page-wrapper .feature-collab-chat__avatar--user {
  background: #3d2818;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.page-wrapper .feature-collab-chat__user-photo,
.page-wrapper .feature-collab-chat__agent-photo {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.page-wrapper .feature-collab-chat__bolt {
  display: block;
}

.page-wrapper .feature-collab-chat__bubble {
  margin: 0;
  max-width: min(80%, 280px);
  padding: 8px 11px;
  border-radius: 10px;
  background: #f1f1f4;
  color: #242428;
  font-family: "Inter Tight", Inter, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.45;
  letter-spacing: -0.01em;
  text-align: left;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.page-wrapper .feature-collab-chat__row--user .feature-collab-chat__bubble {
  background: #ececf1;
}

@media screen and (max-width: 479px) {
  .page-wrapper .feature-collab-chat__bubble {
    font-size: 12px;
    max-width: 84%;
    padding: 7px 10px;
  }

  .page-wrapper .feature-collab-chat__avatar {
    width: 32px;
    height: 32px;
  }
}

.page-wrapper .blog-box:hover {
  border-color: rgba(85, 85, 85, 0.65);
}

/* Pricing table: replace Webflow peach/teal header image with charcoal band */
.page-wrapper .pricing-table-header {
  background-color: var(--charcoal-1);
  background-image: linear-gradient(
    92deg,
    var(--charcoal-0) 0%,
    var(--charcoal-1) 32%,
    #3a3a3a 50%,
    var(--charcoal-1) 68%,
    var(--charcoal-2) 100%
  );
  background-position: 0 0;
  background-size: auto;
  background-repeat: no-repeat;
}

.page-wrapper .pricing-table-header .heading-style-h6 {
  color: #f4f4f4;
}

/*
 * Mega-menu used left: -213% (Webflow) to visually center a wide multi-column panel.
 * The "More" menu is a single column — keep the panel anchored under the trigger.
 */
@media screen and (min-width: 992px) {
  .page-wrapper .header-section .dropdown-menu.w-dropdown .dropdown-list.w-dropdown-list {
    left: 0 !important;
    right: auto;
    min-width: 240px;
  }
}

/*
 * Hero dashboard strip: desktop merge uses a bright center radial that reads as a
 * harsh vertical “blade” on narrow viewports. On tablet/phone use a softer top glow
 * + gentle diagonal wash instead.
 */
@media screen and (max-width: 991px) {
  .hero-dashboard-gradient {
    background-color: #e9e9ed;
    background-image:
      radial-gradient(ellipse 125% 65% at 50% 0%, rgba(255, 255, 255, 0.42) 0%, rgba(255, 255, 255, 0) 58%),
      linear-gradient(168deg, #f3f3f5 0%, #e8e8ec 38%, #dbdbdf 72%, #d0d0d6 100%);
    background-size: 100% 48%, 100% 100%;
    background-position: center top, center;
    background-repeat: no-repeat;
  }

  .hero-dashboard-gradient::before {
    height: min(72px, 16vw);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(248, 248, 250, 0.45) 50%,
      rgba(240, 240, 244, 0) 100%
    );
  }
}

@media screen and (max-width: 479px) {
  .footer-overlay {
    background-image: linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.12) 0%,
      var(--charcoal-1) 55%,
      var(--charcoal-2) 100%
    );
  }

  .hero-dashboard-gradient::before {
    height: min(56px, 18vw);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.82) 0%,
      rgba(248, 248, 250, 0.32) 58%,
      rgba(236, 236, 240, 0) 100%
    );
  }
}

/* Billing & Taxing Custom Card */
.billing-card {
  width: 100%;
  max-width: 648px;
  background: #ffffff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  font-family: inherit;
  color: #141414;
  margin: 0 auto;
}

.billing-card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.billing-card-id {
  font-size: 14px;
  font-weight: 600;
  color: #555555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.billing-card-status {
  background: #e6f7ed;
  color: #27ae60;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

.billing-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 15px;
}

.billing-item.tax {
  color: #888888;
  font-size: 14px;
}

.billing-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 20px 0;
}

.billing-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.billing-total-label {
  font-weight: 700;
  font-size: 16px;
}

.billing-total-amount {
  font-size: 24px;
  font-weight: 800;
  color: #000000;
}

.billing-card-footer {
  margin-top: 24px;
  font-size: 12px;
  color: #aaaaaa;
  text-align: center;
}

/* Integration Chart Adjustments */
.page-wrapper .chart-icon-middle {
  width: 72px;
  height: 72px;
}

.icon-bubble {
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
  width: 42px;
  height: 42px;
  z-index: 2;
}

.benefits-cta-container {
  display: flex;
  justify-content: center;
  margin-top: 60px;
  width: 100%;
}

.premium-cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #111111;
  color: #ffffff;
  padding: 16px 32px;
  border-radius: 100px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.premium-cta-button:hover {
  background: #ffffff;
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  border-color: #ffffff;
}

.pricing-all-features-box {
  display: flex;
  justify-content: flex-start;
  padding: 20px 0 0 0;
  margin-top: 10px;
  width: 100%;
}

.pricing-all-features-link {
  color: #ff6500;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.pricing-all-features-link:hover {
  color: #111111;
  transform: translateX(4px);
}

.footer-section {
  background-color: #000000;
  padding: 80px 0 40px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.footer-section .main-container {
  position: relative;
  z-index: 2;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-logo-link {
  display: inline-block;
}

.footer-tagline {
  font-size: 16px;
  line-height: 1.6;
  color: #a3a3a3;
  max-width: 320px;
  margin: 0;
}

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

.footer-social-item {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.footer-social-item:hover {
  background: #ffffff;
  color: #000000;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
}

.footer-nav-title {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  margin-bottom: 24px;
}

.footer-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-nav-list a {
  font-size: 15px;
  color: #a3a3a3;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-nav-list a:hover,
.footer-nav-list a.active {
  color: #ffffff;
}

.footer-cta-col {
  display: flex;
  flex-direction: column;
}

.footer-cta-text {
  font-size: 14px;
  color: #a3a3a3;
  margin-bottom: 20px;
}

.footer-mock-input {
  display: flex;
  gap: 8px;
  background: rgba(255, 255, 255, 0.05);
  padding: 6px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-mock-input input {
  background: transparent;
  border: none;
  color: #ffffff;
  padding: 8px 12px;
  flex: 1;
  font-size: 14px;
  outline: none;
}

.footer-mock-input input::placeholder {
  color: #525252;
}

.footer-mock-input button {
  background: #ffffff;
  color: #000000;
  border: none;
  padding: 8px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.footer-mock-input button:hover {
  opacity: 0.9;
}

.footer-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: 30px;
}

.footer-bottom-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 13px;
  color: #525252;
}

.footer-legal a {
  color: #525252;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-back-to-top {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #a3a3a3;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: color 0.2s ease;
}

.footer-back-to-top:hover {
  color: #ffffff;
}

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

@media (max-width: 479px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom-flex {
    flex-direction: column-reverse;
    gap: 24px;
    align-items: flex-start;
  }
}
