/* ========================================
   The Business Booster - Premium Stylesheet
   ======================================== */

:root {
    /* Colors - Premium Navy & Gold */
    --navy-dark: #0a1628;
    --navy: #1a2942;
    --navy-light: #2d3e5f;
    --gold: #d4a574;
    --gold-light: #e8c7a0;
    --gold-dark: #b8885a;
    
    --white: #ffffff;
    --off-white: #f8f9fa;
    --gray-light: #e1e4e8;
    --gray: #8893a3;
    --gray-dark: #4a5568;
    
    --success: #48bb78;
    --error: #f56565;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    --gradient-gold: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold-light) 100%);
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0d1b2e 100%);
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(10, 22, 40, 0.08);
    --shadow-md: 0 4px 16px rgba(10, 22, 40, 0.12);
    --shadow-lg: 0 8px 32px rgba(10, 22, 40, 0.16);
    --shadow-xl: 0 16px 48px rgba(10, 22, 40, 0.2);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ========================================
   Reset & Base
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--navy);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--navy-dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
    color: var(--gray-dark);
}

.lead {
    font-size: 1.25rem;
    color: var(--navy);
    font-weight: 500;
}

.gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================
   Layout
   ======================================== */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: var(--section-padding) 0;
}

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

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray);
}

/* ========================================
   Buttons
   ======================================== */

.btn-primary,
.btn-secondary,
.btn-primary-small,
.btn-primary-large {
    display: inline-block;
    padding: 16px 32px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary-large {
    padding: 20px 40px;
    font-size: 1.125rem;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    box-shadow: var(--shadow-md);
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--navy-dark);
}

.btn-primary-small {
    padding: 10px 20px;
    font-size: 0.9rem;
    background: var(--gradient-gold);
    color: var(--navy-dark);
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy-dark);
}

.logo-icon {
    font-size: 1.8rem;
}

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

.nav-links a {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:not(.btn-primary-small):hover {
    color: var(--gold);
}

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

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--navy-dark);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========================================
   Hero Section
   ======================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-hero);
    color: var(--white);
    overflow: hidden;
    padding-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(212, 165, 116, 0.08) 0%, transparent 50%);
    z-index: 0;
}

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

.hero-title {
    color: var(--white);
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

.trust-icon {
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

.hero-mockup {
    perspective: 1000px;
}

.mockup-browser {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}

.mockup-browser:hover {
    transform: rotateY(0deg) rotateX(0deg);
}

.browser-bar {
    background: #e1e4e8;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #cbd5e0;
}

.browser-url {
    flex: 1;
    background: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    color: var(--gray);
}

.browser-content {
    height: 400px;
    background: var(--white);
    position: relative;
}

.mockup-gradient {
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.2;
}

/* Fake website mockup */
.mockup-site {
    width: 100%;
    height: 100%;
    background: #fff;
    padding: 0;
    overflow: hidden;
}
.ms-hero {
    background: linear-gradient(135deg, #1a2332 0%, #2c5f7c 100%);
    padding: 20px 16px 24px;
}
.ms-nav {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.ms-logo-dot {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}
.ms-nav-item {
    width: 40px;
    height: 6px;
    background: rgba(255,255,255,.25);
    border-radius: 3px;
}
.ms-hero-text {
    padding: 0 4px;
}
.ms-h1 {
    height: 14px;
    background: #fff;
    border-radius: 4px;
    margin-bottom: 8px;
    width: 85%;
}
.ms-h1.short {
    width: 55%;
    margin-bottom: 12px;
}
.ms-subtitle {
    height: 8px;
    background: rgba(255,255,255,.35);
    border-radius: 3px;
    width: 70%;
    margin-bottom: 16px;
}
.ms-btn-fake {
    width: 80px;
    height: 24px;
    background: var(--gold);
    border-radius: 12px;
}
.ms-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 20px 16px;
}
.ms-card {
    background: var(--off-white);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}
.ms-card-icon {
    font-size: 20px;
    margin-bottom: 8px;
}
.ms-card-line {
    height: 6px;
    background: #d1d5db;
    border-radius: 3px;
    margin: 0 auto 5px;
    width: 80%;
}
.ms-card-line.short {
    width: 55%;
}

/* ========================================
   Problem/Solution Section
   ======================================== */

.problem-solution {
    background: var(--off-white);
}

.problem-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.problem, .solution {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 24px;
}

.icon-box.red {
    background: rgba(245, 101, 101, 0.1);
}

.icon-box.green {
    background: rgba(72, 187, 120, 0.1);
}

.problem h3, .solution h3 {
    margin-bottom: 16px;
}

.problem-list, .solution-list {
    margin-top: 24px;
}

.problem-list li, .solution-list li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-dark);
}

.problem-list li::before {
    content: '✗';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: bold;
}

.solution-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ========================================
   Services Section
   ======================================== */

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    text-align: center;
}

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

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--gray);
}

/* ========================================
   Steps Section
   ======================================== */

.hoe-het-werkt {
    background: var(--gradient-hero);
    color: var(--white);
}

.hoe-het-werkt .section-header h2,
.hoe-het-werkt .section-header p {
    color: var(--white);
}

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

.step-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 32px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
}

.step-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.step-card h3 {
    color: var(--white);
    margin-bottom: 12px;
}

