/* ============================
   Magazine Solar - Landing Page
   ============================ */

:root {
  --primary: #F26B1F;
  --primary-dark: #D9531A;
  --primary-light: #FFA85B;
  --secondary: #FFD23F;
  --accent: #E74C0E;
  --dark: #1A1A1F;
  --dark-2: #2A2A33;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --bg: #FFFFFF;
  --bg-soft: #FFF8F2;
  --bg-dark: #11111A;
  --white: #FFFFFF;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-full: 999px;
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 25px 60px rgba(242, 107, 31, 0.18);
  --gradient: linear-gradient(135deg, #FFB347 0%, #F26B1F 50%, #E74C0E 100%);
  --gradient-2: linear-gradient(135deg, #F26B1F 0%, #FFD23F 100%);
  --font-display: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --container: 1240px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }

a { color: inherit; text-decoration: none; transition: var(--transition); }

ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

.text-gradient {
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 26px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 15px;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(242, 107, 31, 0.35);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(242, 107, 31, 0.45);
}
.btn--ghost {
  background: transparent;
  color: var(--dark);
  border: 2px solid var(--gray-light);
}
.btn--ghost:hover {
  border-color: var(--primary);
  color: var(--primary);
}
.btn--white {
  background: var(--white);
  color: var(--primary);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}
.btn--white:hover {
  transform: translateY(-2px);
}
.btn--lg {
  padding: 18px 34px;
  font-size: 16px;
}

/* Topbar */
.topbar {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.85);
  font-size: 13.5px;
  padding: 10px 0;
}
.topbar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar__info, .topbar__contact {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}
.topbar i { color: var(--primary-light); margin-right: 6px; }
.topbar a:hover { color: var(--primary-light); }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  transition: var(--transition);
}
.header.scrolled {
  box-shadow: var(--shadow-sm);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  gap: 20px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo__icon {
  height: 48px;
  width: auto;
  object-fit: contain;
  flex-shrink: 0;
}
.logo__text {
  display: flex;
  flex-direction: column;
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.02em;
}
.logo__magazine {
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.logo__magazine--light { color: var(--white); }
.logo__solar {
  font-size: 1.5rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.logo--footer .logo__icon { height: 56px; }
.logo--footer .logo__solar { font-size: 1.7rem; }
.logo--footer { margin-bottom: 20px; }
.nav__list {
  display: flex;
  gap: 32px;
}
.nav__list a {
  font-weight: 500;
  font-size: 15px;
  color: var(--dark);
  position: relative;
}
.nav__list a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient);
  transition: var(--transition);
}
.nav__list a:hover { color: var(--primary); }
.nav__list a:hover::after { width: 100%; }

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--dark);
  border-radius: 3px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* Hero */
.hero {
  position: relative;
  padding: 80px 0 120px;
  overflow: hidden;
  background: var(--bg-soft);
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 90% 10%, rgba(255, 178, 71, 0.35) 0%, transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(231, 76, 14, 0.15) 0%, transparent 50%);
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(242, 107, 31, 0.1);
  color: var(--primary-dark);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.hero__subtitle {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 560px;
}
.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.hero__stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.stat {
  display: flex;
  flex-direction: column;
}
.stat strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.stat span {
  font-size: 14px;
  color: var(--gray);
  margin-top: 6px;
}

.hero__visual {
  position: relative;
  height: 520px;
}
.hero__card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero__card--store {
  width: 88%;
  height: 78%;
  top: 0;
  right: 0;
}
.hero__card--store img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__card--logo {
  width: 42%;
  height: 38%;
  bottom: 0;
  left: 0;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border: 6px solid var(--white);
}
.hero__card--logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.hero__badge {
  position: absolute;
  top: 30%;
  left: -10px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 16px 22px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  z-index: 3;
  font-size: 13.5px;
  line-height: 1.3;
}
.hero__badge i {
  font-size: 1.8rem;
  color: var(--primary);
}
.hero__badge strong {
  color: var(--primary-dark);
}

