/* ===== CUSTOM PROPERTIES ===== */
:root {
  --teal: #2DC4BE;
  --teal-dark: #229B96;
  --teal-light: #EAF9F8;
  --navy: #1B3461;
  --navy-light: #243F7A;
  --white: #ffffff;
  --off-white: #F8FAFA;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-400: #9CA3AF;
  --gray-600: #4B5563;
  --gray-800: #1F2937;
  --text: #111827;

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.12);

  --transition: 0.2s ease;
  --nav-height: 68px;
}

/* ===== RESET ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: var(--font); }

/* ===== TYPOGRAPHY ===== */
h1 { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); font-weight: 700; line-height: 1.15; letter-spacing: -0.02em; }
h3 { font-size: 1.15rem; font-weight: 600; line-height: 1.35; }

/* ===== LAYOUT HELPERS ===== */
.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section {
  padding: 100px 0;
}

.section--alt {
  background: var(--gray-50);
}

.section__header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 64px;
}

.section__label {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section__title {
  margin-bottom: 16px;
  color: var(--text);
}

.section__desc {
  color: var(--gray-600);
  font-size: 1.05rem;
  line-height: 1.75;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: var(--nav-height);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--gray-200);
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow);
}

.nav__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.nav__logo-img {
  height: 28px;
  width: auto;
  display: block;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav__links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-600);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--navy);
  background: var(--gray-100);
}

.nav__links .nav__cta {
  background: var(--teal);
  color: var(--white);
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  margin-left: 8px;
}

.nav__links .nav__cta:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  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); }

/* ===== PAGE HEADER (used on sub-pages) ===== */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: calc(var(--nav-height) + 80px) 0 80px;
  text-align: center;
}

.page-hero__title {
  color: var(--white);
  margin-bottom: 16px;
}

.page-hero__desc {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 520px;
  margin: 0 auto;
}

/* ===== HERO ===== */
.hero {
  background: linear-gradient(140deg, var(--navy) 0%, #1e3d72 55%, #1a3360 100%);
  padding: calc(var(--nav-height) + 90px) 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero__container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__label {
  display: inline-block;
  background: rgba(45,196,190,0.2);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.hero__title {
  color: var(--white);
  margin-bottom: 20px;
}

.hero__subtitle {
  color: rgba(255,255,255,0.72);
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 44px;
  max-width: 460px;
}

.hero__badges {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__badge {
  display: block;
  transition: transform var(--transition), opacity var(--transition);
}

.hero__badge:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.hero__badge img {
  height: 44px;
  width: 148px;
  object-fit: contain;
  object-position: center;
}

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

.hero__phone {
  max-height: 540px;
  width: auto;
  filter: drop-shadow(0 24px 64px rgba(0,0,0,0.45));
  transform: translateY(20px);
}

/* ===== HIGHLIGHTS ===== */
.highlights__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.highlight-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
}

.highlight-card:hover {
  box-shadow: var(--shadow);
  border-color: var(--teal);
  transform: translateY(-3px);
}

.highlight-card__icon {
  width: 48px;
  height: 48px;
  background: var(--teal-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--teal-dark);
}

.highlight-card__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight-card h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.highlight-card p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.65;
}

/* ===== SCREENSHOTS STRIP ===== */
.screenshots {
  padding: 80px 0;
  overflow: hidden;
  background: var(--gray-50);
}

.screenshots__row {
  display: flex;
  gap: 24px;
  align-items: flex-end;
  justify-content: center;
  flex-wrap: wrap;
}

.screenshots__phone {
  height: 380px;
  width: auto;
  border-radius: 20px;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.15));
}

.screenshots__phone--tall {
  height: 460px;
}

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
}

.pricing-card--featured {
  background: var(--navy);
  border-color: var(--navy);
}

.pricing-card__badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--teal);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-card__tier {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--teal);
  margin-bottom: 12px;
}

