/* CSS Variables - Exact from Figma */
:root {
    --z2u-blue: #00A7E2;
    --z2u-grey: #4B5054;
    --white: #FFFFFF;
    --black: #000000;
    --light-grey: #F5F5F5;
    --dark-grey: #2B2D30;
    --border-radius: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--z2u-grey);
    overflow-x: hidden;
}

.container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 96px;
}

/* Navigation */
.navbar {
    width: 1440px;
    height: 120px;
    background: var(--white);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
}

.nav-container {
    max-width: 1440px;
    height: 100%;
    margin: 0 auto;
    padding: 0 96px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--z2u-blue);
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--z2u-grey);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--z2u-blue);
}

.nav-cta {
    padding: 12px 32px;
    background: var(--z2u-blue);
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.nav-cta:hover {
    background: #0091c7;
}

/* Hero Section */
.hero {
    width: 1440px;
    height: 851px;
    margin: 120px auto 0;
    padding: 0 222px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.hero-content {
    max-width: 556px;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--z2u-blue);
    color: var(--white);
    border-radius: 78px;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--z2u-grey);
    margin-bottom: 32px;
    font-weight: 700;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 20px 48px;
    background: var(--z2u-blue);
    color: var(--white);
    border: none;
    border-radius: 68px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.cta-button:hover {
    background: #0091c7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 167, 226, 0.3);
}

.lock-icon {
    font-size: 16px;
}

.hero-image {
    width: 400px;
    height: 400px;
    background: var(--z2u-grey);
    border-radius: 12px;
    overflow: hidden;
}

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

/* Section Dividers */
.section-divider {
    width: 1440px;
    height: 8px;
    margin: 0 auto;
    background: linear-gradient(90deg, var(--z2u-blue) 0%, #0091c7 100%);
}

.section-divider-dark {
    width: 1440px;
    height: 8px;
    margin: 0 auto;
    background: var(--dark-grey);
}

/* Services Section */
.services {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    background: var(--light-grey);
}

.services h2 {
    text-align: center;
    font-size: 48px;
    line-height: 1.3;
    color: var(--z2u-grey);
    margin-bottom: 60px;
    font-weight: 700;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 39px;
    margin-bottom: 40px;
}

.services-grid-secondary {
    grid-template-columns: repeat(3, 1fr);
}

.service-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    max-width: 100%;
    max-height: 100%;
}

.service-card h3 {
    font-size: 24px;
    color: var(--z2u-grey);
    margin-bottom: 16px;
    font-weight: 600;
}

.service-card p {
    font-size: 16px;
    color: var(--z2u-grey);
    margin-bottom: 16px;
    line-height: 1.5;
}

.price-tag {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--z2u-blue);
    margin-bottom: 20px;
}

.service-cta {
    width: 100%;
    padding: 14px 24px;
    background: var(--z2u-blue);
    color: var(--white);
    border: none;
    border-radius: 48px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 20px;
}

.service-cta:hover {
    background: #0091c7;
}

.service-features {
    list-style: none;
    text-align: left;
    width: 100%;
    font-size: 14px;
    line-height: 2;
}

.service-features li {
    color: var(--z2u-grey);
    padding-left: 8px;
}

/* Video Section */
.video-section {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    position: relative;
}

.video-section-dark {
    background: var(--dark-grey);
    color: var(--white);
}

.video-section-light {
    background: var(--light-grey);
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 878px;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6));
    z-index: 0;
}

.risk-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 237px;
    opacity: 0.3;
}

.video-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 0 96px;
}

.video-content h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 24px;
    font-weight: 700;
    max-width: 540px;
    margin: 0 auto 24px;
}

.video-section-dark .video-content h2 {
    color: var(--white);
}

.video-content > p {
    font-size: 28px;
    margin-bottom: 40px;
}

