/* =================================================================
   PREMIUM V2 — MODERN WELLNESS THEME — OMFQB
   Brand accent: #4497c4
   Type: Sora (display) + Manrope (body)
   ================================================================= */

:root {
  --bg: #FFFFFF;
  --bg-soft: #F4F8FB;
  --bg-blue: #E8F1F8;
  --bg-blue-deep: #D4E5F0;
  --ink: #0F1B2C;
  --ink-soft: #4A5568;
  --ink-mute: #8A95A5;
  --line: #E2E8EE;
  --brand: #4497c4;
  --brand-deep: #2E7BA8;
  --brand-soft: #E5F1F8;
  --green: #16A34A;
  --green-soft: #DCFCE7;
  --amber: #F59E0B;
  --red-soft: #FEE2E2;
  --red: #DC2626;
  --font-display: 'Sora', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --container-max: 1280px;
  --container-pad: 32px;
  --section-pad: 100px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--ink); font-family: var(--font-body); font-weight: 400; font-size: 15px; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

.display { font-family: var(--font-display); font-weight: 600; letter-spacing: -0.025em; line-height: 1.05; color: var(--ink); }
.brand-word { color: var(--brand); }

.eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: var(--brand-soft); color: var(--brand-deep); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.04em; border-radius: 100px; }
.eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }

.section-title { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); margin: 18px 0; }
.title-border { display: none; }

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-pad); width: 100%; }
.section, .ptb-120, .ptb-80 { padding: var(--section-pad) 0; }
.section-bg { background: var(--bg-soft); }

.btn, .cmn-btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 26px; border-radius: 100px; font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.01em; white-space: nowrap; transition: all .25s ease; cursor: pointer; border: none; background: var(--ink); color: #fff !important; text-decoration: none; }
.btn:hover, .cmn-btn:hover { background: var(--brand); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(68,151,196,0.30); }
.btn-secondary { background: #fff; color: var(--ink) !important; border: 1px solid var(--line); }
.btn-secondary:hover { border-color: var(--ink); background: #fff; box-shadow: none; }
.btn-arrow { display: inline-flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,0.18); }
.btn-secondary .btn-arrow { background: var(--brand-soft); color: var(--brand); }

/* UTILITY BAR */
.utility-bar { background: var(--ink); color: #fff; font-size: 12px; letter-spacing: 0.04em; }
.utility-bar__inner { max-width: var(--container-max); margin: 0 auto; padding: 9px var(--container-pad); display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.utility-bar__msg { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.85); }
.utility-bar__msg::before { content: '✦'; color: var(--brand); }

/* HEADER */
.site-header { position: sticky; top: 0; z-index: 100; background: rgba(255,255,255,0.92); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding: 18px 0; }
.site-header__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.site-header__logo { display: flex; align-items: center; gap: 10px; }
.site-header__logo img { max-height: 42px; width: auto; }
.nav { display: flex; gap: 36px; font-size: 14px; font-weight: 500; list-style: none; margin: 0; padding: 0; }
.nav a { color: var(--ink-soft); transition: color .2s; position: relative; padding: 4px 0; }
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active::after { content: ''; position: absolute; bottom: -22px; left: 0; right: 0; height: 2px; background: var(--brand); border-radius: 2px; }
.header-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn { width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; color: var(--ink); transition: all .2s; background: transparent; }
.icon-btn:hover { border-color: var(--ink); }
.mobile-menu-btn { display: none; }

/* Header language dropdown */
.header-lang { position: relative; }
.header-lang__btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 14px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: var(--ink); font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.02em; cursor: pointer; transition: all .2s; }
.header-lang__btn:hover { border-color: var(--ink); }
.header-lang__btn .globe { color: var(--brand); }
.header-lang__menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; min-width: 220px; padding: 6px; list-style: none; margin: 0; display: none; z-index: 200; box-shadow: 0 12px 40px rgba(15,27,44,0.12); }
.header-lang.is-open .header-lang__menu { display: block; }
.header-lang__menu a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 13.5px; color: var(--ink-soft); text-decoration: none; border-radius: 8px; transition: all .15s; }
.header-lang__menu a:hover, .header-lang__menu a.active { background: var(--brand-soft); color: var(--brand-deep); font-weight: 600; }
.header-lang__menu img { width: 18px; height: 18px; border-radius: 50%; object-fit: cover; }

