/*
Theme Name: InternetWiFi
Theme URI: https://internetwifi.id
Author: Yudi
Author URI: https://fb.com/beletz
Description: A high-performance SEO for internet wifi.
Version: 1.2.0
Text Domain: internetwifi
*/

/* --- Variables --- */
:root {
    /* Premium Identity */
    --primary-color: #0f172a;
    /* Slate 900 */
    --primary-light: #334155;
    /* Slate 700 */
    --primary-dark: #020617;
    /* Slate 950 */
    --accent-color: #3b82f6;
    /* Blue 500 */
    --accent-glow: rgba(59, 130, 246, 0.5);

    /* Typography */
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'DM Sans', 'Segoe UI', system-ui, sans-serif;

    /* Colors */
    --text-main: #1e293b;
    --text-muted: #64748b;
    --bg-body: #f8fafc;
    --bg-white: #ffffff;
    --bg-surface: #ffffff;

    /* Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-body);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-top: 0;
    line-height: 1.25;
    letter-spacing: -0.025em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 800;
}

h2 {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* --- Components --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-color), #2563eb);
    color: #fff;
    border-radius: 50px;
    /* Pill shape */
    font-weight: 700;
    font-size: 1.1rem;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px var(--accent-glow);
    transition: var(--transition);
    text-transform: capitalize;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px var(--accent-glow);
    background: linear-gradient(135deg, #2563eb, #1d4ed8);
    color: white;
}

.card {
    background: var(--bg-surface);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

/* --- Blur / Glassmorphism --- */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* --- Header --- */
/* --- Header --- */
.site-header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.site-branding a {
    text-decoration: none;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
}

.brand-text {
    display: flex;
    align-items: center;
    gap: 4px;
}

.brand-box {
    background: var(--primary-color);
    color: white;
    padding: 0px 8px;
    border-radius: 6px;
    font-size: 1.5rem;
    line-height: 1.4;
    display: inline-block;
}

/* Navigation */
.site-navigation {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 1.5rem;
}

.menu a {
    color: var(--text-main);
    font-weight: 500;
    font-size: 0.95rem;
}

.menu a:hover {
    color: var(--accent-color);
}

.btn-wa {
    background: #25D366;
    /* WhatsApp Green */
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4);
    font-size: 0.95rem;
    padding: 0.75rem 1.5rem;
}

.btn-wa:hover {
    background: #128C7E;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6);
}

.mobile-menu-toggle {
    display: none;
    /* Hidden on desktop */
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

/* X Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* --- Hero Section --- */
.pseo-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 50/50 Split */
    gap: 3rem;
    align-items: center;
}

.hero-content {
    text-align: left;
    position: relative;
    z-index: 2;
    padding-right: 2rem;
}

.hero-image {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: flex-end;
}

.hero-image img {
    width: 100%;
    max-width: 500px;
    /* Prevent it from being too huge */
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: perspective(1000px) rotateY(-8deg);
    /* Slanted look */
    transition: var(--transition);
}

.hero-image img:hover {
    transform: perspective(1000px) rotateY(0deg);
}

/* Abstract background shapes */
.pseo-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.pseo-hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    /* Reduced size as requested */
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.pseo-hero .lead {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.hero-stats span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}


html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
    /* Fix sticky header covering anchors */
}

/* --- Features Grid --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 10;
}

.features-grid.hero-overlap {
    margin-top: -3rem;
}

.feature-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: var(--radius);
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    padding: 1rem;
    background: #eff6ff;
    border-radius: 50%;
    color: var(--accent-color);
}

/* --- Layout --- */
.page-content {
    padding: 5rem 0;
}

.sidebar {
    position: relative;
}

.sticky-cta {
    position: sticky;
    top: 6rem;
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    border: 1px solid #e2e8f0;
}

.sticky-cta h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.sticky-cta ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.sticky-cta li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
    font-size: 0.95rem;
}

/* --- Footer --- */
footer.site-footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-brand p {
    line-height: 1.6;
}

footer h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
}

footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer li {
    margin-bottom: 0.75rem;
}

footer a {
    color: #cbd5e1;
    transition: color 0.2s;
}

footer a:hover {
    color: white;
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
}

/* --- Utilities --- */
.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

