/* ============================================================
   FUTUREISCLEAN.ORG — Main Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

/* ---- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background-color: var(--white);
  color: var(--text-primary);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ---- Design Tokens ---------------------------------------- */
:root {
  /* Brand greens */
  --green-900: #072b15;
  --green-800: #0f4a28;
  --green-700: #1b7b47;
  --green-600: #22a35c;
  --green-500: #32c870;
  --green-400: #5dd98e;
  --green-300: #93e8b5;
  --green-200: #c4f0d6;
  --green-100: #e8f7ef;
  --green-50:  #f4fcf7;

  /* Neutrals */
  --white:     #ffffff;
  --off-white: #f8fdf9;
  --gray-900:  #111a16;
  --gray-700:  #374d42;
  --gray-500:  #617060;
  --gray-300:  #c8d9cd;
  --gray-100:  #edf3ef;

  /* Semantic */
  --text-primary:   #111a16;
  --text-secondary: #4a6655;
  --text-muted:     #7a9485;
  --border:         #d0e8da;
  --surface:        #f4fcf7;

  /* Typography */
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Spacing scale */
  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;

  /* Border radius */
  --r-sm:   4px;
  --r-md:   10px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 40px rgba(0,0,0,.11);

  /* Transitions */
  --ease: 200ms cubic-bezier(.4,0,.2,1);
  --ease-slow: 420ms cubic-bezier(.4,0,.2,1);
}

/* ---- Typography ------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.18;
  color: var(--text-primary);
}
h1 { font-size: clamp(2.25rem, 5vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem,  2.5vw, 1.65rem); }
h4 { font-size: 1.2rem; }
h5 { font-size: 1rem; }

p { color: var(--text-secondary); }
a { color: inherit; text-decoration: none; transition: color var(--ease); }
img { display: block; max-width: 100%; height: auto; }
ul  { list-style: none; }
button, input, select, textarea { font-family: var(--font-body); }

/* ---- Layout helpers --------------------------------------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--sp-6);
}
.section     { padding-block: var(--sp-20); }
.section--sm { padding-block: var(--sp-12); }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.78rem 1.8rem;
  border-radius: var(--r-full);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.93rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--ease);
  white-space: nowrap;
  line-height: 1;
}
.btn--primary {
  background: var(--green-700);
  color: var(--white);
  border-color: var(--green-700);
}
.btn--primary:hover {
  background: var(--green-800);
  border-color: var(--green-800);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(27,123,71,.35);
}
.btn--outline {
  background: transparent;
  color: var(--green-700);
  border-color: var(--green-700);
}
.btn--outline:hover {
  background: var(--green-700);
  color: var(--white);
  transform: translateY(-1px);
}
.btn--white {
  background: var(--white);
  color: var(--green-700);
  border-color: var(--white);
}
.btn--white:hover {
  background: var(--green-50);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(255,255,255,.3);
}
.btn--lg {
  padding: 1rem 2.3rem;
  font-size: 1rem;
}

/* ---- Badge ------------------------------------------------ */
.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  background: var(--green-100);
  color: var(--green-700);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: var(--sp-4);
}

/* ---- Section header --------------------------------------- */
.section-header {
  text-align: center;
  max-width: 620px;
  margin-inline: auto;
  margin-bottom: var(--sp-12);
}
.section-header p {
  margin-top: var(--sp-3);
  font-size: 1.05rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.nav__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.025em;
  color: var(--text-primary);
}
.nav__logo .logo-accent { color: var(--green-700); }

.nav__links {
  display: flex;
  align-items: center;
  gap: var(--sp-8);
}
.nav__links a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--text-secondary);
}
.nav__links a:hover,
.nav__links a.active { color: var(--green-700); }

