/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fafafa;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Smooth Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* Header Styles */
.site-header {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 2rem 0;
    border-bottom: 1px solid rgba(231, 76, 60, 0.1);
    position: relative;
    z-index: 100;
}

.site-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent 0%, #e74c3c 50%, transparent 100%);
    opacity: 0.3;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: center;
}

.site-logo {
    font-size: 2.2rem;
    font-weight: 800;
    color: #2c3e50;
    margin: 0;
    letter-spacing: 0.5px;
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.4s ease;
    position: relative;
}

.site-logo::after {
    content: '❤️';
    position: absolute;
    right: -35px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
    opacity: 0;
    transition: all 0.4s ease;
}

.site-logo:hover {
    transform: scale(1.05);
    letter-spacing: 1px;
}

.site-logo:hover::after {
    opacity: 1;
    right: -40px;
}

/* Hero Section */
.hero {
    background: url('assets/1.png') no-repeat center center/cover;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    color: white;
}

.h.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.5) 0%, rgba(231, 76, 60, 0.3) 100%);
    z-index: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 40px 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1.2s ease-out 0.3s backwards;
}

.policy-page {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

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

.policy-back {
    display: inline-block;
    margin-bottom: 25px;
    color: #e74c3c;
    font-weight: 600;
    text-decoration: none;
}

.policy-back:hover {
    text-decoration: underline;
}

.policy-page h1 {
    font-size: 2.8rem;
    color: #2c3e50;
    margin-bottom: 10px;
}

.policy-updated {
    color: #7f8c8d;
    margin-bottom: 40px;
}

.policy-content h2 {
    font-size: 1.8rem;
    margin-top: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.policy-content p, .policy-content li {
    color: #5a6c7d;
    line-height: 1.8;
    font-size: 1.05rem;
}

.policy-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-content a {
    color: #e74c3c;
    text-decoration: none;
}

.policy-content a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 30px);
    background: #2c3e50;
    color: #ffffff;
    max-width: 420px;
    width: calc(100% - 40px);
    padding: 20px 24px;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner--visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cookie-banner--hidden {
    opacity: 0;
    transform: translate(-50%, 30px);
    pointer-events: none;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-banner__content p {
    margin: 0;
    font-size: 0.95rem;
    color: #ecf0f1;
}

.cookie-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-banner__button {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cookie-banner__button:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.3);
}

.cookie-banner__link {
    color: #f39c12;
    font-weight: 600;
    text-decoration: none;
}

.cookie-banner__link:hover {
    text-decoration: underline;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    justify-content: center;
    margin-bottom: 60px;
    flex-wrap: wrap;
    animation: fadeInUp 1.4s ease-out 0.6s backwards;
}

.cta-primary, .cta-secondary {
    padding: 18px 42px;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    letter-spacing: 0.5px;
}

.cta-primary {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.35);
    border: none;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.cta-primary:hover::before {
    left: 100%;
}

.cta-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(231, 76, 60, 0.5);
}

.cta-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
}

.cta-secondary:hover {
    background: white;
    color: #2c3e50;
    border-color: white;
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.3);
}

.cta-secondary:active {
    transform: translateY(-2px) scale(1.02);
}

.social-proof {
    margin-top: 50px;
    animation: fadeIn 1.6s ease-out 0.9s backwards;
}

.credibility {
    font-weight: 600;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.testimonial-preview {
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    padding: 20px 30px;
    border-radius: 16px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.testimonial-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.15);
}

