/* ============================================
   BUSINESS OF SPEAKING - Taylor Lunin
   Modern · Energetic · Approachable
   ============================================ */

:root {
    --teal: #0d8a8a;
    --teal-dark: #076e6e;
    --teal-deeper: #045454;
    --teal-light: #e8f4f4;
    --teal-glow: rgba(13, 138, 138, 0.15);
    --coral: #f0825c;
    --coral-light: #fff5f1;
    --navy: #0c1a2e;
    --navy-soft: #142640;
    --text: #2d3748;
    --text-mid: #536378;
    --text-light: #8896a6;
    --bg: #ffffff;
    --bg-warm: #faf9f7;
    --bg-cool: #f4f8f8;
    --border: #e8ecf0;
    --border-light: #f0f3f5;
    --sans: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --serif: 'Instrument Serif', Georgia, serif;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 24px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 16px 64px rgba(0,0,0,0.12);
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
}

/* --- Reset --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--sans); color: var(--text); line-height: 1.7; background: var(--bg); overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4 { line-height: 1.15; color: var(--navy); font-weight: 700; }

.serif-accent {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
}

.serif-accent-light {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
}

.section-eyebrow {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--teal);
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.08rem;
    color: var(--text-mid);
    max-width: 580px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s var(--ease);
    cursor: pointer;
    border: none;
    font-family: var(--sans);
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: var(--teal);
    color: white;
    box-shadow: 0 2px 12px rgba(13, 138, 138, 0.25), inset 0 1px 0 rgba(255,255,255,0.1);
}

.btn-primary:hover {
    background: var(--teal-dark);
    box-shadow: 0 4px 20px rgba(13, 138, 138, 0.35), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.btn-primary:active { transform: translateY(0); }

.btn-outline {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--teal);
    color: var(--teal);
    background: var(--teal-light);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--teal-dark);
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    font-weight: 700;
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 28px rgba(0,0,0,0.18);
}

.btn-lg { padding: 16px 32px; font-size: 0.98rem; }

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid transparent;
    transition: all 0.3s var(--ease);
}

.nav.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 1px 12px rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-mark {
    width: 44px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: -0.01em;
}

.logo-of {
    font-weight: 400;
    color: var(--text-light);
    font-style: italic;
    font-family: var(--serif);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-mid);
    transition: color 0.2s;
}

.nav-links a:hover { color: var(--teal); }

.nav-cta {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    background: var(--teal) !important;
    color: white !important;
    padding: 9px 18px !important;
    border-radius: 100px !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 2px 8px rgba(13,138,138,0.2);
    transition: all 0.25s var(--ease) !important;
}

.nav-cta:hover {
    background: var(--teal-dark) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(13,138,138,0.3) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: all 0.3s var(--ease);
}

/* === HERO === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0 60px;
    overflow: hidden;
    background: var(--bg);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
}

.hero-glow-1 {
    width: 600px;
    height: 600px;
    background: var(--teal-glow);
    top: -100px;
    right: -100px;
    opacity: 0.7;
}

.hero-glow-2 {
    width: 500px;
    height: 500px;
    background: rgba(240, 130, 92, 0.08);
    bottom: -150px;
    left: -100px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--teal-light);
    color: var(--teal-dark);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 28px;
    border: 1px solid rgba(13, 138, 138, 0.1);
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: clamp(2.8rem, 5.5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    color: var(--navy);
    letter-spacing: -0.03em;
}

.hero-serif {
    font-family: var(--serif);
    font-style: italic;
    font-weight: 400;
    color: var(--teal);
}

.hero-title-line2,
.hero-title-line3 {
    display: block;
}

.hero-title-line3 {
    color: var(--teal);
}

.hero-subtitle {
    font-size: 1.12rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 480px;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Hero Social Proof */
.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 14px;
}

.proof-avatars {
    display: flex;
}

.proof-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(0,0,0,0.6);
    border: 2px solid white;
    margin-right: -10px;
    box-shadow: var(--shadow-xs);
}

.proof-avatar:last-child { margin-right: 0; }

.proof-stars {
    color: var(--coral);
    font-size: 0.85rem;
    letter-spacing: 2px;
    line-height: 1;
}

.proof-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
    line-height: 1.3;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-card {
    width: 340px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl), 0 0 0 1px rgba(0,0,0,0.04);
    position: relative;
    background: white;
}

.hero-photo {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.placeholder-initials {
    font-size: 4.5rem;
    font-weight: 800;
    color: rgba(255,255,255,0.85);
    letter-spacing: 3px;
    line-height: 1;
}

.placeholder-name {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    font-weight: 600;
}

.placeholder-role {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

.hero-card-label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 20px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-mid);
    background: white;
}

.label-dot {
    width: 8px;
    height: 8px;
    background: #22c55e;
    border-radius: 50%;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.15);
}

/* Floating Cards */
.hero-floating-card {
    position: absolute;
    background: white;
    border-radius: var(--radius);
    padding: 14px 18px;
    box-shadow: var(--shadow-lg), 0 0 0 1px rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: float-card 6s ease-in-out infinite;
}

