/* --- Base Variables --- */
:root {
    --bg-color: #09090b;
    --bg-surface: #111115;
    --text-main: #f3f4f6;
    --text-muted: #a1a1aa;
    
    /* Logo Colors */
    --color-primary: #fb6000;
    --color-primary-glow: rgba(251, 96, 0, 0.4);
    
    --color-secondary: #ff9155;
    --color-secondary-glow: rgba(255, 145, 85, 0.4);

    --color-green: #34d399;
    --color-red: #f87171;

    --font-primary: 'Outfit', sans-serif;
    
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Global --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

html {
    scroll-padding-top: 90px;
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: var(--font-primary);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* --- Typography Utilities --- */
.text-gradient {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary { color: var(--color-primary); }
.text-secondary { color: var(--color-secondary); }
.text-green { color: var(--color-green); }
.text-muted { color: var(--text-muted); }

/* --- Components --- */

/* Glassmorphism Card */
.glass-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0.01) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal), border-color var(--transition-normal);
}
.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, var(--color-primary-glow), transparent 40%);
    opacity: 0.1;
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(251, 96, 0, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 30px rgba(251, 96, 0, 0.15);
}

/* Buttons */
button {
    font-family: var(--font-primary);
    cursor: pointer;
    border: none;
    outline: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all var(--transition-normal);
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-primary), #e05400);
    color: white;
    padding: 0.85rem 1.75rem;
    box-shadow: 0 4px 15px var(--color-primary-glow), inset 0 1px 0 rgba(255,255,255,0.2);
}

.btn-primary:hover {
    transform: scale(1.02) translateY(-2px);
    box-shadow: 0 8px 25px rgba(251, 96, 0, 0.6), inset 0 1px 0 rgba(255,255,255,0.3);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 0.85rem 1.75rem;
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    padding: 0.85rem 1.75rem;
}

.btn-outline:hover {
    background: rgba(251, 96, 0, 0.1);
    box-shadow: 0 0 20px var(--color-primary-glow);
}

.btn-login {
    background: rgba(251, 96, 0, 0.1);
    border: 1px solid rgba(251, 96, 0, 0.3);
    color: var(--color-secondary);
    padding: 0.6rem 1.25rem;
    border-radius: 20px;
}
.btn-login:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 0 15px var(--color-primary-glow);
}

.w-full {
    width: 100%;
}

/* --- Layout --- */

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background: rgba(9, 9, 11, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}
.logo-img {
    height: 36px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px var(--color-primary-glow));
}

.nav-links {
    display: flex;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-links a:hover, .nav-links a.active {
    color: white;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: all var(--transition-fast);
    transform: translateX(-50%);
    box-shadow: 0 0 8px var(--color-primary);
}

.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    color: white;
    font-size: 1.75rem;
    padding: 0;
}

