* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #FAFAFA;
    font-family: 'Inter', sans-serif;
    color: #1a1a1a;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    line-height: 1.6;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(0, 0, 0, 0.02) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(0, 0, 0, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    z-index: 0;
}

.container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

.noise-texture {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    pointer-events: none;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    z-index: 0;
}

/* Hide old header since we have navigation */
header {
    display: none;
}

/* Main content spacing */
main {
    margin-top: 40px;
}

.hero {
    padding: 80px 0 60px 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.03) 0%, transparent 70%);
    pointer-events: none;
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero h1 {
    font-size: 56px;
    font-weight: 900;
    margin: 0 0 24px 0;
    line-height: 1.1;
    color: #000000;
    letter-spacing: -1px;
    position: relative;
}

.hero h1::selection {
    background-color: #000000;
    color: #FFFFFF;
}

.hero-subtext {
    font-size: 18px;
    color: #666666;
    margin-bottom: 40px;
    max-width: 600px;
    line-height: 1.7;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    padding: 8px 16px;
    border-radius: 8px;
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 500;
    color: #333333;
    box-shadow: 
        4px 4px 0px #000000,
        0 4px 12px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.trust-badge::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(to bottom, #16A34A, #15803D);
}

.nav-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background-color: #000000;
    color: #FFFFFF;
    border-radius: 8px;
    border: 2px solid #000000;
    box-shadow: 
        4px 4px 0px #000000,
        0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background-color: #1a1a1a;
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0px #000000,
        0 8px 24px rgba(0, 0, 0, 0.25);
}

.btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 
        2px 2px 0px #000000,
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.section {
    margin-top: 100px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-title {
    margin-bottom: 40px;
    position: relative;
    padding-left: 20px;
}

.section-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 5px;
    bottom: 5px;
    width: 4px;
    background: linear-gradient(to bottom, #000000, #666666);
    border-radius: 2px;
}

.section-title h2 {
    margin: 0 0 8px 0;
    font-size: 32px;
    font-weight: 800;
    color: #000000;
    letter-spacing: -0.5px;
}

.section-title p {
    margin: 0;
    color: #666666;
    font-size: 16px;
}

.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.card {
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        6px 6px 0px #000000,
        0 8px 24px rgba(0, 0, 0, 0.1);
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #000000, #666666);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover::before {
    transform: scaleX(1);
}

.card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,0,0,0.02) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.card:hover::after {
    opacity: 1;
}

.card:hover {
    border-color: #000000;
    transform: translate(-3px, -3px);
    box-shadow: 
        9px 9px 0px #000000,
        0 12px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #F5F5F5 0%, #EFEFEF 100%);
    border: 2px solid #000000;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        3px 3px 0px #000000,
        0 4px 12px rgba(0, 0, 0, 0.1);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border-color: #000000;
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px #000000,
        0 6px 16px rgba(0, 0, 0, 0.15);
}

.card-icon i, .card-icon span {
    font-size: 24px;
    color: #000000;
    transition: color 0.3s;
}

.card:hover .card-icon i,
.card:hover .card-icon span {
    color: #FFFFFF;
}

.card h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.3px;
}

.card p {
    margin: 0;
    color: #666666;
    font-size: 15px;
    line-height: 1.6;
}

.company-logos {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
}

.company-logo {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5F5F5 0%, #E5E5E5 100%);
    border: 2px solid #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: #666666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.company-logo:hover {
    transform: translateY(-2px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.company-logo:nth-child(2) {
    margin-left: -10px;
}

.company-logo:nth-child(3) {
    margin-left: -10px;
}

.price-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid #000000;
    border-radius: 12px;
    box-shadow: 
        8px 8px 0px #000000,
        0 8px 32px rgba(0, 0, 0, 0.12);
    position: relative;
    overflow: hidden;
}

.price-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, #16A34A, #15803D);
}

.pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.discount {
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    background: linear-gradient(135deg, #16A34A 0%, #15803D 100%);
    padding: 6px 14px;
    border-radius: 6px;
    border: 2px solid #000000;
    box-shadow: 
        3px 3px 0px #000000,
        0 4px 12px rgba(22, 163, 74, 0.25);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.original-price {
    font-size: 22px;
    font-weight: 600;
    color: #999999;
    text-decoration: line-through;
    position: relative;
}

.current-price {
    font-size: 36px;
    font-weight: 900;
    color: #000000;
    letter-spacing: -1px;
}

.btn-black {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 
        5px 5px 0px #000000,
        0 6px 20px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-black::after {
    content: '→';
    position: absolute;
    right: 20px;
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-black:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
    transform: translate(-2px, -2px);
    box-shadow: 
        7px 7px 0px #000000,
        0 8px 28px rgba(0, 0, 0, 0.25);
    padding-right: 50px;
}

.btn-black:hover::after {
    opacity: 1;
    right: 24px;
}

.btn-black:active {
    transform: translate(2px, 2px);
    box-shadow: 
        3px 3px 0px #000000,
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.combo-section {
    margin-top: 100px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    border: 3px solid #000000;
    border-radius: 16px;
    padding: 56px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        10px 10px 0px #000000,
        0 12px 48px rgba(0, 0, 0, 0.35);
}

.combo-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
    animation: float 15s ease-in-out infinite;
}

.combo-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255,255,255,0.02) 25%, transparent 25%),
        linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.02) 75%),
        linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.02) 75%);
    background-size: 20px 20px;
    background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
    opacity: 0.5;
}

