@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

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

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.5;
    color: #1d1d1f;
    background-color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1024px;
    margin: 0 auto;
    padding: 0 22px;
}

header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 60px;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-size: 19px;
    font-weight: 700;
    color: #1d1d1f;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-text {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    white-space: nowrap;
}

header.scrolled .logo {
    color: #1d1d1f;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: #1d1d1f;
    text-decoration: none;
    font-size: 17px;
    font-weight: 400;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.nav-links a:hover {
    color: #0071e3;
}

.nav-actions {
    display: flex;
    gap: 16px;
    align-items: center;
}

.nav-btn {
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-btn.secondary {
    background: transparent;
    color: #1d1d1f;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-btn.secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.2);
}

.nav-btn.primary {
    background: #0071e3;
    color: white;
    border: 1px solid #0071e3;
}

.nav-btn.primary:hover {
    background: #0077ed;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

main {
    margin-top: 60px;
}

.hero {
    background-color: #000;
    color: #fff;
    text-align: center;
    padding: 80px 0 0;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

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

.hero-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 1.4;
    color: #a1a1a6;
    max-width: 580px;
    margin: 0 auto 40px;
}

.cta-buttons {
    margin-bottom: 60px;
}

.app-listing {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    perspective: 1000px;
}

.app-icon {
    width: 240px;
    height: 240px;
    flex-shrink: 0;
    transition: transform 0.4s ease;
}

.app-icon:hover {
    transform: rotateY(15deg) rotateX(10deg) scale(1.05);
}

.app-icon img {
    width: 100%;
    height: 100%;
    border-radius: 28px;
}



.features-carousel {
    margin: 40px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    mask-image: linear-gradient(to right, transparent 0%, black 15%, black 85%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 20px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    color: white;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.feature-pill svg {
    opacity: 0.9;
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    font-size: 21px;
    font-weight: 400;
    color: #86868b;
    margin-bottom: 60px;
    line-height: 1.38;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
}

.features-section {
    background-color: #f5f5f7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 80px;
    text-align: center;
}

.feature-item {
    padding: 20px;
}

.feature-icon {
    margin-bottom: 24px;
    color: #0071e3;
}

.feature-item-title {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.feature-item-text {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
}

.how-it-works-section {
    background-color: #fff;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 80px;
    text-align: center;
}

.step-item {
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: #0071e3;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 600;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(0, 113, 227, 0.3);
}

.step-title {
    font-size: 21px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.step-text {
    font-size: 17px;
    color: #86868b;
    line-height: 1.5;
}


.screenshots-section {
    background: #fff;
}

.screenshots-container {
    margin-top: 60px;
}

.screenshot-hero {
    margin-bottom: 80px;
    text-align: center;
}

.screenshot-hero .screenshot-image {
    max-width: 100%;
    width: 100%;
    max-width: 600px;
    margin-bottom: 30px;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
}

.screenshot-hero .screenshot-item:hover .screenshot-image {
    box-shadow: none;
}

.screenshots-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 450px;
    max-width: 600px;
    margin: 60px auto 80px;
}

.screenshots-grid .screenshot-item {
    position: absolute;
    transition: all 0.3s ease;
}

.screenshots-grid .screenshot-item:nth-child(1) {
    transform: rotate(-15deg) translateX(-120px);
    z-index: 1;
}

.screenshots-grid .screenshot-item:nth-child(2) {
    transform: rotate(0deg);
    z-index: 3;
}

.screenshots-grid .screenshot-item:nth-child(3) {
    transform: rotate(15deg) translateX(120px);
    z-index: 2;
}

.screenshots-grid .screenshot-item:hover {
    transform: scale(1.05) rotate(0deg) !important;
    z-index: 10 !important;
}

.screenshots-grid .screenshot-image {
    max-width: 200px;
    box-shadow: none;
    border-radius: 0;
}

.screenshots-grid .screenshot-item h4,
.screenshots-grid .screenshot-item p {
    display: none;
}

.screenshots-features {
    max-width: 800px;
    margin: 50px auto 0;
    padding: 0 20px;
}

.screenshots-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
}

.screenshots-features li {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.5;
    padding: 0;
}

.screenshots-features strong {
    font-weight: 600;
    color: #1f2937;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .screenshots-features ul {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .screenshots-features li {
        font-size: 15px;
    }
}

.new-features-section {
    margin-top: 80px;
}

.epg-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: white;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.epg-showcase-image img {
    width: 100%;
    border-radius: 16px;
}

.epg-showcase-text h3 {
    font-size: 28px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.epg-showcase-text p {
    font-size: 17px;
    color: #86868b;
    line-height: 1.6;
}

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

.other-feature {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.other-feature h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 12px;
}

.other-feature p {
    font-size: 16px;
    color: #86868b;
    line-height: 1.5;
}

@media (max-width: 992px) {
    .epg-showcase {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .other-features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.feature-showcase {
    display: flex;
    flex-direction: column;
    gap: 100px;
    margin-top: 80px;
}

.feature-row-centered {
    text-align: center;
}

.feature-row-centered .feature-image img {
    max-width: 80%;
    margin: 0 auto 24px auto;
    display: block;
}

.feature-row-centered .feature-text p {
    max-width: 580px;
    margin: 0 auto;
}

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

.feature-row-pip {
    background-color: #fafafa;
    border-radius: 30px;
    padding: 0;
    margin-top: 40px;
}

.feature-row-pip .feature-image img {
    transform: scale(1.0);
}

.feature-row-pip .feature-image .tilt-image[alt="Picture in Picture"] {
    transform: rotate(-2deg);
}

.feature-row.reverse {
    grid-template-columns: 1fr 1fr;
}

.feature-row.reverse .feature-text,
.feature-row.reverse .feature-text-premium {
    order: 2;
}

.feature-row.reverse .feature-image {
    order: 1;
}

.feature-text-premium {
    text-align: left;
}

.feature-text-premium h3 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.feature-text-premium p {
    font-size: 18px;
    color: #86868b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.premium-features-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.premium-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: #1d1d1f;
}

.premium-features-list svg {
    color: #0071e3;
}

.tilt-container {
    perspective: 1000px;
}

.tilt-image {
    transition: transform 0.5s ease;
    width: 100%;
    background: transparent;
}

/* Random tilt angles for different images */
.tilt-container .tilt-image[alt="EPG"] {
    transform: rotate(3deg);
}

.tilt-container .tilt-image[alt="Picture in Picture"] {
    transform: rotate(-2deg);
}

.tilt-container .tilt-image[alt="Catch-up TV"] {
    transform: rotate(2deg);
}

.tilt-container:hover .tilt-image {
    transform: rotateY(5deg) rotateX(10deg) scale(1.05) !important;
}

.feature-text {
    text-align: left;
}

.feature-text h3 {
    font-size: 32px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 16px;
}

.feature-text p {
    font-size: 18px;
    color: #86868b;
    line-height: 1.6;
}

.feature-image img {
    width: 100%;
    background: transparent;
}

@media (max-width: 768px) {
    .feature-row, .feature-row.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .feature-row.reverse .feature-text,
    .feature-row.reverse .feature-text-premium {
        order: 1;
    }

    .feature-row.reverse .feature-image {
        order: 2;
    }

    .feature-row-centered .feature-image img {
        max-width: 90%;
        min-width: 280px;
    }

    .feature-row-pip {
        padding: 40px;
    }

    .feature-row-pip .feature-image img {
        transform: none;
    }
}

.screenshot-item {
    text-align: center;
    transition: all 0.3s ease;
}

.screenshot-item:hover {
    transform: none;
}

.screenshot-image {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.screenshot-item:hover .screenshot-image {
    box-shadow: none;
}

.screenshot-item h4 {
    font-size: 20px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    line-height: 1.2;
}

.screenshot-item p {
    font-size: 16px;
    color: #86868b;
    line-height: 1.4;
    max-width: 280px;
    margin: 0 auto;
}

.benefits-section {
    background: #000;
    color: white;
}

.benefits-section .section-title {
    color: white;
}

.benefits-section .feature-card {
    background: #1c1c1e;
    border: 1px solid #2c2c2e;
}

.benefits-section .feature-card:hover {
    background: #2c2c2e;
    transform: translateY(-2px);
}

.benefits-section .feature-card h3 {
    color: white;
}

.benefits-section .feature-card p {
    color: #a1a1aa;
}

.benefits-section .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 60px auto 0;
}

@media (max-width: 768px) {
    .benefits-section .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        margin: 40px auto 0;
    }

    .benefits-section .feature-card {
        gap: 16px;
    }

    .benefits-section .feature-icon {
        width: 50px;
        height: 50px;
        border-radius: 12px;
    }

    .benefits-section .feature-card h3 {
        font-size: 20px;
        margin: 0 0 10px 0;
    }

    .benefits-section .feature-card p {
        font-size: 15px;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    .benefits-section .features-grid {
        gap: 24px;
        margin: 32px auto 0;
    }

    .benefits-section .feature-card {
        gap: 12px;
    }

    .benefits-section .feature-icon {
        width: 44px;
        height: 44px;
        border-radius: 10px;
    }

    .benefits-section .feature-icon svg {
        width: 24px;
        height: 24px;
    }

    .benefits-section .feature-card h3 {
        font-size: 18px;
        margin: 0 0 8px 0;
    }

    .benefits-section .feature-card p {
        font-size: 14px;
        line-height: 1.3;
    }
}

.benefits-section .feature-card {
    background: transparent;
    border: none;
    padding: 0;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
}

.benefits-section .feature-card:hover {
    background: transparent;
    transform: none;
}

.benefits-section .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #007AFF, #0056CC);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefits-section .feature-content {
    flex: 1;
}

.benefits-section .feature-card h3 {
    color: white;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 12px 0;
}

.benefits-section .feature-card p {
    color: #8e8e93;
    font-size: 16px;
    line-height: 1.5;
    margin: 0;
}

.benefits-section .feature-title {
    display: none;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 60px;
    margin-top: 80px;
}

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

.benefit-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #0071e3, #2D5EFF);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin: 0 auto 24px;
}

.benefit-icon svg {
    width: 50px;
    height: 50px;
}

.benefit-item h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.17;
}

.benefit-item p {
    font-size: 17px;
    color: #a1a1a6;
    line-height: 1.47;
}

.faq-section {
    background: #fff;
}

.reviews-section {
    background: #f5f5f7;
}

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

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.faq-question {
    font-weight: 600;
    font-size: 19px;
    padding: 24px;
    color: #1d1d1f;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question::after {
    content: '+';
    font-size: 24px;
    color: #86868b;
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question::after {
    content: '−';
    transform: rotate(180deg);
}

.faq-question:hover {
    background: #f5f5f7;
}

.faq-answer {
    padding: 0 24px 24px;
    color: #86868b;
    font-size: 17px;
    line-height: 1.47;
    display: none; /* Initially hidden */
}



.reviews-section {
    background-color: #f5f5f7;
    padding: 100px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin-top: 60px;
}

.review-card {
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
    position: relative;
    padding-bottom: 40px;
}

.review-card:nth-child(4n+1) {
    animation-name: float-1;
    animation-duration: 6s;
    animation-delay: 0s;
}

.review-card:nth-child(4n+2) {
    animation-name: float-2;
    animation-duration: 7s;
    animation-delay: 1s;
}

.review-card:nth-child(4n+3) {
    animation-name: float-3;
    animation-duration: 5s;
    animation-delay: 0.5s;
}

.review-card:nth-child(4n+4) {
    animation-name: float-4;
    animation-duration: 6.5s;
    animation-delay: 1.5s;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.review-stars {
    font-size: 16px;
    color: #ffb400;
}

.review-author {
    font-size: 15px;
    font-weight: 600;
    color: #1d1d1f;
}

.review-body p {
    font-size: 16px;
    color: #6e6e73;
    line-height: 1.5;
}



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

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

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

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

.pricing-section {
    background-color: #000;
    color: #fff;
}

.pricing-section .section-title,
.pricing-section .section-subtitle {
    color: #fff;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 800px;
    margin: 60px auto 0;
}

.pricing-card {
    background: #1c1c1e;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    border: 1px solid #2c2c2e;
    transition: all 0.3s ease;
}

.pricing-card.featured {
    background: #0071e3;
    color: white;
    transform: scale(1.05);
    border: none;
    box-shadow: 0 10px 40px rgba(0, 113, 227, 0.3);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured .price-description,
.pricing-card.featured .pricing-features li {
    color: white;
}

.pricing-card.featured .price-period,
.pricing-card.featured .price-alternative {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #f5f5f7;
}

.pricing-header .price {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #f5f5f7;
}

.pricing-header .price-period {
    font-size: 16px;
    font-weight: 500;
    color: #86868b;
}

.pricing-header .price-alternative {
    font-size: 14px;
    color: #86868b;
    margin-bottom: 8px;
}

.pricing-header .price-description {
    font-size: 16px;
    color: #86868b;
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 40px;
    text-align: left;
    display: inline-block;
}

.pricing-features li {
    font-size: 17px;
    margin-bottom: 16px;
    color: #f5f5f7;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .pricing-card.featured {
        transform: none;
    }
}


.final-cta {
    background: #ffffff;
    padding: 120px 0;
    overflow: hidden;
}

.final-cta-content {
    max-width: 500px;
    margin: 0;
    text-align: left;
}

.app-store-listing {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 40px;
}

.app-store-icon {
    width: 100px;
    height: 100px;
    border-radius: 22px;
    flex-shrink: 0;
}

.app-store-info {
    text-align: left;
}

.app-store-title {
    font-size: 24px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 4px;
}

.app-store-subtitle {
    font-size: 17px;
    color: #86868b;
    margin-bottom: 8px;
}

.app-store-ratings {
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-store-ratings .stars {
    color: #ffb400;
    font-size: 16px;
}

.app-store-ratings .rating-count {
    font-size: 14px;
    color: #86868b;
}

.final-cta-text {
    text-align: left;
}

.final-cta h2 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1d1d1f;
    line-height: 1.1;
}

.final-cta p {
    font-size: 21px;
    color: #86868b;
    margin-bottom: 40px;
    line-height: 1.4;
}

.final-cta .cta-button {
    background: #0071e3;
    color: white;
    font-size: 17px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: 28px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.final-cta .cta-button:hover {
    background: #0077ed;
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .final-cta-content {
        margin: 0 auto;
        text-align: center;
    }
    .app-store-listing {
        justify-content: center;
    }
    .final-cta-text {
        text-align: center;
    }
}

footer {
    background: #f5f5f7;
    color: #1d1d1f;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    text-align: left;
}

.footer-section h4 {
    font-size: 12px;
    font-weight: 600;
    color: #1d1d1f;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-section a {
    color: #424245;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 17px;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0071e3;
}

.copyright {
    border-top: 1px solid #d2d2d7;
    padding-top: 20px;
    text-align: center;
    font-size: 12px;
    color: #86868b;
}

@media (max-width: 1068px) {
    .container {
        padding: 0 40px;
    }
    
    .hero-title {
        font-size: 56px;
    }
    
    .hero-subtitle {
        font-size: 22px;
    }
}

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

    .hero {
        padding: 80px 0 0;
    }

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

    .hero-subtitle {
        font-size: 20px;
        max-width: 480px;
    }
    
    .nav-links, .nav-btn.secondary {
        display: none;
    }
    
    .nav-actions {
        gap: 8px;
    }
    
    .nav-btn {
        padding: 8px 16px;
        font-size: 14px;
        white-space: nowrap;
    }
    
    .logo {
        font-size: 16px;
    }

    .screenshot-hero .screenshot-image {
        max-width: 350px;
        margin-bottom: 40px;
    }

    .screenshots-grid {
        height: 350px;
        margin: 40px auto 60px;
    }

    .screenshots-grid .screenshot-item:nth-child(1) {
        transform: rotate(-10deg) translateX(-80px);
    }

    .screenshots-grid .screenshot-item:nth-child(3) {
        transform: rotate(10deg) translateX(80px);
    }

    .screenshots-grid .screenshot-image {
        max-width: 150px;
    }
    
    .logo img {
        height: 32px !important;
    }

    .hero-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 60px 0 0;
    }

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

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

    .feature-row-centered .feature-image img {
        max-width: 95%;
        min-width: 260px;
    }
}

.epg-feature-section {
    background-color: #f5f5f7;
    padding: 120px 0;
    overflow: hidden;
}

.epg-feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.epg-text-content {
    text-align: left;
}

.epg-title {
    font-size: 48px;
    font-weight: 700;
    color: #1d1d1f;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

.epg-subtitle {
    font-size: 24px;
    font-weight: 500;
    color: #86868b;
    margin-bottom: 24px;
}

.epg-description {
    font-size: 18px;
    line-height: 1.6;
    color: #6e6e73;
    max-width: 480px;
    margin-bottom: 40px;
}

.epg-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.epg-feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 17px;
    font-weight: 500;
    color: #1d1d1f;
}

.epg-feature-list svg {
    color: #0071e3;
    flex-shrink: 0;
}

.epg-image-content {
    position: relative;
}

.epg-image {
    width: 100%;
    max-width: 450px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    transform: rotate(3deg) scale(1.05);
    transition: all 0.3s ease;
}

.epg-image:hover {
    transform: rotate(0deg) scale(1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

@media (max-width: 992px) {
    .epg-feature-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .epg-text-content {
        order: 2;
    }

    .epg-image-content {
        order: 1;
    }

    .epg-description {
        margin-left: auto;
        margin-right: auto;
    }

    .epg-feature-list {
        justify-content: center;
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
    }
}

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

    .epg-subtitle {
        font-size: 20px;
    }

    .epg-feature-list {
        flex-direction: column;
        align-items: flex-start;
        max-width: 300px;
        margin: 0 auto;
    }
}
