@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Lato:wght@300;400;700;900&display=swap');

/* =========================================================
   VARIABLES & ROOT
   ========================================================= */
:root {
  --ivory:       #F7F0DF;
  --ivory-dark:  #EDE3C8;
  --wine:        #7A1F26;
  --wine-dark:   #5C161C;
  --terracotta:  #B94C32;
  --olive:       #66713A;
  --olive-light: #8A9A4E;
  --gold:        #C79A3B;
  --gold-light:  #E0BB6A;
  --dark:        #33251E;
  --dark-mid:    #5A3D30;
  --white:       #FFFFFF;
  --light-bg:    #FBF7EE;
  --shadow-s:    0 2px 8px rgba(51,37,30,.08);
  --shadow-m:    0 6px 20px rgba(51,37,30,.12);
  --shadow-l:    0 12px 40px rgba(51,37,30,.16);
  --radius:      10px;
  --radius-lg:   18px;
  --font-title:  'Playfair Display', Georgia, serif;
  --font-body:   'Lato', 'Helvetica Neue', sans-serif;
  --ease:        cubic-bezier(.4,0,.2,1);
  --t:           .3s;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--light-bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-title);
  line-height: 1.2;
  color: var(--wine);
}

p { margin-bottom: 1.2rem; }
a { color: var(--wine); text-decoration: none; transition: color var(--t) var(--ease); }
a:hover { color: var(--terracotta); }
img { max-width: 100%; height: auto; display: block; }
ul, ol { padding-left: 1.4rem; }

/* =========================================================
   UTILITY
   ========================================================= */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  margin-bottom: 1rem;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--dark-mid);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.text-center { text-align: center; }

/* Gold ornament divider */
.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  margin: 1.5rem auto;
  max-width: 300px;
}
.ornament::before, .ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.ornament::after { background: linear-gradient(90deg, var(--gold), transparent); }
.ornament-icon { color: var(--gold); font-size: 1.25rem; }

/* Paper texture background */
.paper-bg {
  background-color: var(--ivory);
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(180,150,100,.06) 28px, rgba(180,150,100,.06) 29px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(180,150,100,.03) 28px, rgba(180,150,100,.03) 29px);
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
*:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.cta-button, .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: 1rem 2.25rem;
  background: var(--wine);
  color: var(--white) !important;
  font-family: var(--font-title);
  font-size: 1.1rem;
  font-weight: 700;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(122,31,38,.35);
  transition: all var(--t) var(--ease);
  text-decoration: none !important;
  letter-spacing: .02em;
}
.cta-button:hover, .btn-primary:hover {
  background: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(185,76,50,.4);
  color: var(--white) !important;
}
.cta-button:active, .btn-primary:active { transform: translateY(0); }

.cta-button-lg {
  padding: 1.2rem 2.8rem;
  font-size: 1.2rem;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  background: transparent;
  color: var(--wine);
  border: 2px solid var(--wine);
  border-radius: var(--radius);
  font-family: var(--font-title);
  font-weight: 700;
  cursor: pointer;
  transition: all var(--t) var(--ease);
}
.btn-secondary:hover {
  background: var(--wine);
  color: var(--white);
}

/* =========================================================
   TOP BAR
   ========================================================= */
.top-bar {
  background: var(--olive);
  color: var(--white);
  text-align: center;
  padding: .55rem 1rem;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
}
.top-bar svg { flex-shrink: 0; }

/* =========================================================
   HEADER / NAV
   ========================================================= */
