/* ============================================
   МЕТЕОРА — Weather Extension Website
   Main Stylesheet
   ============================================ */

/* === GOOGLE FONTS === */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* === CSS VARIABLES === */
:root {
  --primary:        #1565C0;
  --primary-light:  #42A5F5;
  --primary-dark:   #0D47A1;
  --primary-xdark:  #082982;
  --accent:         #FFD600;
  --accent-dark:    #F9A825;
  --sky:            #E3F2FD;
  --sky-mid:        #BBDEFB;
  --white:          #FFFFFF;
  --text-dark:      #1A237E;
  --text-body:      #37474F;
  --text-light:     #78909C;
  --border:         rgba(21,101,192,0.1);
  --grad-sky:       linear-gradient(150deg, #0D47A1 0%, #1976D2 40%, #42A5F5 80%, #81D4FA 100%);
  --grad-accent:    linear-gradient(135deg, #FFD600 0%, #FFA000 100%);
  --shadow-sm:      0 2px 10px rgba(21,101,192,0.10);
  --shadow-md:      0 4px 24px rgba(21,101,192,0.15);
  --shadow-lg:      0 8px 40px rgba(21,101,192,0.22);
  --radius:         18px;
  --radius-sm:      10px;
  --ease:           cubic-bezier(0.4,0,0.2,1);
  --transition:     all 0.3s var(--ease);
}

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text-body);
  background: #fff;
  line-height: 1.65;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { font-family: inherit; }

/* === TYPOGRAPHY === */
h1 { font-size: clamp(2rem, 5vw, 3.6rem); font-weight: 900; line-height: 1.15; color: var(--text-dark); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 800; line-height: 1.25; color: var(--text-dark); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 700; line-height: 1.35; color: var(--text-dark); }
p  { line-height: 1.7; color: var(--text-body); }

/* === CONTAINER === */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 50px;
  font-weight: 700; font-size: 1rem;
  cursor: pointer; border: none;
  transition: var(--transition); text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 18px rgba(21,101,192,0.35);
}
.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(21,101,192,0.45);
}
.btn--download {
  background: var(--grad-accent);
  color: #1A237E;
  padding: 16px 40px;
  font-size: 1.1rem;
  box-shadow: 0 4px 22px rgba(255,214,0,0.45);
}
.btn--download:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(255,214,0,0.55);
}
.btn--outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
  transform: translateY(-2px);
}
.btn--outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn--outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================
   HEADER / NAV
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: 1180px; margin: 0 auto;
}
.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 900; color: var(--primary);
  letter-spacing: -0.3px;
}
.nav__logo-icon {
  width: 38px; height: 38px; background: var(--grad-sky);
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
}
.nav__links {
  display: flex; gap: 28px; align-items: center;
}
.nav__links a {
  font-weight: 500; font-size: 0.95rem; color: var(--text-body);
  transition: var(--transition); position: relative; padding-bottom: 2px;
}
.nav__links a::after {
  content: ''; position: absolute; bottom: -2px; left: 0;
  width: 0; height: 2px; background: var(--primary-light);
  transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--primary); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
.nav__toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--primary); border-radius: 2px;
  transition: var(--transition);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--grad-sky);
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  padding: 110px 24px 80px;
  text-align: center;
}

.hero__bg {
  position: absolute; inset: 0; overflow: hidden; pointer-events: none;
}

/* Bottom wave */
.hero__wave {
  position: absolute; bottom: -2px; left: 0; right: 0;
}

.hero__content {
  position: relative; z-index: 10; max-width: 720px; margin: 0 auto;
}

.hero__badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50px; padding: 6px 16px;
  font-size: 0.82rem; font-weight: 600; color: #fff;
  margin-bottom: 24px; letter-spacing: 0.3px;
}

.hero__title { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 20px rgba(0,0,0,0.12); }
.hero__title span { color: var(--accent); }

