/* Cinderella Events - Rich Theatrical Design */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Raleway:wght@300;400;500;600&display=swap');

:root {
    /* Rich theatrical palette */
    --burgundy: #6B1C23;
    --burgundy-deep: #4A1219;
    --burgundy-light: #8B2D35;
    --gold: #C9A961;
    --gold-light: #D4BC7D;
    --gold-dark: #A68B4B;
    --cream: #F5F0E6;
    --cream-dark: #E8E0D0;
    --charcoal: #1C1C1C;
    --charcoal-light: #2A2A2A;
    --off-white: #FAF8F5;
    
    /* Typography - simplified */
    --font-display: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    
    /* Consistent sizing */
    --text-hero: clamp(3rem, 6vw, 5rem);
    --text-heading: clamp(2rem, 4vw, 3rem);
    --text-body: 1.25rem;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    line-height: 1.7;
    color: var(--charcoal);
    background-color: var(--off-white);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: var(--text-hero); }
h2, h3, h4 { font-size: var(--text-heading); }

p { 
    font-family: var(--font-body);
    font-size: var(--text-body);
    margin-bottom: 1.5rem; 
}
p:last-child { margin-bottom: 0; }

a {
    color: var(--burgundy);
    text-decoration: none;
    transition: all 0.3s ease;
}
a:hover { color: var(--burgundy-light); }

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: all 0.4s ease;
}

.nav--scrolled {
    background: rgba(28, 28, 28, 0.97);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.nav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav__logo {
    font-family: var(--font-display);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--cream);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
}

.nav__link {
    font-size: var(--text-body);
    font-weight: 500;
    color: var(--cream);
    opacity: 0.8;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
}
.nav__link:hover { opacity: 1; color: var(--gold); }
.nav__link--active { opacity: 1; color: var(--gold); }

.nav__cta {
    padding: 0.85rem 1.75rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border: none;
    transition: all 0.3s ease;
}
.nav__cta:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}
.nav__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--cream);
    transition: all 0.3s ease;
}

/* ============================================
   HERO - THEATRICAL SPOTLIGHT
   ============================================ */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--charcoal);
    overflow: hidden;
}

.hero__spotlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/spotlight.png') no-repeat;
    background-size: cover;
    background-position: center top;
    opacity: 0.9;
}

.hero__velvet {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: url('../images/velvet.png') no-repeat;
    background-size: cover;
    background-position: left center;
    opacity: 0.4;
    mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1), rgba(0,0,0,0));
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero__text {
    max-width: 800px;
}

.hero__label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--cream);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-size: var(--text-hero);
    color: var(--cream);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero__headline em {
    font-style: italic;
    color: var(--gold);
}

.hero__subheadline {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 400;
    color: var(--cream);
    opacity: 0.85;
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero__cta {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--gold);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}
.hero__cta:hover {
    background: var(--gold-light);
    color: var(--charcoal);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.hero__image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero__logo {
    width: 100%;
    max-width: 500px;
    opacity: 0.9;
    filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}

/* Page Hero (internal pages) */
.hero--page {
    min-height: 50vh;
    background: var(--charcoal);
}

.hero--page .hero__content {
    display: block;
    text-align: center;
    padding: 10rem 2rem 5rem;
}

.hero--page .hero__headline {
    font-size: var(--text-heading);
    margin-bottom: 1rem;
}

.hero--page .hero__subheadline {
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   SECTIONS
   ============================================ */
section {
    padding: 4.5rem 0;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.container--narrow {
    max-width: 900px;
}

/* ============================================
   PROBLEM SECTION - DRAMATIC OFFSET
   ============================================ */
.problem {
    position: relative;
    background: var(--cream) url('../images/paper.png') no-repeat center;
    background-size: cover;
    padding: 6rem 0;
    overflow: hidden;
}

.problem__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.problem__heading {
    font-size: var(--text-heading);
    color: var(--burgundy);
    line-height: 1.1;
}

.problem__heading em {
    font-style: italic;
    display: block;
}

.problem__content {
    position: relative;
    padding-left: 3rem;
    border-left: 3px solid var(--gold);
}

.problem__list {
    list-style: none;
    margin-bottom: 2rem;
}

.problem__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.25rem;
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.8;
}

.problem__list li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--burgundy);
    font-weight: 700;
    font-size: var(--text-body);
}