.mobile-links {
    display: none;
    flex-direction: column;
    background: var(--bg-surface);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.mobile-links.open {
    display: flex;
}
.mobile-links a {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-weight: 500;
}
.mobile-links a.active {
    color: var(--color-primary);
}

/* Sections */
main {
    min-height: 100vh;
    padding-top: 90px;
    max-width: 1200px;
    margin: 0 auto;
}

.page-section {
    padding: 5rem 2rem;
    overflow-x: hidden;
    max-width: 100vw;
    box-sizing: border-box;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    font-weight: 800;
}
.section-header p {
    color: var(--text-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Pages --- */

/* --- Hero Section (Premium Layout) --- */
.hero-section {
    position: relative;
    padding-top: 20px;
    padding-bottom: 40px;
    overflow: hidden;
}

/* Background Effects */
.hero-mesh-bg {
    position: absolute;
    inset: 0;
    z-index: -2;
    background: 
        radial-gradient(at 0% 0%, rgba(251, 96, 0, 0.15) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(255, 145, 85, 0.1) 0px, transparent 50%),
        radial-gradient(at 50% 50%, rgba(52, 211, 153, 0.05) 0px, transparent 60%);
    opacity: 0.8;
}
.hero-grid-overlay {
    position: absolute;
    inset: 0;
    z-index: -1;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at center, black 40%, transparent 80%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.motto-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1.5rem;
    background: rgba(251, 96, 0, 0.1);
    border: 1px solid rgba(251, 96, 0, 0.3);
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px rgba(251, 96, 0, 0.15);
}
.motto-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--color-primary);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0% { transform: scale(0.95); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(0.95); opacity: 1; }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 90%;
}

.hero-action-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.btn-glow-primary {
    background: linear-gradient(135deg, var(--color-primary), #e05400);
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 16px;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(251, 96, 0, 0.4);
    transition: all 0.3s;
}
.btn-glow-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(251, 96, 0, 0.6);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.hero-trust-link {
    transition: transform 0.3s ease, opacity 0.3s ease;
    text-decoration: none;
    cursor: pointer;
}
.hero-trust-link:hover {
    transform: translateY(-3px);
    opacity: 0.9;
}
.avatars {
    display: flex;
}
.avatars img {
    width: 40px; height: 40px;
    border-radius: 50%;
    border: 2px solid var(--bg-surface);
    margin-left: -15px;
    background: rgba(255,255,255,0.05);
}
.avatars img:first-child { margin-left: 0; }

.trust-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.stars {
    color: var(--color-primary);
    font-size: 0.9rem;
}
.trust-text span {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.visual-card {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 1;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, rgba(255,255,255,0.03), rgba(255,255,255,0.01));
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}
.main-rank-img {
    width: 75%;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
    animation: float-main 6s ease-in-out infinite;
    z-index: 2;
}
@keyframes float-main {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}
.visual-badge {
    position: absolute;
    background: rgba(17, 17, 21, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
    z-index: 3;
}
.top-badge {
    top: 15%;
    right: -5%;
    animation: float-main 5s ease-in-out infinite reverse;
}
.bottom-badge {
    bottom: 15%;
    left: -5%;
    animation: float-main 7s ease-in-out infinite;
}
.visual-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--color-primary-glow) 0%, transparent 70%);
    z-index: 1;
    filter: blur(50px);
}



/* About */
.about-container {
    display: flex;
    align-items: center;
    gap: 5rem;
}
.about-text {
    flex: 1;
}
.about-text h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}
.about-text p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
    font-size: 1.15rem;
}
.feature-list {
    margin-top: 2.5rem;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    font-size: 1.05rem;
}
.feature-list i {
    font-size: 1.5rem;
    margin-top: 2px;
}
.about-image {
    flex: 1;
    display: flex;
    justify-content: center;
}
.about-stats {
    text-align: center;
    padding: 4rem 3rem;
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.about-logo {
    width: 180px;
    height: auto;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 5px 15px rgba(251, 96, 0, 0.3));
}
.shield-icon {
    background: linear-gradient(135deg, rgba(251,96,0,0.2), rgba(255,145,85,0.1));
    width: 120px; height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    border: 1px solid rgba(251, 96, 0, 0.3);
    box-shadow: 0 0 30px var(--color-primary-glow);
}
.shield-icon i {
    font-size: 4.5rem;
    color: var(--color-primary);
}
.about-stats h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}
.faq-item:hover {
    background: rgba(255, 255, 255, 0.04);
}
.faq-question {
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.15rem;
}
.faq-question i {
    transition: transform 0.3s ease;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem;
    border-radius: 50%;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 1.75rem;
}
.faq-answer p {
    color: var(--text-muted);
    padding-bottom: 1.75rem;
    font-size: 1.05rem;
}
.faq-item.active {
    border-color: rgba(251, 96, 0, 0.4);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    background: linear-gradient(180deg, rgba(251,96,0,0.05) 0%, rgba(255,255,255,0.02) 100%);
}
.faq-item.active .faq-question i {
    transform: rotate(180deg);
    background: var(--color-primary);
    color: white;
}

/* --- Contact Section (Bento Box) --- */
.bento-container {
    max-width: 1000px;
    margin: 0 auto;
}
.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
    gap: 1.5rem;
    width: 100%;
}
.bento-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    text-decoration: none;
}
.bento-item:hover {
    transform: translateY(-5px);
}
.bento-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    z-index: 2;
}
.bento-item i {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    transition: transform 0.3s ease;
}
.bento-item:hover i {
    transform: scale(1.1);
}
.bento-item h3 {
    font-size: 1.5rem;
    color: white;
    font-weight: 700;
}
.bento-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
}

