:root {
    --primary-color: #e50914; /* Netflix Red */
    --primary-hover: #b20710;
    --bg-color: #141414;
    --bg-darker: #0b0b0b;
    --bg-lighter: #1f1f1f;
    --text-color: #ffffff;
    --text-muted: #b3b3b3;
    --border-color: #333;
    --success-color: #46d369;
    --container-width: 1200px;
    --header-height: 70px;
    --radius: 4px;
    --transition: all 0.3s ease;
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.text-red {
    color: var(--primary-color);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background-color: var(--primary-hover);
}

.btn-red {
    background-color: var(--primary-color);
    color: white;
}

.btn-red:hover {
    background-color: var(--primary-hover);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.2rem;
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header */
header {
    background-color: rgba(20, 20, 20, 0.95);
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(5px);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo a {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    letter-spacing: -1px;
}

.logo .highlight {
    color: var(--primary-color);
}

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

.nav-menu a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-menu a:hover {
    color: white;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: rgba(0,0,0,0.95);
    z-index: 1001;
    transition: var(--transition);
    display: flex;
    justify-content: center;
    align-items: center;
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-content {
    text-align: center;
    width: 100%;
    padding: 20px;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.mobile-menu-content ul {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.mobile-menu-content a {
    font-size: 1.5rem;
    font-weight: 600;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    position: relative;
    background-color: #141414; /* Fallback color */
    background-image: url('../assets/images/hero-bg.jpg'); /* Placeholder */
    background-size: cover;
    background-position: center;
    padding-top: var(--header-height);
}

/* Fallback/Gradient for hero if image missing */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(0,0,0,0.4) 0%, #141414 100%);
    z-index: 1;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, #141414 10%, rgba(20,20,20,0.6) 50%, rgba(20,20,20,0.8) 100%);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}


.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 400;
}

.hero-price {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
}

.hero-price .small {
    font-size: 1rem;
    color: var(--text-muted);
}

.hero-price .price {
    font-size: 3rem;
    font-weight: 800;
    color: white;
}

.hero-price .period {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.hero-ctas {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 2rem;
}

.hero-guarantee {
    display: flex;
    gap: 20px;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.hero-guarantee i {
    color: var(--success-color);
    margin-right: 5px;
}

/* Trust Bar */
.trust-bar {
    background-color: var(--bg-lighter);
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-bar .container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    color: var(--text-muted);
}

.trust-item i {
    font-size: 1.5rem;
    color: white;
}

.payment-icons {
    font-size: 2rem;
    gap: 15px;
}

/* Streaming Logos */
.streaming-logos-section {
    background-color: #000;
    padding: 40px 0;
    border-bottom: 1px solid #222;
}

.logos-title {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 25px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.logo-item {
    font-size: 1.5rem;
    font-weight: 800;
    color: #555;
    transition: var(--transition);
    cursor: default;
    display: flex;
    align-items: center;
    gap: 5px;
}

.logo-item:hover {
    color: white;
    transform: scale(1.1);
}

/* TMDB Carousel */
.carousel-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 20px 0;
    /* Mask gradient to fade edges */
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0%, black 5%, black 95%, transparent 100%);
}

.carousel-track {
    display: flex;
    gap: 20px;
    width: max-content;
    /* Animation duration will be set dynamically via JS based on width, but default is here */
    animation: scroll 60s linear infinite alternate; 
}

.carousel-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-100% + 100vw)); /* Scroll until the end touches the viewport right edge */
    }
}

.movie-card {
    width: 150px;
    flex-shrink: 0;
    transition: var(--transition);
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
}

.movie-card:hover {
    transform: scale(1.05);
    z-index: 10;
}

.movie-poster {
    width: 100%;
    height: 225px;
    object-fit: cover;
    border-radius: var(--radius);
}

.movie-title {
    font-size: 0.8rem;
    margin-top: 5px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
    color: #ccc;
}

.loading-carousel {
    color: var(--text-muted);
    width: 100%;
    text-align: center;
}

/* Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.step-card {
    padding: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    margin: 0 auto 20px;
}

.step-card h3 {
    margin-bottom: 15px;
}

.step-card p {
    color: var(--text-muted);
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* Force 4 columns side-by-side */
    gap: 20px;
}

.feature-card {
    background-color: var(--bg-lighter);
    padding: 25px; /* Slightly reduced padding to fit content better */
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
    height: 100%; /* Ensure equal height */
}

/* Responsive adjustments for Features */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 layout for tablets/smaller laptops */
    }
}


.feature-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.feature-card h3 {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature-card h3 i {
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    align-items: stretch;
}

.plans-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 24px;
}

.save-note {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 6px 10px;
    border-radius: 999px;
}

.switch-group {
    display: inline-flex;
    background-color: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 4px;
    border-radius: 999px;
    gap: 6px;
}

.switch-btn {
    background: transparent;
    color: var(--text-color);
    padding: 8px 14px;
    border-radius: 999px;
    border: none;
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

.switch-btn.active {
    background-color: var(--text-color);
    color: #000;
}

.plans-disclaimer {
    margin-top: 16px;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
}

.seo-text .section-subtitle {
    max-width: 900px;
    margin: 0 auto 20px;
}

.seo-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.seo-columns p {
    color: var(--text-muted);
    font-size: 1rem;
}

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

.plan-card {
    background-color: var(--bg-lighter);
    border-radius: 12px;
    padding: 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.plan-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.4);
    border-color: rgba(255,255,255,0.18);
}

/* Highlighted Plan (Anual) */
.plan-card.highlighted {
    border: 1.5px solid var(--primary-color);
    box-shadow: 0 0 0 2px rgba(229, 9, 20, 0.15);
    z-index: 10;
}

.plan-card.highlighted:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 24px rgba(229, 9, 20, 0.25);
}
 