/* User dropdown */
.user-dropdown { position: relative; }
.user-dropdown__btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; border: 1px solid var(--line); border-radius: 100px; background: transparent; color: var(--ink); font-family: var(--font-body); font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; }
.user-dropdown__btn:hover { border-color: var(--ink); }
.user-dropdown__menu { position: absolute; right: 0; top: calc(100% + 8px); background: #fff; border: 1px solid var(--line); border-radius: 14px; min-width: 220px; padding: 6px; list-style: none; margin: 0; display: none; z-index: 200; box-shadow: 0 12px 40px rgba(15,27,44,0.12); }
.user-dropdown.is-open .user-dropdown__menu { display: block; }
.user-dropdown__menu a { display: block; padding: 10px 14px; font-size: 13.5px; color: var(--ink-soft); text-decoration: none; border-radius: 8px; transition: all .15s; }
.user-dropdown__menu a:hover, .user-dropdown__menu a.active { background: var(--brand-soft); color: var(--brand-deep); }

/* HERO */
.hero { position: relative; overflow: hidden; padding: 60px 0 100px; background: linear-gradient(180deg, #F0F7FC 0%, #E5F1F8 50%, #FFFFFF 100%); }
.hero::before { content: ''; position: absolute; top: -150px; right: -100px; width: 600px; height: 600px; background: radial-gradient(circle, rgba(68,151,196,0.18) 0%, transparent 60%); border-radius: 50%; pointer-events: none; }
.hero::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(68,151,196,0.12) 0%, transparent 60%); border-radius: 50%; pointer-events: none; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5.5vw, 72px); letter-spacing: -0.025em; line-height: 1.05; margin: 24px 0 0; }
.hero p.lede { margin-top: 28px; max-width: 480px; color: var(--ink-soft); font-size: 17px; line-height: 1.6; }
.hero-actions { margin-top: 40px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.hero-trust { margin-top: 48px; display: flex; gap: 32px; align-items: center; padding-top: 32px; border-top: 1px solid rgba(15,27,44,0.08); flex-wrap: wrap; }
.trust-stat__num { font-family: var(--font-display); font-weight: 700; font-size: 28px; color: var(--ink); line-height: 1; }
.trust-stat__label { font-size: 12px; color: var(--ink-mute); letter-spacing: 0.04em; margin-top: 6px; }
.trust-divider { width: 1px; height: 36px; background: rgba(15,27,44,0.1); }

.hero-visual { position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.molecule-bg { position: absolute; width: 90%; height: 90%; background: radial-gradient(circle at 30% 30%, rgba(68,151,196,0.30) 0%, rgba(68,151,196,0.12) 40%, transparent 70%); border-radius: 50%; filter: blur(20px); }
.bubble { position: absolute; border-radius: 50%; background: radial-gradient(circle at 35% 35%, rgba(255,255,255,0.9) 0%, rgba(220,235,245,0.6) 40%, rgba(68,151,196,0.35) 100%); box-shadow: inset -8px -8px 20px rgba(46,123,168,0.25), inset 4px 4px 12px rgba(255,255,255,0.6), 0 8px 30px rgba(68,151,196,0.18); }
.bubble-1 { width: 280px; height: 280px; top: 20%; left: 30%; }
.bubble-2 { width: 140px; height: 140px; top: 8%; left: 8%; }
.bubble-3 { width: 100px; height: 100px; top: 55%; left: 10%; animation: float 8s ease-in-out infinite; }
.bubble-4 { width: 120px; height: 120px; top: 65%; left: 55%; animation: float 6s ease-in-out infinite reverse; }
.bubble-5 { width: 80px; height: 80px; top: 15%; left: 70%; animation: float 10s ease-in-out infinite; }
.bubble-6 { width: 60px; height: 60px; top: 45%; left: 75%; animation: float 7s ease-in-out infinite reverse; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

.hero-badge { position: absolute; background: #fff; border-radius: 100px; padding: 10px 18px 10px 12px; display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 600; color: var(--ink); box-shadow: 0 12px 40px rgba(15,27,44,0.08), 0 2px 8px rgba(15,27,44,0.04); z-index: 2; }
.hero-badge__icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 14px; }
.hero-badge--green .hero-badge__icon { background: var(--green-soft); color: var(--green); }
.hero-badge--blue .hero-badge__icon { background: var(--brand-soft); color: var(--brand-deep); }
.hero-badge--amber .hero-badge__icon { background: #FEF3C7; color: var(--amber); }
.hero-badge-1 { top: 8%; right: 5%; }
.hero-badge-2 { top: 42%; right: -2%; }
.hero-badge-3 { bottom: 18%; left: 0%; }

/* TRUST STRIP */
.trust-strip { padding: 32px 0; background: var(--bg); border-bottom: 1px solid var(--line); }
.trust-strip__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 14px; }
.trust-item__icon { width: 44px; height: 44px; border-radius: 12px; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; color: var(--brand); flex-shrink: 0; font-size: 20px; }
.trust-item__title { font-weight: 600; color: var(--ink); margin-bottom: 2px; font-size: 13.5px; }
.trust-item__sub { color: var(--ink-mute); font-size: 12px; }

/* SECTION HEAD */
.section-head { margin-bottom: 60px; max-width: 680px; }
.section-head--center { text-align: center; margin: 0 auto 60px; }
.section-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.02em; line-height: 1.1; color: var(--ink); margin: 18px 0; }
.section-head p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; margin: 0; }

.section-head-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: end; margin-bottom: 48px; }
.section-head-split .right { display: flex; justify-content: flex-end; padding-bottom: 8px; }

