/* ==========================================================================
   Lokalny Biznes AI - Version 2 (Inspired by aibizneslab.pl)
   Vanilla CSS | Minimalist Light Theme with Elegant Serif Accents
   ========================================================================== */

/* Fonts & Globals */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&family=Playfair+Display:ital,wght@1,400;1,600&display=swap');

:root {
    /* Color Palette */
    --bg-main: #fafafa;
    --bg-white: #ffffff;
    --bg-footer: #111827;
    
    --color-text-main: #111827;
    --color-text-muted: #4b5563;
    
    --color-accent: #6366f1;       /* Indigo */
    --color-accent-light: #e0e7ff; /* Light Indigo */
    --color-accent-hover: #4f46e5;
    
    --color-success: #059669;      /* Emerald */
    --color-danger: #dc2626;       /* Red */
    --color-warning: #d97706;      /* Amber */
    
    --border-color: #e5e7eb;
    --border-color-hover: #d1d5db;
    
    /* Typography */
    --font-headings: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-serif: 'Playfair Display', Georgia, serif;
    
    /* Layout & Sizing */
    --max-width: 1100px;
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

body {
    font-family: var(--font-body);
    background-color: var(--bg-main);
    color: var(--color-text-main);
    line-height: 1.625;
    overflow-x: hidden;
    position: relative;
    padding-top: 80px; /* Space for the sticky/fixed header */
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-headings);
    color: var(--color-text-main);
    font-weight: 800;
    line-height: 1.2;
}

h1 em, h2 em, h3 em {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 400;
    color: var(--color-accent);
}

p {
    color: var(--color-text-muted);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

/* Container */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* Reusable Components */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--color-accent-light);
    color: var(--color-accent);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

/* Minimalist Card Design */
.flat-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px;
    transition: var(--transition-smooth);
    box-shadow: 0 1px 3px rgba(0,0,0,0.02);
}

.flat-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.08);
}

/* Buttons (Pill-shaped, simple and solid) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: 100px; /* Pill style */
    font-weight: 600;
    font-family: var(--font-headings);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--color-accent);
    color: #ffffff;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: var(--bg-white);
    border-color: var(--border-color);
    color: var(--color-text-main);
}

.btn-secondary:hover {
    background-color: var(--bg-main);
    border-color: var(--border-color-hover);
    transform: translateY(-1px);
}

.btn-block {
    display: flex;
    width: 100%;
}

.btn-subtext {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    opacity: 0.9;
    margin-top: 1px;
}

/* Header (Fixed / Sticky at top) */
header.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(250, 250, 250, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
    height: 80px;
    display: flex;
    align-items: center;
}

header.site-header .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--color-text-main);
}

.logo svg {
    color: var(--color-accent);
}

.nav-menu {
    display: flex;
    gap: 28px;
    list-style: none;
}