.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 50px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  justify-content: center;
  padding-top: 8px;
  z-index: 2;
}
.hero__scroll span {
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 4px;
  animation: scrollDown 1.8s infinite;
}
@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* Trust */
.trust {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-light);
}
.trust__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.trust__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 15px;
}
.trust__item i {
  font-size: 1.6rem;
  color: var(--primary);
  background: rgba(242, 107, 31, 0.1);
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Section general */
section { padding: 100px 0; }

.section-head {
  margin-bottom: 60px;
  max-width: 600px;
}
.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-tag {
  display: inline-block;
  background: rgba(242, 107, 31, 0.1);
  color: var(--primary-dark);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}
.section-tag--light {
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.section-title--light { color: var(--white); }
.section-sub {
  font-size: 17px;
  color: var(--gray);
}

/* Categories */
.categories { background: var(--bg-soft); }
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.cat-grid--3 {
  grid-template-columns: repeat(3, 1fr);
  max-width: 960px;
  margin: 0 auto;
}
.cat-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  border: 1px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.cat-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gradient);
  opacity: 0;
  transition: var(--transition);
  z-index: 0;
}
.cat-card > * { position: relative; z-index: 1; }
.cat-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.cat-card:hover::before { opacity: 1; }
.cat-card:hover h3, .cat-card:hover p, .cat-card:hover .cat-card__link { color: var(--white); }
.cat-card:hover .cat-card__icon {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}
.cat-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius);
  background: rgba(242, 107, 31, 0.1);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.7rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.cat-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  transition: var(--transition);
}
.cat-card p {
  font-size: 14.5px;
  color: var(--gray);
  margin-bottom: 16px;
  transition: var(--transition);
}
.cat-card__link {
  font-weight: 600;
  font-size: 13.5px;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}

/* About */
.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.about__visual img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about__exp {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 18px 24px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow);
}
.about__exp strong {
  font-family: var(--font-display);
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  line-height: 1;
}
.about__exp span {
  font-size: 13.5px;
  color: var(--gray);
  margin-top: 4px;
}
.about__content p {
  font-size: 16px;
  color: var(--gray);
  margin-bottom: 18px;
}
.about__content strong { color: var(--dark); }
.about__list {
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.about__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  font-size: 15px;
}
.about__list i { color: var(--primary); font-size: 1.15rem; }

/* Brands */
.brands { background: var(--white); }
.brands__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.brands__grid--single {
  grid-template-columns: minmax(220px, 320px);
  justify-content: center;
}
.brands__grid--single .brand-pill {
  font-size: 1.6rem;
  padding: 40px 24px;
}

/* Stores section */
.stores {
  background: var(--bg-soft);
}
.stores__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  align-items: stretch;
}
.store-card {
  width: 100%;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.store-card > * { width: 100%; }
.store-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.store-card__head {
  padding: 28px 30px 22px;
  background: var(--gradient);
  color: var(--white);
}
.store-card__tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  color: var(--white);
  padding: 4px 14px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}
.store-card__head h3 {
  color: var(--white);
  font-size: 1.4rem;
}
.store-card__list {
  padding: 26px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.store-card__list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  font-size: 14.5px;
  color: var(--gray);
}
.store-card__list i {
  font-size: 1rem;
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  background: rgba(242, 107, 31, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.store-card__list a:hover { color: var(--primary); }
.store-card__map {
  width: 100%;
  height: 260px;
  background: var(--gray-light);
  display: block;
}
.store-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 100%;
  border: 0;
}
.brand-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 16px;
  background: var(--bg-soft);
  border-radius: var(--radius);
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--dark);
  font-size: 1.1rem;
  transition: var(--transition);
  cursor: default;
  border: 2px solid transparent;
}
.brand-pill:hover {
  background: var(--white);
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

/* Diff */
.diff {
  background: var(--bg-dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.diff::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(242, 107, 31, 0.18) 0%, transparent 45%),
    radial-gradient(circle at 20% 80%, rgba(255, 178, 71, 0.10) 0%, transparent 50%);
}
.diff > * { position: relative; z-index: 1; }
.diff__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.diff__card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.diff__card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(242, 107, 31, 0.4);
  transform: translateY(-6px);
}
.diff__card i {
  font-size: 2.2rem;
  background: var(--gradient);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 18px;
}
.diff__card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.diff__card p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14.5px;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 90% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 40%);
}
.cta-banner__inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin-bottom: 8px;
}
.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

/* Testi */
.testi { background: var(--bg-soft); }
.testi__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.testi__card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.testi__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}
.testi__stars {
  color: var(--secondary);
  margin-bottom: 16px;
  font-size: 1.1rem;
}
.testi__card p {
  font-style: italic;
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 22px;
}
.testi__author { display: flex; flex-direction: column; }
.testi__author strong {
  font-family: var(--font-display);
  color: var(--dark);
}
.testi__author span {
  color: var(--gray);
  font-size: 13.5px;
}

/* Contact */
.contact { background: var(--white); }
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact__info p {
  color: var(--gray);
  margin-bottom: 36px;
  font-size: 16px;
}
.contact__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 36px;
}
.contact__list li {
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact__list i {
  font-size: 1.2rem;
  color: var(--primary);
  background: rgba(242, 107, 31, 0.1);
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15.5px;
  color: var(--dark);
  margin-bottom: 4px;
}
.contact__list span, .contact__list a {
  color: var(--gray);
  font-size: 14.5px;
}
.contact__list a:hover { color: var(--primary); }
.contact__social {
  display: flex;
  gap: 12px;
}
.contact__social a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--bg-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  transition: var(--transition);
}
.contact__social a:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-3px);
}
.contact__map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 540px;
  box-shadow: var(--shadow);
}
.contact__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* Footer */
.footer {
  background: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}
