/* styles.css */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff6a00;
    --primary-dark: #e55a00;
    --secondary-color: #1a1a1a;
    --dark-bg: #0d0d0d;
    --light-text: #f5f5f5;
    --gray-text: #b3b3b3;
    --border-color: #333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

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

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

.section-subtitle {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--gray-text);
    font-size: 1.1rem;
    line-height: 1.5;
}

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    font-size: 1rem;
    border: 2px solid;
}

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

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--light-text);
    border-color: var(--light-text);
}

.btn-secondary:hover {
    background-color: var(--light-text);
    color: var(--dark-bg);
    transform: translateY(-2px);
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(13, 13, 13, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

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

.logo h2 {
    margin: 0;
    font-size: 1.6rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin-left: 1.5rem;
}

.nav-menu a {
    color: var(--light-text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu .btn-primary {
    padding: 8px 16px;
    font-size: 0.9rem;
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--light-text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #1a1a1a 100%);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

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

.feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 106, 0, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 106, 0, 0.3);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.6;
}

/* Value Proposition Section */
.value-proposition {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-bg) 100%);
}

.value-content {
    display: flex;
    align-items: center;
    gap: 4rem;
}

.value-text {
    flex: 1;
}

.value-text h2 {
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

.value-text > p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: var(--gray-text);
    line-height: 1.7;
}

.value-points {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.value-point {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.value-point i {
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-top: 0.3rem;
    flex-shrink: 0;
}

.value-point h3 {
    margin-bottom: 0.5rem;
    color: var(--light-text);
    font-size: 1.2rem;
}

.value-point p {
    color: var(--gray-text);
    margin: 0;
    line-height: 1.6;
}

.value-image {
    flex: 1;
    text-align: center;
}

.value-image img {
    max-width: 100%;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

/* Plans Section */
.plans {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plan-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.plan-card.popular {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.plan-card.popular:hover {
    transform: scale(1.02) translateY(-8px);
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-color);
    color: white;
    padding: 8px 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border-bottom-left-radius: 12px;
}

.plan-header {
    padding: 2rem 1.5rem;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--border-color);
}

.plan-header h3 {
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.currency {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-text);
}

.period {
    color: var(--gray-text);
    font-size: 1rem;
}

.plan-features {
    padding: 2rem 1.5rem;
}

.plan-features ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.plan-features i {
    margin-right: 12px;
    width: 18px;
    font-size: 0.9rem;
}

.plan-features .fa-check {
    color: var(--primary-color);
}

.plan-footer {
    padding: 0 1.5rem 2rem;
    text-align: center;
}

.plan-footer .btn-primary {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.testimonial-content {
    margin-bottom: 1.5rem;
    font-style: italic;
    color: var(--gray-text);
    line-height: 1.7;
    font-size: 1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 1rem;
    flex-shrink: 0;
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-info h4 {
    margin-bottom: 0.2rem;
    font-size: 1rem;
}

.author-info p {
    margin: 0;
    color: var(--gray-text);
    font-size: 0.85rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    text-align: center;
}

.cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta .btn-primary {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: #0a0a0a;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 10px;
    font-size: 1.2rem;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-text);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.contact-info i {
    margin-right: 10px;
    color: var(--primary-color);
    width: 16px;
    margin-top: 2px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--light-text);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--gray-text);
    font-size: 0.85rem;
}

/* Dedicated VM Section */
.dedicated-plans {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--dark-bg) 100%);
}

.dedicated-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2rem;
}

.dedicated-main {
    width: 100%;
}

.dedicated-card {
    background: linear-gradient(135deg, rgba(255, 106, 0, 0.08) 0%, rgba(13, 13, 13, 0.95) 100%);
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid rgba(255, 106, 0, 0.3);
    position: relative;
    transition: all 0.3s ease;
    width: 100%;
}

.dedicated-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 20px 50px rgba(255, 106, 0, 0.15);
}

.dedicated-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 25px 60px rgba(255, 106, 0, 0.2);
}

.dedicated-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 8px 24px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    white-space: nowrap;
}

.dedicated-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.dedicated-header h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.dedicated-header .price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
}

.dedicated-header .currency {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.dedicated-header .amount {
    font-size: 3rem;
    font-weight: 700;
}

.dedicated-header .period {
    color: var(--gray-text);
    font-size: 1.1rem;
}

.dedicated-specs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.spec-group h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.specs {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.spec {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.8rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.spec:hover {
    background: rgba(255, 106, 0, 0.1);
    transform: translateX(5px);
}

.spec i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.spec span {
    font-size: 0.95rem;
}

/* Enhanced Managed Benefits Section */
.managed-benefits {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    position: relative;
}

.managed-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    border-radius: 2px;
}

.managed-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 1.2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.05);
    min-height: 80px;
}