header, .header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 200;
  box-shadow: 0 2px 12px rgba(51,37,30,.07);
  border-bottom: 2px solid var(--ivory-dark);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  padding-bottom: .9rem;
}
.logo {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none !important;
}
.logo span {
  font-family: var(--font-title);
  font-size: 1.15rem;
  color: var(--wine);
  font-weight: 700;
  line-height: 1.2;
  max-width: 180px;
}
.logo svg { flex-shrink: 0; }
.logo img, .logo-img { height: 42px; width: 42px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.logo-img-footer { height: 46px; width: 46px; object-fit: contain; border-radius: 50%; flex-shrink: 0; }
.mockup-book-logo { width: 70px; height: 70px; object-fit: contain; border-radius: 50%; margin: 0 auto; display: block; filter: drop-shadow(0 3px 6px rgba(0,0,0,0.25)); }
.logo-fallback {
  font-family: var(--font-title);
  font-size: 1.25rem;
  color: var(--wine);
  font-weight: 700;
}
.nav, nav { display: flex; align-items: center; gap: 1rem; }
.nav ul { display: flex; list-style: none; gap: 1rem; }
.nav-link, nav a {
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 700;
  color: var(--dark);
  padding: .5rem .9rem;
  border-radius: var(--radius);
  border: 2px solid var(--wine);
  transition: all var(--t) var(--ease);
}
.nav-link:hover, nav a:hover {
  background: var(--wine);
  color: var(--white) !important;
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  background-color: var(--ivory);
  background-image:
    radial-gradient(ellipse at 20% 50%, rgba(199,154,59,.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(122,31,38,.06) 0%, transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 30px, rgba(180,150,100,.04) 30px, rgba(180,150,100,.04) 31px);
  padding: 5rem 0 4rem;
  border-bottom: 3px solid var(--ivory-dark);
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta), var(--gold));
}
.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  text-align: center;
}
.hero-content h1, .hero h1 {
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-content h1 em, .hero h1 em {
  color: var(--wine);
  font-style: italic;
}
.subtitle {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--dark-mid);
  max-width: 600px;
  margin: 0 auto 2rem;
}
.price-tag {
  display: inline-flex;
  align-items: baseline;
  gap: .5rem;
  background: var(--gold);
  color: var(--dark);
  font-family: var(--font-title);
  font-size: 2rem;
  font-weight: 700;
  padding: .5rem 1.4rem;
  border-radius: var(--radius);
  margin-bottom: 1.75rem;
  box-shadow: 0 4px 16px rgba(199,154,59,.35);
}
.price-detail {
  font-size: .9rem;
  font-weight: 400;
  font-family: var(--font-body);
  opacity: .75;
}
.small-text {
  font-size: .85rem;
  color: var(--dark-mid);
  margin-top: 1rem;
  margin-bottom: 0;
  opacity: .8;
}
/* Book mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.notebook-mockup {
  display: flex;
  filter: drop-shadow(0 20px 40px rgba(51,37,30,.25));
  position: relative;
}
.notebook-spine {
  width: 28px;
  background: linear-gradient(180deg, var(--wine-dark) 0%, var(--wine) 40%, var(--wine-dark) 100%);
  border-radius: 6px 0 0 6px;
  position: relative;
}
.notebook-spine::before {
  content: '';
  position: absolute;
  top: 20px; bottom: 20px; left: 50%;
  transform: translateX(-50%);
  width: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
}
.notebook-cover {
  width: 220px;
  min-height: 290px;
  background: linear-gradient(160deg, var(--ivory) 0%, var(--ivory-dark) 100%);
  border-radius: 0 10px 10px 0;
  border: 1px solid var(--ivory-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.notebook-cover::before {
  content: '';
  position: absolute;
  inset: 10px;
  border: 1.5px solid var(--gold);
  border-radius: 6px;
  opacity: .5;
  pointer-events: none;
}
.notebook-cover::after {
  content: '✦';
  position: absolute;
  top: 18px; left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  font-size: .75rem;
  letter-spacing: .3em;
}
.notebook-icon {
  font-size: 2.5rem;
  margin-top: .5rem;
}
.notebook-title {
  font-family: var(--font-title);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--wine);
  text-align: center;
  line-height: 1.2;
}
.notebook-subtitle {
  font-size: .8rem;
  color: var(--dark-mid);
  text-align: center;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.notebook-author {
  font-size: .75rem;
  color: var(--gold);
  font-style: italic;
  text-align: center;
  margin-top: .5rem;
}

/* =========================================================
   STORYTELLING
   ========================================================= */
.storytelling {
  background: var(--white);
  padding: 5rem 0;
}
.story-content {
  max-width: 760px;
  margin: 0 auto;
}
.story-intro {
  font-family: var(--font-title);
  font-size: clamp(1.2rem, 3vw, 1.65rem);
  font-style: italic;
  color: var(--wine);
  line-height: 1.5;
  margin-bottom: 2rem;
  padding-left: 1.5rem;
  border-left: 4px solid var(--gold);
}
.story-content p {
  font-size: 1.05rem;
  line-height: 1.85;
  color: var(--dark);
}
.pullquote {
  font-family: var(--font-title);
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--wine);
  text-align: center;
  padding: 2rem 2.5rem;
  margin: 2.5rem 0;
  position: relative;
  background: var(--ivory);
  border-radius: var(--radius);
}
.pullquote::before {
  content: '\201C';
  font-size: 5rem;
  line-height: .7;
  color: var(--gold);
  position: absolute;
  top: .5rem;
  left: 1rem;
  font-family: Georgia, serif;
  opacity: .5;
}
.pullquote::after {
  content: '\201D';
  font-size: 5rem;
  line-height: .7;
  color: var(--gold);
  position: absolute;
  bottom: -.5rem;
  right: 1rem;
  font-family: Georgia, serif;
  opacity: .5;
}