.hero__subtitle {
  font-size: 1.15rem; color: rgba(255,255,255,0.88);
  margin-bottom: 40px; max-width: 520px;
  margin-left: auto; margin-right: auto;
}

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

.hero__note {
  margin-top: 16px; font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}

.hero__stats {
  display: flex; gap: 40px; justify-content: center;
  margin-top: 64px; flex-wrap: wrap;
}
.hero__stat { text-align: center; color: #fff; }
.hero__stat-number {
  font-size: 2.2rem; font-weight: 900; display: block;
  text-shadow: 0 2px 10px rgba(0,0,0,0.15);
}
.hero__stat-label { font-size: 0.82rem; opacity: 0.75; }

/* ============================================
   CLOUD + RAIN + SUN ANIMATION
   ============================================ */
.cloud-wrapper {
  position: absolute;
  cursor: pointer;
  user-select: none;
}

/* Cloud body */
.cloud-body {
  position: relative;
  background: rgba(255,255,255,0.92);
  border-radius: 60px;
  box-shadow: 0 6px 30px rgba(255,255,255,0.25);
  transition: transform 0.3s ease;
}
.cloud-body::before,
.cloud-body::after {
  content: '';
  position: absolute;
  background: rgba(255,255,255,0.92);
  border-radius: 50%;
}

/* Cloud sizes */
.cloud--lg .cloud-body { width: 160px; height: 56px; }
.cloud--lg .cloud-body::before { width: 90px; height: 90px; top: -46px; left: 18px; }
.cloud--lg .cloud-body::after  { width: 65px; height: 65px; top: -33px; left: 78px; }

.cloud--md .cloud-body { width: 120px; height: 42px; }
.cloud--md .cloud-body::before { width: 68px; height: 68px; top: -34px; left: 14px; }
.cloud--md .cloud-body::after  { width: 48px; height: 48px; top: -24px; left: 58px; }

.cloud--sm .cloud-body { width: 90px; height: 32px; }
.cloud--sm .cloud-body::before { width: 50px; height: 50px; top: -25px; left: 10px; }
.cloud--sm .cloud-body::after  { width: 36px; height: 36px; top: -18px; left: 42px; }

/* Cloud positions */
.cloud--c1 { top: 18%;  left: 8%;  animation: floatY 7s ease-in-out infinite; }
.cloud--c2 { top: 28%; right: 10%; animation: floatY 9s ease-in-out infinite 1.5s; }
.cloud--c3 { top: 55%;  left: 30%; animation: floatY 6s ease-in-out infinite 3s; pointer-events: none; }

/* Background decorative clouds */
.cloud--bg { opacity: 0.4; pointer-events: none !important; cursor: default !important; }
.cloud--bg4 { top: 10%; right: 35%; animation: floatX 12s ease-in-out infinite; }
.cloud--bg5 { top: 70%; right: 5%;  animation: floatX 10s ease-in-out infinite 2s; }

/* Sun */
.cloud-sun {
  position: absolute;
  top: -28px; right: -24px;
  opacity: 1;
  transform: scale(1);
  transition: opacity 0.4s ease, transform 0.4s ease;
  pointer-events: none;
}
.cloud-sun__circle {
  width: 44px; height: 44px;
  background: radial-gradient(circle, #FFF176 30%, #FFD600 70%);
  border-radius: 50%;
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 22px rgba(255,214,0,0.7);
}
.cloud-sun__rays {
  position: absolute; inset: 0;
  animation: spinSun 10s linear infinite;
}
.cloud-sun__ray {
  position: absolute;
  width: 3px; height: 11px;
  background: #FFD600; border-radius: 2px;
  top: 50%; left: 50%;
  transform-origin: 50% 30px;
}

/* Rain */
.cloud-rain {
  position: absolute;
  top: calc(100% + 4px); left: 12px; right: 12px;
  height: 55px;
  display: flex; justify-content: space-around; align-items: flex-start;
  pointer-events: none;
}
.rain-drop {
  width: 2px; height: 13px;
  background: linear-gradient(180deg, rgba(100,181,246,0.95) 0%, rgba(100,181,246,0.1) 100%);
  border-radius: 2px;
  opacity: 0;
  animation: dropFall 0.75s linear infinite;
  transition: opacity 0.2s ease;
}

/* Hover state */
.cloud-wrapper:hover .cloud-body    { transform: translateY(3px); }
.cloud-wrapper:hover .rain-drop     { opacity: 1; }
.cloud-wrapper:hover .cloud-sun     { opacity: 0; transform: scale(0.7); }

/* Keyframes */
@keyframes dropFall {
  0%   { transform: translateY(-5px);  opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(55px); opacity: 0; }
}
@keyframes spinSun {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-18px); }
}
@keyframes floatX {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(22px); }
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 90px 0; }
.section--gray { background: #F7FAFD; }
.section--dark { background: var(--primary-dark); color: #fff; }
.section--sky  { background: var(--grad-sky); color: #fff; }

.section__header { text-align: center; margin-bottom: 60px; }
.section__tag {
  display: inline-block;
  background: var(--sky); color: var(--primary);
  padding: 4px 16px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: 14px;
}
.section__tag--white {
  background: rgba(255,255,255,0.2); color: rgba(255,255,255,0.95);
}
.section__title { margin-bottom: 14px; }
.section__title--white { color: #fff; }
.section__subtitle { max-width: 560px; margin: 0 auto; font-size: 1.05rem; }
.section__subtitle--white { color: rgba(255,255,255,0.82); }

/* ============================================
   FEATURE CARDS
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 24px;
}
.feature-card {
  background: #fff; border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.feature-card__icon {
  width: 58px; height: 58px;
  background: var(--sky); border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.9rem; margin-bottom: 22px;
}
.feature-card__title { margin-bottom: 10px; font-size: 1.1rem; }
.feature-card__text { font-size: 0.92rem; line-height: 1.65; }

/* ============================================
   HOW IT WORKS
   ============================================ */
.steps-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 32px;
}
.step-card {
  text-align: center; padding: 36px 28px;
  background: #fff; border-radius: var(--radius);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: var(--transition); position: relative;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.step-card__num {
  width: 52px; height: 52px; background: var(--grad-sky);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.2rem; color: #fff;
  margin: 0 auto 20px;
}
.step-card__icon { font-size: 2.6rem; margin-bottom: 16px; }
.step-card__title { margin-bottom: 10px; }

/* Connector line */
.steps-grid .step-card:not(:last-child)::after {
  content: '→';
  position: absolute; right: -22px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem; color: var(--primary-light);
  font-weight: 900; z-index: 2;
}

/* ============================================
   INSTALL STEPS
   ============================================ */
.install-list {
  display: flex; flex-direction: column; gap: 20px;
  max-width: 740px; margin: 0 auto;
}
.install-step {
  display: flex; gap: 24px; align-items: flex-start;
  background: #fff; border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: var(--transition);
}
.install-step:hover { transform: translateX(8px); box-shadow: var(--shadow-lg); }
.install-step__num {
  min-width: 50px; height: 50px;
  background: var(--grad-sky); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 900; font-size: 1.15rem; color: #fff; flex-shrink: 0;
}
.install-step__icon { font-size: 1.8rem; }
.install-step__title { margin-bottom: 6px; }
.install-step__text { font-size: 0.92rem; }

/* ============================================
   REVIEWS
   ============================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: #fff; border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
  transition: var(--transition); position: relative; overflow: hidden;
}
.review-card::before {
  content: '"';
  position: absolute; top: 10px; left: 18px;
  font-size: 5rem; color: var(--primary-light);
  opacity: 0.15; font-family: Georgia, serif; line-height: 1;
}
.review-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.review-card__stars { color: var(--accent-dark); font-size: 1.05rem; margin-bottom: 14px; }
.review-card__text { font-size: 0.93rem; line-height: 1.7; margin-bottom: 22px; position: relative; }
.review-card__author { display: flex; align-items: center; gap: 12px; }
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-sky);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 800; font-size: 1rem; flex-shrink: 0;
}
.review-card__name  { font-weight: 700; font-size: 0.92rem; color: var(--text-dark); }
.review-card__date  { font-size: 0.78rem; color: var(--text-light); }

/* Rating overview */
.rating-overview {
  display: flex; gap: 48px; justify-content: center;
  align-items: center; margin-bottom: 50px; flex-wrap: wrap;
}
.rating-big { text-align: center; }
.rating-big__num {
  font-size: 5rem; font-weight: 900;
  color: var(--primary); line-height: 1;
}
.rating-big__stars { font-size: 1.5rem; color: var(--accent-dark); margin: 6px 0; }
.rating-big__count { font-size: 0.85rem; color: var(--text-light); }

.rating-bars { display: flex; flex-direction: column; gap: 10px; min-width: 260px; }
.rating-bar { display: flex; align-items: center; gap: 10px; }
.rating-bar__label { font-size: 0.82rem; font-weight: 600; color: var(--text-body); min-width: 30px; }
.rating-bar__track {
  flex: 1; height: 8px; background: var(--sky-mid);
  border-radius: 4px; overflow: hidden;
}
.rating-bar__fill {
  height: 100%; background: var(--grad-accent); border-radius: 4px;
  transition: width 1.2s var(--ease);
}
.rating-bar__count { font-size: 0.82rem; color: var(--text-light); min-width: 28px; }

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  display: flex; flex-direction: column; gap: 14px;
  max-width: 820px; margin: 0 auto;
}
.faq-item {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.faq-item__btn {
  width: 100%; text-align: left;
  padding: 22px 28px;
  background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-size: 1rem; font-weight: 600; color: var(--text-dark);
  transition: var(--transition);
}
.faq-item__btn:hover { color: var(--primary); }
.faq-item__icon {
  min-width: 26px; height: 26px;
  background: var(--sky); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--primary); font-weight: 700;
  transition: var(--transition);
}
.faq-item.open .faq-item__icon {
  background: var(--primary); color: #fff; transform: rotate(45deg);
}
.faq-item__answer {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s var(--ease), padding 0.3s ease;
  padding: 0 28px;
}
.faq-item.open .faq-item__answer { max-height: 350px; padding: 0 28px 22px; }
.faq-item__answer p { font-size: 0.93rem; }

/* ============================================
   ABOUT / COMPANY
   ============================================ */
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start;
}
.about-text p { margin-bottom: 16px; }
.about-text h3 { margin-bottom: 12px; }

.company-table {
  width: 100%; border-collapse: collapse;
}
.company-table tr { border-bottom: 1px solid var(--border); }
.company-table tr:last-child { border-bottom: none; }
.company-table td {
  padding: 12px 0; font-size: 0.91rem; vertical-align: top;
}
.company-table td:first-child {
  font-weight: 600; color: var(--text-light); min-width: 180px; padding-right: 16px;
}
.company-table td:last-child { color: var(--text-dark); }

.contacts-list { display: flex; flex-direction: column; gap: 16px; margin-top: 28px; }
.contact-item {
  display: flex; gap: 14px; align-items: center;
  padding: 16px 20px; background: var(--sky);
  border-radius: var(--radius-sm);
}
.contact-item__icon { font-size: 1.4rem; }
.contact-item__label { font-size: 0.78rem; color: var(--text-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
.contact-item__value { font-weight: 700; color: var(--text-dark); font-size: 0.95rem; }

/* ============================================
   TRUST BADGES
   ============================================ */
.trust-badges {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 40px;
}
.trust-badge {
  display: flex; align-items: center; gap: 7px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.28); border-radius: 50px;
  padding: 8px 18px; color: #fff; font-size: 0.83rem; font-weight: 600;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: var(--grad-sky); padding: 90px 24px; text-align: center; color: #fff;
}
.cta-section__title { color: #fff; margin-bottom: 16px; }
.cta-section__subtitle {
  color: rgba(255,255,255,0.85); font-size: 1.1rem;
  margin-bottom: 38px; max-width: 520px; margin-left: auto; margin-right: auto;
}

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--grad-sky);
  padding: 130px 24px 70px; text-align: center;
}
.page-hero__title { color: #fff; margin-bottom: 12px; }
.page-hero__subtitle { color: rgba(255,255,255,0.82); font-size: 1.08rem; }

/* Breadcrumb */
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  justify-content: center; margin-top: 20px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); font-size: 0.85rem; transition: var(--transition); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-wrap { max-width: 820px; margin: 0 auto; padding: 70px 24px 90px; }
.legal-wrap h1 { font-size: 2.2rem; margin-bottom: 6px; }
.legal-date { color: var(--text-light); font-size: 0.87rem; margin-bottom: 36px; display: block; }
.legal-wrap h2 { font-size: 1.25rem; color: var(--primary); margin: 36px 0 12px; }
.legal-wrap h3 { font-size: 1rem; margin: 22px 0 8px; }
.legal-wrap p  { margin-bottom: 14px; font-size: 0.93rem; }
.legal-wrap ul, .legal-wrap ol { padding-left: 22px; margin-bottom: 14px; }
.legal-wrap li { margin-bottom: 7px; font-size: 0.93rem; color: var(--text-body); }
.legal-wrap strong { color: var(--text-dark); }

.legal-table {
  width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.88rem;
}
.legal-table th {
  background: var(--sky); padding: 11px 14px;
  text-align: left; font-weight: 700; color: var(--primary);
}
.legal-table td { padding: 11px 14px; border-bottom: 1px solid var(--border); }
.legal-table tr:hover td { background: var(--sky); }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--primary-xdark); color: #fff;
  padding: 64px 0 28px;
}
.footer__grid {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 48px;
}
.footer__brand {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.25rem; font-weight: 900; margin-bottom: 14px;
}
.footer__brand-icon {
  width: 36px; height: 36px; background: rgba(255,255,255,0.15);
  border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
}
.footer__desc { color: rgba(255,255,255,0.62); font-size: 0.88rem; line-height: 1.65; margin-bottom: 22px; }
.footer__social { display: flex; gap: 10px; }
.footer__social-link {
  width: 36px; height: 36px; background: rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  font-size: 1rem; transition: var(--transition);
}
.footer__social-link:hover { background: rgba(255,255,255,0.22); }