/* WhatsApp Large Card */
.bento-whatsapp {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(37,211,102,0.08), rgba(37,211,102,0.01));
    border-color: rgba(37,211,102,0.15);
    justify-content: center;
}
.bento-whatsapp .bento-content {
    align-items: flex-start;
}
.bento-icon-wrapper {
    background: #25D366;
    color: white;
    width: 80px; height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(37,211,102,0.4);
}
.bento-icon-wrapper i {
    font-size: 3rem;
    margin: 0;
}
.bento-whatsapp h3 {
    font-size: 2.5rem;
}
.bento-whatsapp p {
    font-size: 1.15rem;
}
.status-indicator {
    position: absolute;
    top: 2rem; right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0,0,0,0.4);
    padding: 0.5rem 1rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}
.ping {
    width: 10px; height: 10px;
    background: #25D366;
    border-radius: 50%;
    position: relative;
}
.ping::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: #25D366;
    border-radius: 50%;
    animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
@keyframes ping {
    75%, 100% { transform: scale(2); opacity: 0; }
}
.status-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: #25D366;
}
.bento-whatsapp:hover {
    border-color: #25D366;
    box-shadow: 0 20px 40px rgba(37,211,102,0.15);
}

/* Hover colors for other socials */
.bento-instagram:hover {
    background: linear-gradient(135deg, rgba(131,58,180,0.1), rgba(253,29,29,0.1), rgba(252,176,69,0.1));
    border-color: #E1306C;
}
.bento-instagram:hover i { color: #E1306C; }

.bento-tiktok:hover {
    background: linear-gradient(135deg, rgba(0,242,254,0.1), rgba(254,0,94,0.1));
    border-color: #00f2fe;
}
.bento-tiktok:hover i { color: #00f2fe; }

.bento-youtube {
    grid-column: span 2;
}
.bento-youtube:hover {
    background: rgba(255,0,0,0.05);
    border-color: #ff0000;
}
.bento-youtube:hover i { color: #ff0000; }
/* Pricing Calculator V2 */
.pricing-calculator {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.calc-cards {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .calc-cards {
        flex-direction: row;
        align-items: stretch;
    }
}

.calc-card {
    flex: 1;
    width: 100%;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.calc-card h3 {
    text-align: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.5rem;
}

.rank-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex: 1;
}

.rank-image {
    height: 140px;
    object-fit: contain;
    margin-bottom: 1rem;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
    transition: all 0.3s ease;
}

.rank-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    text-align: center;
    background: rgba(255,255,255,0.05);
    padding: 0.5rem 1.5rem;
    border-radius: 30px;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-row {
    display: flex;
    gap: 1rem;
    width: 100%;
}

.form-group.flex-2 { flex: 2; }
.form-group.flex-1 { flex: 1; }

.calc-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 2.5rem;
    background: rgba(251, 96, 0, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    flex-shrink: 0;
    border: 1px solid rgba(251, 96, 0, 0.3);
    box-shadow: 0 0 20px rgba(251, 96, 0, 0.2);
}

@media (min-width: 992px) {
    .desktop-right {
        transform: rotate(-90deg);
    }
}

/* Addon Section Toggle */
.addon-section {
    padding: 1.5rem 2.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1.5rem;
}
.addon-header h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    font-size: 1.25rem;
    color: var(--color-secondary);
}
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    user-select: none;
}
.toggle-switch input {
    display: none;
}
.toggle-slider {
    width: 50px;
    height: 26px;
    background: rgba(255,255,255,0.1);
    border-radius: 30px;
    position: relative;
    transition: 0.3s;
    border: 1px solid rgba(255,255,255,0.2);
}
.toggle-slider::before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    border-radius: 50%;
    background: white;
    top: 2px; left: 3px;
    transition: 0.3s;
    box-shadow: 0 2px 5px rgba(0,0,0,0.5);
}
.toggle-switch input:checked + .toggle-slider {
    background: var(--color-primary);
    border-color: var(--color-primary);
}
.toggle-switch input:checked + .toggle-slider::before {
    transform: translateX(24px);
}
.toggle-label {
    font-weight: 600;
    font-size: 1.05rem;
}

.calc-summary {
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.01));
    border-color: rgba(251, 96, 0, 0.3);
}