/* =========================================================
   PROBLEM
   ========================================================= */
.problem, .bg-light { background: var(--light-bg); }
.problem { padding: 5rem 0; }
.problem h2 { text-align: center; margin-bottom: .5rem; }
.cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-s);
  border-top: 4px solid var(--terracotta);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-m); }
.card svg { margin-bottom: 1rem; }
.card h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--dark);
}
.card p { margin-bottom: 0; color: var(--dark-mid); font-size: .97rem; }

/* =========================================================
   SOLUTION / BENEFITS
   ========================================================= */
.solution {
  background: linear-gradient(135deg, var(--wine) 0%, var(--wine-dark) 100%);
  color: var(--white);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.solution::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 70% 30%, rgba(199,154,59,.12) 0%, transparent 50%);
  pointer-events: none;
}
.solution h2, .solution .section-title { color: var(--ivory); text-align: center; }
.solution .section-label { color: var(--gold-light); }
.solution .section-desc { color: rgba(247,240,223,.8); }
.solution-intro {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  text-align: center;
  font-size: 1.05rem;
  color: rgba(247,240,223,.85);
}
.benefits-list {
  list-style: none;
  padding: 0;
  max-width: 680px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  color: var(--ivory);
  font-size: 1rem;
}
.benefits-list li svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  margin-top: .15rem;
}
.benefits-list li strong { color: var(--gold-light); }

/* =========================================================
   WHAT'S INSIDE — category cards
   ========================================================= */
.inside { padding: 5rem 0; }
.inside h2 { text-align: center; margin-bottom: .5rem; }
.category-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow-s);
  border: 1px solid var(--ivory-dark);
  border-bottom: 3px solid var(--gold);
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.cat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); }
.cat-icon {
  width: 52px;
  height: 52px;
  background: var(--ivory);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border: 2px solid var(--ivory-dark);
  color: var(--wine);
}
.cat-card h4 {
  font-size: 1.1rem;
  color: var(--wine);
  margin-bottom: .75rem;
}
.cat-card ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.cat-card ul li {
  font-size: .92rem;
  color: var(--dark-mid);
  padding-left: 1.1rem;
  position: relative;
}
.cat-card ul li::before {
  content: '›';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
}

/* =========================================================
   BONUSES
   ========================================================= */
.bonuses {
  background: var(--ivory);
  padding: 5rem 0;
  position: relative;
}
.bonuses h2 { text-align: center; margin-bottom: .5rem; }
.bonus-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.bonus-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-m);
  border: 1px solid var(--ivory-dark);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
  overflow: hidden;
  transition: transform var(--t) var(--ease), box-shadow var(--t) var(--ease);
}
.bonus-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-l); }
.bonus-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--terracotta));
}
.bonus-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--dark);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .85rem;
  border-radius: 30px;
}
.bonus-card h3 {
  font-size: 1.25rem;
  color: var(--dark);
  margin-bottom: 0;
}
.bonus-card p { color: var(--dark-mid); font-size: .97rem; margin-bottom: 0; }

/* =========================================================
   VISUAL PREVIEW
   ========================================================= */
.preview { padding: 5rem 0; }
.preview h2 { text-align: center; margin-bottom: .5rem; }
.preview-mockups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.mockup-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-m);
  border: 1px solid var(--ivory-dark);
}
.mockup-header {
  background: linear-gradient(135deg, var(--wine), var(--wine-dark));
  color: var(--ivory);
  font-family: var(--font-title);
  font-size: .95rem;
  font-weight: 700;
  padding: .85rem 1.5rem;
  letter-spacing: .05em;
}
.mockup-body {
  padding: 1.5rem;
  background: var(--ivory);
  min-height: 140px;
  display: flex;
  flex-direction: column;
  gap: .75rem;
  position: relative;
}
.mockup-title {
  font-family: var(--font-title);
  font-size: 1.1rem;
  color: var(--wine);
  font-style: italic;
}
.mockup-lines { display: flex; flex-direction: column; gap: .5rem; }
.mockup-lines span {
  display: block;
  height: 2px;
  background: var(--ivory-dark);
  border-radius: 2px;
}
.mockup-lines span:nth-child(1) { width: 90%; }
.mockup-lines span:nth-child(2) { width: 75%; }
.mockup-lines span:nth-child(3) { width: 60%; }
.mockup-table {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .4rem;
}
.mockup-table div {
  height: 28px;
  background: rgba(122,31,38,.12);
  border-radius: 4px;
}

