/* ============================================
   MKPT.NO — Shared Stylesheet
   ============================================
   Table of contents:
   1. Reset & Base
   2. Utility Classes
   3. Animations
   4. Navbar
   5. Hero
   6. Problem Section
   7. How It Works (Phases)
   8. Diet Section
   9. App Showcase
   10. Pricing
   11. Download CTA
   12. Footer (full 4-column grid)
   13. Cookie Banner
   14. Page Header (sub-pages)
   15. Content Section & Prose
   16. Feature Grid & Detail
   17. Contact Form
   18. Blog Grid & Cards
   19. Blog Post (single)
   20. Breadcrumb
   21. Team Card
   22. Timeline
   23. Legal Content
   24. CTA Banner (reusable)
   25. Back to Top
   26. Responsive Breakpoints
   27. Print Styles
   ============================================ */

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #060609;
    color: #eceae6;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

/* ============================================
   2. UTILITY CLASSES
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #818cf8;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #9b99a3;
    max-width: 640px;
    line-height: 1.7;
    margin-left: auto;
    margin-right: auto;
}

.gradient-text {
    background: linear-gradient(135deg, #818cf8, #6366f1, #4338ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   3. ANIMATIONS
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.05); }
    66% { transform: translate(-20px, 15px) scale(0.95); }
}

@keyframes pulse-glow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* ============================================
   4. NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background: rgba(6, 6, 9, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #818cf8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: flex;
    align-items: center;
    gap: 8px;
}

.beta-badge {
    font-size: 0.6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: rgba(251, 146, 60, 0.15);
    color: #fb923c;
    padding: 2px 8px;
    border-radius: 6px;
    border: 1px solid rgba(251, 146, 60, 0.25);
    -webkit-text-fill-color: #fb923c;
}

.beta-banner {
    background: linear-gradient(90deg, rgba(251, 146, 60, 0.08), rgba(251, 146, 60, 0.04));
    border-bottom: 1px solid rgba(251, 146, 60, 0.12);
    text-align: center;
    padding: 8px 24px;
    font-size: 0.8125rem;
    color: #fdba74;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.beta-banner a {
    color: #fb923c;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.beta-banner + .navbar {
    top: 33px;
}

body:has(.beta-banner) .hero,
body:has(.beta-banner) .page-header {
    padding-top: 153px;
}

body:has(.beta-banner) .breadcrumb {
    padding-top: 133px;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}

.navbar-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #9b99a3;
    transition: color 0.2s ease;
}

.navbar-links a:hover,
.navbar-links a.active {
    color: #eceae6;
}

.navbar-links a.active {
    color: #818cf8;
}

.navbar-cta {
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff !important;
    padding: 10px 22px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.navbar-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
}

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

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #eceae6;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   5. HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.hero-blob-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #4338ca 0%, transparent 70%);
    top: -10%;
    right: -5%;
    animation-delay: 0s;
}

.hero-blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366f1 0%, transparent 70%);
    bottom: -15%;
    left: -10%;
    animation-delay: -7s;
}

.hero-blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, #818cf8 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: -14s;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    padding: 8px 20px;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #818cf8;
    margin-bottom: 32px;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: #34d399;
    border-radius: 50%;
    animation: pulse-glow 2s ease-in-out infinite;
}

.hero h1 {
    font-size: clamp(2.75rem, 7vw, 4.5rem);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 1.25rem;
    color: #9b99a3;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 48px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1.0625rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
}

.btn-primary svg {
    width: 20px;
    height: 20px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #9b99a3;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.btn-secondary:hover {
    color: #eceae6;
}

.hero-note {
    margin-top: 24px;
    font-size: 0.8125rem;
    color: #6b6977;
}

/* ============================================
   6. PROBLEM SECTION
   ============================================ */
.problem {
    padding: 120px 0;
    position: relative;
}

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

.problem-header .section-subtitle {
    margin: 0 auto;
}

.quote-block {
    max-width: 800px;
    margin: 0 auto 64px;
    padding: 32px 40px;
    background: rgba(20, 20, 25, 0.6);
    border-left: 3px solid #6366f1;
    border-radius: 0 16px 16px 0;
    font-size: 1.125rem;
    font-style: italic;
    color: #c4c2be;
    line-height: 1.8;
}

.quote-block cite {
    display: block;
    margin-top: 16px;
    font-style: normal;
    font-size: 0.875rem;
    font-weight: 600;
    color: #818cf8;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 16px;
    overflow: hidden;
}

.comparison-table thead th {
    background: rgba(20, 20, 25, 0.8);
    padding: 20px 24px;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #9b99a3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-table tbody td {
    padding: 20px 24px;
    font-size: 0.9375rem;
    color: #c4c2be;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(28, 28, 36, 0.3);
}

