* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #0ea5e9;
    --secondary: #06b6d4;
    --dark: #0f172a;
    --light: #f8fafc;
    --accent: #8b5cf6;
    --success: #10b981;
    --warning: #f59e0b;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    background: #fff;
}

.page {
    display: none;
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.page.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.03);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 3rem;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo-container:hover {
    transform: scale(1.05);
}

.logo-svg {
    width: 45px;
    height: 45px;
    transition: transform 0.5s ease;
}

.logo-container:hover .logo-svg {
    transform: rotate(6deg);
}

.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.8px;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.cta-btn {
    padding: 0.8rem 2rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    font-size: 0.95rem;
    box-shadow: 0 4px 20px rgba(14, 165, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.4);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #dbeafe 100%);
    position: relative;
    overflow: hidden;
    padding: 120px 0 80px;
}

.hero::before {
    content: '';
    position: absolute;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.12) 0%, transparent 70%);
    top: -300px;
    right: -300px;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    bottom: -200px;
    left: -200px;
    border-radius: 50%;
    animation: float 15s ease-in-out infinite reverse;
}

@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-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: slideInLeft 0.8s ease-out;
    display: flex;
    flex-direction: column;
    align-items: center;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.8rem;
    color: var(--dark);
    letter-spacing: -2px;
    text-align: center;
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    text-align: center;
    overflow: hidden;
    border-right: 3px solid var(--primary);
    white-space: nowrap;
    margin-left: auto;
    margin-right: auto;
    animation: typing 3s steps(50, end), blink 0.75s step-end infinite;
    display: inline-block;
    max-width: fit-content;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; max-width: 600px; }
}

@keyframes blink {
    from, to { border-color: transparent; }
    50% { border-color: var(--primary); }
}

.hero-content > p {
    font-size: 1.2rem;
    color: #475569;
    margin-bottom: 3rem;
    line-height: 1.8;
    text-align: center;
    opacity: 0;
    animation: fadeInText 1s ease-out 3s forwards;
}

@keyframes fadeInText {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    animation: slideInLeft 1s ease-out 0.2s backwards;
}

.primary-btn {
    padding: 1.1rem 2.8rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.primary-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(14, 165, 233, 0.4);
}

.secondary-btn {
    padding: 1.1rem 2.8rem;
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 50px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.secondary-btn:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-4px);
}

.hero-image {
    position: relative;
    animation: slideInRight 0.8s ease-out, floatImage 6s ease-in-out 1s infinite;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes floatImage {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.hero-visual {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.8));
    border-radius: 35px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(14, 165, 233, 0.05), transparent);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

.section {
    padding: 8rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    color: var(--dark);
    letter-spacing: -1.5px;
}

.section-header p {
    font-size: 1.25rem;
    color: #64748b;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.stats-section {
    background: white;
    padding: 6rem 3rem;
}

.quotes-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 6rem 3rem;
    position: relative;
    overflow: hidden;
}

.quotes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.3), transparent);
}

.quotes-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.quote-card {
    background: white;
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid rgba(14, 165, 233, 0.1);
    text-align: center;
}

.quote-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(14, 165, 233, 0.15);
    border-color: rgba(14, 165, 233, 0.3);
}

.quote-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.quote-card:nth-child(2) .quote-icon {
    animation-delay: 0.5s;
}

.quote-card:nth-child(3) .quote-icon {
    animation-delay: 1s;
}

.quote-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--dark);
    font-style: italic;
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
}

.quote-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -10px;
    font-size: 4rem;
    color: rgba(14, 165, 233, 0.15);
    font-family: Georgia, serif;
}

