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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.btn-cookie-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.sticky-cta.active {
    opacity: 1;
    visibility: visible;
}

.btn-sticky {
    padding: 16px 32px;
    background: #e74c3c;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(231, 76, 60, 0.4);
    transition: all 0.3s;
}

.btn-sticky:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(231, 76, 60, 0.5);
}

/* Navigation */
.nav-minimal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 9998;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 22px;
    font-weight: 800;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s;
}

.nav-menu {
    display: flex;
    gap: 40px;
}

.nav-menu li a {
    font-weight: 500;
    color: #2c3e50;
    transition: color 0.3s;
    position: relative;
}

.nav-menu li a:hover {
    color: #3498db;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #3498db;
    transition: width 0.3s;
}

.nav-menu li a:hover::after {
    width: 100%;
}

/* Hero */
.hero-fullscreen {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 152, 219, 0.65));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 40px;
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 22px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-hero {
    display: inline-block;
    padding: 18px 48px;
    background: #fff;
    color: #2c3e50;
    font-weight: 700;
    font-size: 18px;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Container Styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Section Styles */
section {
    padding: 100px 0;
}

.section-hook {
    background: #fff;
}

.section-hook h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #2c3e50;
}

.lead-text {
    font-size: 24px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
    font-weight: 500;
}

.section-hook p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

/* Split Section */
.section-split {
    display: flex;
    min-height: 600px;
    background: #f8f9fa;
}

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
}

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h3 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #2c3e50;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #5a6c7d;
}

.link-inline {
    display: inline-block;
    color: #3498db;
    font-weight: 600;
    font-size: 16px;
    margin-top: 15px;
    transition: all 0.3s;
}

.link-inline:hover {
    color: #2980b9;
    transform: translateX(5px);
}

/* Dark Section */
.section-dark {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: #fff;
}

.section-dark h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
}

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

.card-grid-three {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.card-insight {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-number {
    font-size: 48px;
    font-weight: 900;
    color: #3498db;
    margin-bottom: 20px;
}

.card-insight h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.card-insight p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
}

/* Light Section */
.section-light {
    background: #fff;
}

.section-light h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 30px;
    color: #2c3e50;
}

.feature-list {
    margin-top: 50px;
}

.feature-item {
    display: flex;
    gap: 25px;
    margin-bottom: 35px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: #27ae60;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h5 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.feature-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #5a6c7d;
}

/* Testimonials */
.section-testimonials {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-testimonials h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 25px;
    font-style: italic;
}

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

.testimonial-author strong {
    font-size: 16px;
    color: #2c3e50;
}

.testimonial-author span {
    font-size: 14px;
    color: #7f8c8d;
}

/* Collection */
.section-collection {
    background: #fff;
}

.section-collection h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 60px;
    color: #2c3e50;
}

.collection-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
}

.collection-item {
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.collection-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.collection-image {
    height: 350px;
    background-size: cover;
    background-position: center;
}

.collection-info {
    padding: 25px;
    background: #fff;
}

.collection-info h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c3e50;
}

.collection-info p {
    font-size: 15px;
    color: #7f8c8d;
}

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

.btn-primary {
    padding: 18px 48px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.3);
}

/* Services */
.section-services {
    background: linear-gradient(180deg, #f8f9fa 0%, #fff 100%);
    padding: 100px 0;
}

.section-services h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    border: 2px solid transparent;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #3498db;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.service-card.featured {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: #fff;
    border-color: #3498db;
}

.service-label {
    position: absolute;
    top: -12px;
    left: 30px;
    background: #e74c3c;
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.service-card h3 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 15px;
    margin-top: 10px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
    opacity: 0.9;
}

.service-card.featured p {
    opacity: 0.95;
}

.service-price {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 25px;
    color: #2c3e50;
}

.service-card.featured .service-price {
    color: #fff;
}

.service-features {
    margin-bottom: 30px;
}

.service-features li {
    font-size: 15px;
    line-height: 2;
    padding-left: 25px;
    position: relative;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.service-card.featured .service-features li::before {
    color: #fff;
}

.btn-service {
    width: 100%;
    padding: 16px;
    background: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #2980b9;
}

.btn-service.featured {
    background: #fff;
    color: #3498db;
}

.btn-service.featured:hover {
    background: #f8f9fa;
}

/* Urgency Section */
.section-urgency {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: #fff;
    padding: 80px 0;
}

.section-urgency h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
}

.urgency-text {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.urgency-highlight {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 35px;
}

.btn-urgency {
    padding: 20px 50px;
    background: #fff;
    color: #e74c3c;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-urgency:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Form Section */
.section-form {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-form h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-form > div > p {
    font-size: 17px;
    color: #7f8c8d;
    margin-bottom: 50px;
}

.selected-service-display {
    background: #e8f5e9;
    border-left: 4px solid #27ae60;
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: none;
}

.selected-service-display.active {
    display: block;
}

.selected-service-display p {
    margin: 0;
    font-size: 16px;
    color: #2c3e50;
}

.selected-service-display strong {
    color: #27ae60;
}

.contact-form {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3498db;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(39, 174, 96, 0.3);
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-col ul li a {
    color: #bdc3c7;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

/* Responsive */
@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 30px 40px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-title {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-split {
        flex-direction: column;
    }

    .card-grid-three {
        flex-direction: column;
    }

    .testimonial-grid {
        flex-direction: column;
    }

    .collection-grid {
        flex-direction: column;
    }

    .services-grid {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 40px;
    }

    section {
        padding: 60px 0;
    }

    .container,
    .container-narrow {
        padding: 0 25px;
    }

    .split-content {
        padding: 50px 25px;
    }

    .contact-form {
        padding: 30px 25px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-hook h2,
    .section-dark h2,
    .section-light h2,
    .section-testimonials h2,
    .section-collection h2,
    .section-services h2,
    .section-urgency h2,
    .section-form h2 {
        font-size: 32px;
    }

    .lead-text {
        font-size: 20px;
    }

    .btn-hero,
    .btn-primary,
    .btn-urgency {
        padding: 14px 32px;
        font-size: 16px;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .btn-sticky {
        padding: 12px 24px;
        font-size: 14px;
    }
}