/* =========================================================
   FOR WHOM
   ========================================================= */
.for-whom { padding: 5rem 0; background: var(--white); }
.for-whom h2 { text-align: center; margin-bottom: .5rem; }
.profiles-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .9rem;
  max-width: 720px;
  margin: 2.5rem auto 0;
}
.profile-item {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.25rem;
  background: var(--light-bg);
  border-radius: var(--radius);
  border-left: 3px solid var(--olive);
  font-size: 1rem;
}
.profile-item svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--olive);
  margin-top: .15rem;
}

/* =========================================================
   COMPARISON TABLE
   ========================================================= */
.comparison { padding: 5rem 0; background: var(--light-bg); }
.comparison h2 { text-align: center; margin-bottom: .5rem; }
.comp-table-wrapper {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-m);
}
.comp-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 560px;
  background: var(--white);
}
.comp-table thead tr { background: var(--dark); }
.comp-table th {
  padding: 1.1rem 1.25rem;
  text-align: left;
  color: var(--ivory);
  font-family: var(--font-title);
  font-size: 1rem;
  font-weight: 700;
}
.comp-table th.highlight { background: var(--wine); }
.comp-table td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--ivory-dark);
  font-size: .97rem;
  vertical-align: middle;
}
.comp-table td.highlight {
  background: rgba(102,113,58,.07);
  color: var(--olive);
  font-weight: 700;
}
.comp-table td.highlight::before { content: '✓  '; color: var(--olive); font-weight: 900; }
.comp-table tbody tr:nth-child(even) td:not(.highlight) { background: var(--light-bg); }
.comp-table tbody tr:hover td { background: rgba(199,154,59,.06); }

/* =========================================================
   OFFER BOX
   ========================================================= */
.offer {
  padding: 5rem 0;
  background: linear-gradient(135deg, var(--terracotta) 0%, #8A2E18 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.offer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 80% 20%, rgba(255,255,255,.07) 0%, transparent 50%);
}
.offer h2, .offer .section-title { color: var(--ivory); margin-bottom: .5rem; }
.offer-box {
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  max-width: 620px;
  margin: 0 auto;
  backdrop-filter: blur(8px);
}
.offer-list {
  list-style: none;
  padding: 0;
  text-align: left;
  margin: 1.5rem 0 2rem;
  display: flex;
  flex-direction: column;
  gap: .65rem;
}
.offer-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: 1rem;
  color: var(--ivory);
}
.offer-list li::before {
  content: '✦';
  color: var(--gold-light);
  flex-shrink: 0;
  font-size: .85rem;
}
.offer-price {
  font-family: var(--font-title);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 1.75rem;
}
.offer-price .price-detail {
  display: block;
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 400;
  color: rgba(247,240,223,.75);
  margin-top: .25rem;
}
.offer .cta-button {
  background: var(--ivory);
  color: var(--wine) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,.2);
}
.offer .cta-button:hover {
  background: var(--gold-light);
  color: var(--dark) !important;
}

/* =========================================================
   FAQ
   ========================================================= */