.nav__cta { display: flex; align-items: center; gap: var(--sp-3); }

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: var(--sp-2);
  background: none;
  border: none;
}
.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--ease);
}
.nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav__mobile {
  display: none;
  flex-direction: column;
  border-top: 1px solid var(--border);
  padding-block: var(--sp-4);
}
.nav__mobile a {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1rem;
  color: var(--text-secondary);
  padding: 0.8rem var(--sp-6);
  transition: all var(--ease);
}
.nav__mobile a:hover { color: var(--green-700); background: var(--green-50); }
.nav__mobile .btn { margin: var(--sp-4) var(--sp-6) var(--sp-2); }
.nav__mobile.is-open { display: flex; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 50%, rgba(27,123,71,.09) 0%, transparent 68%);
  pointer-events: none;
}
.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
  padding-block: var(--sp-20);
  position: relative;
}
.hero__title {
  margin-top: var(--sp-4);
  font-size: clamp(2.6rem, 5.5vw, 4.1rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.035em;
}
.hero__title .accent { color: var(--green-700); }
.hero__desc {
  margin-top: var(--sp-5);
  font-size: 1.08rem;
  line-height: 1.75;
  max-width: 490px;
}
.hero__actions {
  margin-top: var(--sp-8);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}
.hero__stats {
  margin-top: var(--sp-12);
  display: flex;
  gap: var(--sp-10);
}
.hero__stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.8rem;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}
.hero__stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.hero__visual {
  position: relative;
}
.hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__img-chip {
  position: absolute;
  bottom: var(--sp-4);
  left: var(--sp-4);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(10px);
  border-radius: var(--r-lg);
  padding: var(--sp-3) var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  box-shadow: var(--shadow-md);
}
.hero__img-chip-icon {
  width: 42px;
  height: 42px;
  background: var(--green-100);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.hero__img-chip-text strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  color: var(--text-primary);
}
.hero__img-chip-text span {
  font-size: 0.73rem;
  color: var(--text-muted);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--white); }

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
  transition: all var(--ease-slow);
}
.feature-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
  transform: translateY(-3px);
}
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-100);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--sp-5);
}
.feature-card h3 { font-size: 1.15rem; margin-bottom: var(--sp-3); }

/* ============================================================
   PRODUCTS SECTION
   ============================================================ */
.products { background: var(--off-white); }

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all var(--ease-slow);
}
.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}
.product-card__img {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}
.product-card:hover .product-card__img img { transform: scale(1.06); }

.product-card__body {
  padding: var(--sp-5) var(--sp-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card__cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--green-600);
  font-family: var(--font-heading);
  margin-bottom: var(--sp-2);
}
.product-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}
.product-card__desc {
  font-size: 0.88rem;
  line-height: 1.65;
  flex: 1;
  margin-bottom: var(--sp-5);
}
.product-card__action {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--green-700);
  display: flex;
  align-items: center;
  gap: var(--sp-1);
  margin-top: auto;
  transition: gap var(--ease);
}
.product-card:hover .product-card__action { gap: var(--sp-2); }

/* Products page — full grid */
.products-full-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-6);
}

/* Selectable product card */
.product-card--selectable { cursor: pointer; }
.product-card--selectable.selected {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(27,123,71,.18);
}
.product-card__select-mark {
  display: none;
  width: 24px;
  height: 24px;
  background: var(--green-700);
  border-radius: var(--r-full);
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.product-card--selectable.selected .product-card__select-mark { display: flex; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800) 0%, var(--green-700) 55%, var(--green-600) 100%);
  color: var(--white);
  text-align: center;
}
.cta-banner h2 { color: var(--white); }
.cta-banner p {
  color: rgba(255,255,255,.85);
  font-size: 1.05rem;
  margin-top: var(--sp-4);
}
.cta-banner__actions {
  margin-top: var(--sp-8);
  display: flex;
  justify-content: center;
  gap: var(--sp-4);
  flex-wrap: wrap;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,.65);
  padding-block: var(--sp-16) var(--sp-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-8);
  padding-bottom: var(--sp-12);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--white);
  letter-spacing: -0.02em;
}
.footer__logo .logo-accent { color: var(--green-400); }
.footer__tagline {
  margin-top: var(--sp-3);
  font-size: 0.88rem;
  line-height: 1.65;
  max-width: 270px;
}
.footer__col-title {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: var(--sp-4);
}
.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,.55);
  transition: color var(--ease);
}
.footer__links a:hover { color: var(--green-400); }
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--sp-8);
  font-size: 0.82rem;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--green-50) 0%, var(--off-white) 100%);
  padding-block: var(--sp-16);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); }
.page-hero p {
  margin-top: var(--sp-4);
  font-size: 1.05rem;
  max-width: 540px;
  margin-inline: auto;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-story--reverse { direction: rtl; }
.about-story--reverse > * { direction: ltr; }
.about-story__img {
  border-radius: var(--r-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-lg);
}
.about-story__img img { width: 100%; height: 100%; object-fit: cover; }
.about-story__content h2 { margin-bottom: var(--sp-5); }
.about-story__content p + p { margin-top: var(--sp-4); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
}
.value-card {
  text-align: center;
  padding: var(--sp-8) var(--sp-6);
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  transition: all var(--ease-slow);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--green-300);
  transform: translateY(-3px);
}
.value-icon {
  width: 64px;
  height: 64px;
  background: var(--green-100);
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto var(--sp-4);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: var(--sp-3); }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
}
.team-card {
  text-align: center;
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--white);
}
.team-card__avatar {
  aspect-ratio: 1;
  background: var(--green-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}
.team-card__body { padding: var(--sp-5) var(--sp-4); }
.team-card__name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-1);
}
.team-card__role {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ============================================================
   SHOP
   ============================================================ */
.shop-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--sp-10);
  align-items: start;
}
.shop-sidebar {
  position: sticky;
  top: 86px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}
