@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ===== Variables ===== */
:root {
  --gold: #DD9933;
  --gold-dark: #c4851c;
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-light: #f5f5f5;
  --gray-mid: #e0e0e0;
  --gray-dark: #555555;
  --text: #0a0a0a;
}

/* ===== Reset ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ===== Utilities ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--dark { background: var(--black); }
.section--gray { background: var(--gray-light); }
.section--gold { background: var(--gold); }
.section-label { display: inline-block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; }
.section-label--dark { color: var(--black); }
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 900; line-height: 1.15; }
.section-title--white { color: var(--white); }
.section-title--black { color: var(--black); }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.placeholder { background: #1f1f1f; border-radius: 2px; display: flex; align-items: center; justify-content: center; color: #555; font-size: 0.85rem; }
.placeholder--light { background: #e5e5e5; color: #aaa; }

/* ===== Buttons ===== */
.btn { display: inline-block; font-weight: 700; padding: 1rem 2rem; border-radius: 2px; transition: background 0.2s, color 0.2s, border-color 0.2s; font-size: 0.95rem; }
.btn--gold { background: var(--gold); color: var(--black); }
.btn--gold:hover { background: var(--gold-dark); }
.btn--black { background: var(--black); color: var(--white); }
.btn--black:hover { background: #222; }
.btn--outline { border: 1.5px solid #555; color: var(--white); }
.btn--outline:hover { border-color: var(--gold); color: var(--gold); }
.btn--outline-dark { border: 1.5px solid #ccc; color: var(--black); }
.btn--outline-dark:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Top bar ===== */
.top-bar { position: fixed; top: 0; left: 0; right: 0; z-index: 101; background: #2a2a2a; border-bottom: 1px solid rgba(221,153,51,0.2); height: 2.5rem; display: flex; align-items: center; padding: 0 1.5rem; }
.top-bar__inner { max-width: 1200px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }
.top-bar__left { display: flex; align-items: center; gap: 0.6rem; }
.top-bar__text { font-size: 0.8rem; color: #ccc; letter-spacing: 0.02em; }
.top-bar__stars { color: var(--gold); font-size: 0.85rem; letter-spacing: 1px; }
.top-bar__score { font-size: 0.8rem; font-weight: 700; color: var(--gold); }
.top-bar__cta { font-size: 0.8rem; font-weight: 700; color: var(--black); background: var(--gold); padding: 0.25rem 0.75rem; border-radius: 2px; transition: background 0.2s; white-space: nowrap; }
.top-bar__cta:hover { background: var(--gold-dark); }
.top-bar__sep { color: #444; font-size: 0.75rem; }

/* ===== Header ===== */
.header { position: fixed; top: 2.5rem; left: 0; right: 0; z-index: 100; background: var(--black); border-bottom: 1px solid rgba(221,153,51,0.15); }
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 5rem; }
.logo { display: flex; align-items: center; gap: 0.75rem; }
.logo__badge { width: 2.5rem; height: 2.5rem; background: var(--gold); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.9rem; color: var(--black); flex-shrink: 0; }
.logo__text { font-weight: 700; font-size: 1.1rem; color: var(--white); letter-spacing: 0.05em; }
.nav { display: flex; align-items: center; gap: 2rem; }
.nav__link { font-size: 0.85rem; font-weight: 500; color: #ccc; letter-spacing: 0.03em; transition: color 0.2s; }
.nav__link:hover, .nav__link.active { color: var(--gold); }
.nav__cta { background: var(--gold); color: var(--black); font-size: 0.85rem; font-weight: 700; padding: 0.6rem 1.2rem; border-radius: 2px; transition: background 0.2s; }
.nav__cta:hover { background: var(--gold-dark); }
.hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); transition: all 0.2s; }
.mobile-menu { display: none; background: var(--black); border-top: 1px solid rgba(221,153,51,0.15); padding: 1.5rem; flex-direction: column; gap: 1.25rem; }
.mobile-menu.open { display: flex; }
.mobile-menu .nav__link { font-size: 1rem; }
.mobile-menu .nav__cta { text-align: center; padding: 0.85rem; }

/* ===== Footer ===== */
.footer { background: var(--black); border-top: 1px solid rgba(221,153,51,0.15); padding: 4rem 0 2rem; }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { color: #666; font-size: 0.85rem; line-height: 1.7; margin-top: 1rem; }
.footer__heading { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer__links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer__links a { color: #666; font-size: 0.85rem; transition: color 0.2s; }
.footer__links a:hover { color: var(--gold); }
.footer__info { color: #666; font-size: 0.85rem; line-height: 1.8; }
.footer__info a { color: #666; transition: color 0.2s; }
.footer__info a:hover { color: var(--gold); }
.footer__socials { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer__social { width: 2.2rem; height: 2.2rem; border: 1px solid #333; border-radius: 2px; display: flex; align-items: center; justify-content: center; color: #666; font-size: 0.75rem; font-weight: 700; transition: border-color 0.2s, color 0.2s; }
.footer__social:hover { border-color: var(--gold); color: var(--gold); }
.footer__bottom { border-top: 1px solid #1a1a1a; padding-top: 2rem; text-align: center; color: #444; font-size: 0.75rem; }

/* ===== Hero ===== */
.hero { background: var(--black); min-height: 90vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 6rem 0; }
.hero::before { content: ''; position: absolute; inset: -20px; background: url('../Images/Achtergrond-header.jpg') center/cover no-repeat; filter: blur(8px); z-index: 0; }
.hero::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.62); z-index: 1; pointer-events: none; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; z-index: 2; }
.hero__label { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.25rem; }
.hero__title { font-size: clamp(2.2rem, 5vw, 3.75rem); font-weight: 900; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.hero__title span { color: var(--gold); }
.hero__text { color: #888; font-size: 1.05rem; line-height: 1.75; margin-bottom: 2.5rem; max-width: 480px; }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero__social-proof { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: 1.5rem; text-decoration: none; }
.hero__social-proof__stars { color: #f5b800; font-size: 1rem; letter-spacing: 0.05em; }
.hero__social-proof__text { font-size: 0.85rem; color: #888; }
.hero__social-proof__text strong { color: var(--white); }
.hero__image { aspect-ratio: 3/4; max-height: 560px; position: relative; }
.hero__image .placeholder { height: 100%; border-radius: 2px; }
.hero__image::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px; background: var(--gold); }

/* ===== Features bar ===== */
.stats { background: var(--black); padding: 0; }
.stats__inner { display: grid; grid-template-columns: repeat(3, 1fr); }
.stats__label { font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 0.02em; }
.features-item { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 0.6rem; text-align: left; padding: 2.75rem 2rem; border-right: 1px solid rgba(255,255,255,0.08); }
.features-item:last-child { border-right: none; }
.features-item__check { color: var(--gold); font-size: 1.25rem; font-weight: 900; line-height: 1; flex-shrink: 0; }
.features-item__title { font-size: 1rem; font-weight: 700; color: var(--white); letter-spacing: 0.03em; text-transform: uppercase; }

/* ===== Philosophy ===== */
.philosophy__image { aspect-ratio: 16/10; }
.philosophy__image .placeholder { height: 100%; border-radius: 2px; }
.philosophy__content { display: flex; flex-direction: column; gap: 1rem; }
.philosophy__title { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 900; color: var(--black); line-height: 1.2; }
.philosophy__text { color: #666; font-size: 0.95rem; line-height: 1.75; }
.philosophy__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--gold); font-weight: 700; font-size: 0.9rem; margin-top: 0.5rem; transition: gap 0.2s; }
.philosophy__link:hover { gap: 0.75rem; }

/* ===== Services ===== */
.services__header { text-align: center; margin-bottom: 3.5rem; }
.services__header p { color: #888; margin-top: 0.5rem; }
.service-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 2px; padding: 2rem; transition: border-color 0.3s, box-shadow 0.3s; display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: start; }
.service-card:hover { border-color: var(--gold); box-shadow: 0 4px 24px rgba(221,153,51,0.08); }
.service-card__icon { font-size: 2.5rem; margin-bottom: 0; grid-column: 1; grid-row: 1; }
.service-card__title { font-size: 1.1rem; font-weight: 900; color: var(--black); margin-bottom: 0; transition: color 0.2s; grid-column: 2; grid-row: 1; align-self: center; }
.service-card:hover .service-card__title { color: var(--gold); }
.service-card__text { color: #666; font-size: 0.875rem; line-height: 1.7; margin-bottom: 1.5rem; grid-column: 1 / -1; grid-row: 2; }
.service-card__link { color: var(--gold); font-weight: 700; font-size: 0.85rem; grid-column: 1 / -1; grid-row: 3; }

/* ===== Testimonials ===== */
.testimonials__header { text-align: center; margin-bottom: 3.5rem; }
.testimonial-card { background: #111; border: 1px solid #222; border-radius: 2px; padding: 1.5rem; }
.testimonial-card__stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; font-size: 0.85rem; }
.testimonial-card__text { color: #bbb; font-size: 0.875rem; line-height: 1.75; margin-bottom: 1.5rem; }
.testimonial-card__author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-card__avatar { width: 2rem; height: 2rem; background: rgba(221,153,51,0.15); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.75rem; font-weight: 700; flex-shrink: 0; }
.testimonial-card__name { color: var(--white); font-size: 0.85rem; font-weight: 700; }

/* ===== News ===== */
.news__header { text-align: center; margin-bottom: 3.5rem; }
.news-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.news-card { border: 1px solid #e0e0e0; border-radius: 2px; overflow: hidden; transition: border-color 0.2s; }
.news-card:hover { border-color: var(--gold); }
.news-card__image { aspect-ratio: 16/9; }
.news-card__image .placeholder { height: 100%; }
.news-card__body { padding: 1.5rem; }
.news-card__date { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); }
.news-card__title { font-size: 1rem; font-weight: 900; color: var(--black); margin: 0.5rem 0 0.75rem; transition: color 0.2s; }
.news-card:hover .news-card__title { color: var(--gold); }
.news-card__text { color: #666; font-size: 0.85rem; line-height: 1.7; }

/* ===== CTA section ===== */
.cta { padding: 5rem 0; position: relative; overflow: hidden; }
.cta.section--gold { background: transparent; }
.cta::before { content: ''; position: absolute; inset: 0; background: url('../Images/Footer-afbeelding.jpg') center/cover no-repeat; filter: blur(5px); transform: scale(1.08); }
.cta::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,0.50); }
.cta__inner { max-width: 700px; margin: 0 auto; text-align: center; padding: 0 1.5rem; position: relative; z-index: 1; }
.cta__title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 900; color: var(--white); line-height: 1.15; margin-bottom: 1.25rem; }
.cta__text { color: rgba(255,255,255,0.85); font-size: 1.05rem; margin-bottom: 2.5rem; }
.cta .btn--black { background: #dd9933; color: var(--black); }
.cta .btn--black:hover { background: #c4861e; }

/* ===== Page hero (inner pages) ===== */
.page-hero { background: var(--black); padding: 7rem 0 5rem; position: relative; overflow: hidden; }
.page-hero::after { content: ''; position: absolute; top: 0; right: 0; width: 40%; height: 100%; background: rgba(221,153,51,0.04); filter: blur(60px); }
.page-hero__inner { position: relative; z-index: 1; }
.page-hero--center { text-align: center; }
.page-hero__title { font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 900; color: var(--white); line-height: 1.1; margin: 0.75rem 0 1.25rem; }
.page-hero__title span { color: var(--gold); }
.page-hero__text { color: #888; font-size: 1.05rem; line-height: 1.75; max-width: 600px; }
.page-hero--center .page-hero__text { margin: 0 auto; }

/* ===== Pricing ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; align-items: start; }
.plan-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 2px; overflow: hidden; display: flex; flex-direction: column; }
.plan-card--highlight { background: var(--black); border: 2px solid var(--gold); }
.plan-card__badge { background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; text-align: center; padding: 0.4rem; }
.plan-card__body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }
.plan-card__name { font-weight: 900; font-size: 1.1rem; color: var(--black); }
.plan-card--highlight .plan-card__name { color: var(--white); }
.plan-card__price { font-size: 3rem; font-weight: 900; color: var(--black); margin: 1rem 0 0.25rem; line-height: 1; }
.plan-card--highlight .plan-card__price { color: var(--gold); }
.plan-card__period { font-size: 0.8rem; color: #999; margin-bottom: 1rem; }
.plan-card__desc { font-size: 0.85rem; color: #666; line-height: 1.65; margin-bottom: 2rem; }
.plan-card--highlight .plan-card__desc { color: #888; }
.plan-card__features { flex: 1; display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 2rem; }
.plan-card__feature { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.85rem; color: #666; }
.plan-card--highlight .plan-card__feature { color: #aaa; }
.plan-card__check { color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-card__cta { display: block; text-align: center; font-weight: 700; padding: 0.875rem; border-radius: 2px; font-size: 0.875rem; transition: all 0.2s; }
.plan-card--highlight .plan-card__cta { background: var(--gold); color: var(--black); }
.plan-card--highlight .plan-card__cta:hover { background: var(--gold-dark); }
.plan-card:not(.plan-card--highlight) .plan-card__cta { border: 1.5px solid #ccc; color: var(--black); }
.plan-card:not(.plan-card--highlight) .plan-card__cta:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Features grid ===== */
.features { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.feature-card { background: var(--gray-light); border-radius: 2px; padding: 1.5rem; display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: start; }
.feature-card--dark { background: #111; border: 1px solid #1e1e1e; }
.feature-card__icon { font-size: 2rem; margin-bottom: 0; grid-column: 1; grid-row: 1; }
.feature-card__title { font-weight: 900; font-size: 1rem; color: var(--black); margin-bottom: 0; grid-column: 2; grid-row: 1; align-self: center; }
.feature-card--dark .feature-card__title { color: var(--white); }
.feature-card__text { font-size: 0.85rem; color: #666; line-height: 1.65; grid-column: 1 / -1; grid-row: 2; }
.feature-card--dark .feature-card__text { color: #888; }

/* ===== Steps ===== */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3rem; }
.step { position: relative; padding: 2.5rem 2rem; background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 2px; }
.step__num { font-size: 3rem; font-weight: 900; color: rgba(221,153,51,0.15); line-height: 1; margin-bottom: 1rem; }
.step__title { font-size: 1.15rem; font-weight: 900; color: var(--white); margin-bottom: 0.75rem; }
.step__text { font-size: 0.9rem; color: #999; line-height: 1.75; }

/* ===== Packages ===== */
.packages-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.packages-grid--2col { grid-template-columns: repeat(2, minmax(0, 320px)); justify-content: center; }
.package-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 2px; padding: 2.25rem; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.package-card--highlight { background: var(--black); border: 2px solid var(--gold); }
.package-card__badge { position: absolute; top: 18px; right: -30px; width: 120px; background: var(--gold); color: var(--black); font-size: 0.62rem; font-weight: 900; text-align: center; padding: 0.35rem 0; transform: rotate(45deg); letter-spacing: 0.06em; text-transform: uppercase; }
.package-card__header { margin-bottom: 0; }
.package-card__sessions { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.package-card__price { font-size: 3rem; font-weight: 900; color: var(--black); line-height: 1; margin-bottom: 0.25rem; }
.package-card--highlight .package-card__price { color: var(--gold); }
.package-card__period { font-size: 0.8rem; color: #999; margin-bottom: 0; }
.package-card__divider { border: none; border-top: 1px solid #e8e8e8; margin: 1.5rem 0; }
.package-card--highlight .package-card__divider { border-color: rgba(255,255,255,0.1); }
.package-card__subtitle { font-size: 0.875rem; font-weight: 600; color: var(--black); margin-bottom: 1.25rem; line-height: 1.5; }
.package-card--highlight .package-card__subtitle { color: var(--white); }
.package-card__details { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.75rem; flex: 1; }
.package-card__details li { display: flex; justify-content: space-between; font-size: 0.85rem; border-bottom: 1px solid #f0f0f0; padding-bottom: 0.6rem; }
.package-card--highlight .package-card__details li { border-color: rgba(255,255,255,0.07); }
.package-card__detail-label { color: #999; }
.package-card--highlight .package-card__detail-label { color: #777; }
.package-card__detail-val { font-weight: 700; color: var(--black); }
.package-card--highlight .package-card__detail-val { color: var(--white); }
.package-card__cta { display: block; width: 100%; text-align: center; font-weight: 700; padding: 0.85rem; border-radius: 2px; font-size: 0.875rem; transition: all 0.2s; }
.package-card--highlight .package-card__cta { background: var(--gold); color: var(--black); }
.package-card--highlight .package-card__cta:hover { background: var(--gold-dark); }
.package-card:not(.package-card--highlight) .package-card__cta { border: 1.5px solid #ccc; color: var(--black); }
.package-card:not(.package-card--highlight) .package-card__cta:hover { border-color: var(--gold); color: var(--gold); }

/* ===== Included grid ===== */
.included-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.included-card { background: var(--white); border: 1px solid #e0e0e0; border-radius: 2px; padding: 1.5rem; transition: border-color 0.2s; }
.included-card:hover { border-color: var(--gold); }
.included-card__icon { font-size: 2rem; margin-bottom: 1rem; }
.included-card__title { font-weight: 900; font-size: 1rem; color: var(--black); margin-bottom: 0.5rem; transition: color 0.2s; }
.included-card:hover .included-card__title { color: var(--gold); }
.included-card__text { font-size: 0.85rem; color: #666; line-height: 1.65; }

/* ===== Timeline ===== */
.timeline { display: flex; flex-direction: column; gap: 2.5rem; position: relative; }
.timeline::before { content: ''; position: absolute; left: 1.4rem; top: 0; bottom: 0; width: 1px; background: rgba(221,153,51,0.15); }
.timeline-item { padding-left: 4rem; position: relative; }
.timeline-item__dot { position: absolute; left: 0; top: 0; width: 2.75rem; height: 2.75rem; background: var(--gold); border-radius: 2px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 0.85rem; color: var(--black); }
.timeline-item__week { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.25rem; }
.timeline-item__title { font-size: 1.1rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.timeline-item__text { font-size: 0.875rem; color: #888; line-height: 1.65; }

/* ===== Checklist ===== */
.checklist { display: flex; flex-direction: column; gap: 0.75rem; }
.checklist li { display: flex; gap: 0.75rem; align-items: flex-start; font-size: 0.9rem; color: #666; }
.checklist li::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.checklist--white li { color: #aaa; }

/* ===== Facility list ===== */
.facility-list { display: flex; flex-direction: column; gap: 1rem; margin: 2rem 0; }
.facility-list li { display: flex; align-items: center; gap: 0.75rem; color: #555; font-size: 0.925rem; }
.facility-list li .check { width: 1.25rem; height: 1.25rem; background: var(--gold); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.facility-list li .check span { color: var(--black); font-size: 0.65rem; font-weight: 900; }

/* ===== FAQ ===== */
.faq { display: flex; flex-direction: column; gap: 0; border: 1px solid #e0e0e0; border-radius: 2px; overflow: hidden; }
.faq-item { background: var(--white); border-bottom: 1px solid #e0e0e0; }
.faq-item:last-child { border-bottom: none; }
.faq-item__q { font-family: 'Inter', sans-serif; font-weight: 700; color: var(--black); font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.25rem 1.5rem; margin: 0; user-select: none; letter-spacing: 0.02em; }
.faq-item__q::after { content: '+'; font-size: 1.4rem; font-weight: 300; color: var(--gold); flex-shrink: 0; transition: transform 0.25s ease; }
.faq-item.open .faq-item__q::after { transform: rotate(45deg); }
.faq-item__a { color: #666; font-size: 0.875rem; line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.25s ease; padding: 0 1.5rem; }
.faq-item.open .faq-item__a { max-height: 800px; padding: 0 1.5rem 1.25rem; }

/* ===== Contact ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-form { background: var(--white); border: 1px solid #e0e0e0; border-radius: 2px; padding: 2.5rem; }
.contact-form h2 { font-size: 1.5rem; font-weight: 900; color: var(--black); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.25rem; }
.form-group label { font-size: 0.85rem; font-weight: 700; color: var(--black); }
.form-group input, .form-group select, .form-group textarea { border: 1px solid #ddd; border-radius: 2px; padding: 0.75rem 1rem; font-size: 0.875rem; transition: border-color 0.2s; outline: none; color: var(--black); width: 100%; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { resize: none; }
.form-submit { width: 100%; background: var(--gold); color: var(--black); font-weight: 700; padding: 1rem; border-radius: 2px; font-size: 0.95rem; cursor: pointer; transition: background 0.2s; margin-top: 0.5rem; }
.form-submit:hover { background: var(--gold-dark); }
.form-note { text-align: center; font-size: 0.75rem; color: #aaa; margin-top: 0.75rem; }
.contact-info { display: flex; flex-direction: column; gap: 2.5rem; }
.contact-block__label { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.5rem; }
.contact-block__title { font-size: 1.15rem; font-weight: 900; color: var(--black); margin-bottom: 0.5rem; }
.contact-block__text { color: #666; font-size: 0.875rem; line-height: 1.7; }
.contact-block__text a { color: #666; transition: color 0.2s; }
.contact-block__text a:hover { color: var(--gold); }
.hours-table { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.hours-row { display: flex; justify-content: space-between; border-bottom: 1px solid #f0f0f0; padding-bottom: 0.5rem; font-size: 0.875rem; }
.hours-row span:first-child { font-weight: 500; color: #333; }
.hours-row span:last-child { color: #888; }
.social-links { display: flex; gap: 0.75rem; margin-top: 1rem; }
.social-link { border: 1px solid #ddd; color: #666; font-size: 0.8rem; font-weight: 500; padding: 0.4rem 0.9rem; border-radius: 2px; transition: all 0.2s; }
.social-link:hover { border-color: var(--gold); color: var(--gold); }
.map-placeholder { flex: 1; min-height: 200px; background: #f0f0f0; border-radius: 2px; display: flex; align-items: center; justify-content: center; color: #aaa; font-size: 0.85rem; }

/* ===== Price highlight box ===== */
.price-box { background: var(--black); border: 2px solid var(--gold); border-radius: 2px; padding: 2.5rem; max-width: 520px; margin: 0 auto; text-align: center; }
.price-box__amount { font-size: 4rem; font-weight: 900; color: var(--gold); line-height: 1; }
.price-box__period { color: #666; font-size: 0.85rem; margin-bottom: 2rem; }
.price-box .checklist { text-align: left; margin-bottom: 2rem; }
.price-box .btn { width: 100%; text-align: center; display: block; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .grid-4, .features { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: 1fr; }
  .pricing-grid, .packages-grid { grid-template-columns: repeat(3, 1fr); }
  .included-grid { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .cta { padding: 4rem 0 5rem; }
  .cta .btn { display: inline-block; width: auto; max-width: 80%; }
  .service-card__icon { font-size: 2rem; }
.included-card { display: grid; grid-template-columns: auto 1fr; column-gap: 1rem; align-items: center; }
  .included-card__icon { grid-column: 1; grid-row: 1; margin-bottom: 0; }
  .included-card__title { grid-column: 2; grid-row: 1; margin-bottom: 0; align-self: center; }
  .included-card__text { grid-column: 1 / -1; grid-row: 2; }
  .top-bar { padding: 0 1rem; justify-content: center; }
  .top-bar__inner { justify-content: center; }
  .top-bar__text { font-size: 0.65rem; }
  .top-bar__stars { font-size: 0.7rem; }
  .top-bar__score { font-size: 0.65rem; }
  .top-bar__left { gap: 0.3rem; }
  .nav, .logo__text { display: none; }
  .hamburger { display: flex; }
  .hero__inner, .grid-2, .contact-grid { grid-template-columns: 1fr; }
  .hero__image { display: none; }
  .news-grid { grid-template-columns: 1fr; }
  .grid-3, .pricing-grid, .packages-grid, .included-grid { grid-template-columns: 1fr; }
  .grid-4, .features, .steps { grid-template-columns: 1fr; }
  .stats__inner { grid-template-columns: 1fr; }
  .features-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .features-item:last-child { border-bottom: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { display: none; }
  .timeline-item { padding-left: 0; padding-top: 0; display: grid; grid-template-columns: 2.75rem 1fr; column-gap: 1rem; align-items: start; }
  .timeline-item__dot { position: static; grid-column: 1; grid-row: 1 / 4; align-self: start; }
  .timeline-item__week { grid-column: 2; grid-row: 1; }
  .timeline-item__title { grid-column: 2; grid-row: 2; }
  .timeline-item__text { grid-column: 2; grid-row: 3; }
  .compare-table { min-width: 520px; }
  .compare-table th:first-child,
  .compare-table td:first-child {
    position: sticky;
    left: 0;
    z-index: 2;
    background: #fff;
    min-width: 130px;
  }
  .compare-table thead th:first-child { z-index: 4; background: var(--white); }
  .compare-wrap { -webkit-overflow-scrolling: touch; }
}

@media (max-width: 480px) {
  .section { padding: 3rem 0; }
  .hero { min-height: auto; padding: 4rem 0; }
  .hero__actions { flex-direction: column; }
  .btn { text-align: center; }
}

/* ===== Promo banner ===== */
.promo-banner { background: #1a1a1a; border-bottom: 2px solid var(--gold); padding: 0.875rem 0; }
.promo-banner__inner { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.promo-banner__tag { background: var(--gold); color: var(--black); font-size: 0.7rem; font-weight: 900; letter-spacing: 0.08em; padding: 0.2rem 0.6rem; border-radius: 2px; }
.promo-banner__text { color: #ccc; font-size: 0.9rem; }
.promo-banner__text strong { color: var(--gold); }
.promo-banner__cta { background: transparent; border: 1px solid var(--gold); color: var(--gold); font-size: 0.8rem; font-weight: 700; padding: 0.3rem 0.85rem; border-radius: 2px; transition: all 0.2s; }
.promo-banner__cta:hover { background: var(--gold); color: var(--black); }

/* ===== Plan card extras ===== */
.plan-card__promo { display: flex; align-items: center; gap: 0.5rem; background: rgba(221,153,51,0.1); border: 1px solid rgba(221,153,51,0.3); border-radius: 2px; padding: 0.4rem 0.75rem; margin: 0.75rem 0; }
.plan-card__promo--dark { background: rgba(221,153,51,0.08); border-color: rgba(221,153,51,0.25); }
.plan-card__promo-label { font-size: 0.65rem; font-weight: 900; letter-spacing: 0.1em; background: var(--gold); color: var(--black); padding: 0.15rem 0.4rem; border-radius: 2px; flex-shrink: 0; }
.plan-card__promo-price { font-size: 0.85rem; color: var(--gold); font-weight: 700; }
.plan-card__promo-price em { font-style: normal; font-weight: 400; color: #888; font-size: 0.75rem; }
.plan-card--highlight .plan-card__promo-price em { color: #777; }
.plan-card__feature--no { opacity: 0.4; }
.plan-card__cross { color: #999; font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.plan-card__youth { font-size: 0.78rem; color: #888; background: var(--gray-light); border-radius: 2px; padding: 0.5rem 0.75rem; margin-bottom: 1.25rem; }
.plan-card__youth--dark { background: rgba(255,255,255,0.05); color: #888; }
.plan-card__youth strong { color: var(--gold); }

/* ===== Comparison table ===== */
.compare-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.compare-table th, .compare-table td { padding: 0.875rem 1.25rem; text-align: center; border-bottom: 1px solid #eee; }
.compare-table th { font-weight: 900; font-size: 1rem; color: var(--black); background: var(--white); padding-top: 1.5rem; padding-bottom: 1.5rem; }
.compare-table th.compare-table__feature-col { text-align: left; }
.compare-table td.compare-table__feature-col, .compare-table__feature-col { text-align: left; color: #444; }
.compare-table__highlight { background: var(--black) !important; color: var(--white) !important; }
.compare-table__highlight th, .compare-table thead .compare-table__highlight { color: var(--white) !important; }
.compare-table__price { font-size: 0.75rem; font-weight: 400; color: var(--gold); display: block; margin-top: 0.25rem; }
.compare-table thead .compare-table__highlight .compare-table__price { color: var(--gold); }
.compare-table tbody tr:hover td:not(.compare-table__highlight) { background: #fafafa; }
.ct-yes { color: var(--gold); font-weight: 900; font-size: 1rem; }
.ct-no { color: #ccc; font-size: 1rem; }
.compare-table__cta-row td { padding-top: 1.5rem; padding-bottom: 1.5rem; border-bottom: none; }
.compare-table__btn { display: inline-block; border: 1.5px solid #ccc; color: var(--black); font-size: 0.8rem; font-weight: 700; padding: 0.5rem 1.25rem; border-radius: 2px; transition: all 0.2s; }
.compare-table__btn:hover { border-color: var(--gold); color: var(--gold); }
.compare-table__btn--gold { background: var(--gold); color: var(--black); border-color: var(--gold); }
.compare-table__btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); }

/* ===== Youth block ===== */
.youth-block { display: flex; align-items: center; gap: 2rem; background: #111; border: 1px solid rgba(221,153,51,0.2); border-radius: 2px; padding: 2.5rem; flex-wrap: wrap; }
.youth-block__icon { font-size: 3rem; flex-shrink: 0; }
.youth-block__content { flex: 1; min-width: 200px; }
.youth-block__title { font-size: 1.5rem; font-weight: 900; color: var(--white); margin-bottom: 0.5rem; }
.youth-block__text { color: #888; font-size: 0.9rem; line-height: 1.65; }
.youth-block__text strong { color: var(--gold); }

@media (max-width: 768px) {
  .youth-block { flex-direction: column; text-align: center; }
  .compare-table th, .compare-table td { padding: 0.65rem 0.75rem; font-size: 0.8rem; }
  .promo-banner__inner { flex-direction: column; gap: 0.5rem; text-align: center; }
}