.nav-link {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-link:hover {
    color: var(--color-accent);
}

/* Hero Section */
.hero-section {
    padding: 60px 0 80px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 48px;
    align-items: center;
}

.hero-title {
    font-size: clamp(2.2rem, 3.8vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.hero-story-teaser {
    background: var(--bg-white);
    border-left: 3px solid var(--color-accent);
    padding: 16px 20px;
    border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
    margin-bottom: 32px;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    box-shadow: 0 1px 3px rgba(0,0,0,0.01);
}

.hero-ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Browser Mockup for Slider */
.browser-mockup {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}

.browser-header {
    background: #f1f5f9;
    border-bottom: 1px solid var(--border-color);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.browser-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #cbd5e1;
}

.browser-dot.red { background: #f87171; }
.browser-dot.yellow { background: #fbbf24; }
.browser-dot.green { background: #4ade80; }

.browser-address {
    flex-grow: 1;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.75rem;
    color: #64748b;
    padding: 4px 12px;
    text-align: center;
    margin-left: 16px;
    max-width: 240px;
    font-family: monospace;
}

/* Before/After Slider inside Browser */
.slider-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.hero-image-wrapper {
    display: grid;
    place-items: center;
    background: var(--bg-white);
}

.hero-static-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
    user-select: none;
}

.slider-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: var(--bg-white);
}

.img-after {
    z-index: 1;
}

.img-before {
    z-index: 2;
    clip-path: rect(0px calc(var(--position, 50) * 1%) 100% 0px);
    width: 100%;
    height: 100%;
}

.slider-bar {
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(var(--position, 50) * 1%);
    width: 2px;
    background: #ffffff;
    z-index: 3;
    pointer-events: none;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.slider-button {
    position: absolute;
    top: 50%;
    left: calc(var(--position, 50) * 1%);
    transform: translate(-50%, -50%);
    width: 42px;
    height: 42px;
    background: var(--color-accent);
    color: #ffffff;
    border-radius: 50%;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-button::before, .slider-button::after {
    content: '';
    border: solid #ffffff;
    border-width: 0 2px 2px 0;
    display: inline-block;
    padding: 3px;
}

.slider-button::before {
    transform: rotate(135deg);
    margin-right: 2px;
}

.slider-button::after {
    transform: rotate(-45deg);
    margin-left: 2px;
}

.slider-range-input {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: ew-resize;
    z-index: 5;
}

.slider-label {
    position: absolute;
    bottom: 12px;
    padding: 4px 8px;
    background: rgba(17, 24, 39, 0.85);
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 4px;
    z-index: 4;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.label-before { left: 12px; }
.label-after { right: 12px; }

/* Sections General */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 56px auto;
}

.section-title {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-subtitle {
    color: var(--color-text-muted);
    font-size: 1.05rem;
}

/* Tablet Showcase for Client Logos */
.client-pills {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    list-style: none;
}

.client-pill {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Problem Section */
.problem-grid {
    display: grid;
    grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.problem-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.problem-card {
    border-left: 3px solid var(--border-color);
}

.problem-card:hover {
    border-left-color: var(--color-danger);
}

.problem-card h3 {
    font-size: 1.18rem;
    margin-bottom: 6px;
}

.problem-card .icon-inline {
    display: inline-flex;
    align-items: center;
    color: var(--color-danger);
    margin-right: 8px;
    vertical-align: middle;
}

.problem-visual-card {
    text-align: center;
    overflow: hidden;
}

.problem-visual-card h3 {
    margin-bottom: 12px;
}

.problem-visual-card p {
    margin: 0 auto 24px;
    max-width: 620px;
    font-size: 0.95rem;
}

.problem-visual-frame {
    width: 100%;
    aspect-ratio: 1 / 1;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    background: var(--bg-white);
}

/* Story Highlight (Optimized photo wrap) */
.story-highlight {
    margin-top: 60px;
    border-left: 4px solid var(--color-accent);
}

.story-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 32px;
    align-items: center;
}

.story-avatar-wrap {
    /* User request: "Moje zdjęcie jest za duże" -> Optimized size */
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid var(--color-accent);
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.1);
    flex-shrink: 0;
}

.story-avatar-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.story-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.story-content p {
    font-size: 1rem;
    margin-bottom: 12px;
}

/* Possibilities (Details accordion list styled flat) */
.possibilities-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.possibility-details {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.possibility-summary {
    list-style: none;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.possibility-summary::-webkit-details-marker {
    display: none;
}

.possibility-summary .summary-text {
    display: flex;
    align-items: center;
    gap: 10px;
}

.possibility-summary .summary-text svg {
    color: var(--color-accent);
}

.possibility-summary .arrow-icon {
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.possibility-details[open] {
    border-color: var(--color-accent);
}

.possibility-details[open] .possibility-summary .arrow-icon {
    transform: rotate(180deg);
}

.possibility-content {
    padding: 0 24px 20px 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

.possibility-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.possibility-col {
    background: var(--bg-main);
    padding: 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--border-color);
}

.possibility-col.bad {
    border-left: 3px solid var(--color-danger);
}

.possibility-col.good {
    border-left: 3px solid var(--color-success);
    background: rgba(5, 150, 105, 0.02);
}

.possibility-col h4 {
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.possibility-col h4.bad-title { color: var(--color-danger); }
.possibility-col h4.good-title { color: var(--color-success); }

.possibility-col p {
    font-size: 0.9rem;
}

/* Solution Pillars Flat */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pillar-card {
    text-align: left;
    position: relative;
}

.pillar-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    color: var(--color-accent);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.15rem;
    margin-bottom: 20px;
}

.pillar-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

/* Stats Flat styling */
.stats-section {
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

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

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

.stat-num {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-family: var(--font-headings);
    font-weight: 900;
    color: var(--color-accent);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.88rem;
    color: var(--color-text-muted);
}

/* Testimonials / Feedback List Flat */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-quote {
    font-size: 1rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

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

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent-light);
    color: var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 0.9rem;
}

.author-info p {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Offer Flat pricing card */
.offer-card {
    max-width: 860px;
    margin: 0 auto;
    background: var(--bg-white);
    border: 2px solid var(--color-accent); /* Focus color */
}

.offer-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.offer-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.offer-features li {
    display: flex;
    gap: 10px;
    font-size: 0.95rem;
}

.offer-features li svg {
    color: var(--color-success);
    margin-top: 2px;
    flex-shrink: 0;
}

.offer-pricing-box {
    background: var(--bg-main);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    padding: 32px 24px;
    text-align: center;
}

.pricing-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-text-muted);
    margin-bottom: 6px;
}

.pricing-amount {
    font-size: 2.8rem;
    font-weight: 900;
    color: var(--color-text-main);
    font-family: var(--font-headings);
}

.pricing-amount span {
    font-size: 1rem;
    color: var(--color-text-muted);
    font-weight: 400;
}

.pricing-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin: 12px 0 20px 0;
}

/* Timeline Flat */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.plan-item {
    text-align: left;
}

.plan-step {
    font-family: var(--font-headings);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--color-accent-light);
    line-height: 1;
    margin-bottom: 12px;
}

.plan-item:hover .plan-step {
    color: var(--color-accent);
}

.plan-item h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
}

.plan-item p {
    font-size: 0.85rem;
}

/* Guarantee Section Flat */
.guarantee-card {
    text-align: center;
}

.guarantee-icon {
    color: var(--color-accent);
    margin-bottom: 16px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 40px;
    text-align: left;
}

.guarantee-item h3 {
    font-size: 1.05rem;
    color: var(--color-accent);
    margin-bottom: 6px;
}

.guarantee-item p {
    font-size: 0.88rem;
}

/* FAQ Flat */
.faq-accordion {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-details {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-summary {
    list-style: none;
    padding: 20px 24px;
    cursor: pointer;
    font-family: var(--font-headings);
    font-weight: 700;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
}

.faq-summary::-webkit-details-marker {
    display: none;
}

.faq-summary .arrow-icon {
    transition: transform 0.3s ease;
    color: var(--color-text-muted);
}

.faq-details[open] {
    border-color: var(--color-accent);
}

.faq-details[open] .faq-summary .arrow-icon {
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 24px 20px 24px;
    border-top: 1px solid var(--border-color);
    padding-top: 16px;
}

/* Urgency Banner Yellow/Orange style */
.urgency-banner {
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--border-radius-md);
    padding: 32px;
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
}

.urgency-banner h2 {
    color: var(--color-warning);
    font-size: 1.45rem;
    margin-bottom: 8px;
}

.urgency-banner p {
    font-size: 0.95rem;
    color: #92400e;
    margin-bottom: 16px;
}

.urgency-bullets {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-weight: 600;
    font-size: 0.85rem;
    color: #b45309;
}

.urgency-bullets span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.urgency-bullets span::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-warning);
    border-radius: 50%;
}

/* About & Mission Flat */
.about-grid {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.about-photo-wrap {
    /* User request: "Moje zdjęcie jest za duże" -> Smaller width and rounded style */
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
    box-shadow: 0 10px 25px rgba(99, 102, 241, 0.1);
}

.about-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-content p {
    margin-bottom: 12px;
    font-size: 0.98rem;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.mission-card h3 {
    font-size: 1.35rem;
    color: var(--color-accent);
    margin-bottom: 12px;
}

.mission-card p {
    font-size: 0.92rem;
}

/* Contact Flat Card */
.contact-card {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
    padding: 48px;
    border: 2px solid var(--color-text-main);
}

.contact-card h2 {
    font-size: 2.2rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 1.05rem;
    margin-bottom: 24px;
}

.contact-email-box {
    margin: 32px 0;
}

.email-btn {
    font-size: 1.15rem;
    padding: 16px 40px;
    letter-spacing: 0.5px;
}

.contact-info-list {
    margin-top: 32px;
    border-top: 1px solid var(--border-color);
    padding-top: 32px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-info-list p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.contact-info-list strong {
    color: var(--color-text-main);
}

/* Legal pages */
.legal-section {
    padding: 64px 0 96px;
}

.legal-card {
    max-width: 860px;
    margin: 0 auto;
}

.legal-card h1 {
    font-size: clamp(2.2rem, 5vw, 3.4rem);
    margin-bottom: 12px;
}

.legal-card h2 {
    font-size: 1.35rem;
    margin: 36px 0 10px;
}

.legal-card p {
    margin-bottom: 14px;
}

.legal-card a {
    color: var(--color-accent);
    font-weight: 600;
}

.legal-updated {
    font-size: 0.92rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

/* Footer */
footer.site-footer {
    border-top: 1px solid var(--border-color);
    padding: 40px 0;
    background: var(--bg-footer);
    color: #ffffff;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-headings);
    font-weight: 700;
    color: #ffffff;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: #9ca3af;
    font-size: 0.85rem;
}

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

.footer-copy {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    @supports ((animation-timeline: view()) and (animation-range: entry)) {
        @keyframes fadeInSlide {
            from {
                opacity: 0;
                transform: translateY(20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .scroll-reveal {
            animation: fadeInSlide auto cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
            animation-timeline: view();
            animation-range: entry 10% cover 25%;
        }
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-desc {
        margin: 0 auto 20px auto;
    }
    
    .hero-story-teaser {
        border-left: none;
        border-top: 3px solid var(--color-accent);
        border-radius: var(--border-radius-sm);
        max-width: 540px;
        margin: 0 auto 28px auto;
    }
    
    .hero-ctas {
        justify-content: center;
    }
    
    .browser-mockup {
        max-width: 480px;
        margin: 0 auto;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .problem-cards {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 16px;
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .offer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .plan-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
    
    .guarantee-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
    }
    
    .about-photo-wrap {
        margin: 0 auto;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none; /* Simplification */
    }
    
    body {
        padding-top: 70px;
    }
    
    header.site-header {
        height: 70px;
    }
    
    .contact-card {
        padding: 32px 20px;
    }
    
    .possibility-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .problem-cards {
        grid-template-columns: 1fr;
    }
    
    .plan-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .story-avatar-wrap {
        margin: 0 auto;
    }
}