.video-player {
    width: 980px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.video-thumbnail {
    width: 100%;
    height: 547px;
    background: var(--z2u-grey);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    width: 124px;
    height: 124px;
    background: rgba(0, 167, 226, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 48px;
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.play-button:hover {
    background: var(--z2u-blue);
    transform: scale(1.1);
}

.video-controls {
    height: 35px;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    padding: 0 16px;
    gap: 16px;
}

.video-controls button {
    background: none;
    border: none;
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
}

.progress-bar {
    flex: 1;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    position: relative;
}

.progress-indicator {
    width: 7px;
    height: 7px;
    background: var(--white);
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

/* Reviews Section */
.reviews {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    background: var(--white);
}

.reviews h2 {
    text-align: center;
    font-size: 48px;
    color: var(--z2u-grey);
    margin-bottom: 60px;
    font-weight: 700;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
    padding: 0 96px;
}

.reviews-grid:last-of-type {
    grid-template-columns: repeat(4, 1fr);
}

.review-card {
    background: var(--white);
    border: 1px solid #e0e0e0;
    border-radius: var(--border-radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--light-grey);
}

.reviewer-info h4 {
    font-size: 16px;
    color: var(--z2u-grey);
    font-weight: 600;
}

.review-time {
    font-size: 12px;
    color: #999;
}

.verified-badge {
    margin-left: auto;
    color: var(--z2u-blue);
    font-size: 14px;
}

.review-stars {
    color: #FFC107;
    font-size: 16px;
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    line-height: 1.6;
    color: var(--z2u-grey);
    flex: 1;
}

.read-more {
    color: var(--z2u-blue);
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
}

.review-source {
    font-size: 14px;
    color: #999;
    font-weight: 600;
}

.reviews-cta {
    display: block;
    margin: 40px auto 0;
    padding: 14px 48px;
    background: var(--z2u-blue);
    color: var(--white);
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.reviews-cta:hover {
    background: #0091c7;
}

/* How It Works Section */
.how-it-works {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    background: var(--white);
}

.how-it-works h2 {
    text-align: center;
    font-size: 48px;
    color: var(--z2u-grey);
    margin-bottom: 60px;
    font-weight: 700;
}

.steps {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 96px;
}

.step {
    position: relative;
    padding-left: 80px;
    margin-bottom: 60px;
}

.step:last-child {
    margin-bottom: 0;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    width: 48px;
    height: 48px;
    background: var(--z2u-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.step-line {
    position: absolute;
    left: 23px;
    top: 56px;
    width: 2px;
    height: 66px;
    background: #e0e0e0;
}

.step:last-child .step-line {
    display: none;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 16px;
}

.step-icon img {
    max-width: 100%;
    max-height: 100%;
}

.step h3 {
    font-size: 20px;
    color: var(--z2u-grey);
    margin-bottom: 12px;
    font-weight: 600;
}

.step p {
    font-size: 16px;
    color: var(--z2u-grey);
    line-height: 1.5;
}

/* Why Choose Us Section */
.why-choose-us {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    background: var(--light-grey);
}

.why-choose-us h2 {
    text-align: center;
    font-size: 48px;
    color: var(--z2u-grey);
    margin-bottom: 16px;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 24px;
    color: var(--z2u-blue);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-description {
    text-align: center;
    font-size: 18px;
    color: var(--z2u-grey);
    margin-bottom: 60px;
    max-width: 730px;
    margin: 0 auto 60px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    padding: 0 96px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 32px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    margin-bottom: 16px;
}

.benefit-icon img {
    max-width: 100%;
    max-height: 100%;
}

.benefit-card h3 {
    font-size: 20px;
    color: var(--z2u-grey);
    margin-bottom: 12px;
    font-weight: 600;
}

.benefit-card p {
    font-size: 16px;
    color: var(--z2u-grey);
    line-height: 1.5;
}

.benefits-cta {
    display: block;
    margin: 40px auto 0;
    padding: 14px 48px;
    background: var(--z2u-blue);
    color: var(--white);
    border: none;
    border-radius: 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.benefits-cta:hover {
    background: #0091c7;
}

/* Features Section */
.features {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    background: var(--dark-grey);
    color: var(--white);
}

.features h2 {
    text-align: center;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 60px;
    font-weight: 700;
    max-width: 872px;
    margin: 0 auto 60px;
}

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

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-icon {
    width: 73px;
    height: 73px;
    margin-bottom: 16px;
}

.feature-icon img {
    max-width: 100%;
    max-height: 100%;
}

.feature-item h3 {
    font-size: 20px;
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-item p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Service Area Section */
.service-area {
    width: 1440px;
    margin: 0 auto;
    padding: 80px 0;
    background: var(--white);
}

.area-header {
    text-align: center;
    margin-bottom: 40px;
}

.area-header h2 {
    font-size: 48px;
    color: var(--z2u-grey);
    font-weight: 700;
    padding: 20px 0;
    border-bottom: 3px solid var(--z2u-blue);
    display: inline-block;
}

.area-label {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--z2u-grey);
    margin-bottom: 40px;
}

.map-container {
    position: relative;
    width: 100%;
    height: 676px;
    background: var(--light-grey);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-legends {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
}

.marker-primary {
    background: var(--z2u-blue);
}

.marker-secondary {
    background: var(--z2u-grey);
}

/* Footer */
.footer {
    width: 100%;
    max-width: 1440px;
    height: 522px;
    margin: 0 auto;
    background: #000000;
    color: var(--white);
}

.footer-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 71px 96px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: auto;
}

/* Footer Left - Logo & Contact */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-shred {
    height: 40px;
    width: auto;
}

.logo-2u {
    height: 40px;
    width: auto;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--white);
}

.contact-icon {
    width: 20px;
    height: 20px;
    color: var(--z2u-blue);
    flex-shrink: 0;
}

/* Footer Middle - Company Links */
.footer-middle h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -0.3px;
    color: var(--white);
}

.footer-middle ul {
    list-style: none;
}

.footer-middle ul li {
    margin-bottom: 12px;
    line-height: 2.017;
}

.footer-middle a {
    color: var(--white);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.footer-middle a:hover {
    color: var(--z2u-blue);
}

/* Footer Right - Address & Social */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-right h4 {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: -0.3px;
    color: var(--white);
    margin-bottom: 0;
}

.footer-address {
    font-size: 16px;
    line-height: 2.017;
    color: var(--white);
    margin: 0;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s, opacity 0.3s;
}

.social-icon:hover {
    transform: scale(1.1);
    opacity: 0.9;
}

.social-icon svg {
    width: 100%;
    height: 100%;
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 24px;
    padding-bottom: 16px;
}

.footer-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin-bottom: 16px;
}

.footer-bottom p {
    text-align: center;
    color: var(--white);
    font-size: 11px;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1.517;
}

/* Responsive Design */
@media (max-width: 1440px) {
    .navbar,
    .hero,
    .section-divider,
    .section-divider-dark,
    .services,
    .video-section,
    .reviews,
    .how-it-works,
    .why-choose-us,
    .features,
    .service-area,
    .footer {
        width: 100%;
    }

    .navbar,
    .nav-container {
        width: 100%;
    }
}

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

    .benefits-grid,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-right {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 24px;
    }

    .hero {
        flex-direction: column;
        height: auto;
        padding: 40px 24px;
    }

    .hero h1 {
        font-size: 32px;
    }

    .services-grid,
    .reviews-grid,
    .benefits-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        display: none;
    }

    .video-player {
        width: 100%;
    }

    .footer {
        height: auto;
    }

    .footer-container {
        padding: 40px 24px;
    }

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

    .footer-right {
        grid-column: 1;
    }
}

