/* Starter Page Specific Styles */
.starter-hero {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: #fff;
    padding: 70px 0 50px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.starter-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(0, 123, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(255, 153, 0, 0.06) 0%, transparent 50%);
    animation: pulse-bg 8s ease-in-out infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.starter-hero .container {
    position: relative;
    z-index: 1;
}

.starter-badge {
    display: inline-block;
    background: linear-gradient(135deg, #ff9900, #ffb347);
    color: #1a1a2e;
    padding: 6px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    animation: fadeInDown 0.6s ease;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.starter-hero h1 {
    color: #fff;
    font-size: 2.8rem;
    margin-bottom: 15px;
    animation: fadeInDown 0.8s ease;
}

.starter-hero h1 span {
    background: linear-gradient(135deg, #ff9900, #ffcc00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.starter-hero .tagline {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px;
    line-height: 1.7;
    animation: fadeInDown 1s ease;
}

.starter-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
    animation: fadeInDown 1.2s ease;
}

.starter-guarantee i {
    color: #4CAF50;
}

/* Ideal para section */
.ideal-para {
    padding: 50px 0;
    background: #fff;
}

.ideal-para h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
}

.ideal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
    max-width: 900px;
    margin: 0 auto;
}

.ideal-item {
    text-align: center;
    padding: 25px 15px;
    border-radius: 12px;
    background: #f8f9fc;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.ideal-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 123, 255, 0.15);
}

.ideal-item .icon-circle {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 22px;
    color: #007bff;
}

.ideal-item h4 {
    font-size: 0.95rem;
    margin-bottom: 0;
    color: #333;
}

/* Pricing enhancements for Starter: Compressed Cards */
.starter-pricing .plan-card {
    border-top-color: #6c757d;
    padding: 25px 20px; /* Reduced from 40px 30px */
}

.starter-pricing .plan-card .plan-header {
    margin-bottom: 15px;
    padding-bottom: 15px;
}

.starter-pricing .plan-card .plan-header h3 {
    font-size: 1.25rem; /* Reduced from 1.5rem */
    margin-bottom: 5px;
}

.starter-pricing .plan-card .price .amount {
    font-size: 2.3rem; /* Reduced from 3rem */
}

.starter-pricing .plan-card .price .currency {
    font-size: 1.2rem;
}

.starter-pricing .plan-card .plan-features {
    margin-bottom: 20px;
}

.starter-pricing .plan-card .plan-features li {
    margin-bottom: 8px; /* Reduced from 15px */
    font-size: 0.88rem; /* Reduced from 1rem */
}


.starter-pricing .plan-card.popular {
    border-color: #6c757d;
    border-top: 5px solid #6c757d;
}

.starter-pricing .popular-tag {
    background: linear-gradient(135deg, #ff9900, #ffb347);
    color: #1a1a2e;
}

/* Starter 10 button - white like others, turns orange/yellow on hover */
.starter-pricing .plan-card.popular .btn-outline-starter {
    border-color: #ff9900;
    color: #ff9900;
    background: transparent;
}

.starter-pricing .plan-card.popular .btn-outline-starter:hover {
    background-color: #ff9900 !important;
    border-color: #ff9900 !important;
    color: #1a1a2e;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.4);
}

.price-annual-note {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-top: 5px;
    font-weight: 400;
    min-height: 20px;
}

.price-annual-note .highlight {
    color: #4CAF50;
    font-weight: 600;
}

.savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    color: #2e7d32;
    padding: 3px 12px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-top: 8px;
}

/* Benefits section */
.benefits-section {
    padding: 60px 0;
    background: var(--light-bg);
}

.benefits-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.benefit-card .b-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(0, 123, 255, 0.1), rgba(0, 123, 255, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #007bff;
    font-size: 18px;
}

.benefit-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.benefit-card p {
    font-size: 0.85rem;
    color: #777;
    margin: 0;
}