.summary-details {
    margin-bottom: 2rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px dashed rgba(255,255,255,0.1);
}

.price-container {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-breakdown {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.25rem;
    font-weight: 500;
}
.summary-item:last-child {
    border-bottom: none;
}

.breakdown-header {
    border-bottom: 2px solid rgba(255,255,255,0.1);
    padding-bottom: 0.5rem;
    margin-bottom: 0.5rem;
}
.breakdown-header .label, .breakdown-header .value {
    font-weight: 700;
    color: white;
}
.sub-item {
    border-bottom: none;
    padding: 0.25rem 0;
}
.sub-item .label, .sub-item .value {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.sub-item.hidden {
    display: none;
}

.summary-item .label {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.summary-item .value {
    font-weight: 600;
    font-size: 1.1rem;
    color: white;
}

.summary-item.total {
    margin-top: 1rem;
    padding-top: 1.5rem;
    border-top: 2px solid rgba(255,255,255,0.1);
    border-bottom: none;
}
.summary-item.total .label {
    font-size: 1.5rem;
    color: white;
    font-weight: 800;
}
.summary-item.total .price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--color-green);
    text-shadow: 0 0 20px rgba(52, 211, 153, 0.3);
}

.btn-whatsapp {
    background: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 1.25rem;
    border-radius: 16px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 211, 102, 0.4);
}
.btn-whatsapp i {
    font-size: 1.8rem;
}
.calc-error {
    text-align: center;
    margin: 0;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: rgba(248, 113, 113, 0.1);
    padding: 1rem;
    border-radius: 12px;
    border: 1px solid rgba(248, 113, 113, 0.3);
}
.calc-error i {
    font-size: 1.25rem;
}
.calc-error.hidden {
    display: none;
}

/* Fix mobile selects to prevent zoom and stack correctly */
@media (max-width: 768px) {
    select, input[type="number"]:not(.stepper-input input) {
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.8rem 1rem;
    }
    .stepper-input input[type="number"] {
        font-size: 16px;
        padding: 0;
    }
    .rank-image {
        height: 110px;
    }
    .form-row {
        flex-wrap: wrap;
    }
    .form-group.flex-2 {
        width: 100%;
        flex: none;
    }
    .form-group.flex-1 {
        width: calc(50% - 0.5rem);
        flex: none;
    }
    .summary-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    .addon-section {
        padding: 1.25rem;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    .toggle-switch {
        justify-content: space-between;
        flex-direction: row-reverse;
    }
    .toggle-label {
        font-size: 0.95rem;
    }
}
.input-with-icon {
    position: relative;
}
.input-with-icon i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.25rem;
}
.input-with-icon input {
    padding-left: 3rem;
}

/* Footer */
footer {
    background: #050505;
    padding: 5rem 2rem 2rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 6rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 4rem;
    margin-bottom: 4rem;
}
.footer-brand {
    max-width: 350px;
}
.footer-brand p {
    color: var(--text-muted);
    margin-top: 1.5rem;
    font-size: 1rem;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.footer-links h4, .footer-social h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: white;
}
.footer-links a {
    color: var(--text-muted);
    transition: color 0.2s;
    font-weight: 500;
}
.footer-links a:hover {
    color: var(--color-primary);
}
.social-icons {
    display: flex;
    gap: 1.25rem;
}
.social-icons a {
    width: 45px; height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s;
    border: 1px solid rgba(255,255,255,0.05);
}
.social-icons a:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px var(--color-primary-glow);
}
.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}
.modal-content {
    width: 100%;
    max-width: 420px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}