.problem__emphasis {
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-style: italic;
    color: var(--burgundy);
    margin-top: 2rem;
}

/* ============================================
   SOLUTION - VELVET BACKGROUND
   ============================================ */
.solution {
    position: relative;
    background: var(--burgundy-deep);
    padding: 6rem 0;
    overflow: hidden;
}

.solution__velvet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/velvet.png') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.solution__inner {
    position: relative;
    z-index: 1;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.solution__heading {
    font-size: var(--text-heading);
    color: var(--cream);
    margin-bottom: 3rem;
}

.solution__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: left;
    margin-bottom: 3rem;
}

.solution__point {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.solution__point p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    margin: 0;
    line-height: 1.6;
}

.solution__tagline {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-style: italic;
    color: var(--gold);
}

/* ============================================
   VALUE PILLARS - OVERLAPPING CARDS
   ============================================ */
.pillars {
    background: var(--off-white) url('../images/paper.png') no-repeat center;
    background-size: cover;
    padding: 6rem 0;
}

.pillars__header {
    text-align: center;
    margin-bottom: 3rem;
}

.pillars__header h2 {
    color: var(--burgundy);
}

.pillars__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    position: relative;
}

.pillar {
    padding: 3rem;
    background: var(--cream);
    position: relative;
    transition: all 0.4s ease;
}

.pillar:nth-child(1) {
    transform: translateY(2rem);
    z-index: 1;
}