/* SETS APART (about) */
.sets-apart-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 80px; align-items: center; }
.sets-apart-visual { position: relative; }
.sets-apart-image { aspect-ratio: 1; background: linear-gradient(135deg, var(--brand-soft), var(--bg-blue)); border-radius: 24px; position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.sets-apart-image::after { content: ''; position: absolute; inset: 20px; border: 1px dashed rgba(68,151,196,0.3); border-radius: 16px; pointer-events: none; }
.sets-apart-image img { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.video-play { width: 80px; height: 80px; border-radius: 50%; background: #fff; display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 40px rgba(15,27,44,0.15); position: relative; z-index: 1; cursor: pointer; transition: transform .25s; }
.video-play:hover { transform: scale(1.05); }
.video-play::after { content: ''; display: block; width: 0; height: 0; border-left: 18px solid var(--brand); border-top: 11px solid transparent; border-bottom: 11px solid transparent; margin-left: 5px; }
.stat-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 32px; }
.stat-card { background: #fff; border-radius: 16px; padding: 20px; text-align: center; box-shadow: 0 4px 20px rgba(15,27,44,0.04); }
.stat-card__num { font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--brand); line-height: 1; }
.stat-card__label { font-size: 12px; color: var(--ink-soft); margin-top: 8px; font-weight: 500; }

/* BENEFITS / SERVICE GRID */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.benefit-card { background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px; transition: all .25s; position: relative; overflow: hidden; }
.benefit-card:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(68,151,196,0.10); }
.benefit-card__icon { width: 52px; height: 52px; border-radius: 14px; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; color: var(--brand); margin-bottom: 20px; font-size: 24px; }
.benefit-card__icon img { max-width: 28px; max-height: 28px; }
.benefit-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 18px; letter-spacing: -0.01em; margin: 0 0 10px; color: var(--ink); }
.benefit-card p { font-size: 14px; color: var(--ink-soft); margin: 0; line-height: 1.55; }