.text-gradient {
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
    .header-container {
        display: flex;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-content {
        text-align: center;
    }

    .hero-image {
        order: -1;
        /* Image on top for mobile */
    }

    .hero-image img {
        transform: none;
    }

    .hero-stats {
        justify-content: center;
    }

    .site-navigation {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        border-top: 1px solid #f1f5f9;
    }

    .site-navigation.open {
        display: flex;
    }

    .site-navigation .menu {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .site-navigation .menu li {
        border-bottom: 1px solid #f1f5f9;
        width: 100%;
    }

    .site-navigation .menu a {
        padding: 1rem 0;
        display: block;
        font-size: 1.1rem;
    }

    .site-navigation .btn-wa {
        margin-top: 1rem;
        width: 100%;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    h1 {
        font-size: 2.5rem;
    }

    .pseo-hero h1 {
        font-size: 2.75rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .features-grid {
        margin-top: 2rem;
        grid-template-columns: 1fr;
    }

    .row {
        flex-direction: column;
    }

    .col-main,
    .col-sidebar {
        width: 100%;
        flex: auto;
    }

    .sticky-cta {
        position: static;
        margin-top: 2rem;
        box-shadow: none;
        background: #f1f5f9;
        padding: 1.5rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 0.5rem !important;
    }
}

/* --- Front Page Specifics --- */
.hero-stats span {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.buttons {
    display: grid;
    gap: 0.5rem;
}

.table-responsive {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* --- Content Expansion Styles --- */
.content-section {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.content-section p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #334155;
    margin-bottom: 1.5rem;
}

.content-section h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f1f5f9;
}

.section-desc {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-muted);
}

/* Table of Contents */
.toc-container {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 1.5rem;
    padding-left: 2rem;
}

.toc-container h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.toc-list {
    list-style: none;
    padding: 0;
    margin: 0;
    columns: 2;
}

.toc-list li {
    margin-bottom: 0.5rem;
}

.toc-list a {
    text-decoration: none;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.toc-list a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

/* Provider Reviews */
.divider {
    border: 0;
    height: 1px;
    background: #e2e8f0;
    margin: 3rem 0;
}

.provider-review-block h3 {
    font-size: 1.75rem;
    color: var(--primary-color);
}

.provider-review-block h4 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
    color: var(--accent-color);
}

.provider-review-block ul {
    margin-bottom: 1.5rem;
}

.provider-review-block li {
    margin-bottom: 0.75rem;
}

/* Step Guide */
.step-guide {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: #cbd5e1;
    line-height: 1;
}

.step-item h4 {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
}

.step-item p {
    margin: 0;
    font-size: 1rem;
}

.comparison-box {
    background: #eff6ff;
    padding: 2rem;
    border-radius: var(--radius);
    border-left: 4px solid var(--accent-color);
}

/* --- Provider Page Layout --- */
.provider-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .toc-list {
        columns: 1;
    }

    .pseo-hero h1 {
        font-size: 2.5rem;
        /* Adjusted for mobile */
    }

    /* Fix Provider Page Layout on Mobile */
    .provider-layout {
        display: block;
        /* Stack vertically */
    }

    .col-sidebar {
        margin-bottom: 2rem;
    }

    .sticky-cta.toc-container {
        position: static !important;
        top: auto !important;
        margin-bottom: 2rem;
    }

    .pseo-hero {
        padding: 3rem 0;
    }

}

/* --- Programmatic Landing Page Specifics (Design V2) --- */
.landing-page {
    background-color: var(--bg-body);
    overflow-x: hidden;
}

.landing-section {
    padding: 6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.02);
    position: relative;
}

.landing-section:nth-child(even) {
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, rgba(59, 130, 246, 0.03) 0, transparent 50%),
        radial-gradient(at 50% 0%, rgba(15, 23, 42, 0.02) 0, transparent 50%);
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    padding-bottom: 1.25rem;
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(to right, var(--accent-color), #60a5fa);
    border-radius: 10px;
}

/* Link Cloud Refinement (Design V2) */
.link-cloud {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-top: 2rem;
}

.tag-link {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 1.25rem;
    text-align: center;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-main);
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-decoration: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.02);
}

.tag-link::before {
    content: '📍';
    margin-right: 8px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.tag-link:hover {
    border-color: var(--accent-color);
    background: #fff;
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.15);
    color: var(--accent-color);
}

/* AEO Block (Design V2) */
.aeo-block {
    background: #fff;
    padding: 3.5rem;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.aeo-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(to bottom, var(--accent-color), #60a5fa);
}

.aeo-label-container {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.25rem;
}

.aeo-label {
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.1);
    padding: 4px 12px;
    border-radius: 50px;
}

.aeo-badge {
    background: #22c55e;
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.aeo-answer {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--primary-color);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Portfolio Section (Design V7) */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.portfolio-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.portfolio-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.05);
}

.portfolio-caption {
    padding: 1.25rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    text-align: center;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    background: #fff;
}

@media (max-width: 768px) {
    .portfolio-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portfolio-item img {
        height: 250px;
    }
}

/* Grid adjustments for generic sections */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