.quote-author {
    font-size: 0.95rem;
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 0.5px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.product-card {
    background: white;
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid #f1f5f9;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(14, 165, 233, 0.15);
}

.product-badge {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.product-badge.business {
    background: linear-gradient(135deg, var(--success), var(--warning));
}

.product-card h3 {
    font-size: 2.5rem;
    margin-bottom: 0.8rem;
    color: var(--dark);
    font-weight: 800;
}

.product-tagline {
    font-size: 1.2rem;
    color: #64748b;
    font-style: italic;
    margin-bottom: 2rem;
}

.product-description {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.product-features {
    list-style: none;
    margin-bottom: 2.5rem;
}

.product-features li {
    padding: 1rem 0;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
}

.product-features li:hover {
    padding-left: 10px;
    color: var(--dark);
}

.product-features li::before {
    content: '✓';
    color: var(--primary);
    font-weight: bold;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.product-card.business .product-features li::before {
    color: var(--success);
}

.product-status {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.7rem 1.5rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        opacity: 1; 
        transform: scale(1); 
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% { 
        opacity: 0.8; 
        transform: scale(1.1);
        box-shadow: 0 0 0 10px rgba(16, 185, 129, 0);
    }
}

.product-cta button {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.vision-section {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.vision-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent, rgba(14, 165, 233, 0.05));
}

.vision-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.vision-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2.5rem;
    color: white;
    letter-spacing: -1.5px;
}

.vision-quote {
    font-size: 1.8rem;
    line-height: 1.6;
    color: #cbd5e1;
    font-weight: 300;
    font-style: italic;
    margin-bottom: 2rem;
}

.vision-description {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #94a3b8;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    text-align: center;
    padding: 7rem 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    top: -250px;
    right: -250px;
    animation: float 15s ease-in-out infinite;
}

.cta-section h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    letter-spacing: -1.5px;
}

.cta-section p {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}

.cta-section .cta-btn {
    background: white;
    color: var(--primary);
    padding: 1.3rem 3.5rem;
    font-size: 1.15rem;
    position: relative;
    z-index: 1;
}

footer {
    background: var(--dark);
    color: white;
    padding: 5rem 3rem 2rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand .logo-container {
    cursor: default;
    margin-bottom: 1.5rem;
}

.footer-brand .logo-text {
    -webkit-text-fill-color: white;
}

.footer-brand p {
    color: #94a3b8;
    margin: 1rem 0;
    line-height: 1.8;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section a {
    display: block;
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
}

.footer-section a:hover {
    color: var(--primary);
    padding-left: 5px;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    color: #64748b;
}

@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .products-grid,
    .stats-grid,
    .quotes-container {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }
    /* Tablet - Large (1024px and below) */
@media (max-width: 1024px) {
    .nav-container {
        padding: 1rem 2rem;
    }

    .nav-links {
        gap: 2rem;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
        padding: 0 2rem;
    }

    .hero-image {
        order: -1;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-content > p {
        font-size: 1.1rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 400px;
        font-size: 5rem;
    }

    .section {
        padding: 6rem 2rem;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .section-header p {
        font-size: 1.1rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }

    .quotes-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vision-content h2 {
        font-size: 3.5rem;
    }

    .vision-quote {
        font-size: 1.5rem;
    }

    .vision-description {
        font-size: 1.1rem;
    }

    .cta-section h2 {
        font-size: 3.5rem;
    }

    .cta-section p {
        font-size: 1.2rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}

/* Tablet - Small (768px and below) */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-links {
        gap: 1.5rem;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1.4rem;
    }

    .logo-svg {
        width: 40px;
        height: 40px;
    }

    .cta-btn {
        padding: 0.7rem 1.5rem;
        font-size: 0.9rem;
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero-container {
        padding: 0 1.5rem;
        gap: 2.5rem;
    }

    .hero-content h1 {
        font-size: 2.8rem;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 1rem;
        animation: typing 2.5s steps(40, end), blink 0.75s step-end infinite;
    }

    .hero-content > p {
        font-size: 1rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        gap: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .hero-visual {
        height: 350px;
        font-size: 4rem;
        border-radius: 25px;
    }

    .section {
        padding: 5rem 1.5rem;
    }

    .section-header {
        margin-bottom: 4rem;
    }

    .section-header h2 {
        font-size: 2.5rem;
        letter-spacing: -1px;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .stats-section,
    .quotes-section {
        padding: 5rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .quotes-container {
        gap: 1.5rem;
    }

    .quote-card {
        padding: 2.5rem;
        border-radius: 20px;
    }

    .quote-icon {
        font-size: 2.5rem;
    }

    .quote-text {
        font-size: 1.05rem;
    }

    .product-card {
        padding: 2.5rem;
        border-radius: 25px;
    }

    .product-card h3 {
        font-size: 2rem;
    }

    .product-tagline {
        font-size: 1.1rem;
    }

    .product-description {
        font-size: 1rem;
    }

    .product-features li {
        padding: 0.8rem 0;
        font-size: 0.95rem;
    }

    .vision-content h2 {
        font-size: 3rem;
    }

    .vision-quote {
        font-size: 1.3rem;
    }

    .vision-description {
        font-size: 1rem;
    }

    .cta-section {
        padding: 6rem 1.5rem;
    }

    .cta-section h2 {
        font-size: 3rem;
    }

    .cta-section p {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
    }

    .cta-section .cta-btn {
        padding: 1.2rem 3rem;
        font-size: 1.05rem;
    }

    footer {
        padding: 4rem 1.5rem 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Hamburger Menu Styles */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile - Large (480px and below) */
@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        padding: 80px 2rem 2rem;
        gap: 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.1);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 0;
        border-bottom: 1px solid #f1f5f9;
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .cta-btn {
        margin-top: 1rem;
        width: 100%;
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-svg {
        width: 35px;
        height: 35px;
    }

    .cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }

    .hero {
        padding: 90px 0 50px;
        min-height: auto;
    }

    .hero-container {
        padding: 0 1rem;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
        margin-bottom: 1.2rem;
        letter-spacing: -0.5px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1rem;
        animation: typing 2s steps(30, end), blink 0.75s step-end infinite;
    }

    .hero-content > p {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .primary-btn,
    .secondary-btn {
        width: 100%;
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }

    .hero-visual {
        height: 280px;
        font-size: 3rem;
        border-radius: 20px;
    }

    .section {
        padding: 4rem 1rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .section-header p {
        font-size: 0.95rem;
        padding: 0;
    }

    .stats-section,
    .quotes-section {
        padding: 4rem 1rem;
    }

    .stats-grid {
        gap: 1.5rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 0.9rem;
    }

    .quotes-container {
        gap: 1.5rem;
    }

    .quote-card {
        padding: 2rem;
        border-radius: 18px;
    }

    .quote-icon {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .quote-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1rem;
    }

    .quote-text::before {
        font-size: 3rem;
        top: -15px;
        left: -5px;
    }

    .quote-author {
        font-size: 0.85rem;
    }

    .products-grid {
        gap: 2rem;
    }

    .product-card {
        padding: 2rem;
        border-radius: 20px;
    }

    .product-badge {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .product-card h3 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }

    .product-tagline {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .product-description {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 2rem;
    }

    .product-features {
        margin-bottom: 2rem;
    }

    .product-features li {
        padding: 0.7rem 0;
        font-size: 0.9rem;
        gap: 0.8rem;
    }

    .product-features li::before {
        font-size: 1.1rem;
    }

    .product-status {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
    }

    .status-dot {
        width: 8px;
        height: 8px;
    }

    .product-cta button {
        padding: 1rem;
        font-size: 1rem;
    }

    .vision-section {
        padding: 4rem 1rem;
    }

    .vision-content h2 {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }

    .vision-quote {
        font-size: 1.1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }

    .vision-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .cta-section {
        padding: 5rem 1rem;
    }

    .cta-section h2 {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .cta-section p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }

    .cta-section .cta-btn {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }

    footer {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .footer-brand p {
        font-size: 0.95rem;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .footer-section a {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .footer-bottom {
        padding-top: 2rem;
        font-size: 0.85rem;
    }
}

/* Mobile - Extra Small (360px and below) */
@media (max-width: 360px) {
    .hero-content h1 {
        font-size: 1.9rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
    }

    .hero-content > p {
        font-size: 0.9rem;
    }

    .hero-visual {
        height: 240px;
        font-size: 2.5rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .quote-card {
        padding: 1.5rem;
    }

    .product-card {
        padding: 1.5rem;
    }

    .product-card h3 {
        font-size: 1.6rem;
    }

    .vision-content h2,
    .cta-section h2 {
        font-size: 2rem;
    }

    .vision-quote {
        font-size: 1rem;
    }
    

}

}