.card-stats {
    top: 40px;
    left: -40px;
}

.card-rating {
    bottom: 80px;
    right: -30px;
    animation-delay: -3s;
}

@keyframes float-card {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.floating-number {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.floating-stars {
    color: var(--coral);
    font-size: 0.9rem;
    letter-spacing: 2px;
    line-height: 1;
}

.floating-label {
    font-size: 0.72rem;
    color: var(--text-light);
    font-weight: 500;
}

/* === PROOF BAR === */
.proof-bar {
    background: var(--navy);
    padding: 36px 0;
}

.proof-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.proof-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.proof-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.star-inline {
    color: var(--coral);
    font-size: 1.1rem;
    margin-left: 2px;
}

.proof-label {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* === PROBLEMS === */
.problems {
    padding: 120px 0;
    background: var(--bg-warm);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.problem-card {
    padding: 32px 24px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
}

.problem-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--teal);
    opacity: 0.12;
    line-height: 1;
    margin-bottom: 16px;
    font-family: var(--serif);
}

.problem-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--navy);
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--text-mid);
    line-height: 1.6;
}

.problem-line {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.problem-card:hover .problem-line { opacity: 1; }

/* === ABOUT === */
.about {
    padding: 120px 0;
    background: var(--bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.about-visual { position: relative; }

.about-image-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-photo {
    width: 100%;
    aspect-ratio: 4/5;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-accent-card {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: white;
    padding: 18px 22px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 14px;
    max-width: 280px;
    border: 1px solid var(--border-light);
}

.accent-icon {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: var(--coral-light);
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.accent-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
    display: block;
}

.accent-text {
    font-size: 0.78rem;
    color: var(--text-mid);
    line-height: 1.4;
}

.about-content p {
    margin-bottom: 16px;
    font-size: 1.02rem;
    color: var(--text);
}

.about-closing {
    color: var(--text-mid) !important;
    font-style: italic;
}

.about-list {
    margin: 24px 0 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.98rem;
    color: var(--navy);
}

.check-icon {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* === VIDEO SECTION === */
.video-section {
    padding: 6rem 0;
    background: var(--bg);
}

.video-wrapper {
    max-width: 860px;
    margin: 0 auto;
}

.video-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 16px;
    box-shadow:
        0 4px 24px rgba(13, 138, 138, 0.12),
        0 1px 4px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(13, 138, 138, 0.1);
}

.video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* === FRAMEWORK === */
.framework {
    padding: 120px 0;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.framework::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(13,138,138,0.15), transparent 70%);
    top: -200px;
    right: -200px;
    pointer-events: none;
}

.framework .section-eyebrow { color: var(--coral); }
.framework .section-title { color: white; }
.framework .section-subtitle { color: rgba(255,255,255,0.5); }

.framework-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.framework-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    flex: 1;
    max-width: 240px;
    transition: all 0.3s var(--ease);
}

.framework-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--teal);
    transform: translateY(-4px);
}

.framework-letter-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(13,138,138,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.framework-letter {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--teal);
    font-family: var(--serif);
}

.framework-card h3 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.framework-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.88rem;
    line-height: 1.6;
}

.framework-arrow {
    color: rgba(255,255,255,0.15);
    padding: 0 8px;
    flex-shrink: 0;
}

/* === SERVICES === */
.services {
    padding: 120px 0;
    background: var(--bg-warm);
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start;
}

.services-intro .section-title { text-align: left; }

.services-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 12px;
}

.services-tagline {
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 28px;
}

.services-guarantee {
    margin-top: 28px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 18px 20px;
    background: var(--coral-light);
    border-radius: var(--radius);
    border: 1px solid rgba(240,130,92,0.12);
}

.guarantee-badge {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: white;
    color: var(--coral);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: var(--shadow-xs);
}

.services-guarantee p {
    font-size: 0.84rem;
    color: var(--text-mid);
    line-height: 1.5;
}

.services-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-feature {
    display: flex;
    gap: 18px;
    padding: 22px;
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
}

.service-feature:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--teal);
    transform: translateX(4px);
}

.feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--teal-light);
    color: var(--teal);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-feature h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    color: var(--navy);
}

.service-feature p {
    font-size: 0.86rem;
    color: var(--text-mid);
    line-height: 1.5;
}

/* === TESTIMONIALS === */
.testimonials {
    padding: 120px 0;
    background: var(--bg);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.testimonial-card {
    padding: 32px;
    border-radius: var(--radius-lg);
    background: white;
    border: 1px solid var(--border);
    transition: all 0.3s var(--ease);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.testimonial-card.card-featured {
    background: var(--navy);
    border-color: transparent;
}

.quote-mark {
    font-family: var(--serif);
    font-size: 3.5rem;
    color: var(--teal);
    opacity: 0.2;
    line-height: 1;
    height: 32px;
    margin-bottom: 8px;
}

.card-featured .quote-mark { opacity: 0.3; }

.testimonial-card blockquote p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
}

.card-featured blockquote p { color: rgba(255,255,255,0.8); }

.quote-highlight {
    font-weight: 600;
    color: var(--navy) !important;
}

.card-featured .quote-highlight { color: white !important; }

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding-top: 18px;
    border-top: 1px solid var(--border-light);
}

