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

/* Service Card Links */
.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.service-card-link:hover {
    transform: translateY(-5px);
}

.service-card-link:hover .service-card {
    transform: translateY(-10px);
}

.service-card-cta {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e0e0e0;
    color: #00D4FF;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-cta i {
    transition: transform 0.3s ease;
}

.service-card-link:hover .service-card-cta i {
    transform: translateX(5px);
}

/* Product Hero Section */
.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.product-hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.product-icon-large i {
    font-size: 4rem;
    color: white;
}

/* Product Features Section */
.product-features {
    padding: 80px 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 450px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.feature-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.feature-card ul {
    list-style: none;
}

.feature-card li {
    padding: 0.5rem 0;
    color: #555;
    position: relative;
    padding-left: 1.5rem;
}

.feature-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D4FF;
    font-weight: bold;
}

/* Product Benefits Section */
.product-benefits {
    padding: 80px 0;
    background: #f8f9fa;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 300px;
}

.benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

/* Specialty Areas Section */
.specialty-areas {
    padding: 80px 0;
    background: white;
}

.specialty-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.specialty-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.specialty-item:hover {
    transform: translateY(-5px);
}

.specialty-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.specialty-icon i {
    font-size: 1.75rem;
    color: white;
}

.specialty-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.specialty-item p {
    color: #666;
    line-height: 1.6;
}

/* Use Cases Section */
.product-use-cases {
    padding: 80px 0;
    background: #f8f9fa;
}

.use-cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.use-case-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 280px;
}

.use-case-item:hover {
    transform: translateY(-5px);
}

.use-case-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.use-case-icon i {
    font-size: 1.75rem;
    color: white;
}

.use-case-item h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.use-case-item p {
    color: #666;
    line-height: 1.6;
}

/* Customization Section */
.customization {
    padding: 80px 0;
    background: white;
}

.customization-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.customization-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 2rem;
}

.customization-text ul {
    list-style: none;
}

