/* =========================================================================
   CSS VARIABLES & DESIGN TOKENS
   ========================================================================= */
:root {
  --green: #00E785;
  --green-dark: #00c471;
  --green-text: #00A65F;
  --dark: #1A1A1A;
  --dark-mid: #2D2D2D;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --text-light: #9CA3AF;
  --bg: #ffffff;
  --bg-light: #f0f2f7;
  --bg-hero: #f8f9ff;
  --border: #E5E7EB;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 32px rgba(0,0,0,0.12);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.22s ease;
}

/* =========================================================================
   RESET
   ========================================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }

/* =========================================================================
   LAYOUT
   ========================================================================= */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }
section { overflow: hidden; }

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 10px 20px; border-radius: 40px; font-family: var(--font);
  font-weight: 600; font-size: 0.9375rem; cursor: pointer; border: 2px solid transparent;
  transition: all var(--transition); white-space: nowrap;
}
.btn--primary { background: var(--green); color: var(--dark); border-color: var(--green); }
.btn--primary:hover { background: var(--green-dark); border-color: var(--green-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,231,133,0.3); }
.btn--outline { background: transparent; color: var(--dark); border-color: var(--dark); }
.btn--outline:hover { background: var(--dark); color: white; transform: translateY(-2px); }
.btn--outline-dark { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 12px 28px; font-size: 1rem; }
.btn--outline-dark:hover { background: var(--dark); color: white; }
.btn--support { background: transparent; color: var(--dark); border: 2px solid var(--dark); padding: 12px 28px; font-size: 1rem; }
.btn--support:hover { background: var(--dark); color: white; }
.btn--large { padding: 14px 28px; font-size: 1rem; }

/* =========================================================================
   NAVBAR
   ========================================================================= */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: white; border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}
.navbar--scrolled { box-shadow: 0 2px 12px rgba(0,0,0,0.08); }
.navbar__container { display: flex; align-items: center; justify-content: space-between; height: 68px; }

.navbar__logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.5rem; color: var(--dark); }
.navbar__logo-icon { width: 36px; height: 36px; flex-shrink: 0; }
.navbar__logo-text { font-size: 1.375rem; font-weight: 800; }

.navbar__toggle {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 26px; height: 18px; background: transparent; border: none; cursor: pointer;
}
.navbar__toggle-bar { height: 2px; background: var(--dark); border-radius: 4px; transition: all var(--transition); }
.navbar__toggle--active .navbar__toggle-bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar__toggle--active .navbar__toggle-bar:nth-child(2) { opacity: 0; }
.navbar__toggle--active .navbar__toggle-bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.navbar__nav { display: none; }
.navbar__nav--open { display: flex; }
.navbar__menu { display: flex; flex-direction: column; gap: 4px; }
.navbar__link { display: block; padding: 10px 16px; color: var(--text); font-weight: 500; font-size: 0.9375rem; border-radius: 8px; transition: background var(--transition); }
.navbar__link:hover { background: var(--bg-light); color: var(--green-text); }
.navbar__actions { display: flex; flex-direction: column; gap: 10px; padding: 16px 0 0; }

/* Mobile dropdown panel */
@media (max-width: 1023px) {
  .navbar__nav { position: absolute; top: 68px; left: 0; right: 0; background: white; padding: 20px 24px; flex-direction: column; gap: 0; border-bottom: 1px solid var(--border); box-shadow: var(--shadow-md); }
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  padding: 130px 0 80px;
  background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 100%);
  text-align: center;
}
.hero__body { max-width: 800px; margin: 0 auto; }

.hero__title {
  font-size: 3rem; font-weight: 900; line-height: 1.1;
  letter-spacing: -0.03em; color: var(--dark); margin-bottom: 28px;
}
.hero__mark {
  background: var(--green); color: var(--dark);
  border-radius: 8px; padding: 0 6px;
  font-style: normal;
  display: inline-block;
  position: relative;
}
.hero__mark--inline { }

.hero__subtitle { font-size: 1.125rem; color: var(--text-muted); margin-bottom: 32px; max-width: 640px; margin-left: auto; margin-right: auto; }