.card-featured .testimonial-author { border-top-color: rgba(255,255,255,0.08); }

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.75rem;
    color: white;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: 0.85rem;
    color: var(--navy);
}

.card-featured .testimonial-author strong { color: white; }

.testimonial-author span {
    font-size: 0.75rem;
    color: var(--text-light);
    display: block;
    margin-top: 1px;
}

.card-featured .testimonial-author span { color: rgba(255,255,255,0.4); }

/* === HOW IT WORKS === */
.how-it-works {
    padding: 120px 0;
    background: var(--bg-cool);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.step-card {
    padding: 0 20px;
}

.step-top {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.step-number {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--teal);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 800;
    flex-shrink: 0;
}

.step-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--teal), var(--border));
    border-radius: 2px;
}

.step-line.last {
    background: linear-gradient(90deg, var(--teal), transparent);
}

.step-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--navy);
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-mid);
    line-height: 1.6;
}

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

/* === FINAL CTA === */
.final-cta {
    padding: 120px 0;
    background: linear-gradient(145deg, var(--teal), var(--teal-deeper));
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
}

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

.cta-content h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.serif-accent-light {
    color: rgba(255,255,255,0.95);
}

.cta-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.cta-note {
    margin-top: 18px;
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    font-weight: 500;
}

/* === FOOTER === */
.footer {
    background: var(--navy);
    padding: 56px 0 0;
    color: rgba(255,255,255,0.5);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 40px;
}

.footer-logo {
    color: white !important;
    display: block !important;
    margin-bottom: 14px;
    font-size: 1.1rem !important;
}

.footer-brand p {
    font-size: 0.88rem;
    line-height: 1.6;
    max-width: 300px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.5);
    transition: all 0.2s;
}

.footer-social a:hover {
    background: var(--teal);
    color: white;
}

.footer-links h4 {
    color: rgba(255,255,255,0.3);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 18px;
}

.footer-links a {
    display: block;
    font-size: 0.88rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 10px;
    transition: color 0.2s;
}

.footer-links a:hover { color: var(--teal); }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 20px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.78rem;
    color: rgba(255,255,255,0.25);
}

/* === ANIMATIONS === */
[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

.problems-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.problems-grid [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.problems-grid [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.problems-grid [data-animate]:nth-child(4) { transition-delay: 0.24s; }

.framework-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.framework-grid [data-animate]:nth-child(3) { transition-delay: 0.1s; }
.framework-grid [data-animate]:nth-child(5) { transition-delay: 0.2s; }
.framework-grid [data-animate]:nth-child(7) { transition-delay: 0.3s; }

.testimonials-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.testimonials-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.testimonials-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }

.services-details [data-animate]:nth-child(1) { transition-delay: 0s; }
.services-details [data-animate]:nth-child(2) { transition-delay: 0.08s; }
.services-details [data-animate]:nth-child(3) { transition-delay: 0.16s; }
.services-details [data-animate]:nth-child(4) { transition-delay: 0.24s; }

.steps-grid [data-animate]:nth-child(1) { transition-delay: 0s; }
.steps-grid [data-animate]:nth-child(2) { transition-delay: 0.1s; }
.steps-grid [data-animate]:nth-child(3) { transition-delay: 0.2s; }

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    .hero-content { order: 1; }
    .hero-visual { order: 0; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-subtitle { margin-left: auto; margin-right: auto; }
    .hero-ctas { justify-content: center; }
    .hero-social-proof { justify-content: center; }
    .hero-card { width: 280px; }
    .card-stats { left: 0; top: 20px; }
    .card-rating { right: 0; bottom: 60px; }
    .problems-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { max-width: 380px; margin: 0 auto; }
    .services-layout { grid-template-columns: 1fr; gap: 48px; }
    .testimonials-grid { grid-template-columns: 1fr; max-width: 560px; margin: 0 auto; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px 24px;
        gap: 14px;
        box-shadow: var(--shadow-lg);
        border-top: 1px solid var(--border);
    }
    .nav-links.active { display: flex; }
    .nav-toggle { display: flex; }
    .nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .nav-toggle.active span:nth-child(2) { opacity: 0; }
    .nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
    .hero { padding: 90px 0 50px; min-height: auto; }
    .hero-title { font-size: 2.4rem; }
    .proof-items { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .problems-grid { grid-template-columns: 1fr; }
    .framework-grid { flex-direction: column; gap: 12px; }
    .framework-arrow { transform: rotate(90deg); padding: 4px 0; }
    .framework-card { max-width: 100%; }
    .steps-grid { grid-template-columns: 1fr; gap: 28px; }
    .step-line { display: none; }
    .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-card { width: 240px; }
    .hero-floating-card { display: none; }
    .btn-lg { padding: 14px 26px; font-size: 0.92rem; }
    .placeholder-initials { font-size: 3.5rem; }
    .proof-items { grid-template-columns: 1fr 1fr; }
}