.pricing-card__price {
  font-size: 2.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card--featured .pricing-card__price {
  color: var(--white);
}

.pricing-card__currency {
  font-size: 1.4rem;
  font-weight: 600;
  vertical-align: top;
  margin-top: 6px;
  display: inline-block;
}

.pricing-card__period {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.pricing-card--featured .pricing-card__period {
  color: rgba(255,255,255,0.5);
}

.pricing-card__note {
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-card--featured .pricing-card__note {
  color: rgba(255,255,255,0.45);
  border-bottom-color: rgba(255,255,255,0.1);
}

.pricing-card__features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.pricing-card--featured .pricing-card__features li {
  color: rgba(255,255,255,0.8);
}

.pricing-card__features li .check {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pricing-card--featured .pricing-card__features li .check {
  background: rgba(45,196,190,0.2);
}

.pricing-card__features li .check svg {
  width: 10px;
  height: 10px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pricing-card__cta {
  display: block;
  text-align: center;
  margin-top: 32px;
  padding: 13px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: background var(--transition), transform var(--transition);
  background: var(--teal);
  color: var(--white);
}

.pricing-card__cta:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ===== PROCESS ===== */
.process__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.process__step {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.process__num {
  width: 52px;
  height: 52px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  flex-shrink: 0;
  box-shadow: 0 4px 16px rgba(45,196,190,0.35);
}

.process__phone {
  max-height: 340px;
  width: auto;
  margin-bottom: 28px;
  filter: drop-shadow(0 10px 28px rgba(0,0,0,0.15));
}

.process__step h3 {
  margin-bottom: 10px;
  color: var(--text);
}

.process__step p {
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color var(--transition);
}

.faq__item.open {
  border-color: var(--teal);
}

.faq__question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  font-family: var(--font);
  font-size: 0.975rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq__icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--teal);
  transition: transform var(--transition);
}

.faq__icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq__item.open .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  display: none;
  padding: 0 24px 20px;
  color: var(--gray-600);
  font-size: 0.9rem;
  line-height: 1.75;
}

.faq__item.open .faq__answer {
  display: block;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);
  padding: 80px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

.cta-banner__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
  border: none;
}

.btn:hover { transform: translateY(-2px); }

.btn--white {
  background: var(--white);
  color: var(--teal-dark);
}

.btn--white:hover {
  background: var(--off-white);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}

.btn--outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn--teal {
  background: var(--teal);
  color: var(--white);
}

.btn--teal:hover {
  background: var(--teal-dark);
  box-shadow: 0 4px 16px rgba(45,196,190,0.35);
}

.btn--navy {
  background: var(--navy);
  color: var(--white);
}

.btn--navy:hover {
  background: var(--navy-light);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 72px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 56px;
}

.footer__brand {}

.footer__logo {
  display: inline-block;
  margin-bottom: 16px;
}

.footer__logo-img {
  height: 26px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
}

.footer__tagline {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer__badge img {
  height: 38px;
  width: 126px;
  object-fit: contain;
  object-position: center;
  opacity: 0.85;
  transition: opacity var(--transition);
}

.footer__badge:hover img { opacity: 1; }

.footer__heading {
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  transition: color var(--transition);
}

.footer__links a:hover { color: var(--teal); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.88rem;
}

.footer__contact a { transition: color var(--transition); }
.footer__contact a:hover { color: var(--teal); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

/* ===== MEDIA PAGE ===== */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.media-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.media-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.media-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: var(--gray-100);
}

.media-card__img--poster {
  aspect-ratio: 3/4;
  object-fit: contain;
  padding: 16px;
  background: var(--gray-50);
}

.media-card__img--social {
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
}

.media-card__body {
  padding: 20px 22px;
}

.media-card__tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 3px 10px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 10px;
}

.media-card h3 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.media-card p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-bottom: 18px;
  line-height: 1.65;
}

.media-card .btn {
  width: 100%;
  justify-content: center;
  font-size: 0.875rem;
  padding: 11px 20px;
}

/* Caption box */
.caption-box {
  background: var(--navy);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.caption-box__label {
  display: inline-block;
  background: rgba(45,196,190,0.2);
  color: var(--teal);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.caption-box h3 {
  color: var(--white);
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.caption-box p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.caption-box__text {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px 28px;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  line-height: 1.8;
  position: relative;
}

.caption-box__copy {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.7);
  border-radius: 6px;
  padding: 6px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
  font-family: var(--font);
}

.caption-box__copy:hover {
  background: rgba(255,255,255,0.18);
  color: var(--white);
}

/* ===== SHOP PAGE ===== */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow var(--transition), transform var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.product-card__img-wrap {
  background: var(--gray-50);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 24px;
}

.product-card__img {
  max-height: 200px;
  max-width: 100%;
  width: auto;
  object-fit: contain;
}

.product-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.product-card__desc {
  font-size: 0.875rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 20px;
  flex: 1;
}

.product-card__price {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.product-card__price span {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-400);
  letter-spacing: 0;
}

/* Controls */
.product-controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.product-controls label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 5px;
}

.product-controls select,
.product-controls input[type="number"] {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.9rem;
  color: var(--text);
  background: var(--white);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: border-color var(--transition);
}

.product-controls select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239CA3AF' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 16px;
  padding-right: 36px;
}

.product-controls select:focus,
.product-controls input[type="number"]:focus {
  outline: none;
  border-color: var(--teal);
}

.product-card__order {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--teal);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.product-card__order:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* Free badge */
.product-card__free {
  display: inline-block;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  margin-left: 8px;
  vertical-align: middle;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Info box on shop page */
.shop-info {
  max-width: 680px;
  margin: 0 auto 64px;
  background: var(--teal-light);
  border: 1px solid rgba(45,196,190,0.25);
  border-radius: var(--radius);
  padding: 22px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.shop-info svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  stroke: var(--teal-dark);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  margin-top: 2px;
}

.shop-info p {
  font-size: 0.9rem;
  color: var(--teal-dark);
  line-height: 1.7;
}

.shop-info strong {
  font-weight: 700;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .highlights__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 900px) {
  .hero__container {
    grid-template-columns: 1fr;
  }
  .hero__visual {
    display: none;
  }
  .hero__subtitle {
    max-width: 100%;
  }
  .process__steps {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .media-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .shop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .caption-box {
    grid-template-columns: 1fr;
    padding: 36px 28px;
    gap: 28px;
  }
}

/* ===== CART ===== */
.cart-section {
  display: none;
  margin-top: 72px;
  border: 2px solid var(--teal);
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-margin-top: calc(var(--nav-height) + 24px);
}

.cart-section.visible {
  display: block;
}

.cart__header {
  background: var(--navy);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.cart__header-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart__header h2 {
  color: var(--white);
  font-size: 1.2rem;
}

.cart__header-count {
  background: var(--teal);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
}

.cart__clear {
  background: none;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.65);
  padding: 7px 14px;
  border-radius: 6px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}

.cart__clear:hover {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.cart__items {
  padding: 0 28px;
  background: var(--white);
}

.cart__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--gray-200);
}

.cart__item:last-child {
  border-bottom: none;
}

.cart__item-info {
  flex: 1;
  min-width: 0;
}

.cart__item-name {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cart__item-meta {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.cart__item-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.cart__qty-btn {
  width: 30px;
  height: 30px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 6px;
  font-size: 1.1rem;
  font-family: var(--font);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  line-height: 1;
  color: var(--text);
}

.cart__qty-btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.cart__qty-value {
  min-width: 28px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
}

.cart__item-price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  min-width: 72px;
  text-align: right;
  flex-shrink: 0;
}

.cart__item-remove {
  background: none;
  border: none;
  color: var(--gray-400);
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cart__item-remove:hover {
  color: #ef4444;
  background: #fef2f2;
}

.cart__item-remove svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.cart__footer {
  padding: 22px 28px;
  background: var(--gray-50);
  border-top: 2px solid var(--gray-200);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.cart__total-line {
  font-size: 1rem;
  color: var(--gray-600);
}

.cart__total-amount {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  display: block;
  margin-top: 2px;
}

/* Floating cart button */
.cart-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 150;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  padding: 13px 20px 13px 16px;
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(27,52,97,0.35);
  display: none;
  align-items: center;
  gap: 10px;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.cart-fab.visible {
  display: flex;
}

.cart-fab:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(27,52,97,0.4);
}

.cart-fab svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.cart-fab__badge {
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Number range inputs */
.number-range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.number-preview {
  grid-column: 1 / -1;
  background: var(--teal-light);
  border: 1px solid rgba(45,196,190,0.3);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.85rem;
  color: var(--teal-dark);
  line-height: 1.5;
}

.number-preview strong {
  font-weight: 700;
}

/* Add-to-cart button variant */
.product-card__add {
  display: block;
  width: 100%;
  text-align: center;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: var(--radius-sm);
  padding: 13px 20px;
  font-family: var(--font);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.product-card__add:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

.product-card__add.added {
  background: var(--teal);
}

/* Legal pages */
.legal-content {
  max-width: 760px;
  margin: 0 auto;
  padding: 80px 28px;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 8px;
}

.legal-content .legal-updated {
  color: var(--gray-400);
  font-size: 0.875rem;
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 1.25rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--text);
}

.legal-content p,
.legal-content li {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 20px;
  margin-bottom: 16px;
}

.legal-content a {
  color: var(--teal-dark);
  text-decoration: underline;
}

@media (max-width: 700px) {
  :root { --nav-height: 60px; }

  .section { padding: 72px 0; }

  .nav__links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow);
    gap: 2px;
  }

  .nav__links.open { display: flex; }

  .nav__links a {
    padding: 10px 14px;
  }

  .nav__links .nav__cta {
    margin-left: 0;
    text-align: center;
    margin-top: 8px;
  }

  .nav__toggle { display: flex; }

  .highlights__grid { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .media-grid { grid-template-columns: 1fr; }
  .shop-grid { grid-template-columns: 1fr; }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-banner__actions {
    flex-direction: column;
    align-items: center;
  }

  .hero__badges { justify-content: flex-start; }
}