/* HOW STEPS */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.how-item { counter-increment: step; background: #fff; border: 1px solid var(--line); border-radius: 20px; padding: 32px; position: relative; transition: all .25s; }
.how-item:hover { border-color: var(--brand); transform: translateY(-4px); }
.how-item::before { content: counter(step, decimal-leading-zero); font-family: var(--font-display); font-weight: 700; font-size: 13px; color: var(--brand); background: var(--brand-soft); padding: 4px 10px; border-radius: 100px; display: inline-block; margin-bottom: 20px; }
.how-item__icon { width: 48px; height: 48px; border-radius: 12px; background: var(--brand-soft); display: flex; align-items: center; justify-content: center; color: var(--brand); margin-bottom: 16px; font-size: 22px; }
.how-item__icon img { max-width: 28px; max-height: 28px; }
.how-item h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 8px; color: var(--ink); letter-spacing: -0.01em; }
.how-item p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* FEATURE / EXPLAINER */
.explainer-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 80px; align-items: center; }
.explainer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; margin-top: 36px; }
.explainer-col h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; margin: 0 0 10px; color: var(--ink); display: flex; align-items: center; gap: 10px; }
.explainer-col__num { width: 28px; height: 28px; background: var(--brand-soft); color: var(--brand-deep); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: 12px; flex-shrink: 0; font-weight: 700; }
.explainer-col p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.explainer-visual { aspect-ratio: 1; border-radius: 24px; background: linear-gradient(135deg, #1E3A5F 0%, #2E5A8C 50%, #4497c4 100%); position: relative; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.explainer-visual::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.2) 0%, transparent 50%); }
.explainer-visual img { width: 100%; height: 100%; object-fit: cover; position: relative; z-index: 1; }

/* PRODUCT / SERVICE CARDS */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.product-card { background: #fff; border-radius: 20px; overflow: hidden; transition: all .25s; cursor: pointer; border: 1px solid var(--line); }
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,27,44,0.10); border-color: var(--brand); }
.product-card__image { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--brand-soft), var(--bg-blue)); position: relative; display: flex; align-items: center; justify-content: center; padding: 32px; overflow: hidden; }
.product-card__image img { max-width: 60%; max-height: 80%; object-fit: contain; filter: drop-shadow(0 8px 16px rgba(0,0,0,0.08)); }
.product-card__badge { position: absolute; top: 16px; left: 16px; background: #fff; padding: 6px 12px; border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--brand-deep); box-shadow: 0 4px 12px rgba(15,27,44,0.06); letter-spacing: 0.04em; }
.product-card__rating { position: absolute; top: 16px; right: 16px; background: #fff; padding: 6px 10px; border-radius: 100px; font-size: 11px; font-weight: 600; color: var(--ink); box-shadow: 0 4px 12px rgba(15,27,44,0.06); display: flex; align-items: center; gap: 4px; }
.product-card__body { padding: 24px; }
.product-card h3 { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin: 0 0 8px; color: var(--ink); letter-spacing: -0.01em; }
.product-card p { font-size: 13.5px; color: var(--ink-soft); margin: 0 0 16px; line-height: 1.5; }
.product-card__footer { display: flex; justify-content: space-between; align-items: center; padding-top: 16px; border-top: 1px solid var(--line); }
.product-card__price { font-family: var(--font-display); font-weight: 700; font-size: 20px; color: var(--ink); }
.product-card__points { font-size: 11px; color: var(--brand-deep); background: var(--brand-soft); padding: 5px 10px; border-radius: 6px; font-weight: 600; }

/* MEMBERSHIP */
.membership-wrapper { background: linear-gradient(135deg, #0F1B2C 0%, #1E3A5F 100%); border-radius: 32px; padding: 64px; color: #fff; position: relative; overflow: hidden; }
.membership-wrapper::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(68,151,196,0.4) 0%, transparent 60%); border-radius: 50%; }
.membership-wrapper::after { content: ''; position: absolute; bottom: -100px; left: -100px; width: 300px; height: 300px; background: radial-gradient(circle, rgba(68,151,196,0.2) 0%, transparent 60%); border-radius: 50%; }
.membership-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 48px; align-items: center; position: relative; z-index: 1; }
.membership-eyebrow { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; background: rgba(68,151,196,0.20); color: #A8D4EA; font-size: 12px; font-weight: 600; letter-spacing: 0.04em; border-radius: 100px; margin-bottom: 20px; }
.membership-eyebrow::before { content: ''; width: 6px; height: 6px; background: var(--brand); border-radius: 50%; }
.membership-grid h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 3.8vw, 48px); line-height: 1.1; letter-spacing: -0.02em; margin: 0 0 20px; }
.membership-grid h2 .brand-word { color: #7AB8DC; }
.membership-grid > div > p { color: rgba(255,255,255,0.75); font-size: 16px; line-height: 1.6; max-width: 440px; }
.membership-benefits { margin-top: 32px; display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.membership-benefit { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; color: rgba(255,255,255,0.9); }
.membership-benefit::before { content: '✓'; color: var(--brand); font-weight: 700; margin-top: 1px; }
.membership-price-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.12); border-radius: 20px; padding: 36px; text-align: center; }
.membership-price-card__label { font-size: 13px; color: rgba(255,255,255,0.6); letter-spacing: 0.06em; margin-bottom: 16px; }
.membership-price-card__price { font-family: var(--font-display); font-weight: 700; font-size: 64px; line-height: 1; color: #fff; margin-bottom: 8px; }
.membership-price-card__price .currency { font-size: 0.4em; vertical-align: top; color: rgba(255,255,255,0.6); margin-right: 4px; }
.membership-price-card__per { font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 24px; }
.membership-price-card__points { background: rgba(68,151,196,0.20); padding: 14px; border-radius: 12px; font-size: 13px; color: #A8D4EA; margin-bottom: 28px; }
.membership-price-card__points strong { color: #fff; display: block; font-size: 18px; margin-bottom: 2px; font-family: var(--font-display); font-weight: 700; }
.membership-cta { display: block; width: 100%; padding: 16px 28px; background: var(--brand); color: #fff !important; border-radius: 100px; font-weight: 600; font-size: 15px; text-align: center; transition: background .25s; text-decoration: none; box-sizing: border-box; }
.membership-cta:hover { background: #5BB0DD; }

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; max-width: 1100px; margin: 0 auto; }
.pricing-item { background: #fff; border-radius: 20px; padding: 36px 32px; text-align: center; border: 1px solid var(--line); transition: all .25s; }
.pricing-item:hover { border-color: var(--brand); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(68,151,196,0.1); }
.pricing-item .sub-title { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.06em; text-transform: uppercase; color: var(--ink-soft); }
.pricing-item .title { font-family: var(--font-display); font-weight: 700; font-size: 48px; margin: 16px 0; color: var(--ink); }
.pricing-pre { font-size: 22px; vertical-align: super; color: var(--ink-mute); margin-right: 4px; }

/* TESTIMONIALS */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--bg-soft); border-radius: 20px; padding: 32px; display: flex; flex-direction: column; }
.testimonial-stars { color: var(--amber); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { font-family: var(--font-body); font-size: 15px; color: var(--ink); line-height: 1.6; margin: 0 0 24px; flex: 1; }
.testimonial-author { display: flex; gap: 12px; align-items: center; padding-top: 20px; border-top: 1px solid var(--line); }
.testimonial-avatar { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--brand-soft), var(--bg-blue)); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 600; color: var(--brand-deep); font-size: 14px; overflow: hidden; flex-shrink: 0; }
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author__name { font-size: 14px; font-weight: 600; color: var(--ink); }
.testimonial-author__role { font-size: 12px; color: var(--ink-mute); }

/* FAQ */
.faq-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; max-width: 1080px; margin: 0 auto; }
.faq-wrapper { display: flex; flex-direction: column; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; padding: 0; transition: border-color .2s; }
.faq-item.is-open { border-color: var(--brand); box-shadow: 0 8px 24px rgba(68,151,196,0.08); }
.faq-title { margin: 0; padding: 22px 28px; font-family: var(--font-display); font-weight: 600; font-size: 16px; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 24px; cursor: pointer; transition: color .2s; }
.faq-title:hover { color: var(--brand); }
.faq-title .right-icon { width: 28px; height: 28px; background: var(--brand-soft); border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all .25s; }
.faq-title .right-icon::before { content: '+'; font-family: var(--font-body); font-weight: 400; font-size: 18px; color: var(--brand); transition: transform .25s; }
.faq-item.is-open .faq-title .right-icon { background: var(--brand); }
.faq-item.is-open .faq-title .right-icon::before { content: '−'; color: #fff; }
.faq-content { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; padding: 0 28px; }
.faq-item.is-open .faq-content { max-height: 400px; padding: 0 28px 24px; }
.faq-content p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin: 0; }

/* JOURNAL */
.journal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.blog-item, .journal-card { background: #fff; border-radius: 20px; overflow: hidden; cursor: pointer; transition: transform .25s, box-shadow .25s; border: 1px solid var(--line); }
.blog-item:hover, .journal-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(15,27,44,0.08); }
.blog-item .blog-thumb { aspect-ratio: 4/3; background: linear-gradient(135deg, var(--bg-blue), var(--brand-soft)); overflow: hidden; position: relative; }
.blog-item .blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s cubic-bezier(.2,.6,.3,1); }
.blog-item:hover .blog-thumb img { transform: scale(1.04); }
.blog-item .overlay-date { position: absolute; top: 16px; left: 16px; background: #fff; color: var(--ink); padding: 6px 12px; border-radius: 100px; font-size: 11px; letter-spacing: 0.08em; font-weight: 600; }
.blog-item .blog-content { padding: 24px; }
.blog-item .title { font-family: var(--font-display); font-weight: 600; font-size: 18px; line-height: 1.3; letter-spacing: -0.01em; margin: 0 0 12px; }
.blog-item .title a { color: var(--ink); transition: color .2s; }
.blog-item .title a:hover { color: var(--brand); }
.blog-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; margin: 0 0 16px; }
.custom-btn { font-size: 12px; letter-spacing: 0.1em; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.custom-btn:hover { color: var(--brand-deep); }

/* CTA BAND */
.cta-section { padding: var(--section-pad) 0; }
.cta-section-inner { background: linear-gradient(135deg, #0F1B2C 0%, #1E3A5F 100%); border-radius: 32px; padding: 64px; color: #fff; display: flex; justify-content: space-between; align-items: center; gap: 48px; flex-wrap: wrap; position: relative; overflow: hidden; }
.cta-section-inner::before { content: ''; position: absolute; top: -100px; right: -100px; width: 400px; height: 400px; background: radial-gradient(circle, rgba(68,151,196,0.3) 0%, transparent 60%); border-radius: 50%; }
.cta-section-inner > * { position: relative; z-index: 1; }
.cta-section-inner .title { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.015em; line-height: 1.15; margin: 0 0 12px; max-width: 540px; color: #fff; }
.cta-section-inner p { color: rgba(255,255,255,0.7); max-width: 540px; margin: 0; font-size: 15px; line-height: 1.6; }
.cta-section-inner .cmn-btn, .cta-section-inner .btn { background: var(--brand); color: #fff !important; }
.cta-section-inner .cmn-btn:hover { background: #5BB0DD; }

/* NEWSLETTER */
.newsletter-section { padding: 80px 0; background: linear-gradient(135deg, var(--bg-blue) 0%, var(--brand-soft) 100%); text-align: center; }
.newsletter-section .title { font-family: var(--font-display); font-weight: 600; font-size: clamp(28px, 3.4vw, 42px); letter-spacing: -0.015em; margin: 18px 0 16px; color: var(--ink); }
.newsletter-section p { color: var(--ink-soft); max-width: 560px; margin: 0 auto 32px; }
.newsletter-form { max-width: 540px; margin: 0 auto; display: flex; gap: 0; background: #fff; border-radius: 100px; padding: 6px; box-shadow: 0 12px 40px rgba(15,27,44,0.08); }
.newsletter-form input { flex: 1; border: none; background: transparent; padding: 12px 24px; font-family: var(--font-body); font-size: 14px; color: var(--ink); outline: none; }
.newsletter-form input::placeholder { color: var(--ink-mute); }
.newsletter-form button { border: none; padding: 12px 28px; background: var(--ink); color: #fff; font-size: 13px; font-weight: 600; border-radius: 100px; transition: background .25s; cursor: pointer; }
.newsletter-form button:hover { background: var(--brand); }

/* BREADCRUMB */
.site-breadcrumb { padding: 80px 0 60px; background: linear-gradient(180deg, var(--bg-blue) 0%, #fff 100%); border-bottom: 1px solid var(--line); text-align: center; }
.site-breadcrumb .title { font-family: var(--font-display); font-weight: 600; font-size: clamp(32px, 4vw, 52px); letter-spacing: -0.02em; color: var(--ink); margin: 12px 0 0; }

/* FOOTER */
.site-footer { background: var(--ink); color: #fff; padding: 80px 0 0; }
.site-footer .footer-area { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 64px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.site-footer .widget-title { font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; color: rgba(255,255,255,0.5); text-transform: uppercase; margin: 0 0 20px; }
.site-footer .description p { color: rgba(255,255,255,0.6); font-size: 14px; line-height: 1.65; margin: 20px 0; max-width: 320px; }
.site-footer .footer-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.site-footer .footer-list a { color: rgba(255,255,255,0.85); font-size: 14px; transition: color .2s; }
.site-footer .footer-list a:hover { color: var(--brand); }
.site-footer .footer-social { list-style: none; margin: 24px 0 0; padding: 0; display: flex; gap: 12px; }
.site-footer .footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center; justify-content: center; color: #fff; transition: all .2s; }
.site-footer .footer-social a:hover { background: var(--brand); border-color: var(--brand); }

.privacy-area { padding: 28px 0; }
.privacy-area .copyright p { font-size: 13px; color: rgba(255,255,255,0.5); text-align: center; margin: 0; }
.privacy-area .copyright a { color: rgba(255,255,255,0.85); }

/* COOKIE BAR */
.cookie-bar { position: fixed; bottom: 24px; left: 24px; right: 24px; z-index: 200; max-width: 720px; margin: 0 auto; background: var(--ink); color: #fff; padding: 20px 24px; border-radius: 16px; display: flex; align-items: center; gap: 20px; flex-wrap: wrap; transition: opacity .3s, transform .3s; box-shadow: 0 20px 60px rgba(15,27,44,0.2); }
.cookie-bar.is-hidden { opacity: 0; transform: translateY(20px); pointer-events: none; }
.cookie-bar__inner { display: flex; align-items: center; gap: 20px; flex: 1; flex-wrap: wrap; }
.cookie-bar p { margin: 0; font-size: 13px; color: rgba(255,255,255,0.85); flex: 1; min-width: 260px; }
.cookie-bar a { color: var(--brand); text-decoration: underline; }
.cookie-bar__accept { padding: 10px 24px; background: var(--brand); color: #fff; border: none; border-radius: 100px; font-size: 13px; font-weight: 600; cursor: pointer; }

/* SCROLL TOP */
.scroll-top { position: fixed; bottom: 32px; right: 32px; width: 48px; height: 48px; background: var(--brand); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: all .25s; z-index: 90; box-shadow: 0 8px 24px rgba(68,151,196,0.3); }
.scroll-top.is-visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--brand-deep); transform: translateY(-2px); }

/* PRELOADER */
.preloader-area { position: fixed; inset: 0; background: #fff; z-index: 9999; display: flex; align-items: center; justify-content: center; transition: opacity .4s ease; }
.preloader-area.is-hidden { opacity: 0; pointer-events: none; }
.preloader-mark { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: 0.3em; color: var(--brand); animation: pulse 1.4s ease-in-out infinite; }
@keyframes pulse { 0%, 100% { opacity: 0.4; } 50% { opacity: 1; } }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .9s cubic-bezier(.2,.6,.3,1), transform .9s cubic-bezier(.2,.6,.3,1); }
.reveal.is-revealed { opacity: 1; transform: translateY(0); }

/* ===== COMPARISON SECTION ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 920px;
  margin: 0 auto;
}
.comparison-col {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  border: 2px solid transparent;
  position: relative;
}
.comparison-col--us {
  border-color: var(--brand);
}
.comparison-col--us::before {
  content: 'OMFQB MEMBERS';
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--brand);
  color: #fff;
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.comparison-col h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
  text-align: center;
  margin: 0 0 20px;
  color: var(--ink);
}
.comparison-col--us h3 { color: var(--brand-deep); }
.comparison-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.comparison-col li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.5;
}
.comparison-col li::before {
  content: '';
  width: 22px; height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  font-weight: 700;
  margin-top: 1px;
}
.comparison-col--us li::before {
  content: '✓';
  background: var(--green-soft);
  color: var(--green);
}
.comparison-col--them li::before {
  content: '×';
  background: var(--red-soft);
  color: var(--red);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
}
.footer-col--brand { padding-right: 20px; }
.footer-logo { display: inline-block; margin-bottom: 20px; }
.footer-logo img { height: 36px; width: auto; filter: brightness(0) invert(1); }
.footer-tagline {
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255,255,255,0.6);
  margin: 0 0 24px;
  max-width: 320px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all .2s ease;
}
.footer-socials a:hover {
  background: var(--brand);
  color: #fff;
}
.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 20px;
}
.footer-col ul {
  list-style: none;
  padding: 0; margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color .2s ease;
  text-decoration: none;
}
.footer-col a:hover { color: #fff; }

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-bottom p { margin: 0; }
@media (max-width: 640px) {
  .footer-bottom {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

/* RESPONSIVE */
@media (max-width: 1100px) {
  :root { --container-pad: 24px; --section-pad: 80px; }
  .hero-grid, .sets-apart-grid, .explainer-grid, .membership-grid { grid-template-columns: 1fr; gap: 48px; }
  .benefits-grid, .products-grid, .testimonials-grid, .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .how-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip__inner { grid-template-columns: repeat(2, 1fr); }
  .site-footer .footer-area { grid-template-columns: 1fr 1fr; gap: 40px; }
  .explainer-cols { grid-template-columns: 1fr; gap: 20px; }
  .membership-wrapper, .cta-section-inner { padding: 48px 36px; }
  .faq-columns { grid-template-columns: 1fr; gap: 0; }
  .section-head-split { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .section-head-split .right { justify-content: flex-start; }
  .stat-cards { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --container-pad: 20px; --section-pad: 60px; }
  .nav { display: none; }
  .btn-cta-desktop { display: none; }
  .mobile-menu-btn { display: flex; }
  .header-lang__btn { padding: 9px 12px; }
  .header-lang__btn .lang-code { display: none; }
  .icon-btn[aria-label="Search"] { display: none; }
  .header-actions { gap: 8px; }
  .utility-bar__inner { justify-content: center; }
  .utility-bar__lang-desktop { display: none; }
  .hero { padding: 40px 0 60px; }
  .trust-divider { display: none; }
  .benefits-grid, .products-grid, .testimonials-grid, .journal-grid, .comparison-grid, .how-grid { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: 1fr; }
  .membership-wrapper, .membership-price-card, .cta-section-inner { padding: 32px 24px; }
  .membership-benefits { grid-template-columns: 1fr; }
  .cta-section-inner { flex-direction: column; align-items: flex-start; }
  .site-footer .footer-area { grid-template-columns: 1fr; gap: 32px; }
}
