/* ===== VARIABLES ===== */
:root {
  --bg: #fafafa;
  --bg-alt: #f2f2f5;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-secondary: #5a5a6e;
  --accent: #b01c28;
  --accent-dark: #8a1620;
  --accent-soft: #fce8ea;
  --border: #e5e5ea;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.1);
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ===== RESET ===== */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: var(--font); background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
ul { list-style: none; }

.container { width: min(1200px, 90%); margin: 0 auto; }

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  transition: background var(--transition), box-shadow var(--transition);
}
.header.is-scrolled {
  background: rgba(255,255,255,0.95);
  box-shadow: 0 1px 20px rgba(0,0,0,0.08);
}
.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
}
.header__brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
}
.header__titles { line-height: 1.3; }
.header__name { font-size: 0.95rem; font-weight: 700; display: block; }
.header__sub { font-size: 0.75rem; color: var(--text-secondary); display: block; }

.header__nav {
  display: flex;
  gap: 8px;
}
.header__link {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.87rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all var(--transition);
}
.header__link:hover {
  background: var(--accent-soft);
  color: var(--accent);
}
.header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header__phone {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color var(--transition);
}
.header__phone:hover { color: var(--accent); }
.header__phone span { display: none; }
@media (min-width: 1100px) { .header__phone span { display: inline; } }

.header__cta {
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 15px rgba(176, 28, 40, 0.3);
}
.header__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(176, 28, 40, 0.4);
}
.header__burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.header__burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--transition);
}
.header__burger.is-active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.header__burger.is-active span:nth-child(2) { opacity: 0; }
.header__burger.is-active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__burger { display: flex; }
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
.mobile-menu.is-open {
  opacity: 1;
  pointer-events: all;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mobile-menu__nav a {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 12px;
  transition: all var(--transition);
}
.mobile-menu__nav a:hover { color: var(--accent); }
.mobile-menu__phone {
  margin-top: 20px;
  font-size: 1.1rem !important;
  color: var(--accent) !important;
  font-weight: 600 !important;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  transition: all var(--transition);
  border: none;
  cursor: pointer;
}
.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff;
  box-shadow: 0 6px 20px rgba(176, 28, 40, 0.25);
}
.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(176, 28, 40, 0.35);
}
.btn--outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,0.4);
  color: #fff;
}
.btn--outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.7);
}
.btn--accent {
  background: #00e676;
  color: #0a0a0a;
  box-shadow: 0 6px 20px rgba(0, 230, 118, 0.3);
}
.btn--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 230, 118, 0.4);
}
.btn--full { width: 100%; }