.hero__trust-pills { display: flex; justify-content: center; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__pill {
  display: inline-flex; align-items: center; gap: 6px;
  background: white; border: 1px solid var(--border);
  border-radius: 40px; padding: 8px 18px;
  font-size: 0.875rem; font-weight: 500; color: var(--text);
  box-shadow: var(--shadow-sm);
}

.hero__actions { display: flex; justify-content: center; align-items: center; gap: 14px; flex-wrap: wrap; }

/* =========================================================================
   FEATURE TABS
   ========================================================================= */
.tabs-section { padding: 40px 0 80px; background: linear-gradient(180deg, #fff 0%, #f0f2f7 100%); }
.tabs-section__nav { display: flex; justify-content: center; gap: 0; margin-bottom: 48px; border-bottom: 2px solid var(--border); }
.tabs-section__tab {
  background: transparent; border: none; padding: 14px 36px; font-family: var(--font);
  font-size: 1.0625rem; font-weight: 600; color: var(--text-muted); cursor: pointer;
  position: relative; transition: color var(--transition);
}
.tabs-section__tab::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 3px;
  background: var(--dark); border-radius: 2px 2px 0 0; transform: scaleX(0); transition: transform var(--transition);
}
.tabs-section__tab--active { color: var(--dark); }
.tabs-section__tab--active::after { transform: scaleX(1); }

.tabs-section__panel { display: none; }
.tabs-section__panel--active { display: block; }

/* Dashboard Mockup */
.dash-mockup {
  position: relative; background: white; border: 1px solid var(--border);
  border-radius: 16px; box-shadow: var(--shadow-lg); overflow: hidden;
  display: flex; min-height: 420px; max-width: 900px; margin: 0 auto;
}
.dash-mockup__sidebar {
  width: 180px; background: #f8f9fa; border-right: 1px solid var(--border);
  padding: 20px 12px; display: flex; flex-direction: column; gap: 4px;
  flex-shrink: 0;
}
.dash-mockup__nav-item { padding: 8px 12px; border-radius: 8px; font-size: 0.8125rem; font-weight: 500; color: var(--text-muted); cursor: pointer; }
.dash-mockup__nav-item--active { background: #e8f5e9; color: var(--green-text); font-weight: 600; }

.dash-mockup__main { flex: 1; display: flex; flex-direction: column; overflow: hidden; }
.dash-mockup__chat-header { padding: 14px 20px; border-bottom: 1px solid var(--border); font-weight: 600; font-size: 0.9375rem; }
.dash-mockup__messages { flex: 1; padding: 20px; display: flex; flex-direction: column; gap: 12px; background: #f5f5f5; }
.dash-mockup__msg { max-width: 70%; padding: 10px 14px; border-radius: 12px; font-size: 0.875rem; line-height: 1.5; }
.dash-mockup__msg--incoming { background: white; border-bottom-left-radius: 4px; align-self: flex-start; }
.dash-mockup__msg--outgoing { background: #d9fdd3; border-bottom-right-radius: 4px; align-self: flex-end; }
.dash-mockup__btn-group { display: flex; gap: 8px; flex-wrap: wrap; }
.dash-mockup__quick-reply { background: #007AFF; color: white; border-radius: 20px; padding: 4px 12px; font-size: 0.8125rem; font-weight: 500; }

.dash-mockup__phone {
  position: absolute; bottom: 20px; left: 120px; width: 200px;
  background: white; border-radius: 24px; padding: 16px; box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  font-size: 0.8125rem;
}
.dash-mockup__phone-header { font-weight: 700; margin-bottom: 12px; color: var(--dark); }
.dash-mockup__phone-msg { background: #f0f0f0; border-radius: 12px; padding: 8px; margin-bottom: 6px; font-size: 0.75rem; }
.dash-mockup__phone-reply { background: #d9fdd3; border-radius: 12px; padding: 8px; margin-bottom: 8px; font-size: 0.75rem; }
.dash-mockup__phone-btns { display: flex; flex-direction: column; gap: 4px; }
.dash-mockup__phone-btns span { background: #007AFF; color: white; border-radius: 12px; padding: 4px 8px; font-size: 0.6875rem; text-align: center; }

/* =========================================================================
   TRUST BAR
   ========================================================================= */
.trust-bar { padding: 72px 0; background: var(--bg-light); }
.trust-bar__title { font-size: 2.25rem; font-weight: 800; text-align: center; color: var(--dark); margin-bottom: 48px; line-height: 1.2; }
.trust-bar__logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 40px; }
.trust-bar__logo-text { font-size: 1.5rem; font-weight: 800; }
.trust-bar__logo-text--amazon { color: #FF9900; font-size: 1.75rem; }
.trust-bar__logo-text--vedantu { color: #FF6B35; font-size: 1.625rem; font-style: italic; }
.trust-bar__logo-text--welspun { color: #003087; font-size: 1.375rem; letter-spacing: 0.08em; }
.trust-bar__logo-text--heritage { color: #007734; font-size: 1.5rem; }
.trust-bar__logo-text--habuild { color: #333; }

/* =========================================================================
   WHATSAPP CORE
   ========================================================================= */
.whatsapp-core { padding: 80px 0; background: var(--bg-light); border-top: 1px solid var(--border); }
.whatsapp-core__container { display: flex; align-items: center; gap: 60px; }
.whatsapp-core__content { flex: 1; }
.whatsapp-core__title { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 20px; line-height: 1.2; }
.whatsapp-core__text { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; }
.whatsapp-core__icons { display: flex; gap: 20px; align-items: center; }
.channel-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.875rem; }
.channel-icon--rcs { background: #1e87f0; color: white; }
.channel-icon--instagram, .channel-icon--facebook, .channel-icon--whatsapp { background: transparent; }

/* =========================================================================
   WATI AI
   ========================================================================= */
.wati-ai { padding: 100px 0; background: var(--bg-light); }
.wati-ai__container { text-align: center; }
.wati-ai__label { font-size: 0.875rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: #60a5fa; margin-bottom: 16px; }
.wati-ai__title { font-size: 2.5rem; font-weight: 900; color: var(--dark); margin-bottom: 20px; letter-spacing: -0.02em; }
.wati-ai__subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 600px; margin: 0 auto 60px; }

.wati-ai__agents { display: flex; gap: 24px; flex-wrap: wrap; justify-content: center; }

/* Agent Cards */
.agent-card {
  flex: 1; min-width: 280px; max-width: 520px;
  border-radius: 24px; padding: 28px; text-align: left;
  border: 2px solid transparent;
}
.agent-card--pink { background: #fdf0fb; border-color: #f0abf0; }
.agent-card--blue { background: #eff8ff; border-color: #93c5fd; }

.agent-card__stat { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding: 12px 20px; border-radius: 50px; background: white; border: 2px solid currentColor; width: fit-content; }
.agent-card--pink .agent-card__stat { border-color: #f0abf0; }
.agent-card--blue .agent-card__stat { border-color: #93c5fd; }
.agent-card__stat-num { font-size: 1.75rem; font-weight: 900; }
.agent-card__stat-num--pink { color: #e879f9; }
.agent-card__stat-num--blue { color: #38bdf8; }
.agent-card__stat-label { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); }

.agent-card__chat { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.agent-card__bubble { padding: 10px 14px; border-radius: 14px; font-size: 0.875rem; line-height: 1.5; }
.agent-card__bubble--user { background: white; border-bottom-left-radius: 4px; align-self: flex-start; box-shadow: var(--shadow-sm); max-width: 85%; }
.agent-card__bubble--bot { background: #dbeafe; border-bottom-right-radius: 4px; align-self: flex-end; max-width: 85%; }
.agent-card__bubble--user-green { background: #dcfce7; border-bottom-left-radius: 4px; align-self: flex-start; max-width: 85%; }
.agent-card__bubble--bot-white { background: white; border-bottom-right-radius: 4px; align-self: flex-end; box-shadow: var(--shadow-sm); max-width: 85%; }

.agent-card__lead-card { background: white; border-radius: 12px; padding: 14px; box-shadow: var(--shadow-sm); }
.agent-card__lead-name { font-weight: 700; font-size: 0.875rem; margin-bottom: 4px; }
.agent-card__lead-score { font-size: 0.8125rem; color: var(--text-muted); margin-bottom: 8px; }
.agent-card__lead-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.agent-card__lead-tags span { background: var(--dark); color: white; border-radius: 20px; padding: 2px 8px; font-size: 0.6875rem; font-weight: 500; }

.agent-card__title { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.agent-card__desc { font-size: 0.9375rem; color: var(--text-muted); }

/* =========================================================================
   BUYER JOURNEY
   ========================================================================= */
.buyer-journey { padding: 100px 0; background: var(--bg-light); }
.buyer-journey__container { display: flex; align-items: center; gap: 64px; }
.buyer-journey__content { flex: 1; }
.buyer-journey__title { font-size: 2rem; font-weight: 800; color: var(--dark); margin-bottom: 32px; line-height: 1.2; }

.buyer-journey__list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 40px; }
.buyer-journey__item { display: flex; gap: 14px; font-size: 1rem; color: var(--text); line-height: 1.6; }
.buyer-journey__check { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; border: 2px solid #60a5fa; color: #60a5fa; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; font-weight: 800; margin-top: 2px; }

.buyer-journey__stats { display: flex; align-items: center; gap: 0; margin-bottom: 36px; }
.buyer-journey__stat { padding: 20px 32px; text-align: center; }
.buyer-journey__stat:first-child { padding-left: 0; }
.buyer-journey__stat-num { display: block; font-size: 2.25rem; font-weight: 900; color: #60a5fa; letter-spacing: -0.02em; }
.buyer-journey__stat-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }
.buyer-journey__stat-divider { width: 1px; height: 60px; background: var(--border); }

/* Visual */
.buyer-journey__visual { flex: 1; display: flex; justify-content: center; }
.buyer-journey__circle {
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, #dbeafe 0%, #bfdbfe 40%, #93c5fd 100%);
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  padding: 30px; position: relative;
}
.buyer-journey__chat-bubble { padding: 10px 14px; border-radius: 14px; font-size: 0.8125rem; line-height: 1.5; margin: 6px 0; max-width: 85%; }
.buyer-journey__chat-bubble--user { background: #d9fdd3; align-self: flex-end; border-bottom-right-radius: 4px; }
.buyer-journey__chat-bubble--bot { background: white; align-self: flex-start; border-bottom-left-radius: 4px; box-shadow: var(--shadow-sm); }

.buyer-journey__ad-badges { position: absolute; top: 20px; right: -20px; display: flex; gap: 10px; }
.ad-badge { width: 40px; height: 40px; border-radius: 10px; background: white; box-shadow: var(--shadow-md); display: flex; align-items: center; justify-content: center; }

/* =========================================================================
   SUPPORT SECTION
   ========================================================================= */
.support-section { padding: 80px 0; background: #faf9f0; }
.support-section__container { text-align: center; }
.support-section__title { font-size: 2.25rem; font-weight: 800; color: var(--dark); margin-bottom: 12px; }
.support-section__subtitle { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 48px; }
.support-section__stats { display: flex; justify-content: center; align-items: center; gap: 0; margin-bottom: 40px; }
.support-stat { padding: 20px 48px; text-align: center; }
.support-section__stat-divider { width: 1px; height: 60px; background: #d4c9a0; }
.support-stat__num { display: block; font-size: 2.5rem; font-weight: 900; color: #c9a227; margin-bottom: 6px; }
.support-stat__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em; color: var(--text-muted); text-transform: uppercase; }

/* =========================================================================
   INTEGRATIONS
   ========================================================================= */
.integrations { padding: 100px 0; background: white; }
.integrations__container { text-align: center; }
.integrations__title { font-size: 2.5rem; font-weight: 900; color: var(--dark); margin-bottom: 16px; letter-spacing: -0.02em; }
.integrations__subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 560px; margin: 0 auto 56px; }
.integrations__grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.integration-logo {
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  padding: 24px 20px; border: 1px solid var(--border); border-radius: 16px;
  min-width: 100px; font-size: 0.875rem; font-weight: 600; color: var(--text-muted);
  transition: all var(--transition); cursor: pointer;
}
.integration-logo:hover { border-color: var(--green); box-shadow: 0 4px 16px rgba(0,231,133,0.15); transform: translateY(-4px); }

/* =========================================================================
   INFRASTRUCTURE
   ========================================================================= */
.infra-section { padding: 72px 0; background: var(--dark); color: white; }
.infra-section__container { display: flex; flex-direction: column; gap: 40px; align-items: center; }
.infra-section__stats { display: flex; flex-wrap: wrap; justify-content: center; gap: 48px; }
.infra-stat { text-align: center; }
.infra-stat__num { display: block; font-size: 2.5rem; font-weight: 900; color: var(--green); margin-bottom: 6px; }
.infra-stat__label { font-size: 0.9375rem; color: rgba(255,255,255,0.7); }
.infra-section__badges { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.compliance-badge { padding: 8px 20px; border: 1px solid rgba(255,255,255,0.2); border-radius: 40px; font-size: 0.875rem; font-weight: 600; color: rgba(255,255,255,0.8); }

/* =========================================================================
   PRICING
   ========================================================================= */
.pricing { padding: 100px 0; background: var(--bg-light); }
.pricing__header { text-align: center; margin-bottom: 24px; }
.pricing__title { font-size: 2.25rem; font-weight: 900; color: var(--dark); margin-bottom: 12px; letter-spacing: -0.02em; }
.pricing__title-icon { color: var(--green); }
.pricing__subtitle { font-size: 1.25rem; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
.pricing__note { font-size: 0.9375rem; color: var(--text-muted); }
.pricing__note a { color: var(--green-text); font-weight: 600; text-decoration: underline; }

.pricing__toggle { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; background: var(--border); border-radius: 40px; width: fit-content; margin: 0 auto 48px; padding: 4px; }
.pricing__toggle-btn { padding: 8px 24px; border: none; border-radius: 40px; font-family: var(--font); font-size: 0.9375rem; font-weight: 600; cursor: pointer; background: transparent; color: var(--text-muted); transition: all var(--transition); }
.pricing__toggle-btn--active { background: var(--green); color: var(--dark); }

.pricing__cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; }

.pricing-card { padding: 32px; border-radius: 20px; position: relative; border: 2px solid transparent; transition: all var(--transition); }
.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.pricing-card--growth { background: #dbeafe; border-color: #93c5fd; }
.pricing-card--pro { background: #d1fae5; border-color: var(--green); }
.pricing-card--business { background: #fce7f3; border-color: #f9a8d4; }

.pricing-card__badge { position: absolute; top: -14px; right: 28px; background: #fef08a; color: #713f12; border: 2px solid #fbbf24; border-radius: 20px; padding: 4px 14px; font-size: 0.8125rem; font-weight: 700; }
.pricing-card__name { font-size: 1.5rem; font-weight: 800; color: var(--dark); margin-bottom: 8px; }
.pricing-card__desc { font-size: 0.9375rem; color: var(--text-muted); margin-bottom: 24px; line-height: 1.5; min-height: 60px; }
.pricing-card__price { display: flex; align-items: flex-end; gap: 4px; margin-bottom: 24px; }
.pricing-card__currency { font-size: 1.5rem; font-weight: 700; color: var(--dark); padding-bottom: 4px; }
.pricing-card__amount { font-size: 3rem; font-weight: 900; color: var(--dark); line-height: 1; }
.pricing-card__period { font-size: 1rem; color: var(--text-muted); padding-bottom: 6px; }
.pricing-card__btn { width: 100%; margin-bottom: 24px; border-radius: 12px !important; }
.pricing-card__features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.pricing-card__features li { font-size: 0.9rem; color: var(--text); line-height: 1.5; padding-left: 4px; }
.pricing-card__features li::before { content: '• '; color: var(--green-text); font-weight: 800; }
.pricing-card__usage { border-top: 1px solid rgba(0,0,0,0.1); padding-top: 16px; }
.pricing-card__usage p { font-weight: 700; font-size: 0.9375rem; margin-bottom: 8px; }
.pricing-card__usage li { font-size: 0.875rem; color: var(--text-muted); padding-left: 4px; padding-bottom: 4px; }
.pricing-card__usage li::before { content: '• '; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer { padding: 72px 0 32px; background: #0f0f0f; color: rgba(255,255,255,0.8); }
.footer__grid { display: grid; grid-template-columns: 1fr; gap: 40px; margin-bottom: 56px; }
.footer__logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer__logo-icon { width: 36px; height: 36px; }
.footer__logo-text { font-size: 1.375rem; font-weight: 800; color: white; }
.footer__description { font-size: 0.9375rem; color: rgba(255,255,255,0.5); line-height: 1.6; max-width: 260px; margin-bottom: 24px; }
.footer__socials { display: flex; gap: 12px; }
.footer__social { width: 36px; height: 36px; border: 1px solid rgba(255,255,255,0.2); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.875rem; font-weight: 700; transition: all var(--transition); }
.footer__social:hover { border-color: var(--green); color: var(--green); }

.footer__heading { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__link { font-size: 0.9375rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer__link:hover { color: var(--green); }

.footer__bottom { display: flex; flex-direction: column; align-items: center; gap: 16px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.08); }
.footer__copyright { font-size: 0.875rem; color: rgba(255,255,255,0.35); }
.footer__legal { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px; }
.footer__legal-link { font-size: 0.875rem; color: rgba(255,255,255,0.4); }
.footer__legal-link:hover { color: rgba(255,255,255,0.8); }


