* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #25D366;
    --primary-dark: #128C7E;
    --secondary: #34B7F1;
    --dark: #0a0e27;
    --dark-light: #1a1f3a;
    --text: #e4e4e7;
    --text-muted: #a1a1aa;
    --border: #27272a;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: 700;
    color: var(--text);
}

.logo img {
    width: 40px;
    height: 40px;
    border-radius: 10px;
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: var(--primary);
}

/* Garantir que o menu desktop apareça em telas grandes */
@media (min-width: 769px) {
    .nav {
        display: flex !important;
    }

    .mobile-menu-btn {
        display: none !important;
    }

    .mobile-menu {
        display: none !important;
    }
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--dark-light);
    border-top: 1px solid var(--border);
    padding: 20px;
    z-index: 999;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    padding: 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.mobile-menu a:hover {
    background: var(--border);
    color: var(--primary);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 150px 0 100px;
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 32px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: var(--dark-light);
    color: var(--text);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background: var(--border);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 48px;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero-image {
    position: relative;
}

.app-mockup {
    position: relative;
    animation: float 6s ease-in-out infinite;
}

.mockup-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(37, 211, 102, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    animation: pulse 4s ease-in-out infinite;
}

.app-mockup img {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: var(--gradient-1);
    top: -200px;
    right: -200px;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: var(--gradient-2);
    bottom: -150px;
    left: -150px;
    animation-delay: -2s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-3);
    top: 50%;
    left: 50%;
    animation-delay: -4s;
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-light);
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.section-description {
    font-size: 20px;
    color: var(--text-muted);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.feature-card {
    background: var(--dark);
    padding: 32px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.1);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-icon svg {
    color: white;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-description {
    color: var(--text-muted);
    line-height: 1.6;
}

/* Pricing Section */
.pricing-section {
    margin-bottom: 80px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

.pricing-card {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: 20px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s;
}

.pricing-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.15);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.05) 0%, rgba(52, 183, 241, 0.05) 100%);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.2);
}

.pricing-card.featured:hover {
    box-shadow: 0 20px 60px rgba(37, 211, 102, 0.3);
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border);
}

.pricing-header h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text);
}

.plan-description {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    line-height: 1.4;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.currency {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary);
}

.amount {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.period {
    font-size: 18px;
    color: var(--text-muted);
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 32px;
}

.pricing-features .feature {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    color: var(--text);
}

.pricing-features .feature svg {
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--primary);
}

.pricing-features .feature span {
    line-height: 1.5;
}

.pricing-features .feature.highlight {
    background: rgba(37, 211, 102, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin: 8px -12px;
}

.pricing-features .feature.highlight span {
    color: var(--primary);
}

.btn-pricing {
    width: 100%;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    border: 2px solid var(--primary);
    background: transparent;
    color: var(--primary);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-pricing:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-pricing.primary {
    background: var(--primary);
    color: white;
}

.btn-pricing.primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

/* Download Section */
.download {
    padding: 100px 0;
}

.download-card {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 24px;
    padding: 64px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.download-content {
    position: relative;
    z-index: 1;
}

.download-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.download-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.download-buttons {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.btn-download {
    background: white;
    color: var(--dark);
    padding: 20px 32px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.btn-download:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-download svg {
    width: 32px;
    height: 32px;
}

.btn-download div {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 400;
}

.btn-platform {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
}

.download-note {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.download-image {
    position: relative;
    z-index: 1;
}

.download-image img {
    width: 100%;
    max-width: 300px;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.3));
    animation: float 6s ease-in-out infinite;
}

/* Footer */
.footer {
    background: var(--dark-light);
    padding: 64px 0 32px;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-description {
    color: var(--text-muted);
    margin-top: 16px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none !important;
    }

    .mobile-menu-btn {
        display: flex !important;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-stats {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        padding: 0 16px;
        max-width: 450px;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .amount {
        font-size: 48px;
    }

    .pricing-features .feature.highlight {
        margin: 8px 0;
    }

    .download-card {
        grid-template-columns: 1fr;
        padding: 32px;
        text-align: center;
    }

    .download-buttons {
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    /* Comparação Web vs Desktop - Mobile */
    div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
    }
}    .nav {
        display: none;
    }
}


/* Painel Web CTA */
a[href*="buzzly.dknetwork.com.br"]:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3) !important;
}

/* Animações para o banner */
@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
    }
}

/* Responsivo para o banner */
@media (max-width: 768px) {
    div[style*="grid-template-columns: 1fr auto"] {
        grid-template-columns: 1fr !important;
        text-align: center;
    }
    
    div[style*="width: 180px; height: 180px"] {
        margin: 30px auto 0 !important;
    }
    
    /* Mais espaçamento no banner mobile */
    div[style*="margin: 60px auto 80px"] {
        margin: 40px 20px 60px !important;
    }
    
    /* Ajustar padding do banner */
    div[style*="padding: 50px 40px"] {
        padding: 40px 25px !important;
    }
}

/* ============================================
   PLANO PERSONALIZADO
   ============================================ */

.custom-plan-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.custom-plan-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px;
}