/* ===== HERO ===== */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 100vh;
  padding-top: 72px;
}
.hero__left {
  display: flex;
  align-items: center;
  padding: 60px 0 60px 5%;
  background: var(--bg);
}
.hero__content {
  max-width: 560px;
  margin-left: auto;
  margin-right: 60px;
}
.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-soft);
  border: 1px solid rgba(176, 28, 40, 0.12);
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  margin-bottom: 28px;
}
.hero__ag-logo {
  height: 28px;
  width: auto;
}
.hero__badge span {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.5px;
}
.hero__title {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text);
  margin-bottom: 20px;
  letter-spacing: -0.03em;
}
.hero__title em {
  font-style: normal;
  color: var(--accent);
  -webkit-text-fill-color: var(--accent);
}
.hero__desc {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  margin-bottom: 32px;
  line-height: 1.75;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

/* Hero inline stats */
.hero__stats-inline {
  display: flex;
  gap: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}
.hero-stat strong span {
  color: var(--accent);
}
.hero-stat > span {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Hero right — image */
.hero__right {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f0f5 0%, #e2e2ea 100%);
}
.hero__image-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
}
.hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Floating promo badge */
.hero__promo-float {
  position: absolute;
  top: 32px;
  right: 32px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(16px);
  border-radius: 18px;
  padding: 16px 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid rgba(0,0,0,0.06);
  z-index: 2;
}
.promo-float__tag {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  align-self: flex-start;
}
.promo-float__body {
  display: flex;
  align-items: center;
  gap: 12px;
}
.promo-float__num {
  font-size: 2.8rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}
.promo-float__label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.promo-float__sub {
  font-size: 0.78rem;
  color: var(--text-secondary);
  font-weight: 500;
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero__left {
    padding: 48px 5% 40px;
    order: 1;
  }
  .hero__content {
    margin: 0 auto;
    text-align: center;
    max-width: 100%;
  }
  .hero__desc { margin: 0 auto 28px; }
  .hero__actions { justify-content: center; }
  .hero__stats-inline {
    justify-content: center;
  }
  .hero__right {
    order: 0;
    height: 50vw;
    min-height: 260px;
    max-height: 400px;
  }
  .hero__promo-float {
    top: 12px;
    right: 12px;
    bottom: auto;
    left: auto;
    padding: 10px 14px;
    border-radius: 14px;
    gap: 6px;
  }
  .promo-float__num { font-size: 1.8rem; }
  .promo-float__label { font-size: 0.85rem; }
  .promo-float__sub { font-size: 0.7rem; }
  .promo-float__tag { font-size: 0.6rem; padding: 2px 8px; }
}

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
}
.section--alt {
  background: var(--bg-alt);
}
.section--dark {
  background: linear-gradient(135deg, #0f0f14, #1a1a2e);
  color: #fff;
}
.section__head {
  text-align: center;
  margin-bottom: 50px;
}
.section__tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section__tag--light {
  background: rgba(0,230,118,0.15);
  color: #00e676;
}
.section__title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section__desc {
  color: var(--text-secondary);
  margin-top: 12px;
  font-size: 1rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== PRODUCT TABS ===== */
.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 36px;
}
.tabs__btn {
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.tabs__btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.tabs__btn.is-active {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(176, 28, 40, 0.25);
}
.tab-panel { display: none; }
.tab-panel.is-active {
  display: block;
  animation: fadeUp 0.4s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ===== PRODUCT CARDS ===== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}
.product-card {
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.product-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f8f8fa;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card__img img {
  transform: scale(1.05);
}
.product-card__badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: #fff;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}
.product-card__body {
  padding: 16px 18px;
}
.product-card__body h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.product-card__body p {
  font-size: 0.82rem;
  color: var(--text-secondary);
}

/* ===== CAMPAIGN ===== */
.campaign {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.campaign__title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  margin: 16px 0 20px;
  letter-spacing: -0.02em;
}
.campaign__title strong {
  color: #00e676;
}
.campaign__desc {
  color: rgba(255,255,255,0.7);
  margin-bottom: 24px;
  line-height: 1.7;
}
.campaign__list {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.campaign__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}
.campaign__list li svg {
  color: #00e676;
  flex-shrink: 0;
}
.campaign__visual {
  display: flex;
  justify-content: center;
}
.campaign__visual img {
  max-height: 360px;
  width: auto;
}

@media (max-width: 768px) {
  .campaign {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .campaign__list { justify-content: center; }
  .campaign__list li { justify-content: center; }
}

/* ===== ABOUT ===== */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about__text p {
  color: var(--text-secondary);
  margin-top: 16px;
  line-height: 1.8;
}
.about__dealer {
  display: flex;
  align-items: center;
  gap: 18px;
  background: linear-gradient(135deg, #f8f0f1, #fef5f5);
  border: 1px solid rgba(176, 28, 40, 0.12);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 24px;
}
.about__dealer img {
  width: 80px;
  height: auto;
  flex-shrink: 0;
}
.about__dealer strong { font-size: 0.9rem; }
.about__dealer p { font-size: 0.82rem; color: var(--text-secondary); margin: 4px 0; }
.about__dealer a { color: var(--accent); font-weight: 600; font-size: 0.85rem; }
.about__dealer a:hover { text-decoration: underline; }

.about__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.about__pills span {
  background: var(--accent-soft);
  color: var(--accent);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
}
.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  object-position: top;
}

@media (max-width: 768px) {
  .about {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__image img { height: 320px; }
  .about__dealer { flex-direction: column; text-align: center; }
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.gallery__item--wide {
  grid-column: span 2;
}
.gallery__item img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery__item:hover img {
  transform: scale(1.08);
}
.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery__item:hover .gallery__overlay {
  opacity: 1;
}
.gallery__overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
  .gallery__item--wide { grid-column: span 2; }
  .gallery__item img { height: 180px; }
}
@media (max-width: 480px) {
  .gallery { grid-template-columns: 1fr; }
  .gallery__item--wide { grid-column: span 1; }
}

/* ===== STEPS ===== */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.step {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 24px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.step:hover::before { transform: scaleX(1); }
.step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.step__num {
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--accent-soft);
  margin-bottom: 16px;
  line-height: 1;
}
.step:hover .step__num { color: var(--accent); transition: color var(--transition); }
.step__content h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.step__content p {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

@media (max-width: 900px) {
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .steps { grid-template-columns: 1fr; }
}

/* ===== CONTACT ===== */
.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact__info { display: grid; gap: 16px; }
.contact__card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--surface);
  padding: 20px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact__card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--accent-soft);
}
.contact__icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.contact__card strong {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
}
.contact__card a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
}
.contact__card span {
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact__form {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.contact__form h3 {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  font-family: var(--font);
  font-size: 0.9rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(176, 28, 40, 0.1);
}
.contact__note {
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  text-align: center;
}

@media (max-width: 768px) {
  .contact { grid-template-columns: 1fr; }
}

/* ===== FOOTER ===== */
.footer {
  background: #0f0f14;
  color: rgba(255,255,255,0.7);
  padding: 40px 0;
}
.footer__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  align-items: center;
}
.footer__brand strong {
  display: block;
  color: #fff;
  font-size: 1rem;
}
.footer__brand span {
  font-size: 0.82rem;
  opacity: 0.6;
}
.footer__dealer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.footer__dealer img {
  width: 70px;
  height: auto;
  opacity: 0.8;
}
.footer__dealer p {
  font-size: 0.78rem;
  max-width: 240px;
  opacity: 0.6;
}
.footer__copy { text-align: right; }
.footer__copy p { font-size: 0.82rem; opacity: 0.5; }
.footer__copy a {
  font-size: 0.78rem;
  opacity: 0.5;
  transition: opacity var(--transition);
}
.footer__copy a:hover { opacity: 1; }

@media (max-width: 768px) {
  .footer__inner { flex-direction: column; text-align: center; }
  .footer__dealer { flex-direction: column; }
  .footer__copy { text-align: center; }
}

/* ===== WHATSAPP FAB ===== */
.fab-whatsapp {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 90;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4);
  transition: all var(--transition);
  animation: fabPulse 2.5s infinite;
}
.fab-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.5);
}
@keyframes fabPulse {
  0%, 100% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 6px 24px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ===== SCROLL TO TOP (visual) ===== */
body { scroll-behavior: smooth; }

/* ===== GIZLILIK POLITIKASI UYUM ===== */
.policy-content { max-width: 800px; margin: 0 auto; padding: 100px 20px 60px; }
.policy-content h1 { font-size: 2rem; margin-bottom: 30px; font-weight: 800; }
.policy-content h2 { font-size: 1.3rem; margin: 28px 0 12px; color: var(--accent); }
.policy-content p, .policy-content li { color: var(--text-secondary); line-height: 1.8; margin-bottom: 12px; }
.policy-content ul { padding-left: 20px; }
.policy-content a { color: var(--accent); }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--accent); font-weight: 600; }