.customization-text li {
    padding: 1rem 0;
    color: #555;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}

.customization-text li:last-child {
    border-bottom: none;
}

.customization-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.customization-icon {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #00D4FF 0%, #0099CC 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(0, 212, 255, 0.3);
}

.customization-icon i {
    font-size: 3rem;
    color: white;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: #ffffff !important;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    z-index: 1000;
    padding: 1rem 0;
    transition: background-color 0.2s ease, box-shadow 0.2s ease;
    will-change: background-color, box-shadow;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-symbol {
    display: flex;
    align-items: center;
}

.logo-text {
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1;
}

.logo-text .canada-flag {
    flex-shrink: 0;
    align-self: center;
}

.logo-text span {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.canada-flag {
    height: 1em;
    width: auto;
    max-height: 1.2rem;
    max-width: 1.5em;
    border-radius: 2px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    vertical-align: middle;
    display: inline-block;
    object-fit: contain;
}

/* Force flag sizing on all devices */
img.canada-flag {
    max-height: 20px !important;
    height: auto !important;
    width: auto !important;
    vertical-align: middle !important;
}

.logo-level {
    font-size: 1.2rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 1px;
}

.logo-ai {
    font-size: 0.8rem;
    font-weight: 500;
    color: #00D4FF;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00D4FF;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
    background: transparent;
    border: none;
}

.hamburger:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0066CC 0%, #00D4FF 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.6;
}

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

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #0066CC;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #0066CC;
}

/* Skip link */
.skip-link {
    position: absolute;
    left: -999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.skip-link:focus {
    position: fixed;
    left: 20px;
    top: 20px;
    width: auto;
    height: auto;
    padding: 10px 14px;
    background: #0066CC;
    color: #fff;
    border-radius: 6px;
    z-index: 2000;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ai-voice-animation {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.voice-waves {
    position: absolute;
    width: 100%;
    height: 100%;
}

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: wave 2s infinite;
}

.wave:nth-child(2) {
    animation-delay: 0.5s;
}

.wave:nth-child(3) {
    animation-delay: 1s;
}

@keyframes wave {
    0% {
        transform: scale(0.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.ai-avatar {
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.ai-avatar i {
    font-size: 3rem;
    color: #0066CC;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: #f8f9fa;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066CC, #00D4FF);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.service-card p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.service-card ul {
    list-style: none;
}

.service-card li {
    padding: 0.5rem 0;
    color: #666;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #00D4FF;
    font-weight: bold;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: white;
}

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

.industry-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.industry-item:hover {
    background: #f8f9fa;
    transform: translateY(-5px);
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0066CC, #00D4FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.industry-icon i {
    font-size: 2rem;
    color: white;
}

.industry-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
}

/* About Section */
.about {
    padding: 5rem 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #00D4FF;
    margin-top: 0.2rem;
}

.feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066CC;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: white;
}

.contact-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-form {
    flex: 1;
    max-width: 500px;
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 20px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00D4FF;
}

/* Form Status Messages */
.form-status {
    margin-top: 1rem;
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.5;
    text-align: center;
}

.form-status a {
    color: #0066CC;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.form-status a:hover {
    color: #00D4FF;
    text-decoration: underline;
}

.contact-info {
    flex: 1;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 15px;
}

.contact-item i {
    font-size: 1.5rem;
    color: #00D4FF;
    width: 40px;
    text-align: center;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item small {
    color: #00D4FF;
    font-size: 0.85rem;
    margin-top: 0.25rem;
    display: block;
}

/* Contact Section Responsive */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-form,
    .contact-info {
        max-width: 100%;
    }
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-logo .logo-level {
    color: white;
}

.footer-logo .logo-ai {
    color: #00D4FF;
}

.footer-logo .logo-text span {
    color: white;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

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

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #00D4FF;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #444;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    .canada-flag,
    .logo-text .canada-flag,
    .footer-logo .canada-flag,
    img.canada-flag {
        height: 12px !important;
        width: auto !important;
        max-height: 12px !important;
        max-width: 18px !important;
        object-fit: contain !important;
        vertical-align: baseline !important;
    }
    
    .hamburger {
        display: flex;
        margin-right: -10px;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        padding-top: 0;
        margin-top: 160px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-wrap: wrap;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .contact-content {
        flex-direction: column;
        align-items: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    /* Product Page Responsive */
    .product-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .product-hero-text h1 {
        font-size: 2.5rem;
    }

    .product-hero-buttons {
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .specialty-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .use-cases-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .customization-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .canada-flag,
    .logo-text .canada-flag,
    .footer-logo .canada-flag,
    img.canada-flag {
        height: 10px !important;
        width: auto !important;
        max-height: 10px !important;
        max-width: 15px !important;
        object-fit: contain !important;
        vertical-align: baseline !important;
    }
    
    .hamburger {
        padding: 12px;
        margin-right: -12px;
    }
    
    .hamburger span {
        width: 28px;
        height: 4px;
    }
    
    .hero {
        padding-top: 0;
        margin-top: 180px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .about-text h2 {
        font-size: 2rem;
    }

    .stats-container {
        grid-template-columns: 1fr;
    }

    /* Product Page Small Screen Responsive */
    .product-hero-text h1 {
        font-size: 2rem;
    }

    .product-subtitle {
        font-size: 1.1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }

    .feature-card h3 {
        font-size: 1.25rem;
    }
} 

/* Focus styles for accessibility */
:focus-visible {
    outline: 3px solid #00D4FF;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    * {
        animation: none !important;
        transition: none !important;
        scroll-behavior: auto !important;
    }
}

/* Lazy images */
img[loading="lazy"] {
    content-visibility: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

/* Make images responsive by default */
img { max-width: 100%; height: auto; }

/* Support iOS safe area for fixed navbar */
@supports (padding-top: env(safe-area-inset-top)) {
  .navbar { padding-top: calc(1rem + env(safe-area-inset-top)); }
}

/* Responsive typography using clamp */
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.section-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }
.about-text h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); }

/* Tablet breakpoint */
@media (max-width: 1024px) {
  .hero-container { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .product-hero-content { grid-template-columns: 1fr; text-align: center; gap: 2.5rem; }
  .nav-menu { gap: 1.25rem; }
}

/* Small devices enhancements */
@media (max-width: 600px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 80px; }
  .btn { padding: 0.85rem 1.25rem; }
  .nav-menu a { padding: 8px 0; }
}