/* Trendly site styles — blue accent (#3b82f6), two themes.
   Structure adapted from "Pavlova" landing, palette ours.
   Theme switching: <html class="light"> ↔ default (dark). */

:root {
  /* Dark (default) */
  --bg:            #0b0b0d;
  --bg-grad:       #1a2447;
  --card:          #14161c;
  --card-2:        #1a1d25;
  --text:          #e7e9ee;
  --text-dim:      #a8b0c2;
  --text-dimmer:   #8a8f9a;
  --text-dimmest:  #5a5f6a;
  --accent:        #3b82f6;
  --accent-hover:  #2563eb;
  --accent-soft:   rgba(59,130,246,.12);
  --border:        #20232a;
  --border-2:      #2c313b;
  --header-bg:     rgba(11,11,13,.6);
  --arrow-bg:      rgba(20,22,28,.85);
  --dot-bg:        rgba(255,255,255,.25);
  --dot-active:    #fff;
  --label-bg:      rgba(0,0,0,.4);

  /* H1 gradient */
  --h1-grad:       linear-gradient(180deg, #ffffff 0%, #a8b0c2 100%);

  /* Gallery placeholder gradients */
  --ph1:           radial-gradient(circle at 30% 20%, rgba(59,130,246,.25), transparent 50%),
                   radial-gradient(circle at 70% 80%, rgba(168,85,247,.18), transparent 55%),
                   linear-gradient(135deg, #14161c 0%, #1f2330 100%);
  --ph2:           radial-gradient(circle at 20% 70%, rgba(34,197,94,.22), transparent 50%),
                   radial-gradient(circle at 80% 30%, rgba(59,130,246,.2), transparent 50%),
                   linear-gradient(135deg, #14161c 0%, #1a2030 100%);
  --ph3:           radial-gradient(circle at 50% 50%, rgba(249,115,22,.22), transparent 50%),
                   radial-gradient(circle at 90% 90%, rgba(59,130,246,.2), transparent 50%),
                   linear-gradient(135deg, #14161c 0%, #1f1a2c 100%);
  --ph-default:    radial-gradient(circle at 30% 30%, rgba(59,130,246,.18), transparent 50%),
                   linear-gradient(135deg, #14161c 0%, #1a2030 100%);

  /* Page gradient backdrop */
  --page-grad:     radial-gradient(ellipse 90% 60% at 50% -10%, var(--bg-grad) 0%, var(--bg) 55%);
}

html.light {
  /* Light theme */
  --bg:            #f6f8fb;
  --bg-grad:       #e7eef9;
  --card:          #ffffff;
  --card-2:        #f1f3f7;
  --text:          #0f172a;
  --text-dim:      #475569;
  --text-dimmer:   #64748b;
  --text-dimmest:  #94a3b8;
  --accent:        #2563eb;
  --accent-hover:  #1d4ed8;
  --accent-soft:   rgba(37,99,235,.10);
  --border:        #e5e7eb;
  --border-2:      #cbd5e1;
  --header-bg:     rgba(255,255,255,.7);
  --arrow-bg:      rgba(255,255,255,.9);
  --dot-bg:        rgba(15,23,42,.25);
  --dot-active:    #0f172a;
  --label-bg:      rgba(255,255,255,.75);

  --h1-grad:       linear-gradient(180deg, #0f172a 0%, #334155 100%);

  --ph1:           radial-gradient(circle at 30% 20%, rgba(37,99,235,.18), transparent 50%),
                   radial-gradient(circle at 70% 80%, rgba(168,85,247,.12), transparent 55%),
                   linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
  --ph2:           radial-gradient(circle at 20% 70%, rgba(34,197,94,.14), transparent 50%),
                   radial-gradient(circle at 80% 30%, rgba(37,99,235,.14), transparent 50%),
                   linear-gradient(135deg, #ecfdf5 0%, #f8fafc 100%);
  --ph3:           radial-gradient(circle at 50% 50%, rgba(249,115,22,.15), transparent 50%),
                   radial-gradient(circle at 90% 90%, rgba(37,99,235,.14), transparent 50%),
                   linear-gradient(135deg, #fff7ed 0%, #f8fafc 100%);
  --ph-default:    radial-gradient(circle at 30% 30%, rgba(37,99,235,.12), transparent 50%),
                   linear-gradient(135deg, #eef2ff 0%, #f8fafc 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { background: var(--bg); }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  background: var(--page-grad);
  min-height: 100vh;
  transition: background-color .2s, color .2s;
  font-feature-settings: "cv11", "ss01", "ss03";
}
a { color: var(--accent); text-decoration: none; }
a:hover { color: var(--accent-hover); }
img { display: block; max-width: 100%; height: auto; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ====== HEADER ====== */
.header {
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 50;
}
.header__row {
  display: flex; align-items: center; gap: 24px; padding: 16px 0;
}
.logo {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--text); white-space: nowrap;
}
.logo svg { width: 30px; height: 30px; }
.logo__text { font-size: 20px; font-weight: 700; letter-spacing: -.3px; }
.logo__text em { color: var(--accent); font-style: normal; }

.header__tagline {
  font-size: 13px; color: var(--text-dimmer);
  max-width: 280px; line-height: 1.35;
}
.header__lang { display: flex; gap: 6px; margin-left: auto; }
.lang-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-dimmer);
  padding: 5px 10px; font-size: 12px; font-weight: 600; border-radius: 8px;
  transition: all .15s;
}
.lang-btn:hover { color: var(--text); border-color: var(--border-2); }
.lang-btn.active { color: var(--text); border-color: var(--accent); }

/* Theme toggle */
.theme-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--text-dimmer);
  width: 30px; height: 28px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 8px; cursor: pointer; padding: 0;
  transition: all .15s;
  font-family: inherit;
}
.theme-btn:hover { color: var(--text); border-color: var(--border-2); }
.theme-btn svg { width: 14px; height: 14px; }
/* Icon shows what clicking will SWITCH TO: dark→sun (go light), light→moon (go dark). */
.theme-btn .icon-sun  { display: inline-block; }
.theme-btn .icon-moon { display: none; }
html.light .theme-btn .icon-sun  { display: none; }
html.light .theme-btn .icon-moon { display: inline-block; }

.header__cta { padding: 9px 18px; font-size: 13px; }

@media (max-width: 900px) {
  .header__tagline { display: none; }
}

/* ====== BUTTONS ====== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 22px; border-radius: 10px;
  font-weight: 600; font-size: 14px;
  border: 1px solid transparent;
  transition: all .15s;
  cursor: pointer; font-family: inherit;
}
.btn svg { width: 14px; height: 14px; }
.btn--primary {
  background: var(--accent); color: #fff;
  box-shadow: 0 8px 24px -10px rgba(59,130,246,.6);
}
.btn--primary:hover {
  background: var(--accent-hover); color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 12px 28px -10px rgba(59,130,246,.7);
}
.btn--ghost {
  background: transparent; color: var(--text);
  border-color: var(--border-2);
}
.btn--ghost:hover { background: var(--card); border-color: var(--accent); color: var(--text); }
.btn--disabled {
  background: var(--card); color: var(--text-dimmer);
  box-shadow: none; cursor: not-allowed; pointer-events: none;
}

/* ====== HERO ====== */
.hero { padding: 32px 0 56px; }
.hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: stretch;
}
.hero__left {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 36px 32px;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--accent); font-weight: 600; font-size: 13px;
  margin-bottom: 20px;
  background: var(--accent-soft);
  padding: 6px 12px; border-radius: 999px;
}
.badge .pin {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
}
.h1 {
  font-size: clamp(28px, 4.2vw, 42px);
  line-height: 1.1; letter-spacing: -.5px;
  font-weight: 800;
  margin: 0 0 22px;
  background: var(--h1-grad);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.h1 .accent {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}
.checks { list-style: none; margin: 0 0 24px; padding: 0; }
.checks li {
  display: flex; gap: 12px;
  padding: 7px 0;
  font-size: 15px;
  color: var(--text);
}
.checks li::before {
  content: "";
  flex: 0 0 18px; height: 18px; margin-top: 3px;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%233b82f6' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
  background-repeat: no-repeat; background-position: center; background-size: 18px;
}
.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero__socials { display: flex; gap: 10px; margin-top: 14px; }
.soc {
  width: 36px; height: 36px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: #fff; font-size: 12px; font-weight: 700;
}
.soc--tg { background: #27a7e7; }
.soc--tg:hover { background: #1f8fc7; color: #fff; }
.hero__refer { margin-top: 16px; font-size: 13px; color: var(--text-dimmer); }

/* ====== Gallery ====== */
.gallery {
  position: relative;
  border-radius: 16px; overflow: hidden;
  background: var(--card);
  border: 1px solid var(--border);
  min-height: 420px;
}
.gallery__track {
  display: flex; width: 100%; height: 100%;
  transition: transform .35s ease;
}
.gallery__slide {
  flex: 0 0 100%; height: 100%; min-height: 420px;
  background-size: cover; background-position: center;
  display: flex; align-items: center; justify-content: center;
  position: relative;
}
.gallery__placeholder              { background: var(--ph1); }
.gallery__placeholder--2           { background: var(--ph2); }
.gallery__placeholder--3           { background: var(--ph3); }
.ph-label {
  color: var(--text-dimmer); font-size: 13px;
  background: var(--label-bg); padding: 8px 14px; border-radius: 8px;
  border: 1px solid var(--border-2);
}

/* ====== Hero mock-up gallery ====== */
/* Three niche-specific mock cards (food / beauty / pet) rotated by the
   gallery script. Same visual language as the real /trending/ result tile
   so the user instantly understands the product. Pure CSS, scales with
   container, themes itself. */
.hero-gallery {
  position: relative;
  border-radius: 16px;
  background: var(--ph1);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 460px;
}
.hero-gallery__track {
  display: flex; width: 100%; height: 100%;
  transition: transform .35s ease;
}
.hero-gallery__slide {
  flex: 0 0 100%;
  display: flex; align-items: center; justify-content: center;
  padding: 32px 24px 56px;
  min-height: 460px;
}

.hero-mock-card {
  width: 100%; max-width: 320px;
  background: var(--card); border: 1px solid var(--border-2);
  border-radius: 14px; overflow: hidden;
  box-shadow: 0 20px 50px -20px rgba(0,0,0,.5), 0 0 0 1px rgba(59,130,246,.08);
  transition: transform .25s;
}
.hero-mock-card:hover { transform: translateY(-2px); }

.hero-mock-thumb {
  position: relative; width: 100%; padding-top: 56.25%;
  display: flex; align-items: center; justify-content: center;
  background-size: cover; background-position: center;
  background-color: #1a1f2a;
}
/* Dark gradient overlay on top of the photo for badge/play readability */
.hero-mock-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,.10) 0%, rgba(0,0,0,.45) 100%);
  pointer-events: none;
}

/* Niche-specific thumbnail photos (Unsplash, License-allowed) */
.hero-mock-card--food   .hero-mock-thumb { background-image: url('/assets/img/mock/food.webp'); }
.hero-mock-card--beauty .hero-mock-thumb { background-image: url('/assets/img/mock/beauty.webp'); }
.hero-mock-card--pet    .hero-mock-thumb { background-image: url('/assets/img/mock/pet.webp'); }
.hero-mock-vir-badge {
  position: absolute; top: 8px; left: 8px; z-index: 2;
  background: rgba(34,197,94,.92); color: #fff;
  font-weight: 800; font-size: 12px; padding: 3px 8px; border-radius: 6px;
  backdrop-filter: blur(4px);
}
.hero-mock-duration {
  position: absolute; bottom: 8px; right: 8px; z-index: 2;
  background: rgba(0,0,0,.78); color: #fff;
  font-weight: 600; font-size: 11px; padding: 2px 6px; border-radius: 4px;
}
.hero-mock-play {
  position: absolute; top: 50%; left: 50%; z-index: 2;
  width: 52px; height: 52px;
  transform: translate(-50%, -50%);
  padding: 14px; box-sizing: content-box;
  background: rgba(0,0,0,.55); border-radius: 50%;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.5));
  backdrop-filter: blur(2px);
}

.hero-mock-body { padding: 14px; }
.hero-mock-title {
  font-size: 14px; font-weight: 600; color: var(--text);
  line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
  margin-bottom: 10px; min-height: 2.8em;
}
.hero-mock-channel { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.hero-mock-avatar {
  width: 24px; height: 24px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #60a5fa, #a78bfa);
}
.hero-mock-channel-info { min-width: 0; }
.hero-mock-channel-name { font-size: 12px; color: var(--text-dim); font-weight: 600; line-height: 1.2; }
.hero-mock-channel-subs { font-size: 11px; color: var(--text-dimmer); line-height: 1.2; margin-top: 2px; }
.hero-mock-small-ch {
  display: inline-block; font-size: 9px; font-weight: 700; padding: 1px 5px;
  border-radius: 4px; background: rgba(168,85,247,.15); color: #a78bfa;
  margin-left: 4px; vertical-align: middle;
}

.hero-mock-metrics { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 6px; margin-bottom: 10px; }
.hero-mock-metric { background: var(--bg); border-radius: 8px; padding: 7px 4px; text-align: center; }
.hero-mock-mv { font-size: 13px; font-weight: 800; color: var(--text); }
.hero-mock-ml { font-size: 9px; color: var(--text-dimmer); margin-top: 2px; text-transform: uppercase; letter-spacing: .3px; }

.hero-mock-vir-row { display: flex; align-items: center; justify-content: space-between; margin-bottom: 4px; }
.hero-mock-vir-label { font-size: 11px; color: var(--text-dimmer); font-weight: 600; }
.hero-mock-vir-num { font-size: 12px; font-weight: 800; color: #22c55e; }
.hero-mock-bar { height: 6px; background: var(--bg); border-radius: 3px; overflow: hidden; }
.hero-mock-bar-fill {
  width: 78%; height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, #22c55e, #16a34a);
}

@media (max-width: 600px) {
  .hero-mock { padding: 24px; min-height: 360px; }
  .hero-mock-card { transform: rotate(0deg); max-width: 280px; }
}

.gallery .arrow, .hero-gallery .arrow {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--arrow-bg);
  border: 1px solid var(--border-2);
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; cursor: pointer; user-select: none;
  z-index: 2;
}
.gallery .arrow:hover, .hero-gallery .arrow:hover { background: var(--card); }
.gallery .arrow.left,  .hero-gallery .arrow.left  { left: 14px; }
.gallery .arrow.right, .hero-gallery .arrow.right { right: 14px; }
.gallery .dots, .hero-gallery .dots {
  position: absolute; left: 0; right: 0; bottom: 16px;
  display: flex; justify-content: center; gap: 6px; z-index: 2;
}
.gallery .dots span, .hero-gallery .dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--dot-bg);
  cursor: pointer; transition: all .2s;
}
.gallery .dots span.active, .hero-gallery .dots span.active { background: var(--dot-active); width: 20px; border-radius: 3px; }