/* Mobile Overrides (Keep within Media Query) */
@media (max-width: 768px) {
    .landing-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

    .aeo-block {
        padding: 2.5rem 1.75rem;
    }

    .aeo-answer {
        font-size: 1.15rem;
    }

    .link-cloud {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .tag-link {
        padding: 1rem;
        font-size: 0.9rem;
    }
}

/* Video Section (Design V7/V8) */
.video-container-premium {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.video-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    background: #000;
}

.video-thumb {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.video-wrapper:hover .video-thumb {
    transform: scale(1.05);
    opacity: 0.6;
}

.play-button-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.play-circle {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 2;
    transition: all 0.4s ease;
}

.play-triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

.video-wrapper:hover .play-circle {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: scale(1.15);
}

/* Pulsing Ripple Effect */
.play-ripple {
    position: absolute;
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: ripple 2s infinite;
    z-index: 1;
}

@keyframes ripple {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.video-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: all 0.4s ease;
}

.video-wrapper:hover .video-overlay-text {
    opacity: 1;
    bottom: 3rem;
}

@media (max-width: 768px) {
    .play-circle {
        width: 70px;
        height: 70px;
    }

    .play-triangle {
        border-width: 12px 0 12px 20px;
    }
}

/* CTA Section Premium (Design V15) */
.cta-card-premium {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    border-radius: 40px;
    padding: 5rem 2rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: var(--accent-color);
    filter: blur(100px);
    opacity: 0.1;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--accent-light);
    backdrop-filter: blur(5px);
}

.cta-card-premium h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: #fff;
    line-height: 1.2;
}

.cta-card-premium p {
    font-size: 1.25rem;
    color: #a0aec0;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.btn-cta-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: #fff;
    padding: 1.5rem 3.5rem;
    border-radius: 100px;
    font-size: 1.4rem;
    font-weight: 800;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 2;
}

.btn-cta-premium:hover {
    transform: scale(1.05);
    background: var(--accent-dark);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.pulse {
    animation: cta-pulse 2s infinite;
}

@keyframes cta-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 242, 122, 0.4);
    }

    70% {
        box-shadow: 0 0 0 20px rgba(0, 242, 122, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 242, 122, 0);
    }
}

.cta-note {
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .cta-card-premium h2 {
        font-size: 2.2rem;
    }

    .btn-cta-premium {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
        width: 100%;
        justify-content: center;
    }
}

.provider-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.provider-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.provider-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    border-color: var(--accent-color);
}

.provider-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.provider-card .positioning {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    min-height: 2.5em;
}

.provider-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
    flex-grow: 1;
}

.provider-features li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-main);
}

.provider-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 900;
}

.provider-price-info {
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.provider-price-info strong {
    font-size: 1.3rem;
    color: var(--primary-color);
    display: block;
    margin-top: 4px;
}

.provider-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.btn-outline {
    background: transparent;
    border: 1px solid #e2e8f0;
    color: var(--text-main);
    text-align: center;
    padding: 0.75rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-outline:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
    background: rgba(59, 130, 246, 0.05);
}

.btn-solid {
    background: var(--accent-color);
    color: #fff;
    text-align: center;
    padding: 1rem;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-solid:hover {
    background: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .provider-card {
        padding: 2rem 1.5rem;
    }
}
/* --- Footer CTA Premium (Design V28) --- */
.footer-cta-premium {
    padding: 6rem 0 2rem;
    background: var(--bg-body);
    position: relative;
    z-index: 10;
}

.cta-box-glass {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-radius: 30px;
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-box-glass::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.cta-title {
    color: #fff !important;
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -2px;
}

.cta-subtitle {
    color: #94a3b8 !important;
    font-size: 1.25rem;
    max-width: 650px;
    margin: 0 auto 3.5rem;
    line-height: 1.7;
}

.btn-wa-premium {
    background: #25D366;
    color: #fff !important;
    padding: 1.25rem 3rem;
    border-radius: 100px;
    font-size: 1.3rem;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    text-decoration: none;
}

.btn-wa-premium:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 45px rgba(37, 211, 102, 0.6);
    background: #20BA5A;
}

.btn-icon {
    font-size: 1.6rem;
}

@media (max-width: 768px) {
    .cta-box-glass {
        padding: 4rem 1.5rem;
        margin: 0 10;
    }
    .cta-title {
        font-size: 2.2rem;
        letter-spacing: -1px;
    }
    .cta-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }
    .btn-wa-premium {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        width: 100%;
        justify-content: center;
    }
}

/* --- Floating WhatsApp CTA (Design V29) --- */
.floating-cta-bar {
    position: fixed;
    bottom: 0rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    width: 100%;
    max-width: 450px;
    padding: 0 1rem;
    pointer-events: none;
}

.floating-cta-inner {
    background: #2d3748;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    border-radius: 20px;
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: auto;
}

.cta-text {
    display: flex;
    flex-direction: column;
}

.cta-main-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.2;
}

.cta-sub-text {
    color: #a0aec0;
    font-size: 0.85rem;
    font-weight: 500;
}

.btn-floating-wa {
    background: #25d366;
    color: #fff !important;
    padding: 0.6rem 1.4rem;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.btn-floating-wa:hover {
    transform: translateY(-2px);
    background: #20ba5a;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.5);
}

@media (max-width: 480px) {
    .floating-cta-bar {
        bottom: 1.5rem;
    }
    .floating-cta-inner {
        padding: 0.75rem 1rem;
    }
    .cta-main-text {
        font-size: 1rem;
    }
    .cta-sub-text {
        font-size: 0.75rem;
    }
    .btn-floating-wa {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
