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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
    overflow-x: hidden;
}

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    background: #2d3748;
    background-image: url('https://conceptual-landing-page-assets.sfo3.cdn.digitaloceanspaces.com/remnant-restructure/images/assets/background-image.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding: 70px 0 80px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(25, 30, 40, 0.50);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-top: 40px;
}

.hero-content {
    padding-right: 40px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 24px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 36px;
    backdrop-filter: blur(10px);
}

.badge svg {
    width: 16px;
    height: 16px;
}

.hero-title {
    font-size: 60px;
    font-weight: 700;
    line-height: 1.15;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: #FF3B30;
    display: block;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 48px;
    max-width: 540px;
}

/* Stats Section */
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.stat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.stat-icon {
    flex-shrink: 0;
    padding-top: 4px;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
}

.stat-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-value {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.4;
}

/* Hero Form */
.hero-form-container {
    position: sticky;
    top: 40px;
}

.form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 36px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
}

.form-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #00DB8F;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

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

.form-title {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 12px;
    text-align: center;
}

.form-subtitle {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 28px;
    text-align: center;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.lead-form input {
    padding: 15px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: all 0.2s;
}

.lead-form input:focus {
    outline: none;
    border-color: #00DB8F;
    box-shadow: 0 0 0 3px rgba(0, 219, 143, 0.1);
}

.lead-form input::placeholder {
    color: #999;
}

.cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 24px;
    background: #FF3B30;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 8px;
}

.cta-button:hover {
    background: #E6342A;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 59, 48, 0.3);
}

.cta-button svg {
    width: 16px;
    height: 16px;
}

.privacy-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 12px;
    color: #999;
    margin-top: 16px;
}

.privacy-note svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: #f9fafb;
}

.section-title {
    font-size: 44px;
    font-weight: 700;
    text-align: center;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 130%;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    color: #666;
    margin-bottom: 64px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.feature-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.feature-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: #E8F8F3;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon svg {
    width: 32px;
    height: 32px;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.3;
}

.feature-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

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

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #555;
}

.feature-list li svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* Media Relationships Section */
.media-relationships {
    padding: 100px 0;
    background: #ffffff;
}

.logo-carousel {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.logo-item img {
    max-width: 120px;
    max-height: 55px;
    width: auto;
    height: auto;
    object-fit: contain;
    opacity: 0.85;
    transition: all 0.3s;
}

.logo-item:hover img {
    opacity: 1;
    transform: scale(1.05);
}

.logo-placeholder {
    width: 120px;
    height: 60px;
    background: #e0e0e0;
    border-radius: 8px;
}

/* Case Studies Section */
.case-studies {
    padding: 100px 0;
    background: #f9fafb;
}

.case-studies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.case-study-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.case-study-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
    border-color: #d1d5db;
}

.case-study-image {
    position: relative;
    height: 320px;
    background: #2d3748;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.case-study-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.video-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    z-index: 10;
}

.badge-tags {
    padding: 8px 12px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    color: #ffffff;
    font-size: 12px;
    border-radius: 6px;
    max-width: 60%;
}

.badge-metric {
    padding: 8px 12px;
    background: #00DB8F;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border-radius: 6px;
    white-space: nowrap;
}

.play-button {
    cursor: pointer;
    transition: transform 0.3s;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-button:hover {
    transform: scale(1.1);
}

.play-button svg {
    width: 56px;
    height: 56px;
}

.play-button svg circle {
    r: 28;
    cx: 28;
    cy: 28;
}

.play-button svg path {
    transform: translate(2px, 0);
}

.case-study-content {
    padding: 36px;
}

.case-study-title {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.case-study-tags {
    font-size: 13px;
    color: #999;
    margin-bottom: 16px;
}

.case-study-description {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 24px;
}

.case-study-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.case-study-stats {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.stat-highlight {
    font-size: 13px;
    font-weight: 600;
    color: #00DB8F;
}

.case-study-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    color: #FF3B30;
    border: 1.5px solid #FF3B30;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
}

.case-study-button:hover {
    background: #FF3B30;
    color: #ffffff;
}

.case-study-button:hover svg path {
    stroke: #ffffff;
}

.case-study-button svg {
    width: 16px;
    height: 16px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: #ffffff;
}

.client-logos {
    display: flex;
    justify-content: center;
    gap: 48px;
    margin: 48px 0 64px;
    flex-wrap: wrap;
    align-items: center;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    cursor: pointer;
    transition: all 0.3s;
}

.client-logo img {
    max-height: 70px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.client-logo img[src*="svg"] {
    max-width: 200px;
}

.client-logo:hover img,
.client-logo.active img {
    opacity: 1;
}

.client-logo .logo-name {
    display: none;
}

.logo-abbr {
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
}

.logo-name {
    font-size: 14px;
    color: #666;
}

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

.testimonial-card {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 36px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.quote-icon {
    margin-bottom: 16px;
}

.metric-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 6px 12px;
    background: #00DB8F;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
}

.metric-badge.green {
    background: #00DB8F;
}

.stars {
    display: flex;
    gap: 4px;
    margin-bottom: 20px;
}

.stars svg {
    width: 16px;
    height: 16px;
}

.testimonial-text {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author {
    border-top: 1px solid #f0f0f0;
    padding-top: 16px;
}

.author-role {
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.author-company {
    font-size: 13px;
    color: #999;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #f5f5f7;
    text-align: center;
}

.footer-logo {
    margin-bottom: 16px;
    display: flex;
    justify-content: center;
}

.footer-logo img {
    max-width: 240px;
    height: auto;
    object-fit: contain;
}

.footer-tagline {
    font-size: 16px;
    color: #666;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 16px;
    font-size: 14px;
    color: #999;
}

.footer-links a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .hero-content {
        padding-right: 0;
    }

    .hero-form-container {
        position: static;
    }

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

    .features-grid {
        grid-template-columns: 1fr;
    }

    .case-studies-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

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

    .hero {
        padding: 60px 0 80px;
    }

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

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

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

    .section-title {
        font-size: 36px;
    }

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

    .why-choose,
    .media-relationships,
    .case-studies,
    .testimonials {
        padding: 70px 0;
    }

    .form-card {
        padding: 32px 24px;
    }

    .logo-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .logo-item {
        padding: 16px;
    }

    .logo-item img {
        max-width: 100px;
        max-height: 45px;
    }

    .client-logos {
        gap: 24px;
        margin: 32px 0 48px;
    }

    .client-logo img {
        max-height: 50px;
        max-width: 120px;
    }
}

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

    .stat-value {
        font-size: 28px;
    }

    .section-title {
        font-size: 28px;
    }

    .form-title {
        font-size: 20px;
    }

    .logo-carousel {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .logo-item {
        padding: 12px;
    }

    .logo-item img {
        max-width: 80px;
        max-height: 38px;
    }

    .client-logos {
        gap: 20px;
        margin: 24px 0 40px;
    }

    .client-logo img {
        max-height: 40px;
        max-width: 100px;
    }

    .client-logo img[src*="svg"] {
        max-width: 120px;
    }

    .footer-links {
        flex-direction: column;
    }
}