/* ====== SECTION ====== */
.section { padding: 64px 0; }
.section--white { background: var(--card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section--features { padding: 80px 0; }
.two-cols {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px; align-items: center;
}
.h2 {
  font-size: clamp(24px, 3.2vw, 34px);
  line-height: 1.2; letter-spacing: -.3px;
  font-weight: 800;
  margin: 0 0 20px;
  color: var(--text);
}
.lead p { margin: 0 0 14px; color: var(--text-dim); font-size: 15px; line-height: 1.65; }
.ph {
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--border);
  min-height: 360px;
  background: var(--ph-default);
  display: flex; align-items: center; justify-content: center;
}
.ph--mockup .ph-label { background: var(--label-bg); }

/* About-section illustration (legacy, kept for potential reuse) */
.about-image {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  line-height: 0;
  background: var(--card);
  border: 1px solid var(--border);
}
.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* "How it works" — two-col layout with numbered steps + dashboard mock */
.lead-intro {
  font-size: 16px; line-height: 1.6;
  color: var(--text-dim);
  margin-bottom: 28px;
}
.steps-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 22px;
}
.step {
  display: flex; gap: 16px; align-items: flex-start;
}
.step-num {
  flex-shrink: 0;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800; font-size: 16px;
  font-variant-numeric: tabular-nums;
  margin-top: 2px;
}
.step-body { flex: 1; min-width: 0; }
.step-title {
  font-size: 18px; font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -.2px;
}
.step-desc {
  font-size: 14.5px; line-height: 1.6;
  color: var(--text-dim);
  margin: 0;
}

