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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    line-height: 1.6;
    color: #E0E0E0;
    background: #0A0A0A;
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Orbitron', monospace;
    line-height: 1.2;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    gap: 0;
    font-family: 'Orbitron', monospace;
    font-weight: 900;
    font-size: 2rem;
    position: relative;
}

.logo__text {
    color: #00D4FF;
    position: relative;
    font-weight: 900;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.logo__accent {
    color: #FF6B35;
    font-weight: 700;
    position: relative;
    margin-left: -2px;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.5);
}

.logo__accent::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #00D4FF, #FF6B35);
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 212, 255, 0.2);
}

.header.scroll-header {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0, 212, 255, 0.1);
}

.nav {
    height: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__logo {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.nav__tagline {
    font-size: 0.7rem;
    color: #FF6B35;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.nav__menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
    z-index: 1001;
}

.nav__menu.show-menu {
    top: 0;
}

.nav__list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    list-style: none;
    text-align: center;
}

.nav__link {
    font-size: 1.2rem;
    font-weight: 600;
    color: #E0E0E0;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav__link:hover,
.nav__link.active-link {
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #00D4FF, #FF6B35);
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link.active-link::after {
    width: 80%;
}

.nav__toggle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.nav__toggle span {
    width: 25px;
    height: 3px;
    background: #00D4FF;
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

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

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

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

.nav__close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    color: #00D4FF;
    cursor: pointer;
    z-index: 1002;
}

/* Button Styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    text-align: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Rajdhani', sans-serif;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn--primary {
    background: linear-gradient(135deg, #00D4FF, #0099CC);
    color: #0A0A0A;
    box-shadow: 0 4px 20px rgba(0, 212, 255, 0.4);
    font-weight: 700;
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.btn--outline {
    background: transparent;
    color: #00D4FF;
    border: 2px solid #00D4FF;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
}

.btn--outline:hover {
    background: #00D4FF;
    color: #0A0A0A;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.4);
}

.btn--product {
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    font-size: 0.9rem;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
}

.btn--product:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(255, 107, 53, 0.4);
}

.btn--large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn__icon {
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #0A0A0A 0%, #1A1A2E 50%, #16213E 100%);
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero__content {
    animation: fadeInUp 1s ease;
}

.hero__title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #E0E0E0;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero__title-accent {
    color: #00D4FF;
    position: relative;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00D4FF, #FF6B35);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero__description {
    font-size: 1.2rem;
    color: #B0B0B0;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero__stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero__stat-number {
    font-size: 2rem;
    font-weight: 900;
    color: #00D4FF;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.hero__stat-text {
    font-size: 0.9rem;
    color: #B0B0B0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero__buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.hero__image {
    position: relative;
    animation: fadeInRight 1s ease;
}

.hero__img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
    transition: transform 0.3s ease;
    border: 2px solid rgba(0, 212, 255, 0.3);
}

.hero__img:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 212, 255, 0.3);
}

.hero__floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-element {
    position: absolute;
    font-size: 2rem;
    animation: float 3s ease-in-out infinite;
}

.floating-element--1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-element--2 {
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.floating-element--3 {
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

/* Section Styles */
.section__header {
    text-align: center;
    margin-bottom: 4rem;
}

.section__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.section__subtitle {
    font-size: 1.1rem;
    color: #B0B0B0;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Categories Section */
.categories {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 100%);
}

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

.category__card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.category__card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.category__image {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.category__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.category__card:hover .category__img {
    transform: scale(1.1);
}

.category__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.8), rgba(255, 107, 53, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
}

.category__card:hover .category__overlay {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.9), rgba(255, 107, 53, 0.7));
}

.category__icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
}

.category__card:hover .category__icon {
    transform: translateY(0);
}

.category__title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    transform: translateY(10px);
    transition: transform 0.3s ease;
    font-family: 'Orbitron', monospace;
}

.category__card:hover .category__title {
    transform: translateY(0);
}

.category__desc {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
    transform: translateY(20px);
    transition: transform 0.3s ease 0.1s;
}

.category__card:hover .category__desc {
    transform: translateY(0);
}

.category__badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    transition: transform 0.3s ease 0.2s;
}

.category__card:hover .category__badge {
    transform: translateY(0);
}