.step-card p {
    color: var(--gray-light);
}

/* ========================================
   Pricing Section
   ======================================== */

.prijzen {
    background: var(--off-white);
}

.pricing-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--white);
    padding: 48px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    position: relative;
}

.pricing-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-light);
    margin-bottom: 32px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 4rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-heading);
}

.price-period {
    font-size: 1.5rem;
    color: var(--gray);
}

.price-subtitle {
    color: var(--gray);
    font-size: 0.95rem;
}

.pricing-features {
    margin-bottom: 32px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
}

.feature-icon {
    color: var(--success);
    font-weight: bold;
    font-size: 1.2rem;
}

.feature.highlight {
    background: rgba(212, 165, 116, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-top: 8px;
}

.pricing-card .btn-primary {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* ========================================
   Portfolio Section
   ======================================== */

.portfolio-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
}

.portfolio-arrow {
    font-size: 3rem;
    color: var(--gold);
    font-weight: bold;
}

.portfolio-label {
    text-align: center;
    font-weight: 600;
    color: var(--gray);
    margin-bottom: 16px;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 1px;
}

.portfolio-before, .portfolio-after {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.old-website {
    background: #f0f0f0;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
}

.old-header {
    background: #ccc;
    height: 40px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.old-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.old-box {
    background: #ddd;
    height: 60px;
    border-radius: 4px;
}

.new-website {
    background: var(--gradient-hero);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.new-gradient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: var(--gradient-gold);
    opacity: 0.3;
}

.new-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 60px;
}

.new-card {
    background: rgba(255, 255, 255, 0.15);
    height: 50px;
    border-radius: 6px;
}

.portfolio-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.tag-bad, .tag-good {
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

.tag-bad {
    background: rgba(245, 101, 101, 0.1);
    color: var(--error);
}

.tag-good {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

/* ========================================
   Over Ons Section
   ======================================== */

.over-ons {
    background: var(--off-white);
}

.over-ons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.over-ons-content h2 {
    margin-bottom: 24px;
}

.over-ons-content p {
    margin-bottom: 20px;
}

.founder-info {
    margin-top: 32px;
    padding: 24px;
    background: var(--white);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--gold);
}

.founder-info a {
    color: var(--gold);
}

.founder-info a:hover {
    text-decoration: underline;
}

.location-card {
    background: var(--white);
    padding: 48px 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.location-icon {
    font-size: 4rem;
    margin-bottom: 24px;
}

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

.location-card p {
    margin-bottom: 24px;
    color: var(--gray);
}

.location-areas {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.area-tag {
    background: rgba(212, 165, 116, 0.1);
    color: var(--gold-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* ========================================
   Testimonials Section
   ======================================== */

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

.testimonial-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

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

.testimonial-stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: var(--gray-dark);
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    color: var(--navy-dark);
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========================================
   FAQ Section
   ======================================== */

.faq {
    background: var(--off-white);
}

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--white);
    margin-bottom: 16px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.faq-question {
    padding: 24px 28px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question h3 {
    font-size: 1.125rem;
    font-weight: 600;
}

.faq-icon {
    font-size: 1.5rem;
    color: var(--gold);
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 28px 24px;
    color: var(--gray-dark);
}

/* ========================================
   CTA Banner
   ======================================== */

.cta-banner {
    background: var(--gradient-hero);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content > p {
    color: var(--gray-light);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-small {
    margin-top: 24px;
    color: var(--gray-light);
    font-size: 0.95rem;
}

/* ========================================
   Contact Section
   ======================================== */

.contact {
    background: var(--off-white);
}

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

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.honeypot {
    position: absolute;
    left: -9999px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--navy);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
}

.contact-form .btn-primary {
    width: 100%;
    padding: 16px;
}

.form-message {
    margin-top: 20px;
    padding: 16px;
    border-radius: var(--radius-sm);
    text-align: center;
    display: none;
}

.form-message.success {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
    display: block;
}

.form-message.error {
    background: rgba(245, 101, 101, 0.1);
    color: var(--error);
    display: block;
}

.contact-info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.contact-info-card h3 {
    margin-bottom: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon {
    font-size: 1.5rem;
}

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

.contact-item strong {
    color: var(--navy-dark);
    font-weight: 600;
}

.contact-item span,
.contact-item a {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-guarantee {
    background: var(--gradient-hero);
    color: var(--white);
    padding: 32px;
    border-radius: var(--radius-lg);
}

.contact-guarantee h4 {
    color: var(--white);
    margin-bottom: 16px;
}

.contact-guarantee ul li {
    padding: 8px 0;
    color: var(--gray-light);
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--navy-dark);
    color: var(--gray-light);
    padding: 60px 0 30px;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-col p {
    color: var(--gray);
    line-height: 1.7;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--gray);
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--gold);
}

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

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

/* ========================================
   Animations
   ======================================== */

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.fade-up.visible,
.fade-up-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
    }
    
    .hero-mockup {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .problem-solution-grid {
        grid-template-columns: 1fr;
    }
    
    .over-ons-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .nav-links {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 12px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .portfolio-arrow {
        transform: rotate(90deg);
    }
    
    .pricing-card {
        padding: 32px 24px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .price-amount {
        font-size: 3rem;
    }
    
    .container {
        padding: 0 16px;
    }
}