/* "How it works" — 3 steps (legacy grid, kept for potential reuse) */
.how-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1080px;
  margin: 0 auto;
}
.how-step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  transition: border-color .15s, transform .15s;
}
.how-step:hover { border-color: var(--accent); transform: translateY(-2px); }
.how-step__head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 18px;
}
.how-step__num {
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800; font-size: 14px;
  font-variant-numeric: tabular-nums;
}
.how-step__icon {
  width: 36px; height: 36px;
  color: var(--text-dimmer);
  opacity: .9;
}
.how-step__icon svg { width: 100%; height: 100%; }
.how-step__title {
  font-size: 17px; font-weight: 700;
  color: var(--text); margin-bottom: 8px;
  letter-spacing: -.2px;
}
.how-step__desc {
  font-size: 14px; line-height: 1.55;
  color: var(--text-dim);
  margin: 0;
}

@media (max-width: 900px) {
  .how-grid { grid-template-columns: 1fr; max-width: 540px; }
}

/* ====== Section head ====== */
.section__head { text-align: center; margin-bottom: 40px; }
.section__head .h2 { margin-bottom: 12px; }
.section__sub { color: var(--text-dimmer); font-size: 15px; max-width: 720px; margin: 0 auto; line-height: 1.55; }

/* ====== Features grid ====== */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.feature {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 28px;
  transition: border-color .15s, transform .15s;
}
.feature:hover { border-color: var(--accent); transform: translateY(-2px); }
.feature__icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--accent-soft); color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.feature__icon svg { width: 22px; height: 22px; }
.feature__title { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.feature__desc { font-size: 14px; color: var(--text-dim); line-height: 1.55; }

/* ====== PRICING ====== */
.page-hero { padding: 56px 0 24px; text-align: center; }
.page-hero__title { margin: 0 auto 12px; }
.page-hero__sub { color: var(--text-dimmer); font-size: 15px; max-width: 600px; margin: 0 auto; }

.section--pricing { padding: 32px 0 80px; }
.pricing-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
  max-width: 800px; margin: 0 auto 32px;
}
.plan {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 16px; padding: 32px 28px;
  display: flex; flex-direction: column; gap: 16px;
}
.plan--highlight { border-color: var(--accent); }
.plan--soon .plan__cta { background: var(--card-2); color: var(--text-dimmer); }
.plan__head { display: flex; justify-content: space-between; align-items: center; }
.plan__name { font-size: 17px; font-weight: 700; color: var(--text); margin: 0; }
.plan__badge {
  background: var(--accent-soft); color: var(--accent);
  font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 999px;
  text-transform: uppercase; letter-spacing: .4px;
}
.plan__price { font-size: 34px; font-weight: 800; color: var(--text); line-height: 1; }
.plan__currency { font-size: 18px; vertical-align: super; color: var(--text-dim); margin-right: 2px; }
.plan__period { font-size: 13px; color: var(--text-dimmer); font-weight: 500; margin-left: 4px; }
.plan__desc { color: var(--text-dim); font-size: 13.5px; }
.plan__features { list-style: none; display: flex; flex-direction: column; gap: 8px; padding: 0; }
.plan__features li {
  font-size: 13.5px; color: var(--text-dim);
  display: flex; align-items: flex-start; gap: 8px;
}
.plan__features li::before {
  content: "✓"; color: var(--accent); font-weight: 700; flex-shrink: 0; margin-top: 1px;
}
.plan__cta { margin-top: auto; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-dimmer); }
.pricing-note a { color: var(--text-dim); text-decoration: underline; }