.pillar:nth-child(2) {
    background: var(--charcoal);
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.pillar:nth-child(2) .pillar__title,
.pillar:nth-child(2) .pillar__text {
    color: var(--cream);
}

.pillar:nth-child(2) .pillar__title {
    color: var(--gold);
}

.pillar:nth-child(3) {
    transform: translateY(2rem);
    z-index: 1;
}

.pillar__title {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.pillar__text {
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

/* ============================================
   COMPARISON - EVIDENCE BOARD STYLE
   ============================================ */
.comparison {
    position: relative;
    background: var(--burgundy-deep);
    padding: 6rem 0;
    overflow: hidden;
}

.comparison__velvet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/velvet.png') no-repeat center;
    background-size: cover;
    opacity: 0.3;
}

.comparison__inner {
    position: relative;
    z-index: 1;
    max-width: 950px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.comparison__heading {
    font-family: var(--font-display);
    font-size: var(--text-heading);
    color: var(--gold);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison__table {
    width: 100%;
    border-collapse: collapse;
}

.comparison__table th {
    font-family: var(--font-display);
    font-size: var(--text-body);
    font-weight: 600;
    color: var(--gold);
    text-align: left;
    padding: 1.25rem 1.5rem;
    border-bottom: 2px solid var(--gold);
}

.comparison__table td {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    font-size: var(--text-body);
    color: var(--cream);
}

.comparison__table td:first-child {
    opacity: 0.7;
}

.comparison__table td:last-child {
    font-weight: 500;
    color: var(--gold-light);
}

.comparison__table tr:last-child td {
    border-bottom: none;
}

.comparison__pin {
    position: absolute;
    width: 30px;
    height: auto;
    z-index: 10;
}

.comparison__pin--top {
    top: 3rem;
    left: 50%;
    transform: translateX(-50%);
}

/* ============================================
   PRICING - PREMIUM CARDS
   ============================================ */
.pricing {
    background: var(--cream);
    padding: 6rem 0;
}

.pricing__header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing__header h2 {
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.pricing__header p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 700px;
    margin: 0 auto;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.pricing-card {
    padding: 2.5rem 2rem;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card__tier {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--burgundy);
    margin-bottom: 0.5rem;
}

.pricing-card__price {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.pricing-card__capacity {
    font-size: 1.15rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.pricing__note {
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-body);
    font-style: italic;
    color: var(--charcoal);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
}

/* ============================================
   AUDIENCE SECTION
   ============================================ */
.audience {
    position: relative;
    background: var(--burgundy-deep);
    padding: 6rem 0;
    overflow: hidden;
}

.audience__velvet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/velvet.png') no-repeat center;
    background-size: cover;
    opacity: 0.25;
}

.audience__inner {
    position: relative;
    z-index: 1;
}

.audience__header {
    text-align: center;
    margin-bottom: 3rem;
}

.audience__header h2 {
    color: var(--cream);
}

.audience__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.audience__item {
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.audience__role {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.audience__desc {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.85;
    margin: 0;
}

.audience__industries {
    text-align: center;
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.8;
}

.audience__industries strong {
    color: var(--gold);
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    background: var(--charcoal);
    padding: 5rem 0;
    text-align: center;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: var(--text-heading);
    color: var(--cream);
    margin-bottom: 1rem;
}

.cta-section p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto 2rem;
}

.cta-section .btn {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background: var(--gold);
    color: var(--charcoal);
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: all 0.3s ease;
}

.cta-section .btn:hover {
    background: var(--gold-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* ============================================
   SCENARIOS - EVIDENCE BOARD
   ============================================ */
.scenarios {
    position: relative;
    background: var(--charcoal);
    padding: 6rem 0;
}

.scenarios__header {
    text-align: center;
    margin-bottom: 3rem;
}

.scenarios__header h2 {
    color: var(--cream);
    margin-bottom: 1rem;
}

.scenarios__header p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.7;
}

.scenarios__category {
    margin-bottom: 4rem;
}

.scenarios__category:last-child {
    margin-bottom: 0;
}

.scenarios__category-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(201, 169, 97, 0.3);
}

.scenarios__category-label {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.scenarios__category-title {
    font-family: var(--font-display);
    font-size: 2.25rem;
    color: var(--cream);
    margin-bottom: 0.5rem;
}

.scenarios__category-desc {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.7;
    margin: 0;
}

.scenarios__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.scenario-card {
    position: relative;
    padding: 2rem;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(201, 169, 97, 0.15);
    transition: all 0.4s ease;
}

.scenario-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 24px;
    width: 16px;
    height: 16px;
    background: url('../images/pin.png') no-repeat center;
    background-size: contain;
    opacity: 0.8;
}

.scenario-card:hover {
    background: rgba(255,255,255,0.06);
    border-color: var(--gold);
    transform: translateY(-4px);
}

.scenario-card__title {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--cream);
    margin-bottom: 0.25rem;
}

.scenario-card__setting {
    font-size: 1.15rem;
    color: var(--gold);
    margin-bottom: 1rem;
}

.scenario-card__desc {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.75;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline-section {
    background: var(--cream);
    padding: 6rem 0;
}

.timeline-section__header {
    text-align: center;
    margin-bottom: 3rem;
}

.timeline-section__header h2 {
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.timeline-section__header p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.8;
}

.timeline {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 140px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--gold);
}

.timeline__item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 3rem;
    padding: 2rem 0;
    position: relative;
}

.timeline__item::before {
    content: '';
    position: absolute;
    left: 133px;
    top: 2.5rem;
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--cream);
    border-radius: 50%;
}

.timeline__phase {
    text-align: right;
}

.timeline__phase-name {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--burgundy);
    display: block;
}

.timeline__phase-time {
    font-size: 1.1rem;
    color: var(--charcoal);
    opacity: 0.6;
}

.timeline__content h3 {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.timeline__content p {
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.8;
    margin: 0;
}

/* ============================================
   OBSERVATION FRAMEWORK
   ============================================ */
.observation {
    position: relative;
    background: var(--burgundy-deep);
    padding: 6rem 0;
    overflow: hidden;
}

.observation__velvet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/velvet.png') no-repeat center;
    background-size: cover;
    opacity: 0.25;
}

.observation__inner {
    position: relative;
    z-index: 1;
}

.observation__header {
    text-align: center;
    margin-bottom: 2rem;
}

.observation__header h2 {
    color: var(--cream);
}

.observation__intro {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.85;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.observation__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.observation__section {
    padding: 2.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(201, 169, 97, 0.2);
}

.observation__section-title {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.observation__list {
    list-style: none;
}

.observation__list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 1rem;
    font-size: var(--text-body);
    color: var(--cream);
    opacity: 0.85;
}

.observation__list li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 600;
}

.observation__what {
    max-width: 900px;
    margin: 0 auto;
}

.observation__what h3 {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--cream);
    text-align: center;
    margin-bottom: 2rem;
}

.observation__item {
    margin-bottom: 1.25rem;
    font-size: var(--text-body);
}

.observation__item strong {
    color: var(--gold);
}

.observation__item span {
    color: var(--cream);
    opacity: 0.8;
}

.observation__tagline {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(201, 169, 97, 0.3);
    text-align: center;
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-style: italic;
    color: var(--gold);
}

/* ============================================
   PROCESS STEPS
   ============================================ */
.process {
    background: var(--off-white);
    padding: 6rem 0;
}

.process__header {
    text-align: center;
    margin-bottom: 3rem;
}

.process__header h2 {
    color: var(--burgundy);
}

.process__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.process__step {
    text-align: center;
}

.process__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--burgundy);
    color: var(--cream);
    font-family: var(--font-display);
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.process__title {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--charcoal);
    margin-bottom: 0.75rem;
}