.benefit-item:hover {
    background: rgba(255, 106, 0, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 106, 0, 0.2);
}

.benefit-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 106, 0, 0.1);
    border-radius: 10px;
}

.benefit-icon i {
    font-size: 1.3rem;
    margin: 0;
}

.benefit-text {
    flex: 1;
    text-align: left;
}

.benefit-text span {
    display: block;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.benefit-text small {
    color: var(--gray-text);
    font-size: 0.75rem;
    line-height: 1.3;
}

.dedicated-benefits {
    margin-bottom: 2rem;
}

.dedicated-benefits h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.dedicated-benefits ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.dedicated-benefits li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.95rem;
}

.dedicated-footer {
    text-align: center;
}

.dedicated-footer .btn-primary {
    padding: 16px 32px;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    width: 100%;
    max-width: 300px;
}

.note {
    color: var(--gray-text);
    font-size: 0.85rem;
    margin: 0;
}

/* Sidebar */
.dedicated-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    width: 100%;
}

.sidebar-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 106, 0, 0.1);
    transition: all 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.sidebar-card h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-card ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.sidebar-card li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.4;
}

.sidebar-card .fa-check {
    color: var(--primary-color);
    margin-top: 0.1rem;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.security-card {
    border-color: rgba(255, 106, 0, 0.3);
    background: rgba(255, 106, 0, 0.05);
}

.security-card p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--gray-text);
    line-height: 1.5;
}

/* ===== MOBILE RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .container {
        width: 95%;
        padding: 0 20px;
    }
}

@media (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    h3 {
        font-size: 1.3rem;
    }
    
    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .value-content {
        flex-direction: column;
        text-align: center;
        gap: 3rem;
    }
    
    .value-point {
        text-align: left;
    }
    
    .plan-card.popular {
        transform: scale(1);
    }
    
    .plan-card.popular:hover {
        transform: translateY(-8px);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        flex-direction: column;
        background-color: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.4s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        gap: 0;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 0;
        width: 100%;
        font-size: 1.1rem;
    }
    
    .nav-menu .btn-primary {
        margin: 1rem auto 0;
        width: 200px;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 14px 20px;
    }
    
    .value-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .value-point i {
        margin-top: 0;
    }
    
    .nav-container {
        padding: 0 15px;
    }
    
    .features-grid,
    .plans-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .dedicated-card {
        padding: 1.5rem;
    }
    
    .dedicated-header .amount {
        font-size: 2.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .benefit-item {
        padding: 0.8rem;
        gap: 0.8rem;
        min-height: 70px;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
    }
    
    .benefit-icon i {
        font-size: 1.1rem;
    }
    
    .benefit-text span {
        font-size: 0.85rem;
    }
    
    .benefit-text small {
        font-size: 0.7rem;
    }
    
    .spec {
        padding: 0.7rem;
    }
    
    .spec i {
        font-size: 0.9rem;
    }
    
    .spec span {
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .section-title {
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .hero-image img {
        border-radius: 8px;
    }
    
    .feature-card {
        padding: 1.5rem 1rem;
    }
    
    .feature-icon {
        font-size: 2rem;
    }
    
    .plan-header {
        padding: 1.5rem 1rem;
    }
    
    .plan-features {
        padding: 1.5rem 1rem;
    }
    
    .plan-footer {
        padding: 0 1rem 1.5rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .dedicated-header .amount {
        font-size: 2.2rem;
    }
    
    .dedicated-card {
        padding: 1.5rem 1rem;
    }
    
    .managed-benefits {
        padding: 1rem;
    }
    
    .sidebar-card {
        padding: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 380px) {
    h1 {
        font-size: 1.6rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero-content h1 {
        font-size: 1.6rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .dedicated-header .amount {
        font-size: 2rem;
    }
    
    .spec {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    
    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
        padding: 1rem 0.5rem;
    }
    
    .benefit-text {
        text-align: center;
    }
}

/* Active state for hamburger menu */
.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Animation for benefit items */
@keyframes benefitAppear {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.benefit-item {
    animation: benefitAppear 0.5s ease-out;
}

.benefit-item:nth-child(1) { animation-delay: 0.1s; }
.benefit-item:nth-child(2) { animation-delay: 0.2s; }
.benefit-item:nth-child(3) { animation-delay: 0.3s; }
.benefit-item:nth-child(4) { animation-delay: 0.4s; }
.benefit-item:nth-child(5) { animation-delay: 0.5s; }
.benefit-item:nth-child(6) { animation-delay: 0.6s; }