/* Products Section */
.products {
    padding: 6rem 0;
    background: #0A0A0A;
}

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

.product__card {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.product__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.product__badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, #FF6B35, #FF8C42);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product__image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.product__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product__card:hover .product__img {
    transform: scale(1.1);
}

.product__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 212, 255, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product__card:hover .product__overlay {
    opacity: 1;
}

.product__btn {
    background: white;
    color: #0A0A0A;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product__btn:hover {
    transform: scale(1.05);
}

.product__content {
    padding: 2rem;
    text-align: left;
}

.product__rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.star {
    color: #FFD700;
    font-size: 1rem;
}

.product__rating-text {
    color: #B0B0B0;
    font-size: 0.9rem;
}

.product__name {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', monospace;
}

.product__desc {
    color: #B0B0B0;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product__price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.product__price-old {
    color: #888;
    text-decoration: line-through;
    font-size: 1rem;
}

.product__price-new {
    color: #00D4FF;
    font-size: 1.3rem;
    font-weight: 700;
    font-family: 'Orbitron', monospace;
}

/* Features Section */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 100%);
}

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

.feature__card {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.feature__card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.feature__card:hover::before {
    left: 100%;
}

.feature__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.feature__icon {
    margin-bottom: 2rem;
}

.feature__icon-bg {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #00D4FF, #FF6B35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
}

.feature__title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #E0E0E0;
    margin-bottom: 1rem;
    font-family: 'Orbitron', monospace;
}

.feature__description {
    color: #B0B0B0;
    line-height: 1.7;
}

/* Reviews Section */
.reviews {
    padding: 6rem 0;
    background: #0A0A0A;
}

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

.review__card {
    background: linear-gradient(135deg, #1A1A2E, #16213E);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid rgba(0, 212, 255, 0.2);
}

.review__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.review__rating {
    margin-bottom: 1.5rem;
}

.review__text {
    font-style: italic;
    color: #B0B0B0;
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.review__author-info h4 {
    color: #00D4FF;
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-family: 'Orbitron', monospace;
}

.review__title {
    color: #FF6B35;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* CTA Section */
.cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0F0F23 0%, #1A1A2E 50%, #16213E 100%);
    color: #E0E0E0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}

.cta__content {
    position: relative;
    z-index: 2;
}

.cta__title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

.cta__description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    color: #B0B0B0;
}

.cta__buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #0A0A0A;
    color: #E0E0E0;
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(0, 212, 255, 0.2);
}

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

.footer__section h3 {
    color: #00D4FF;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    font-family: 'Orbitron', monospace;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer__logo .logo {
    margin-bottom: 1rem;
}

.footer__tagline {
    color: #FF6B35;
    font-size: 0.9rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer__description {
    color: #B0B0B0;
    line-height: 1.7;
}

.footer__contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 1rem;
    color: #B0B0B0;
}

.footer__contact-icon {
    font-size: 1.2rem;
}

.footer__links {
    list-style: none;
}

.footer__links li {
    margin-bottom: 0.8rem;
}

.footer__link {
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__link:hover {
    color: #00D4FF;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer__social {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer__social-link {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #B0B0B0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer__social-link:hover {
    color: #FF6B35;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.footer__social-icon {
    font-size: 1.2rem;
}

.footer__bottom {
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    color: #888;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* AOS Animation Classes */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav__menu {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        flex-direction: row;
        backdrop-filter: none;
    }

    .nav__list {
        flex-direction: row;
        gap: 2.5rem;
    }

    .nav__link {
        font-size: 1rem;
    }

    .nav__toggle,
    .nav__close {
        display: none;
    }
}

@media (max-width: 767px) {
    .categories__grid {
        grid-template-columns: 1fr;
    }

    .category__card {
        height: 300px;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero__title {
        font-size: 2.5rem;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__buttons {
        justify-content: center;
    }

    .section__title {
        font-size: 2rem;
    }

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

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

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

    .cta__title {
        font-size: 2rem;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero__title {
        font-size: 2rem;
    }

    .hero__description {
        font-size: 1rem;
    }

    .section__title {
        font-size: 1.8rem;
    }

    .cta__title {
        font-size: 1.8rem;
    }

    .logo {
        font-size: 1.5rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 280px;
    }
}