.shop-sidebar h3 { font-size: 1.25rem; margin-bottom: var(--sp-2); }
.shop-sidebar > p { font-size: 0.9rem; margin-bottom: var(--sp-6); }

/* ============================================================
   FORMS
   ============================================================ */
.form-group { margin-bottom: var(--sp-5); }

.form-label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.875rem;
  color: var(--text-primary);
  margin-bottom: var(--sp-2);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.76rem 1rem;
  background: var(--surface);
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-size: 0.9rem;
  color: var(--text-primary);
  transition: border-color var(--ease), box-shadow var(--ease), background var(--ease);
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--green-600);
  box-shadow: 0 0 0 3px rgba(27,123,71,.12);
  background: var(--white);
}
.form-textarea {
  resize: vertical;
  min-height: 108px;
  line-height: 1.6;
}
.form-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234A6655' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-hint {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: var(--sp-1);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  border: 1.5px solid var(--border);
  border-radius: var(--r-sm);
  accent-color: var(--green-700);
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.form-check-label {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.55;
}
.form-check-label a { color: var(--green-700); text-decoration: underline; }
.form-divider {
  text-align: center;
  position: relative;
  margin-block: var(--sp-6);
  font-size: 0.82rem;
  color: var(--text-muted);
}
.form-divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.form-divider span {
  position: relative;
  background: var(--white);
  padding-inline: var(--sp-3);
}

/* ============================================================
   REGISTER
   ============================================================ */
.register-wrapper {
  min-height: calc(100vh - 68px);
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-16) var(--sp-6);
}
.register-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--sp-12) var(--sp-10);
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-md);
}
.register-card__header {
  text-align: center;
  margin-bottom: var(--sp-8);
}
.register-logo {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  margin-bottom: var(--sp-6);
}
.register-logo .logo-accent { color: var(--green-700); }
.register-card h2 { font-size: 1.7rem; margin-bottom: var(--sp-2); }

/* ============================================================
   PRIVACY / PROSE
   ============================================================ */
.prose {
  max-width: 780px;
  margin-inline: auto;
}
.prose h2 {
  font-size: 1.55rem;
  margin-top: var(--sp-12);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-3);
  border-bottom: 1px solid var(--border);
}
.prose h3 {
  font-size: 1.1rem;
  margin-top: var(--sp-6);
  margin-bottom: var(--sp-3);
}
.prose p {
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: var(--sp-4);
}
.prose ul {
  list-style: disc;
  padding-left: var(--sp-8);
  margin-bottom: var(--sp-4);
}
.prose li {
  font-size: 0.97rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: var(--sp-2);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.text-center   { text-align: center; }
.text-green    { color: var(--green-700); }
.mt-4  { margin-top: var(--sp-4); }
.mt-6  { margin-top: var(--sp-6); }
.mt-8  { margin-top: var(--sp-8); }
.mt-12 { margin-top: var(--sp-12); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .footer__grid   { grid-template-columns: 1fr 1fr; gap: var(--sp-8); }
  .team-grid      { grid-template-columns: repeat(2, 1fr); }
  .shop-layout    { grid-template-columns: 1fr; }
  .shop-sidebar   { position: static; }
  .products-full-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links, .nav__cta { display: none; }
  .nav__toggle            { display: flex; }

  .hero__inner  { grid-template-columns: 1fr; padding-block: var(--sp-12); }
  .hero__visual { display: none; }

  .products-grid { grid-template-columns: 1fr; }
  .values-grid   { grid-template-columns: 1fr; }
  .about-story   { grid-template-columns: 1fr; gap: var(--sp-8); }
  .about-story--reverse { direction: ltr; }
  .products-full-grid { grid-template-columns: 1fr; }

  .form-row    { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .team-grid   { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero__stats    { flex-wrap: wrap; gap: var(--sp-6); }
  .hero__actions  { flex-direction: column; align-items: flex-start; }
  .register-card  { padding: var(--sp-8) var(--sp-5); }
  .cta-banner__actions { flex-direction: column; align-items: center; }
}