.custom-plan-content {
    background: var(--dark-light);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
    padding: 40px;
    position: relative;
    border: 1px solid var(--border);
    margin: auto;
}

.custom-plan-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 32px;
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.custom-plan-close:hover {
    color: var(--text);
}

.custom-plan-header {
    text-align: center;
    margin-bottom: 40px;
}

.custom-plan-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.custom-plan-header p {
    color: var(--text-muted);
    font-size: 16px;
}

/* Product Type Selection */
.custom-plan-product-type {
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.custom-plan-product-type h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text);
}

.product-type-options {
    display: grid;
    gap: 15px;
}

.product-type-option {
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-type-option:hover {
    border-color: var(--primary);
    transform: translateX(5px);
}

.product-type-option.selected {
    border-color: var(--primary);
    background: rgba(37, 211, 102, 0.1);
}

.product-type-radio {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
    position: relative;
}

.product-type-option.selected .product-type-radio {
    border-color: var(--primary);
}

.product-type-option.selected .product-type-radio::after {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    position: absolute;
}

.product-type-info {
    flex: 1;
}

.product-type-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
    font-size: 16px;
}

.product-type-desc {
    color: var(--text-muted);
    font-size: 14px;
}

.web-features-info h4 {
    font-size: 16px;
}


.custom-plan-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.custom-feature-item {
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 15px;
}

.custom-feature-item:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
}

.custom-feature-item.selected {
    border-color: var(--primary);
    background: rgba(37, 211, 102, 0.1);
}

.custom-feature-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid var(--border);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s;
}

.custom-feature-item.selected .custom-feature-checkbox {
    background: var(--primary);
    border-color: var(--primary);
}

.custom-feature-checkbox::after {
    content: '✓';
    color: white;
    font-size: 16px;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.custom-feature-item.selected .custom-feature-checkbox::after {
    opacity: 1;
}

.custom-feature-info {
    flex: 1;
}

.custom-feature-name {
    font-weight: 600;
    color: var(--text);
    margin-bottom: 5px;
}

.custom-feature-price {
    color: var(--primary);
    font-size: 14px;
    font-weight: 600;
}

.custom-plan-accounts {
    background: var(--dark);
    border: 2px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.custom-plan-accounts h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--text);
}

.accounts-input-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.accounts-input-group input {
    flex: 1;
    background: var(--dark-light);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    color: var(--text);
    font-size: 16px;
}

.accounts-input-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.accounts-input-group span {
    color: var(--text-muted);
    font-size: 14px;
}

.custom-plan-summary {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.1) 0%, rgba(52, 183, 241, 0.1) 100%);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 25px;
    margin-bottom: 30px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border);
}

.summary-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.summary-label {
    color: var(--text-muted);
    font-size: 14px;
}

.summary-value {
    color: var(--text);
    font-weight: 600;
    font-size: 16px;
}

.summary-total {
    font-size: 20px !important;
}

.summary-total .summary-label {
    font-size: 18px;
    color: var(--text);
}

.summary-total .summary-value {
    font-size: 32px;
    color: var(--primary);
}

.custom-plan-actions {
    display: flex;
    gap: 15px;
}

.custom-plan-actions button {
    flex: 1;
    padding: 16px 32px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
}

.btn-custom-submit {
    background: var(--primary);
    color: white;
}

.btn-custom-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

.btn-custom-cancel {
    background: transparent;
    color: var(--text-muted);
    border: 2px solid var(--border);
}

.btn-custom-cancel:hover {
    border-color: var(--text-muted);
    color: var(--text);
}

@media (max-width: 768px) {
    .custom-plan-modal.active {
        padding: 20px 10px;
        align-items: flex-start;
    }

    .custom-plan-content {
        padding: 30px 20px;
        max-height: calc(100vh - 40px);
        margin: 0;
    }

    .custom-plan-header h2 {
        font-size: 24px;
    }

    .custom-plan-header p {
        font-size: 14px;
    }

    .custom-plan-features {
        grid-template-columns: 1fr;
    }

    .custom-plan-actions {
        flex-direction: column;
    }

    .accounts-input-group {
        flex-direction: column;
        align-items: flex-start;
    }

    .accounts-input-group input {
        width: 100%;
    }
}