.footer__heading {
  font-weight: 700; font-size: 0.82rem; color: rgba(255,255,255,0.85);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a { color: rgba(255,255,255,0.6); font-size: 0.88rem; transition: var(--transition); }
.footer__links a:hover { color: #fff; }

.footer__contacts { display: flex; flex-direction: column; gap: 12px; }
.footer__contacts li { color: rgba(255,255,255,0.6); font-size: 0.87rem; line-height: 1.4; }
.footer__contacts li strong { color: rgba(255,255,255,0.9); display: block; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }

.footer__divider { height: 1px; background: rgba(255,255,255,0.1); margin-bottom: 24px; }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  color: rgba(255,255,255,0.42); font-size: 0.78rem; flex-wrap: wrap; gap: 12px;
}
.footer__legal { display: flex; gap: 18px; }
.footer__legal a { color: rgba(255,255,255,0.42); font-size: 0.78rem; transition: var(--transition); }
.footer__legal a:hover { color: rgba(255,255,255,0.8); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.fade-in { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left  { opacity: 0; transform: translateX(-28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid .step-card::after { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav__links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: #fff; padding: 28px 24px; box-shadow: var(--shadow-lg); z-index: 999; gap: 18px; }
  .nav__links.open { display: flex; }
  .nav__toggle { display: flex; }
  .nav > .btn { display: none; }
  .hero__stats { gap: 28px; }
  .rating-overview { flex-direction: column; gap: 28px; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .hero__actions { flex-direction: column; align-items: center; }
  .company-table td:first-child { min-width: 130px; }
}