.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(229, 9, 20, 0.12);
    color: var(--primary-color);
    padding: 6px 10px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 999px;
    border: 1px solid rgba(229, 9, 20, 0.35);
    letter-spacing: 0.02em;
}

.ribbon {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #e50914, #ff4b55);
    color: white;
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 800;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0.7); }
    70% { transform: translateX(-50%) scale(1.05); box-shadow: 0 0 0 10px rgba(229, 9, 20, 0); }
    100% { transform: translateX(-50%) scale(1); box-shadow: 0 0 0 0 rgba(229, 9, 20, 0); }
}

.plan-header {
    text-align: left;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.plan-price-box {
    margin-bottom: 20px;
}
 
.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.plan-price-main {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    margin: 6px 0 2px;
}

.plan-price-main .per {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 600;
}

.plan-price-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.plan-price {
    font-size: 2.6rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    display: inline-block;
    margin: 6px 0;
}

.plan-period {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

.old-price {
    text-decoration: line-through;
    color: #777;
    font-size: 0.95rem;
    display: block;
    margin-bottom: 4px;
}

.monthly-equivalent {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--text-muted);
    background-color: rgba(255,255,255,0.06);
    padding: 4px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,0.12);
    margin-top: 8px;
    font-weight: 600;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}

.plan-features li i {
    color: var(--success-color);
    font-size: 1rem;
}

.plan-card .btn {
    width: 100%;
    padding: 14px;
    font-size: 1.05rem;
    transition: var(--transition);
}

.plan-card.highlighted .btn {
    background-color: var(--primary-color);
}

.plan-card.highlighted .btn:hover {
    transform: translateY(-2px);
}

/* Responsive adjustments for Plans */
@media (max-width: 1024px) {
    .plans-grid {
        grid-template-columns: repeat(2, 1fr); /* 2x2 */
        gap: 30px;
    }
    
    .plan-card.highlighted {
        transform: scale(1);
        margin-top: 20px; /* Give space for ribbon */
    }
}


/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 30px;
    border-radius: var(--radius);
    position: relative;
}

.testimonial-stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    color: #ddd;
}

.testimonial-author {
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    background-color: #333;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #666;
}

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

.faq-item {
    margin-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-question.active i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    color: var(--text-muted);
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Guarantee Section */
.guarantee-section {
    background-color: var(--bg-lighter);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
}

.guarantee-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
}

.guarantee-icon {
    font-size: 3rem;
    color: var(--success-color);
}

/* Footer */
footer {
    padding: 60px 0 20px;
    background-color: black;
    color: var(--text-muted);
    border-top: 1px solid #222;
}

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

.footer-col h3 {
    color: white;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    font-size: 1.5rem;
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #222;
    font-size: 0.9rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--bg-lighter);
    padding: 40px;
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    position: relative;
    border: 1px solid var(--border-color);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-muted);
}

.checkout-header {
    text-align: center;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px;
    background-color: #333;
    border: 1px solid #444;
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.payment-methods {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.payment-method {
    background-color: #333;
    padding: 15px;
    border-radius: var(--radius);
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
}

.payment-method.selected {
    border-color: var(--success-color);
    background-color: rgba(70, 211, 105, 0.1);
}

.payment-method input {
    display: none;
}

.order-summary {
    margin: 20px 0;
    padding: 15px;
    background-color: rgba(0,0,0,0.2);
    border-radius: var(--radius);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.secure-info {
    text-align: center;
    margin-top: 15px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Success Modal */
.success-content {
    text-align: center;
}

.success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

.success-content h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
}

.success-content p {
    color: var(--text-muted);
    margin-bottom: 10px;
}

.success-content .btn {
    margin-top: 20px;
}

/* Custom Cursor */
body {
    cursor: default; /* Keep default but can be overridden if we want a custom dot */
}

/* Hover Effects */
a, button, .btn, .faq-question, .plan-card, .feature-card, .movie-card {
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(229, 9, 20, 0.4); /* Red glow */
}

.plan-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 30px rgba(0,0,0,0.6);
    border-color: var(--primary-color);
}

.feature-card:hover {
    transform: translateY(-5px);
    background-color: #2a2a2a;
    box-shadow: 0 10px 20px rgba(0,0,0,0.4);
}

.movie-card:hover {
    transform: scale(1.1);
    z-index: 20;
    box-shadow: 0 0 20px rgba(0,0,0,0.8);
    cursor: pointer;
}

.faq-question:hover {
    background-color: rgba(255,255,255,0.05);
    padding-left: 25px; /* Subtle slide right */
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 992px) {
    .hero-content h1 {
        font-size: 2.8rem;
    }
    
    .nav-menu, .header-actions .btn {
        display: none;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 60px;
    }

    .section {
        padding: 50px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
        padding: 0 10px;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-price {
        flex-direction: column;
        align-items: center;
        gap: 0;
    }

    .hero-price .price {
        font-size: 2.5rem;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 20px;
    }

    .btn-large {
        width: 100%;
        display: block;
        margin-bottom: 10px;
    }

    .plan-card.highlighted {
        transform: scale(1);
    }
    
    .guarantee-content {
        flex-direction: column;
        text-align: center;
    }

    .trust-bar .container {
        gap: 15px;
        justify-content: center;
    }

    .trust-item {
        font-size: 0.9rem;
    }

    .payment-icons {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }

    .modal-content {
        width: 95%;
        padding: 25px;
        max-height: 90vh;
        overflow-y: auto;
    }

    .steps-grid, .features-grid, .plans-grid, .testimonials-grid {
        grid-template-columns: 1fr; /* Force single column on mobile */
        padding: 0 10px;
    }

    .plan-card {
        padding: 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col ul {
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .logo a {
        font-size: 1.5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }
}