.comparison-table tbody tr:last-child td {
    background: rgba(99, 102, 241, 0.06);
    color: #eceae6;
    font-weight: 500;
}

.comparison-table tbody tr:last-child td:first-child {
    color: #818cf8;
    font-weight: 700;
}

.table-icon-bad {
    color: #f87171;
}

.table-icon-good {
    color: #34d399;
}

.table-icon-mid {
    color: #fb923c;
}

.table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   7. HOW IT WORKS (PHASES)
   ============================================ */
.how-it-works {
    padding: 120px 0;
    position: relative;
}

.how-header {
    text-align: center;
    margin-bottom: 80px;
}

.how-header .section-subtitle {
    margin: 0 auto;
}

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

.phase-card {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.phase-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-4px);
}

.phase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
}

.phase-card:nth-child(1)::before { background: linear-gradient(90deg, #f87171, #fb923c); }
.phase-card:nth-child(2)::before { background: linear-gradient(90deg, #fb923c, #fbbf24); }
.phase-card:nth-child(3)::before { background: linear-gradient(90deg, #34d399, #6366f1); }

.phase-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.phase-card:nth-child(1) .phase-number {
    background: rgba(248, 113, 113, 0.1);
    color: #f87171;
}

.phase-card:nth-child(2) .phase-number {
    background: rgba(251, 146, 60, 0.1);
    color: #fb923c;
}

.phase-card:nth-child(3) .phase-number {
    background: rgba(52, 211, 153, 0.1);
    color: #34d399;
}

.phase-days {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #6b6977;
    margin-bottom: 12px;
}

.phase-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.phase-card p {
    color: #9b99a3;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 24px;
}

.phase-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.phase-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #c4c2be;
}

.phase-list li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    margin-top: 7px;
}

.phase-card:nth-child(1) .phase-list li::before { background: #f87171; }
.phase-card:nth-child(2) .phase-list li::before { background: #fb923c; }
.phase-card:nth-child(3) .phase-list li::before { background: #34d399; }

/* ============================================
   8. DIET SECTION
   ============================================ */
.diet {
    padding: 120px 0;
    position: relative;
}

.diet-header {
    text-align: center;
    margin-bottom: 24px;
}

.diet-header .section-subtitle {
    margin: 0 auto;
}

.diet-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 64px;
    font-size: 1.0625rem;
    color: #9b99a3;
    line-height: 1.8;
}

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

.diet-card {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.diet-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.diet-icon {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 2rem;
}

.diet-card:nth-child(1) .diet-icon {
    background: rgba(248, 113, 113, 0.1);
}

.diet-card:nth-child(2) .diet-icon {
    background: rgba(251, 191, 36, 0.1);
}

.diet-card:nth-child(3) .diet-icon {
    background: rgba(52, 211, 153, 0.1);
}

.diet-card h3 {
    font-size: 1.375rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.diet-card .diet-type {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

.diet-card:nth-child(1) .diet-type { color: #f87171; }
.diet-card:nth-child(2) .diet-type { color: #fbbf24; }
.diet-card:nth-child(3) .diet-type { color: #34d399; }

.diet-card p {
    color: #9b99a3;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ============================================
   9. APP SHOWCASE
   ============================================ */
.app-showcase {
    padding: 120px 0;
    position: relative;
}

.app-header {
    text-align: center;
    margin-bottom: 80px;
}

.app-header .section-subtitle {
    margin: 0 auto;
}

.app-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 64px;
}

.app-feature {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.app-feature:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.app-feature h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.app-feature p {
    color: #9b99a3;
    font-size: 0.875rem;
    line-height: 1.65;
}

.app-screenshot {
    max-width: 960px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(20, 20, 25, 0.8);
}

.app-screenshot-placeholder {
    aspect-ratio: 16 / 9;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.08), rgba(99, 102, 241, 0.04));
}

.app-screenshot-placeholder .placeholder-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
}

.app-screenshot-placeholder span {
    font-size: 0.875rem;
    color: #6b6977;
    font-weight: 500;
}

/* ============================================
   10. PRICING
   ============================================ */
.pricing {
    padding: 120px 0;
}

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

.pricing-header .section-subtitle {
    margin: 0 auto;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 840px;
    margin: 0 auto;
}

.pricing-card {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 48px 40px;
    position: relative;
    transition: border-color 0.3s ease;
}

.pricing-card.featured {
    border-color: rgba(99, 102, 241, 0.4);
    background: rgba(28, 28, 36, 0.7);
}

.pricing-card.featured::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.3), rgba(99, 102, 241, 0.1), rgba(129, 140, 248, 0.3));
    z-index: -1;
    filter: blur(1px);
}

.pricing-badge {
    display: inline-block;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.pricing-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card .pricing-desc {
    font-size: 0.9375rem;
    color: #9b99a3;
    margin-bottom: 24px;
    line-height: 1.6;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #9b99a3;
}

.pricing-note {
    font-size: 0.8125rem;
    color: #6b6977;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    color: #c4c2be;
}

.pricing-features li svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.pricing-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 24px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.pricing-btn-primary {
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
}

.pricing-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.3);
}

.pricing-btn-outline {
    background: transparent;
    color: #eceae6;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* ============================================
   11. DOWNLOAD CTA
   ============================================ */
.download-cta {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.cta-card {
    position: relative;
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 32px;
    padding: 80px 48px;
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-card .section-title {
    position: relative;
}

.cta-card .section-subtitle {
    position: relative;
    margin: 0 auto 40px;
    text-align: center;
}

.cta-buttons {
    position: relative;
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.cta-note {
    position: relative;
    font-size: 0.875rem;
    color: #6b6977;
}

/* ============================================
   12. FOOTER (full 4-column grid)
   ============================================ */
.footer {
    padding: 80px 0 48px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #eceae6;
    margin-bottom: 20px;
    letter-spacing: 0.02em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col ul li a {
    font-size: 0.875rem;
    color: #9b99a3;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #818cf8;
}

.footer-col p {
    font-size: 0.875rem;
    color: #9b99a3;
    line-height: 1.7;
}

.footer-logo {
    display: inline-block;
    font-size: 1.5rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    background: linear-gradient(135deg, #818cf8, #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.footer-location {
    margin-top: 12px;
    font-size: 0.8125rem;
    color: #6b6977;
}

.footer-email {
    margin-top: 16px;
    font-size: 0.875rem;
    color: #818cf8;
}

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

.footer-bottom p {
    font-size: 0.8125rem;
    color: #6b6977;
}

/* Legacy footer (for index.html backwards compat) */
.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-info {
    font-size: 0.8125rem;
    color: #6b6977;
    line-height: 1.6;
}

.footer-info a {
    color: #9b99a3;
    transition: color 0.2s ease;
}

.footer-info a:hover {
    color: #818cf8;
}

.footer-right {
    font-size: 0.8125rem;
    color: #6b6977;
}

/* ============================================
   13. COOKIE BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 24px;
    background: rgba(20, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-size: 0.875rem;
    color: #9b99a3;
    line-height: 1.6;
}

.cookie-text a {
    color: #818cf8;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-1px);
}

.cookie-accept {
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
}

.cookie-decline {
    background: rgba(255, 255, 255, 0.06);
    color: #9b99a3;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ============================================
   14. PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
    position: relative;
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 0 60px;
    overflow: hidden;
}

.page-header .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 1.125rem;
    color: #9b99a3;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================
   15. CONTENT SECTION & PROSE
   ============================================ */
.content-section {
    padding: 80px 0;
    position: relative;
}

.prose {
    max-width: 760px;
    margin: 0 auto;
    color: #c4c2be;
    font-size: 1.0625rem;
    line-height: 1.8;
}

.prose h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: #eceae6;
    margin-top: 48px;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.prose h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: #eceae6;
    margin-top: 36px;
    margin-bottom: 12px;
}

.prose h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #eceae6;
    margin-top: 28px;
    margin-bottom: 10px;
}

.prose p {
    margin-bottom: 20px;
}

.prose ul,
.prose ol {
    margin-bottom: 20px;
    padding-left: 24px;
}

.prose ul {
    list-style: disc;
}

.prose ol {
    list-style: decimal;
}

.prose li {
    margin-bottom: 8px;
    padding-left: 4px;
}

.prose li::marker {
    color: #818cf8;
}

.prose blockquote {
    margin: 32px 0;
    padding: 24px 32px;
    background: rgba(20, 20, 25, 0.6);
    border-left: 3px solid #6366f1;
    border-radius: 0 12px 12px 0;
    font-style: italic;
    color: #c4c2be;
}

.prose blockquote p:last-child {
    margin-bottom: 0;
}

.prose code {
    font-family: 'JetBrains Mono', 'Fira Code', monospace;
    background: rgba(99, 102, 241, 0.1);
    color: #818cf8;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 0.9em;
}

.prose pre {
    margin: 24px 0;
    padding: 24px;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    overflow-x: auto;
}

.prose pre code {
    background: none;
    padding: 0;
    border-radius: 0;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #c4c2be;
}

.prose table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.prose table th {
    background: rgba(20, 20, 25, 0.8);
    padding: 14px 20px;
    text-align: left;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9b99a3;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.prose table td {
    padding: 14px 20px;
    font-size: 0.9375rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(28, 28, 36, 0.3);
}

.prose a {
    color: #818cf8;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
}

.prose a:hover {
    color: #c7d2fe;
}

.prose img {
    border-radius: 16px;
    margin: 32px 0;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.prose hr {
    margin: 48px 0;
    border: none;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

/* ============================================
   16. FEATURE GRID & DETAIL
   ============================================ */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-detail {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.feature-detail:hover {
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-4px);
}

.feature-detail .feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 1.5rem;
}

.feature-detail h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.feature-detail p {
    color: #9b99a3;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-detail ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-detail ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.875rem;
    color: #c4c2be;
}

.feature-detail ul li::before {
    content: '';
    flex-shrink: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #818cf8;
    margin-top: 7px;
}

/* ============================================
   17. CONTACT FORM
   ============================================ */
.contact-form {
    max-width: 640px;
    margin: 0 auto;
}

.contact-form .form-group {
    margin-bottom: 24px;
}

.contact-form label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #eceae6;
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 18px;
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    color: #eceae6;
    font-family: inherit;
    font-size: 0.9375rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #5c5a66;
}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239b99a3' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 48px;
}

.contact-form select option {
    background: #1c1c24;
    color: #eceae6;
}

.contact-form .form-submit {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    color: #fff;
    padding: 16px 36px;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    justify-content: center;
}

.contact-form .form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.35);
}

/* ============================================
   18. BLOG GRID & CARDS
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.blog-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-4px);
}

.blog-card-image {
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, rgba(67, 56, 202, 0.08), rgba(99, 102, 241, 0.04));
    overflow: hidden;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card-body {
    padding: 28px;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.blog-card-date {
    font-size: 0.8125rem;
    color: #6b6977;
}

.blog-card-category {
    display: inline-block;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #818cf8;
    background: rgba(99, 102, 241, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
}

.blog-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.blog-card h3 a {
    color: #eceae6;
    transition: color 0.2s ease;
}

.blog-card h3 a:hover {
    color: #818cf8;
}

.blog-card-excerpt {
    font-size: 0.9375rem;
    color: #9b99a3;
    line-height: 1.65;
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-link {
    font-size: 0.875rem;
    font-weight: 600;
    color: #818cf8;
    transition: color 0.2s ease;
}

.blog-card-link:hover {
    color: #c7d2fe;
}

/* ============================================
   19. BLOG POST (single)
   ============================================ */
.blog-post {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.blog-post-header {
    margin-bottom: 40px;
}

.blog-post-header h1 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.blog-post-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    color: #9b99a3;
    font-size: 0.875rem;
}

.blog-post-meta .divider {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #5c5a66;
}

.blog-post-image {
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-post-image img {
    width: 100%;
    display: block;
}

/* ============================================
   20. BREADCRUMB
   ============================================ */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    font-size: 0.8125rem;
    color: #6b6977;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
}

.breadcrumb li + li::before {
    content: '/';
    color: #5c5a66;
}

.breadcrumb a {
    color: #9b99a3;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #818cf8;
}

.breadcrumb .current {
    color: #eceae6;
}

/* ============================================
   21. TEAM CARD
   ============================================ */
.team-card {
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: border-color 0.3s ease, transform 0.3s ease;
}

.team-card:hover {
    border-color: rgba(99, 102, 241, 0.2);
    transform: translateY(-4px);
}

.team-card-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 24px;
    background: rgba(99, 102, 241, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 3px solid rgba(99, 102, 241, 0.2);
}

.team-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-photo .initials {
    font-size: 2rem;
    font-weight: 800;
    color: #818cf8;
}

.team-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card .team-role {
    font-size: 0.875rem;
    color: #818cf8;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-card p {
    font-size: 0.9375rem;
    color: #9b99a3;
    line-height: 1.65;
}

/* ============================================
   22. TIMELINE
   ============================================ */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #4338ca, #6366f1, #818cf8, #34d399);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding: 0 0 48px 32px;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #6366f1;
    border: 3px solid #060609;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.3);
}

.timeline-item h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #eceae6;
}

.timeline-item .timeline-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #818cf8;
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.9375rem;
    color: #9b99a3;
    line-height: 1.7;
}

/* ============================================
   23. LEGAL CONTENT
   ============================================ */
.legal-content {
    max-width: 760px;
    margin: 0 auto;
    padding: 40px 0 80px;
    color: #c4c2be;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #eceae6;
    margin-top: 48px;
    margin-bottom: 16px;
}

.legal-content h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #eceae6;
    margin-top: 32px;
    margin-bottom: 12px;
}

.legal-content p {
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 16px;
    padding-left: 24px;
}

.legal-content li {
    margin-bottom: 6px;
}

.legal-content li::marker {
    color: #818cf8;
}

.legal-content a {
    color: #818cf8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.legal-content a:hover {
    color: #c7d2fe;
}

.legal-content .last-updated {
    font-size: 0.8125rem;
    color: #6b6977;
    margin-bottom: 32px;
}

/* ============================================
   24. CTA BANNER (reusable)
   ============================================ */
.cta-banner {
    position: relative;
    background: rgba(28, 28, 36, 0.5);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    overflow: hidden;
    margin: 80px 0;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -150px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner .section-title {
    position: relative;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.cta-banner .section-subtitle {
    position: relative;
    margin: 0 auto 32px;
    text-align: center;
}

.cta-banner .btn-primary {
    position: relative;
}

/* ============================================
   25. BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 900;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: rgba(28, 28, 36, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #9b99a3;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease, color 0.2s ease;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: rgba(99, 102, 241, 0.2);
    color: #eceae6;
    border-color: rgba(99, 102, 241, 0.3);
}

.back-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================
   26. RESPONSIVE BREAKPOINTS
   ============================================ */
@media (max-width: 1024px) {
    .phases,
    .diet-grid,
    .app-features,
    .feature-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin-left: auto;
        margin-right: auto;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px 32px;
    }
}

@media (max-width: 768px) {
    .navbar-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(6, 6, 9, 0.95);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        padding: 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .navbar-links.open {
        display: flex;
    }

    .mobile-toggle {
        display: flex;
    }

    .hero {
        padding: 100px 0 60px;
        min-height: auto;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-sub {
        font-size: 1.0625rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .problem, .how-it-works, .diet,
    .app-showcase, .pricing, .download-cta {
        padding: 80px 0;
    }

    .content-section {
        padding: 60px 0;
    }

    .cta-card {
        padding: 48px 24px;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 14px 16px;
        font-size: 0.8125rem;
    }

    .pricing-card {
        padding: 36px 28px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-grid .footer-col:first-child {
        text-align: center;
    }

    .footer-grid .footer-col ul {
        align-items: center;
    }

    .footer-inner {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .footer-left {
        align-items: center;
    }

    .cookie-inner {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .page-header {
        min-height: 30vh;
        padding: 100px 0 40px;
    }

    .cta-banner {
        padding: 40px 24px;
        margin: 60px 0;
    }

    .timeline {
        padding-left: 32px;
    }

    .timeline-item {
        padding-left: 24px;
    }

    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
}

@media (max-width: 480px) {
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 16px 24px;
    }

    .hero-badge {
        font-size: 0.75rem;
    }

    .contact-form .form-submit {
        padding: 14px 24px;
    }
}

/* ============================================
   27. PRINT STYLES
   ============================================ */
@media print {
    * {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .navbar,
    .cookie-banner,
    .back-to-top,
    .mobile-toggle,
    .hero-bg,
    .cta-buttons,
    .footer {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 20px 0;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a {
        text-decoration: underline;
    }

    a[href^="http"]::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        color: #555;
    }

    .prose img,
    .blog-post-image img {
        max-width: 100%;
        page-break-inside: avoid;
    }

    h2, h3, h4 {
        page-break-after: avoid;
    }

    .fade-in {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================
   28. CARD STYLES (funksjoner.html etc.)
   ============================================ */
.card {
    background: rgba(28,28,36,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 32px 28px;
    transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
    border-color: rgba(99,102,241,0.2);
    transform: translateY(-2px);
}

.card-title {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: #eceae6;
}

.card-text {
    color: #9b99a3;
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.card-list {
    list-style: none;
    padding: 0;
}

.card-list li {
    color: #9b99a3;
    font-size: 0.875rem;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.card-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #34d399;
    font-weight: 700;
}

/* ============================================
   29. BLOG CATEGORY BADGES
   ============================================ */
.blog-category-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 12px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.cat-filosofi {
    background: rgba(139,92,246,0.15);
    color: #a78bfa;
}

.cat-strategi {
    background: rgba(96,165,250,0.15);
    color: #93c5fd;
}

.cat-verktoy {
    background: rgba(52,211,153,0.15);
    color: #6ee7b7;
}

.cat-klientreisen {
    background: rgba(251,146,60,0.15);
    color: #fdba74;
}

.cat-innhold {
    background: rgba(244,114,182,0.15);
    color: #f9a8d4;
}

/* ============================================
   30. BLOG POST CTA
   ============================================ */
.blog-post-cta {
    margin-top: 64px;
    padding: 48px;
    background: rgba(28,28,36,0.6);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    text-align: center;
}

.blog-post-cta h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.blog-post-cta p {
    color: #9b99a3;
    margin-bottom: 24px;
    font-size: 1rem;
}

.blog-post-cta .btn-primary {
    display: inline-flex;
}

/* ============================================
   31. META DOT
   ============================================ */
.meta-dot {
    margin: 0 8px;
    color: #5c5a66;
}

/* ============================================
   32. SECTION HEADER
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

/* ============================================
   33. AMBIENT BLOBS (page headers)
   ============================================ */
.ambient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
    pointer-events: none;
}

.blob-1 {
    width: 400px;
    height: 400px;
    background: #4338ca;
    top: -100px;
    left: -100px;
}

.blob-2 {
    width: 300px;
    height: 300px;
    background: #818cf8;
    bottom: -50px;
    right: -50px;
}

/* ============================================
   34. PAGE HEADER CONTENT WRAPPER
   ============================================ */
.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}
.page-header-content .section-subtitle {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   35. FOOTER SUB-CLASSES (sub-pages)
   ============================================ */
.footer-desc {
    color: #9b99a3;
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links li a {
    color: #9b99a3;
    font-size: 0.875rem;
    transition: color 0.2s;
}

.footer-links li a:hover {
    color: #eceae6;
}

/* ============================================
   36. BLOG FILTERS / CATEGORY PILLS (blogg.html)
   ============================================ */
.blog-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
    margin-bottom: 48px;
}

.filter-pill {
    padding: 8px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255,255,255,0.1);
    background: transparent;
    color: #9b99a3;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
}

.filter-pill:hover {
    border-color: rgba(99,102,241,0.3);
    color: #eceae6;
}

.filter-pill.active {
    background: rgba(99,102,241,0.15);
    border-color: rgba(99,102,241,0.4);
    color: #818cf8;
}

/* ============================================
   37. BREADCRUMB — alternative a/span pattern
   ============================================ */
.breadcrumb span {
    margin: 0 6px;
}

.breadcrumb:not(ul) {
    padding-top: 100px;
    margin-bottom: 32px;
}

/* ============================================
   28. SLIK FUNGERER DET (How It Works page)
   ============================================ */

/* Step sections */
.step-section { padding: 80px 0; border-bottom: 1px solid rgba(255,255,255,0.04); }
.step-section:last-of-type { border-bottom: none; }
.step-number { font-size: 4rem; font-weight: 900; color: rgba(99,102,241,0.15); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; }
.step-content { max-width: 800px; }
.step-body { color: #9b99a3; font-size: 1rem; line-height: 1.7; }
.step-body p { margin-bottom: 16px; }
.subsection-title { font-size: 1.25rem; font-weight: 700; margin-top: 32px; margin-bottom: 16px; color: #eceae6; }

/* Highlight boxes */
.highlight-box { background: rgba(99,102,241,0.08); border: 1px solid rgba(99,102,241,0.15); border-radius: 14px; padding: 24px 28px; margin: 24px 0; }
.highlight-text { color: #c7d2fe; font-size: 0.9375rem; line-height: 1.7; font-style: italic; }

/* Track badges */
.track-badge { display: inline-block; background: rgba(99,102,241,0.12); color: #818cf8; font-size: 0.75rem; font-weight: 600; padding: 4px 12px; border-radius: 100px; margin-right: 8px; margin-bottom: 8px; text-transform: uppercase; letter-spacing: 0.05em; }

/* Non-negotiables grid */
.nonneg-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 20px; margin: 32px 0; }
.nonneg-card { background: rgba(28,28,36,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 24px; }
.nonneg-card:hover { border-color: rgba(99,102,241,0.2); }
.nonneg-number { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; background: rgba(99,102,241,0.15); color: #818cf8; border-radius: 10px; font-size: 0.875rem; font-weight: 700; margin-bottom: 12px; }

/* Phase sections */
.phase-section { padding: 48px 0; }
.phase-badge { display: inline-block; padding: 6px 16px; border-radius: 100px; font-size: 0.8125rem; font-weight: 600; margin-bottom: 16px; }
.phase-header { margin-bottom: 24px; }
.phase-kpi { margin-top: 24px; padding: 20px 24px; background: rgba(52,211,153,0.06); border: 1px solid rgba(52,211,153,0.15); border-radius: 12px; }
.phase-kpi h4 { color: #34d399; font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }

/* Timeline overview */
.timeline-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 16px;
    margin: 48px 0;
    padding: 32px;
    background: rgba(28,28,36,0.4);
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.04);
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
}
.timeline-item .timeline-marker {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #4338ca, #6366f1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 0.8125rem;
    flex-shrink: 0;
}
.timeline-item .timeline-content h4 {
    font-size: 0.875rem;
    font-weight: 700;
    color: #eceae6;
    margin-bottom: 2px;
}
.timeline-item .timeline-content p {
    font-size: 0.8125rem;
    color: #9b99a3;
    line-height: 1.4;
}

/* After 90 days */
.after-90 { padding: 64px 0; }
.after-90-content { max-width: 700px; margin: 0 auto; text-align: center; }
.after-90-text { color: #9b99a3; font-size: 1.0625rem; line-height: 1.7; margin-bottom: 24px; }
.big-quote { font-size: clamp(1.25rem, 3vw, 1.75rem); font-weight: 700; color: #eceae6; line-height: 1.4; font-style: italic; padding: 32px; background: rgba(99,102,241,0.06); border-left: 4px solid #6366f1; border-radius: 0 14px 14px 0; margin: 32px 0; }

/* Slik fungerer det — responsive */
@media (max-width: 768px) {
    .timeline-overview { grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 24px; }
    .nonneg-grid { grid-template-columns: 1fr; }
    .step-number { font-size: 2.5rem; }
}

/* ============================================
   29. OM OSS (About page)
   ============================================ */

/* Profile section */
.profile-section { display: grid; grid-template-columns: 300px 1fr; gap: 48px; align-items: start; margin: 64px 0; }
.profile-image { width: 100%; aspect-ratio: 1; border-radius: 20px; overflow: hidden; }
.profile-placeholder { width: 100%; height: 100%; background: rgba(28,28,36,0.8); border: 1px solid rgba(255,255,255,0.06); border-radius: 20px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; }
.profile-placeholder-text { color: #5c5a66; font-size: 0.875rem; }
.profile-content { }
.profile-location { color: #818cf8; font-size: 0.9375rem; font-weight: 500; margin-bottom: 16px; }
.profile-bio { color: #9b99a3; font-size: 1rem; line-height: 1.7; }
.profile-bio p { margin-bottom: 16px; }

/* Philosophy */
.philosophy-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; margin: 48px 0; }
.philosophy-card { background: rgba(28,28,36,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 28px 24px; transition: border-color 0.3s; }
.philosophy-card:hover { border-color: rgba(99,102,241,0.2); }
.philosophy-quote { color: #c7d2fe; font-style: italic; font-size: 1rem; line-height: 1.6; }

/* Who grid */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin: 48px 0; }
.who-card { background: rgba(28,28,36,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 16px; padding: 32px 28px; }
.who-card-right { border-color: rgba(52,211,153,0.2); }
.who-card-right .who-card-title { color: #34d399; }
.who-card-wrong { border-color: rgba(239,68,68,0.2); }
.who-card-wrong .who-card-title { color: #ef4444; }
.who-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.who-card-title { font-size: 1.125rem; font-weight: 700; }
.who-list { list-style: none; padding: 0; }
.who-list li { color: #9b99a3; font-size: 0.9375rem; padding: 8px 0; padding-left: 24px; position: relative; line-height: 1.5; }
.who-card-right .who-list li::before { content: '\2713'; position: absolute; left: 0; color: #34d399; font-weight: 700; }
.who-card-wrong .who-list li::before { content: '\2717'; position: absolute; left: 0; color: #ef4444; font-weight: 700; }

/* Om oss — responsive */
@media (max-width: 768px) {
    .profile-section { grid-template-columns: 1fr; }
    .profile-image { max-width: 250px; margin: 0 auto; }
    .who-grid { grid-template-columns: 1fr; }
    .philosophy-grid { grid-template-columns: 1fr; }
}

/* ============================================
   30. PRISER (Pricing page)
   ============================================ */

/* Pricing card subdivisions */
.pricing-card-header { margin-bottom: 24px; }
.pricing-card-body { margin-bottom: 32px; flex: 1; }
.pricing-card-footer { }
.pricing-card-featured { border-color: rgba(99,102,241,0.4); background: rgba(28,28,36,0.7); position: relative; }
.pricing-card-featured::before { content: ''; position: absolute; inset: -1px; border-radius: 24px; background: linear-gradient(135deg, rgba(67,56,202,0.3), rgba(99,102,241,0.1), rgba(129,140,248,0.3)); z-index: -1; filter: blur(1px); }
.pricing-label { font-size: 0.8125rem; font-weight: 600; color: #818cf8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.pricing-amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.02em; line-height: 1.1; }
.pricing-period { font-size: 1rem; font-weight: 400; color: #9b99a3; margin-top: 4px; }
.pricing-includes { font-size: 0.875rem; color: #9b99a3; margin-bottom: 16px; }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; color: #9b99a3; font-size: 0.9375rem; }
.pricing-feature.included { color: #eceae6; }
.pricing-feature svg { flex-shrink: 0; margin-top: 2px; }
.btn-full { width: 100%; text-align: center; justify-content: center; }

/* Div-based comparison table */
.comparison-header { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; background: rgba(255,255,255,0.04); border-radius: 12px 12px 0 0; overflow: hidden; }
.comparison-row { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 1px; border-bottom: 1px solid rgba(255,255,255,0.04); }
.comparison-row:last-child { border-bottom: none; }
.comparison-col { padding: 14px 20px; font-size: 0.875rem; color: #9b99a3; }
.comparison-col-label { font-weight: 600; color: #eceae6; }
.comparison-heading { font-weight: 700; font-size: 0.8125rem; text-transform: uppercase; letter-spacing: 0.05em; padding: 14px 20px; color: #9b99a3; }
.comparison-col-pt, .comparison-col-vaktmester { text-align: center; }

/* FAQ on pricing page */
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-question { width: 100%; text-align: left; background: rgba(28,28,36,0.5); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; padding: 20px 24px; color: #eceae6; font-size: 1rem; font-weight: 600; cursor: pointer; font-family: inherit; display: flex; align-items: center; justify-content: space-between; margin-bottom: 8px; transition: border-color 0.2s; }
.faq-question:hover { border-color: rgba(99,102,241,0.2); }
.faq-icon { transition: transform 0.3s; font-size: 1.25rem; color: #818cf8; }
.faq-question.active .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 24px; }
.faq-answer.open { max-height: 500px; padding: 16px 24px; }
.faq-answer p { color: #9b99a3; font-size: 0.9375rem; line-height: 1.7; }

/* Priser — responsive */
@media (max-width: 768px) {
    .comparison-header, .comparison-row { grid-template-columns: 1.5fr 1fr 1fr; }
    .comparison-col, .comparison-heading { padding: 10px 12px; font-size: 0.8125rem; }
}

/* ============================================
   31. FUNKSJONER (Features page)
   ============================================ */

/* Feature detail sub-components */
.feature-detail-header { display: flex; align-items: center; gap: 16px; margin-bottom: 16px; }
.feature-detail-title { font-size: 1.25rem; font-weight: 700; }
.feature-detail-desc { color: #9b99a3; font-size: 0.9375rem; line-height: 1.7; margin-bottom: 16px; }

/* Summary section */
.summary-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 48px 0; }
.summary-category { background: rgba(28,28,36,0.4); border: 1px solid rgba(255,255,255,0.04); border-radius: 14px; padding: 24px 20px; }
.summary-category-title { font-size: 0.875rem; font-weight: 600; color: #818cf8; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 12px; }
.summary-list { list-style: none; padding: 0; }
.summary-list li { color: #9b99a3; font-size: 0.8125rem; padding: 4px 0; }

/* ============================================
   32. SHARED MISSING CLASSES
   ============================================ */

/* CTA banner inner */
.cta-banner-inner { max-width: 700px; margin: 0 auto; text-align: center; }

/* Footer contact (used in blog posts) */
.footer-contact { color: #9b99a3; font-size: 0.875rem; margin-top: 12px; }
.footer-contact a { color: #818cf8; }
.footer-contact a:hover { color: #c7d2fe; }

/* ============================================
   BLOG SHARING BUTTONS
   ============================================ */
.blog-share {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-share-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: #9b99a3;
    margin-bottom: 16px;
}

.blog-share-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border-radius: 10px;
    font-size: 0.8125rem;
    font-weight: 500;
    font-family: inherit;
    border: 1px solid rgba(255,255,255,0.08);
    background: rgba(28,28,36,0.5);
    color: #9b99a3;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}

.share-btn:hover {
    border-color: rgba(99,102,241,0.3);
    color: #eceae6;
    background: rgba(28,28,36,0.8);
}

.share-linkedin:hover { color: #0a66c2; border-color: rgba(10,102,194,0.3); }
.share-facebook:hover { color: #1877f2; border-color: rgba(24,119,242,0.3); }
.share-x:hover { color: #eceae6; border-color: rgba(255,255,255,0.2); }
.share-copy:hover { color: #34d399; border-color: rgba(52,211,153,0.3); }

/* ============================================
   BLOG RELATED POSTS
   ============================================ */
.blog-related {
    margin-top: 64px;
    padding-top: 48px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

.blog-related h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.blog-related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.blog-related-card {
    background: rgba(28,28,36,0.5);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px 20px;
    text-decoration: none;
    transition: border-color 0.3s, transform 0.3s;
    display: block;
}

.blog-related-card:hover {
    border-color: rgba(99,102,241,0.25);
    transform: translateY(-2px);
}

.blog-related-card .blog-category-badge {
    margin-bottom: 12px;
}

.blog-related-card h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #eceae6;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .blog-related-grid {
        grid-template-columns: 1fr;
    }

    .blog-share-buttons {
        flex-direction: column;
    }

    .share-btn {
        justify-content: center;
    }
}

@media (max-width: 1024px) {
    .blog-related-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   COUNTDOWN TIMER
   ============================================ */
.countdown-timer {
    display: inline-block;
    margin-top: 12px;
    padding: 8px 20px;
    background: rgba(251, 146, 60, 0.08);
    border: 1px solid rgba(251, 146, 60, 0.15);
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fdba74;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.download-disabled {
    cursor: not-allowed;
}