.footer__col--brand p { margin-bottom: 24px; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 22px;
}
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__col a:hover { color: var(--primary-light); }
.footer__contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer__contact i {
  color: var(--primary);
  margin-top: 6px;
  flex-shrink: 0;
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  text-align: center;
  font-size: 13.5px;
}
.footer__bottom p { margin: 2px 0; }

/* Regions */
.regions { background: var(--bg-soft); }
.regions__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 920px;
  margin: 0 auto;
}
.regions__list li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.regions__list li:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}
.regions__list i {
  font-size: 1.2rem;
  color: var(--white);
  background: var(--gradient);
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.regions__list strong {
  display: block;
  font-family: var(--font-display);
  font-size: 15px;
  color: var(--dark);
}
.regions__list span {
  display: block;
  font-size: 12.5px;
  color: var(--gray);
  margin-top: 2px;
}

/* FAQ */
.faq { background: var(--white); }
.faq__list {
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.faq__item {
  background: var(--bg-soft);
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: var(--transition);
  overflow: hidden;
}
.faq__item[open] {
  background: var(--white);
  border-color: rgba(242, 107, 31, 0.25);
  box-shadow: var(--shadow-sm);
}
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16.5px;
  color: var(--dark);
  transition: var(--transition);
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary i {
  font-size: 0.9rem;
  color: var(--primary);
  background: rgba(242, 107, 31, 0.12);
  width: 34px;
  height: 34px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s ease, background 0.3s ease;
}
.faq__item[open] summary i {
  transform: rotate(45deg);
  background: var(--gradient);
  color: var(--white);
}
.faq__item summary:hover { color: var(--primary); }
.faq__answer {
  padding: 0 26px 24px;
  color: var(--gray);
  font-size: 15px;
  line-height: 1.7;
}
.faq__answer p { margin: 0; }
.faq__answer a {
  color: var(--primary);
  font-weight: 600;
}
.faq__answer a:hover { text-decoration: underline; }
.faq__answer strong { color: var(--dark); }

/* Whats Float */
.whats-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 62px;
  height: 62px;
  background: #25D366;
  color: var(--white);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  z-index: 90;
  transition: var(--transition);
}
.whats-float:hover {
  transform: scale(1.08);
}
.whats-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  border: 3px solid #25D366;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .cat-grid, .cat-grid--3, .cat-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .trust__inner { grid-template-columns: repeat(2, 1fr); }
  .brands__grid { grid-template-columns: repeat(4, 1fr); }
  .diff__grid { grid-template-columns: repeat(2, 1fr); }
  .regions__list { grid-template-columns: repeat(2, 1fr); }
  .testi__grid { grid-template-columns: 1fr; }
  .about__inner, .contact__inner { grid-template-columns: 1fr; gap: 50px; }
  .footer__inner { grid-template-columns: repeat(2, 1fr); }
  .nav { display: none; }
  .menu-toggle { display: flex; }
  .nav.open {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 30px;
    box-shadow: var(--shadow);
  }
  .nav.open .nav__list {
    flex-direction: column;
    gap: 20px;
  }
  .header__cta { display: none; }
}

/* Stores: stack only at narrower viewports so cards stay side-by-side on most desktops/laptops */
@media (max-width: 820px) {
  .stores__grid { grid-template-columns: 1fr; gap: 24px; }
  .store-card { max-width: 600px; margin: 0 auto; }
}

@media (max-width: 640px) {
  section { padding: 70px 0; }
  .hero { padding: 50px 0 80px; }
  .hero__visual { height: 420px; }
  .hide-sm { display: none; }
  .topbar__info, .topbar__contact { gap: 14px; font-size: 12.5px; }
  .cat-grid, .cat-grid--3, .cat-grid--4, .brands__grid, .diff__grid, .regions__list { grid-template-columns: 1fr; }
  .brands__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__inner { grid-template-columns: 1fr; }
  .faq__item summary { font-size: 15px; padding: 18px 20px; }
  .faq__answer { padding: 0 20px 20px; }
  .hero__stats { gap: 24px; }
  .section-head { margin-bottom: 40px; }
  .cta-banner__inner { text-align: center; justify-content: center; }
  .cta-banner__inner > div { width: 100%; }
  .whats-float { width: 56px; height: 56px; font-size: 1.7rem; bottom: 20px; right: 20px; }
}