/* ===== PRODUCT MODAL ===== */
.product-card { cursor: pointer; }

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  padding: 20px;
}
.product-modal.is-open {
  opacity: 1;
  pointer-events: all;
}
.product-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.product-modal__dialog {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 860px;
  width: 100%;
  max-height: 90vh;
  background: var(--surface);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25);
  transform: translateY(30px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.product-modal.is-open .product-modal__dialog {
  transform: translateY(0) scale(1);
}
.product-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  display: grid;
  place-items: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-modal__close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.product-modal__image {
  position: relative;
  background: #f4f4f8;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px;
  min-height: 320px;
}
.product-modal__image img {
  max-width: 100%;
  max-height: 360px;
  object-fit: contain;
}
.product-modal__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--accent);
  color: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  display: none;
}
.product-modal__badge.is-visible {
  display: inline-block;
}
.product-modal__content {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;
}
.product-modal__category {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--accent);
  padding: 5px 14px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 14px;
  align-self: flex-start;
}
.product-modal__title {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 12px;
  line-height: 1.2;
}
.product-modal__desc {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}
.product-modal__features {
  display: grid;
  gap: 8px;
  margin-bottom: 28px;
  padding: 0;
}
.product-modal__features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  font-weight: 500;
}
.product-modal__features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--accent-soft);
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' fill='none' stroke='%23b01c28' stroke-width='2.5' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 11px;
}
.product-modal__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.btn--outline-dark {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--text);
  font-weight: 600;
}
.btn--outline-dark:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

@media (max-width: 700px) {
  .product-modal { padding: 12px; }
  .product-modal__dialog {
    grid-template-columns: 1fr;
    max-height: 92vh;
    overflow-y: auto;
  }
  .product-modal__image {
    min-height: 220px;
    padding: 24px;
  }
  .product-modal__image img {
    max-height: 220px;
  }
  .product-modal__content {
    padding: 28px 24px 32px;
  }
  .product-modal__title {
    font-size: 1.3rem;
  }
  .product-modal__actions {
    flex-direction: column;
  }
  .product-modal__actions .btn {
    width: 100%;
    text-align: center;
  }
}