.combo-content {
    position: relative;
    z-index: 1;
}

.combo-content p {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.combo-content h2 {
    margin: 12px 0 24px 0;
    font-size: 40px;
    font-weight: 900;
    color: #FFFFFF;
    letter-spacing: -1px;
}

.combo-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.btn-white {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 16px 36px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    box-shadow: 
        4px 4px 0px #000000,
        0 6px 20px rgba(255, 255, 255, 0.2);
}

.btn-white:hover {
    background-color: #F5F5F5;
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0px #000000,
        0 8px 24px rgba(255, 255, 255, 0.3);
}

.btn-white:active {
    transform: translate(2px, 2px);
    box-shadow: 
        2px 2px 0px #000000,
        0 4px 16px rgba(255, 255, 255, 0.15);
}

.btn-outline {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    border-radius: 8px;
    padding: 14px 34px;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: 'Inter', sans-serif;
    backdrop-filter: blur(10px);
    box-shadow: 
        3px 3px 0px rgba(255, 255, 255, 0.3),
        0 4px 16px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #FFFFFF;
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px rgba(255, 255, 255, 0.4),
        0 6px 20px rgba(255, 255, 255, 0.15);
}

.btn-outline:active {
    transform: translate(1px, 1px);
    box-shadow: 
        2px 2px 0px rgba(255, 255, 255, 0.3),
        0 3px 12px rgba(255, 255, 255, 0.1);
}

.tag-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 48px;
}

.tag {
    background: linear-gradient(135deg, #FFFFFF 0%, #F5F5F5 100%);
    border: 1px solid #E5E5E5;
    color: #333333;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.tag::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tag span {
    position: relative;
    z-index: 1;
}

.tag:hover::before {
    transform: translateY(0);
}

.tag:hover {
    color: #FFFFFF;
    border-color: #000000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
    color: #666666;
    font-size: 15px;
    line-height: 2;
}

.card-list li {
    padding-left: 24px;
    position: relative;
    transition: all 0.2s ease;
}

.card-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #000000;
    font-weight: bold;
    transition: all 0.3s ease;
}

.card-list li:hover {
    color: #000000;
    padding-left: 28px;
}

.card-list li:hover::before {
    left: 4px;
}

.cta-section {
    margin-top: 120px;
    margin-bottom: 120px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 3px solid #000000;
    border-radius: 16px;
    padding: 80px 56px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        10px 10px 0px #000000,
        0 12px 48px rgba(0, 0, 0, 0.1);
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: rotate 60s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.cta-section h2 {
    font-size: 40px;
    font-weight: 900;
    margin: 0 0 12px 0;
    color: #000000;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.cta-section p {
    font-size: 18px;
    color: #666666;
    margin: 0 0 40px 0;
    position: relative;
    z-index: 1;
}

.stats-section {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
    margin: 60px 0;
}

.stat-card {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid #000000;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        6px 6px 0px #000000,
        0 6px 20px rgba(0, 0, 0, 0.08);
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #000000, #666666);
    transform: scaleX(0);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        9px 9px 0px #000000,
        0 10px 32px rgba(0, 0, 0, 0.12);
    border-color: #000000;
}

.stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #000000;
    letter-spacing: -1px;
}

.stat-label {
    font-size: 15px;
    color: #666666;
    font-weight: 600;
    margin-top: 8px;
}