.faq { padding: 5rem 0; background: var(--white); }
.faq h2 { text-align: center; margin-bottom: .5rem; }
.faq-accordion {
  max-width: 740px;
  margin: 2.5rem auto 0;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.faq-item {
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--ivory-dark);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-family: var(--font-title);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--wine);
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background var(--t);
}
.faq-question:hover { background: var(--ivory-dark); }
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  flex-shrink: 0;
  margin-left: 1rem;
  transition: transform var(--t) var(--ease);
}
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  font-size: .97rem;
  color: var(--dark-mid);
  line-height: 1.75;
}
.faq-item.open .faq-answer { display: block; }
/* Fallback for JS-less / accordion-header approach */
.accordion-item { background: var(--light-bg); border-radius: var(--radius); border: 1px solid var(--ivory-dark); overflow: hidden; margin-bottom: .75rem; }
.accordion-header { width: 100%; padding: 1.25rem 1.5rem; font-family: var(--font-title); font-size: 1.05rem; font-weight: 600; color: var(--wine); text-align: left; background: none; border: none; cursor: pointer; display: flex; justify-content: space-between; align-items: center; transition: background var(--t); }
.accordion-header:hover { background: var(--ivory-dark); }
.accordion-icon { font-size: 1.4rem; color: var(--gold); transition: transform var(--t); }
.accordion-header[aria-expanded="true"] .accordion-icon { transform: rotate(45deg); }
.accordion-content { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease), padding .3s; padding: 0 1.5rem; }
.accordion-header[aria-expanded="true"] + .accordion-content { max-height: 600px; padding: 0 1.5rem 1.25rem; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final-cta {
  padding: 5.5rem 0;
  background: var(--ivory);
  text-align: center;
  position: relative;
}
.final-cta::before, .final-cta::after {
  content: '';
  display: block;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  position: absolute;
  left: 10%; right: 10%;
}
.final-cta::before { top: 0; }
.final-cta::after { bottom: 0; }
.final-cta h2 { font-size: clamp(1.6rem, 4vw, 2.4rem); margin-bottom: 1rem; }
.final-cta p {
  max-width: 580px;
  margin: 0 auto 2.25rem;
  font-size: 1.08rem;
  color: var(--dark-mid);
}

/* =========================================================
   GUARANTEE SEAL
   ========================================================= */
.guarantee-seal {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 2px solid var(--olive);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  margin-top: 1.5rem;
  max-width: 420px;
}
.guarantee-seal svg { flex-shrink: 0; color: var(--olive); }
.guarantee-seal-text { text-align: left; }
.guarantee-seal-text strong { display: block; color: var(--olive); font-size: .95rem; }
.guarantee-seal-text span { font-size: .85rem; color: var(--dark-mid); }

/* =========================================================
   FOOTER
   ========================================================= */
.footer, footer {
  background: var(--dark);
  color: var(--ivory);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
}
.footer-logo span {
  font-family: var(--font-title);
  font-size: 1.2rem;
  color: var(--ivory);
}
.footer-links, .footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .75rem 1.5rem;
}
.footer-links a, .footer-legal a {
  color: var(--gold);
  font-size: .9rem;
  transition: color var(--t);
}
.footer-links a:hover, .footer-legal a:hover { color: var(--ivory); }
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(247,240,223,.1);
}
.footer-disclaimer {
  font-size: .8rem;
  color: rgba(247,240,223,.5);
  max-width: 560px;
  line-height: 1.6;
  margin-bottom: .5rem;
}
.footer-copy {
  font-size: .8rem;
  color: rgba(247,240,223,.4);
  margin-bottom: 0;
}

/* =========================================================
   ANIMATIONS
   ========================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
  .fade-in { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (min-width: 640px) {
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .category-cards { grid-template-columns: repeat(2, 1fr); }
  .bonus-grid { grid-template-columns: repeat(2, 1fr); }
  .preview-mockups { grid-template-columns: repeat(2, 1fr); }
  .profiles-list { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 768px) {
  .hero-container {
    grid-template-columns: 1fr 1fr;
    text-align: left;
    gap: 4rem;
  }
  .hero-content h1, .hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); }
  .subtitle { margin-left: 0; }
  .hero-visual { justify-content: flex-end; }
  .notebook-cover { width: 260px; min-height: 340px; }
}

@media (min-width: 900px) {
  .cards-grid { grid-template-columns: repeat(3, 1fr); }
  .category-cards { grid-template-columns: repeat(3, 1fr); }
  .bonus-grid { grid-template-columns: repeat(3, 1fr); }
  .preview-mockups { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .category-cards { grid-template-columns: repeat(5, 1fr); }
}

/* =========================================================
   PRINT
   ========================================================= */
@media print {
  .top-bar, header, .hero-visual, footer,
  .cta-button, .btn-primary, .btn-secondary,
  .final-cta, .comparison, .for-whom { display: none !important; }
  body { background: #fff; color: #000; }
  section { padding: 1.5rem 0; }
  h1, h2, h3, h4 { color: #000 !important; }
  a { color: #000; }
  .offer, .solution, .hero { background: none !important; color: #000 !important; }
  .accordion-content { max-height: none !important; padding: .5rem 0 !important; }
}