.close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.05);
    border-radius: 50%;
    width: 36px; height: 36px;
    font-size: 1.25rem;
    color: var(--text-muted);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.close-btn:hover {
    background: rgba(255,255,255,0.1);
    color: white;
}
.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}
.modal-header p {
    color: var(--text-muted);
    font-size: 1rem;
    margin-top: 0.75rem;
}
.modal-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(251,96,0,0.2), rgba(255,145,85,0.1));
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 1.25rem;
    border: 1px solid rgba(251, 96, 0, 0.3);
}

/* Responsive adjustments for Bento and Hero */
@media (max-width: 992px) {
    .bento-grid { 
        display: flex !important;
        flex-direction: column !important;
    }
    .bento-whatsapp { min-height: 220px; }
    .bento-whatsapp .bento-content { align-items: center; text-align: center; }
    .bento-whatsapp .bento-icon-wrapper { margin-bottom: 1rem; width: 60px; height: 60px; }
    .bento-whatsapp .bento-icon-wrapper i { font-size: 2.5rem; }
    .bento-whatsapp h3 { font-size: 2rem; }
    .status-indicator { top: 1rem; right: 1rem; padding: 0.4rem 0.8rem; }
    
    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-content { align-items: center; }
    .hero-action-group { flex-direction: column; gap: 2rem; }
    .hero-title { font-size: 3.5rem; }
    
    .about-container { flex-direction: column; gap: 3rem; text-align: center; }
    .feature-list li { text-align: left; }
}

@media (max-width: 768px) {
    .nav-links, .navbar .btn-login { display: none; }
    .mobile-menu-btn { display: block; }
    
    .bento-grid { 
        display: flex !important;
        flex-direction: column !important;
    }
    .bento-whatsapp { 
        min-height: 220px;
    }
    .bento-whatsapp .bento-content {
        align-items: center;
        text-align: center;
    }
    .bento-whatsapp .bento-icon-wrapper {
        margin-bottom: 1rem;
        width: 60px; height: 60px;
    }
    .bento-whatsapp .bento-icon-wrapper i {
        font-size: 2.5rem;
    }
    .bento-whatsapp h3 {
        font-size: 2rem;
    }
    .status-indicator {
        top: 1rem; right: 1rem;
        padding: 0.4rem 0.8rem;
    }
    .hero-title { font-size: 2.75rem; }
    
    .footer-content { flex-direction: column; gap: 3rem; text-align: center; }
    .footer-brand { margin: 0 auto; }
    .social-icons { justify-content: center; }
}

/* Custom UI Controls for Pricing */
.custom-controls {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}
.control-group {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.control-group label {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.control-group.hidden {
    display: none;
}
.pill-group {
    display: flex;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    padding: 0.25rem;
    border: 1px solid rgba(255,255,255,0.05);
}
.pill {
    flex: 1;
    background: transparent;
    color: var(--text-muted);
    border: none;
    padding: 0.75rem 0.5rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}
.pill:hover {
    color: white;
    background: rgba(255,255,255,0.05);
}
.pill.active {
    background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 4px 15px var(--color-primary-glow);
}

.stepper-input {
    display: flex;
    align-items: center;
    background: rgba(0,0,0,0.3);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.05);
    overflow: hidden;
}
.stepper-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    padding: 1rem 1.25rem;
    font-size: 1.25rem;
    transition: all 0.2s;
    flex-shrink: 0;
}
.stepper-btn:hover {
    background: rgba(255,255,255,0.1);
    color: var(--color-primary);
}
.stepper-input input {
    flex: 1;
    min-width: 0 !important;
    width: 100% !important;
    background: transparent;
    border: none;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: white;
    padding: 0 !important;
}
.stepper-input input:focus {
    box-shadow: none;
}
/* Hide number input arrows */
.stepper-input input::-webkit-outer-spin-button,
.stepper-input input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.stepper-input input[type=number] {
  -moz-appearance: textfield;
}

/* Login Form Styles */
.login-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.login-form .input-with-icon input {
    width: 100%;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.1);
    color: white;
    padding: 1rem 1rem 1rem 3rem;
    border-radius: 12px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s;
}
.login-form .input-with-icon input:focus {
    outline: none;
    background: rgba(255,255,255,0.05);
    border-color: var(--color-primary);
    box-shadow: 0 0 15px rgba(251, 96, 0, 0.2);
}