/* ====== DOCUMENT (legal) ====== */
.doc { padding: 56px 0 80px; }
.doc__container { max-width: 800px; }
.doc h1 { font-size: 28px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.doc h2 { font-size: 16px; font-weight: 700; color: var(--text); margin: 32px 0 12px; text-transform: uppercase; letter-spacing: .3px; }
.doc h3 { font-size: 15px; font-weight: 700; color: var(--text); margin: 24px 0 10px; }
.doc p, .doc li { font-size: 14px; line-height: 1.75; color: var(--text-dim); margin-bottom: 10px; }
.doc p em { color: var(--text-dimmer); font-style: italic; display: block; margin-top: -4px; margin-bottom: 24px; font-size: 13.5px; }
.doc a { color: var(--accent); text-decoration: underline; }
.doc strong { color: var(--text); }
.doc ul { list-style: disc; padding-left: 24px; margin-bottom: 14px; }
.doc hr { display: none; }
.doc h1 + p em { margin-bottom: 32px; }

/* ====== FOOTER ====== */
.footer {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
}
.footer__grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 32px;
}
.footer__brand .name { font-weight: 800; font-size: 18px; color: var(--text); margin-bottom: 8px; }
.footer__brand .meta { color: var(--text-dimmer); font-size: 12px; margin-bottom: 4px; }
.footer__brand .links { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 14px; }
.footer__brand .links a {
  color: var(--text-dimmer); font-size: 13px; transition: color .15s;
}
.footer__brand .links a:hover { color: var(--accent); }
.footer__call { font-size: 14px; color: var(--text); line-height: 1.55; }
.footer__call .btn { margin-top: 14px; }
.footer__contact { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.footer__contact .socials { display: flex; gap: 10px; }
.footer__disclaimer {
  font-size: 11.5px; color: var(--text-dimmer); line-height: 1.6;
}
.footer__disclaimer a { color: var(--text-dim); }

/* ====== Responsive ====== */
@media (max-width: 960px) {
  .hero__grid, .two-cols, .grid-3, .footer__grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .gallery, .gallery__slide { min-height: 280px; }
  .hero__left { padding: 24px; }
  .section { padding: 48px 0; }
  .section--features { padding: 56px 0; }
}
@media (max-width: 600px) {
  .header__row { flex-wrap: wrap; gap: 12px; }
  .header__lang { margin-left: 0; }
  .header__cta { margin-left: auto; }
}