.process__desc {
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.75;
    margin: 0;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story {
    max-width: 900px;
    margin: 0 auto;
}

.about-story h2 {
    color: var(--burgundy);
    margin-bottom: 2rem;
}

.about-story p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--charcoal);
    line-height: 1.8;
}

.founders {
    background: var(--cream);
    padding: 6rem 0;
}

.founders__header {
    text-align: center;
    margin-bottom: 3rem;
}

.founders__header h2 {
    color: var(--burgundy);
}

.founders__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.founder {
    padding: 2.5rem;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.08);
}

.founder__name {
    font-family: var(--font-display);
    font-size: 1.85rem;
    color: var(--burgundy);
    margin-bottom: 1rem;
}

.founder__bio {
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.85;
    line-height: 1.7;
}

.beliefs {
    max-width: 900px;
    margin: 0 auto;
}

.beliefs h2 {
    text-align: center;
    color: var(--burgundy);
    margin-bottom: 3rem;
}

.beliefs__list {
    list-style: none;
}

.beliefs__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1.75rem;
    font-size: var(--text-body);
    color: var(--charcoal);
}

.beliefs__list li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.beliefs__list li strong {
    color: var(--burgundy);
}

/* ============================================
   FAQ
   ============================================ */
.faq__list {
    max-width: 900px;
    margin: 0 auto;
}

.faq__item {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding: 1.75rem 0;
}

.faq__question {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--charcoal);
    margin-bottom: 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: color 0.3s ease;
}

.faq__question:hover {
    color: var(--burgundy);
}

.faq__question::after {
    content: '+';
    font-size: 2rem;
    color: var(--gold);
    font-weight: 400;
    transition: transform 0.3s ease;
}

.faq__item.active .faq__question::after {
    transform: rotate(45deg);
}

.faq__answer {
    display: none;
    padding-top: 1.25rem;
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.8;
    line-height: 1.7;
}

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