.testimonial-section {
    margin-top: 100px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border: 2px solid #000000;
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        5px 5px 0px #000000,
        0 6px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-card:hover {
    transform: translate(-3px, -3px);
    box-shadow: 
        8px 8px 0px #000000,
        0 10px 36px rgba(0, 0, 0, 0.12);
    border-color: #000000;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #F5F5F5 0%, #E5E5E5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: #666666;
    font-size: 18px;
}

.testimonial-info h4 {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    color: #000000;
}

.testimonial-info p {
    margin: 4px 0 0 0;
    font-size: 13px;
    color: #999999;
}

.testimonial-text {
    color: #666666;
    font-size: 15px;
    line-height: 1.7;
    margin: 0;
}

.testimonial-rating {
    margin-top: 16px;
    color: #FFC107;
    font-size: 14px;
}

footer {
    background: linear-gradient(to bottom, #FFFFFF 0%, #FAFAFA 100%);
    border-top: 1px solid #E5E5E5;
    color: #666666;
    padding: 80px 0 40px 0;
    width: 100%;
    margin-top: auto;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

.footer-logo {
    color: #000000;
}

.footer-tagline {
    font-size: 20px;
    font-weight: 700;
    margin: 20px 0 8px 0;
    color: #000000;
}

.footer-description {
    font-size: 16px;
    color: #666666;
    max-width: 500px;
    line-height: 1.7;
}

.footer-divider {
    border: none;
    border-top: 1px solid #E5E5E5;
    margin: 56px 0 40px 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #999999;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-links a {
    color: #666666;
    text-decoration: none;
    transition: color 0.2s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #000000;
}

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        4px 4px 0px #000000,
        0 6px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    transform: translate(-2px, -2px);
    box-shadow: 
        6px 6px 0px #000000,
        0 8px 24px rgba(0, 0, 0, 0.25);
}

.scroll-to-top:active {
    transform: translate(2px, 2px);
    box-shadow: 
        2px 2px 0px #000000,
        0 4px 16px rgba(0, 0, 0, 0.15);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 48px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background-color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        3px 3px 0px #000000,
        0 4px 12px rgba(0, 0, 0, 0.06);
}

.feature-item:hover {
    border-color: #000000;
    transform: translate(-2px, -2px);
    box-shadow: 
        5px 5px 0px #000000,
        0 6px 16px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #F5F5F5 0%, #EFEFEF 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 18px;
    color: #000000;
}

.feature-text {
    font-size: 14px;
    font-weight: 600;
    color: #333333;
}

/* ===== SIMPLE NAVIGATION SYSTEM ===== */
.main-nav {
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    border-bottom: 2px solid #000000;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    padding: 20px 0;
}

.nav-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    text-decoration: none;
}

.nav-logo .logo-box {
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nav-logo .logo-char {
    background-color: #000000;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 18px;
    padding: 5px 8px;
    line-height: 1;
    border: 2px solid #000000;
    box-shadow: 2px 2px 0px #000000;
}

.nav-logo .logo-text {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: 1px;
    margin-left: 8px;
    color: #000000;
}

/* Simple Hamburger Button */
.hamburger-btn {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #FFFFFF;
    border: 2px solid #000000;
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 3px 3px 0px #000000;
    transition: all 0.3s ease;
}

.hamburger-btn:hover {
    transform: translate(-1px, -1px);
    box-shadow: 4px 4px 0px #000000;
}

.hamburger-btn:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0px #000000;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, #FFFFFF 0%, #FAFAFA 100%);
    z-index: 1001;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    border-left: 2px solid #000000;
    padding: 80px 24px 24px 24px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu-links li {
    margin-bottom: 12px;
}

.mobile-menu-links a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333333;
    font-weight: 600;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid #E5E5E5;
}

.mobile-menu-links a:hover,
.mobile-menu-links a.active {
    background-color: rgba(0, 0, 0, 0.05);
    border-color: #000000;
    color: #000000;
}

.mobile-menu-links a.active {
    font-weight: 700;
}

.close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #333333;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.close-menu:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #000000;
}

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: none;
}

.menu-overlay.active {
    display: block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 48px;
    }
    
    .combo-section {
        flex-direction: column;
        text-align: center;
    }
    
    .combo-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 0 40px 0;
    }

    .hero h1 {
        font-size: 40px;
    }
    
    .section-title h2 {
        font-size: 28px;
    }

    .section {
        margin-top: 80px;
    }
    
    .card-grid {
        grid-template-columns: 1fr;
    }
    
    .price-section {
        flex-direction: column;
        gap: 24px;
        align-items: stretch;
    }

    .pricing {
        justify-content: center;
    }
    
    .btn-black {
        width: 100%;
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .cta-section {
        padding: 48px 32px;
    }
    
    .cta-section h2 {
        font-size: 32px;
    }

    .combo-section {
        padding: 40px 32px;
    }

    .combo-content h2 {
        font-size: 28px;
    }

    .combo-buttons {
        flex-direction: column;
    }

    .btn-white, .btn-outline {
        width: 100%;
        justify-content: center;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mobile navigation adjustments */
    .mobile-menu {
        width: 250px;
        padding: 70px 20px 20px 20px;
    }
    
    main {
        margin-top: 30px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-subtext {
        font-size: 16px;
    }
    
    .nav-buttons {
        width: 100%;
    }

    .btn-primary {
        width: 100%;
        justify-content: center;
    }
    
    .combo-content h2 {
        font-size: 24px;
    }
    
    .pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .current-price {
        font-size: 28px;
    }
    
    .cta-section h2 {
        font-size: 28px;
    }
    
    .footer-tagline {
        font-size: 18px;
    }
    
    .footer-description {
        font-size: 15px;
    }

    .stats-section {
        grid-template-columns: 1fr;
    }

    .scroll-to-top {
        bottom: 20px;
        right: 20px;
    }

    .price-section {
        padding: 32px 24px;
    }
    
    .hamburger-btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .nav-logo .logo-char {
        font-size: 16px;
        padding: 4px 6px;
    }
    
    .nav-logo .logo-text {
        font-size: 18px;
    }
}