/* Pain Point Section */
.pain-point {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.pain-point::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.pain-point h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.pain-point h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.problem-promise {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.problem-side, .upside-side {
    background: white;
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.problem-side::before, .upside-side::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.upside-side::before {
    background: linear-gradient(90deg, #27ae60, #229954);
}

.problem-side:hover, .upside-side:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.problem-side h3, .upside-side h3, .promise-side h3 {
    font-size: 1.6rem;
    margin-bottom: 25px;
    color: #2c3e50;
    font-weight: 700;
}

.problem-side p, .upside-side p {
    padding: 14px 0;
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    position: relative;
    padding-left: 26px;
    margin-bottom: 8px;
}

.problem-side p::before {
    content: '●';
    position: absolute;
    left: 6px;
    top: 14px;
    color: #e74c3c;
    font-size: 0.7rem;
}

.upside-side p::before {
    content: '✓';
    position: absolute;
    left: 4px;
    top: 14px;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.1rem;
}

.promise-box {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(39, 174, 96, 0.25);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.promise-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

.promise-box:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 50px rgba(39, 174, 96, 0.35);
}

.promise-box h3 {
    color: white;
    position: relative;
    z-index: 1;
}

.promise-box p {
    font-size: 1.15rem;
    color: white;
    font-weight: 400;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.statistics-attribution {
    text-align: center;
    margin-top: 40px;
    color: #7f8c8d;
    font-size: 0.9rem;
    font-style: italic;
}

/* Mission Section */
.mission {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.mission::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-image {
    position: relative;
}

.mission-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    border-radius: 20px;
    opacity: 0.15;
    z-index: 0;
}

.mission-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.mission-image:hover img {
    transform: scale(1.03) translateY(-5px);
    box-shadow: 0 25px 70px rgba(0,0,0,0.2);
}

.mission h2 {
    font-size: 3.2rem;
    margin-bottom: 50px;
    color: #2c3e50;
    text-align: left;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.mission h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.mission-point {
    margin-bottom: 35px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #e74c3c;
}

.mission-point:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 30px rgba(231, 76, 60, 0.15);
    border-left-width: 6px;
}

.mission-point h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.mission-point p {
    color: #5a6c7d;
    font-size: 1.05rem;
    line-height: 1.8;
}

/* Services Section */
.services {
    padding: 120px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.services h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.services h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 35px;
    margin-bottom: 50px;
}

.service-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 45px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(231, 76, 60, 0.05), transparent);
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(231, 76, 60, 0.2);
    border-color: rgba(231, 76, 60, 0.3);
}

.service-icon {
    color: #e74c3c;
    margin-bottom: 25px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 8px 20px rgba(231, 76, 60, 0.4));
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}

.service-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 1.3rem;
    font-weight: 700;
    color: #d35400;
    line-height: 1;
}

.price-amount--secondary {
    color: #b34700;
}

.price-note {
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #7f8c8d;
    font-weight: 600;
}

.service-price--tiered {
    flex-direction: row;
    gap: 18px;
    align-items: stretch;
    justify-content: center;
}

.service-price--tiered .price-tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.service-price--tiered .price-amount {
    font-size: 1.1rem;
}

.price-divider {
    width: 1px;
    height: 48px;
    background: linear-gradient(180deg, rgba(231, 76, 60, 0) 0%, rgba(231, 76, 60, 0.4) 50%, rgba(231, 76, 60, 0) 100%);
    margin: 0 4px;
}

.service-card p {
    color: #5a6c7d;
    margin-bottom: 30px;
    line-height: 1.8;
    font-size: 1.05rem;
    flex-grow: 1;
    position: relative;
    z-index: 1;
}

.service-cta {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.5px;
}

.service-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.service-cta:hover::before {
    width: 300px;
    height: 300px;
}

.service-card .service-cta {
    margin-top: auto;
}

.service-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.service-cta:active {
    transform: translateY(-1px) scale(1.02);
}

.services-note {
    text-align: center;
    color: #7f8c8d;
    font-style: italic;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.testimonials h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 70px;
    color: #2c3e50;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    padding-bottom: 20px;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
    border-radius: 2px;
}

.testimonials-carousel {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial {
    display: none;
    padding: 50px 45px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    position: relative;
    border: 1px solid rgba(231, 76, 60, 0.1);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 15px;
    left: 25px;
    font-size: 6rem;
    color: rgba(231, 76, 60, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

.testimonial p {
    font-size: 1.4rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: #e74c3c;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.carousel-dots {
    text-align: center;
    margin-top: 40px;
}

.dot {
    height: 12px;
    width: 12px;
    margin: 0 8px;
    background-color: #d1d8dd;
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.dot.active, .dot:hover {
    background-color: #e74c3c;
    transform: scale(1.3);
}

.dot.active::before {
    border-color: rgba(231, 76, 60, 0.3);
}

/* Email Capture Section */
.email-capture {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #2c3e50 100%);
    background-size: 200% 200%;
    animation: gradientShift 15s ease infinite;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.email-capture::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 50%, rgba(231, 76, 60, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

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

.email-capture h2 {
    font-size: 3rem;
    margin-bottom: 25px;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.email-subtitle {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
}

.email-form {
    max-width: 550px;
    margin: 0 auto;
}

.email-input-group {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.email-input-group input {
    flex: 1;
    padding: 16px 24px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    transition: all 0.3s ease;
}

.email-input-group input:focus {
    outline: none;
    background: white;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.3);
}

.email-cta {
    padding: 16px 36px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.email-cta::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.email-cta:hover::before {
    width: 300px;
    height: 300px;
}

.email-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.5);
}

.email-disclaimer {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
    color: white;
    padding: 50px 0 25px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.footer-links {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    padding: 5px 0;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    gap: 20px;
}

.social-link {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    color: #e74c3c;
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
}

.footer-bottom p {
    margin: 8px 0;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: #e74c3c;
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-logo {
        font-size: 1.6rem;
    }

    .site-logo::after {
        right: -28px;
        font-size: 1rem;
    }

    .site-logo:hover::after {
        right: -32px;
    }

    .site-header {
        padding: 1.5rem 0;
    }

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

    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 0;
        margin-bottom: 25px;
    }
    
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 40px;
        line-height: 1.7;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .cta-primary, .cta-secondary {
        width: 100%;
        padding: 16px 32px;
    }

    .testimonial-preview {
        font-size: 1.1rem;
        padding: 18px 24px;
    }

    .pain-point, .mission, .services, .testimonials, .email-capture, .program-highlight {
        padding: 60px 0;
    }

    .pain-point h2, .services h2, .testimonials h2, .mission h2, .email-capture h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }
    
    .problem-promise {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .problem-side, .upside-side {
        padding: 28px;
    }

    .promise-box {
        padding: 35px 28px;
    }
    
    .mission-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mission-image::before {
        top: -15px;
        left: -15px;
        right: 15px;
        bottom: 15px;
    }

    .mission h2 {
        font-size: 2.4rem;
        margin-bottom: 35px;
    }

    .mission-point {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .service-card {
        padding: 35px 28px;
    }

    .service-price--tiered {
        flex-direction: column;
        gap: 12px;
    }

    .price-divider {
        width: 100px;
        height: 1px;
        background: linear-gradient(90deg, rgba(231, 76, 60, 0) 0%, rgba(231, 76, 60, 0.4) 50%, rgba(231, 76, 60, 0) 100%);
        margin: 4px 0;
    }

    .testimonial {
        padding: 40px 30px;
    }

    .testimonial p {
        font-size: 1.2rem;
    }

    .program-card {
        padding: 35px 28px;
        border-radius: 20px;
    }

    .program-card h2 {
        font-size: 2rem;
    }

    .program-points {
        gap: 14px;
    }

    .program-points li {
        padding: 18px;
    }
    
    .email-input-group {
        flex-direction: column;
        gap: 12px;
        padding: 6px;
    }

    .email-input-group input {
        padding: 14px 20px;
    }

    .email-cta {
        padding: 14px 28px;
        width: 100%;
    }
    
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
        margin-bottom: 25px;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 18px;
        text-align: center;
    }

    .footer-links a {
        display: block;
    }
}

@media (max-width: 600px) {
    .cookie-banner {
        left: 50%;
        transform: translate(-50%, 30px);
        width: calc(100% - 24px);
        padding: 18px;
    }

    .cookie-banner__content {
        gap: 12px;
    }

    .cookie-banner__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .cookie-banner__button {
        width: 100%;
        text-align: center;
    }

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

@media (max-width: 480px) {
    .site-logo {
        font-size: 1.4rem;
        letter-spacing: 0.3px;
    }

    .site-logo::after {
        font-size: 0.9rem;
        right: -25px;
    }

    .site-logo:hover::after {
        right: -28px;
    }

    .hero-title {
        font-size: 2.2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .cta-primary, .cta-secondary {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .testimonial-preview {
        font-size: 1rem;
        padding: 15px 20px;
    }
    
    .container {
        padding: 0 16px;
    }

    .pain-point h2, .services h2, .testimonials h2, .mission h2, .email-capture h2 {
        font-size: 1.9rem;
    }

    .problem-side, .upside-side {
        padding: 24px 20px;
    }

    .problem-side h3, .upside-side h3 {
        font-size: 1.3rem;
    }

    .promise-box {
        padding: 28px 22px;
    }

    .mission h2 {
        font-size: 2rem;
    }

    .mission-point {
        padding: 18px;
    }

    .mission-point h3 {
        font-size: 1.3rem;
    }
    
    .service-card {
        padding: 28px 22px;
    }

    .service-card h3 {
        font-size: 1.3rem;
    }

    .testimonial {
        padding: 35px 24px;
    }

    .testimonial p {
        font-size: 1.1rem;
    }

    .program-card {
        padding: 28px 20px;
    }

    .program-card h2 {
        font-size: 1.75rem;
    }

    .program-points li {
        padding: 16px 18px;
        font-size: 0.98rem;
    }

    .email-capture h2 {
        font-size: 1.8rem;
    }

    .email-input-group input {
        padding: 12px 18px;
        font-size: 0.95rem;
    }

    .email-cta {
        padding: 12px 24px;
        font-size: 0.95rem;
    }

    .footer-links {
        gap: 15px;
    }

    .footer-links a {
        font-size: 0.95rem;
    }
}

@media (min-width: 1400px) {
    .services-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    border-radius: 6px;
    border: 2px solid #f1f1f1;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
}

/* Selection Color */
::selection {
    background: rgba(231, 76, 60, 0.2);
    color: #2c3e50;
}

::-moz-selection {
    background: rgba(231, 76, 60, 0.2);
    color: #2c3e50;
}

/* Focus Styles */
*:focus {
    outline: 2px solid rgba(231, 76, 60, 0.5);
    outline-offset: 2px;
}

button:focus, a:focus {
    outline: 2px solid rgba(231, 76, 60, 0.6);
}

/* Smooth transitions for all elements */
* {
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Remove transition from specific elements that have custom animations */
.hero, .hero::before, .hero::after, 
.service-card::before, .promise-box::before,
.cta-primary::before, .service-cta::before {
    transition: none;
}

/* Animation for elements coming into view */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Program Highlight */
.program-highlight {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.program-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e74c3c, transparent);
}

.program-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbff 100%);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    padding: 55px 65px;
    color: #2c3e50;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(231, 76, 60, 0.1);
    transition: all 0.4s ease;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #e74c3c, #c0392b);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.program-card h2 {
    font-size: 2.6rem;
    margin-bottom: 18px;
    font-weight: 800;
    background: linear-gradient(135deg, #2c3e50 0%, #e74c3c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-tagline {
    font-size: 1.15rem;
    color: #7f8c8d;
    margin-bottom: 35px;
}

.program-tagline a {
    color: #e74c3c;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
}

.program-tagline a:hover {
    color: #c0392b;
    text-decoration: underline;
}

.program-points {
    list-style: none;
    margin: 0 0 40px 0;
    padding: 0;
    display: grid;
    gap: 18px;
}

.program-points li {
    background: white;
    border-radius: 14px;
    padding: 22px 24px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    font-size: 1.05rem;
    color: #4a5b6a;
    transition: all 0.3s ease;
    border-left: 3px solid #e74c3c;
}

.program-points li:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.15);
    border-left-width: 5px;
}

.program-points strong {
    color: #2c3e50;
    font-weight: 700;
}

.program-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e74c3c;
    font-weight: 700;
    text-decoration: none;
    font-size: 1.15rem;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(231, 76, 60, 0.05);
}

.program-link::after {
    content: '→';
    transition: transform 0.3s ease;
    font-size: 1.3rem;
}

.program-link:hover {
    background: rgba(231, 76, 60, 0.1);
    padding-right: 28px;
}

.program-link:hover::after {
    transform: translateX(6px);
}