/* ============================================
   CONTACT
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact__info h3 {
    font-family: var(--font-display);
    color: var(--burgundy);
    font-size: 1.85rem;
    margin-bottom: 1.5rem;
}

.contact__info > p {
    font-family: var(--font-body);
    font-size: var(--text-body);
    color: var(--charcoal);
    opacity: 0.8;
    margin-bottom: 2rem;
}

.contact__detail {
    margin-bottom: 1.25rem;
    font-size: var(--text-body);
    color: var(--charcoal);
}

.contact__detail strong {
    color: var(--burgundy);
    display: block;
    margin-bottom: 0.25rem;
}

.contact__form {
    padding: 3rem;
    background: var(--cream);
    border: 1px solid rgba(0,0,0,0.08);
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form__group {
    margin-bottom: 1rem;
}

.form__group label {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

.form__group input,
.form__group select,
.form__group textarea {
    width: 100%;
    padding: 1.1rem;
    background: var(--off-white);
    border: 1px solid rgba(0,0,0,0.1);
    color: var(--charcoal);
    font-family: var(--font-body);
    font-size: 1.15rem;
    transition: border-color 0.3s ease;
}

.form__group input:focus,
.form__group select:focus,
.form__group textarea:focus {
    outline: none;
    border-color: var(--burgundy);
}

.form__group textarea {
    min-height: 150px;
    resize: vertical;
}

.form__group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B1C23' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form__submit {
    width: 100%;
    padding: 1.35rem;
    background: var(--burgundy);
    border: none;
    color: var(--cream);
    font-family: var(--font-body);
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form__submit:hover {
    background: var(--burgundy-light);
}

.form__success {
    display: none;
    padding: 2rem;
    background: var(--burgundy);
    text-align: center;
    color: var(--cream);
}

.form__success.show {
    display: block;
}

.form__success h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

/* ============================================
   INCLUDED LISTS
   ============================================ */
.included {
    background: var(--cream) url('../images/paper.png') no-repeat center;
    background-size: cover;
    padding: 6rem 0;
}

.included__header {
    text-align: center;
    margin-bottom: 3rem;
}

.included__header h2 {
    color: var(--burgundy);
}

.included__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.included__section h3 {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--burgundy);
    margin-bottom: 1.5rem;
}

.included__list {
    list-style: none;
}

.included__list li {
    position: relative;
    padding-left: 2rem;
    margin-bottom: 1rem;
    font-size: var(--text-body);
    color: var(--charcoal);
}

.included__list--yes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: 700;
}

.included__list--no li::before {
    content: '×';
    position: absolute;
    left: 0;
    color: var(--charcoal);
    opacity: 0.4;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--charcoal);
    padding: 4rem 0 2rem;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer__logo {
    font-family: var(--font-display);
    font-size: var(--text-body);
    color: var(--cream);
}

.footer__links {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.footer__links a {
    font-size: 0.9rem;
    color: var(--cream);
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.footer__links a:hover {
    opacity: 1;
    color: var(--gold);
}

.footer__copyright {
    width: 100%;
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.85rem;
    color: var(--cream);
    opacity: 0.5;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero__image {
        order: -1;
    }
    
    .hero__logo {
        max-width: 350px;
    }
    
    .problem__inner {
        grid-template-columns: 1fr;
    }
    
    .pillars__grid {
        grid-template-columns: 1fr;
    }
    
    .pillar:nth-child(1),
    .pillar:nth-child(3) {
        transform: none;
    }
    
    .pricing__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .scenarios__grid {
        grid-template-columns: 1fr;
    }
    
    .observation__grid {
        grid-template-columns: 1fr;
    }
    
    .process__grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background: var(--charcoal);
        padding: 2rem;
        gap: 1.5rem;
    }
    
    .nav__links.active {
        display: flex;
    }
    
    .nav__toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding: 6rem 0;
    }
    
    .hero__content {
        padding: 6rem 1.5rem;
    }
    
    .hero--page .hero__content {
        padding: 8rem 1.5rem 4rem;
    }
    
    .solution__grid {
        grid-template-columns: 1fr;
    }
    
    .pricing__grid {
        grid-template-columns: 1fr;
    }
    
    .audience__grid {
        grid-template-columns: 1fr;
    }
    
    .founders__grid {
        grid-template-columns: 1fr;
    }
    
    .contact__grid {
        grid-template-columns: 1fr;
    }
    
    .form__row {
        grid-template-columns: 1fr;
    }
    
    .included__grid {
        grid-template-columns: 1fr;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline__item {
        grid-template-columns: 1fr;
        padding-left: 50px;
    }
    
    .timeline__item::before {
        left: 13px;
    }
    
    .timeline__phase {
        text-align: left;
    }
    
    .footer__inner {
        flex-direction: column;
        text-align: center;
    }
    
    .footer__links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
