/* ============================================
   NextGen Bazaar — Page-Specific Styles
   ============================================ */

/* ============================================
   Hero Section (Home)
   ============================================ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    display: flex;
    align-items: center;
    padding: calc(var(--nav-height) + var(--space-3xl)) 0 var(--space-4xl);
    overflow: hidden;
}

.hero__bg-orbs {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.15;
}

.hero__orb--1 {
    width: 500px;
    height: 500px;
    background: var(--primary);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: var(--accent);
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 200px;
    height: 200px;
    background: var(--accent-light);
    top: 50%;
    left: 50%;
    animation: float 6s ease-in-out infinite 2s;
}

.hero__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__text {
    max-width: 580px;
}

.hero__tag {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 8px 20px;
    background: rgba(5, 150, 105, 0.15);
    border: 1px solid rgba(5, 150, 105, 0.3);
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--primary-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-xl);
    animation: fadeInDown 0.6s ease;
}

.hero__tag-dot {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease 0.1s both;
}

.hero__subtitle {
    font-size: var(--fs-md);
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    animation: fadeInUp 0.6s ease 0.2s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease 0.3s both;
}

.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.6s ease 0.4s both;
}

.hero__stat-value {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    background: var(--hero-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__stat-label {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
}

.hero__image-wrapper img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.hero__floating-card {
    position: absolute;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: var(--space-md) var(--space-lg);
    box-shadow: var(--shadow-md);
    animation: float 4s ease-in-out infinite;
}

.hero__floating-card--1 {
    top: 10%;
    right: -30px;
    animation-delay: 0s;
}

.hero__floating-card--2 {
    bottom: 15%;
    left: -40px;
    animation-delay: 1.5s;
}

@media (max-width: 992px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__text {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        display: none;
    }
}

/* ============================================
   Featured Categories Section
   ============================================ */
.section {
    padding: var(--space-4xl) 0;
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto var(--space-3xl);
}

.section__tag {
    display: inline-block;
    font-size: var(--fs-xs);
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: var(--space-sm);
}

.section__title {
    font-size: var(--fs-3xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.section__desc {
    color: var(--text-muted);
    font-size: var(--fs-md);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl) var(--space-lg);
    text-align: center;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--card-gradient);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.category-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary);
    box-shadow: var(--shadow-glow);
}

.category-card:hover::before {
    opacity: 1;
}

.category-card__icon {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto var(--space-md);
    background: rgba(5, 150, 105, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    transition: all var(--transition-base);
}

.category-card:hover .category-card__icon {
    background: var(--primary-gradient);
    transform: scale(1.1);
}

.category-card__name {
    position: relative;
    font-size: var(--fs-base);
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.category-card__count {
    position: relative;
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* ============================================
   Products Grid Section
   ============================================ */
.products-section {
    padding: var(--space-4xl) 0;
}

.products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.products-toolbar__filters {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-btn {
    padding: 8px 20px;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    font-weight: 500;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.products-toolbar__sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--space-xl);
}

/* ============================================
   Product Detail Page
   ============================================ */
.product-detail {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.product-detail__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
}

.product-gallery {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.product-gallery__main {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--bg-tertiary);
    margin-bottom: var(--space-md);
}

.product-gallery__main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery__thumbs {
    display: flex;
    gap: var(--space-sm);
}

.product-gallery__thumb {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-fast);
    opacity: 0.6;
}

.product-gallery__thumb.active,
.product-gallery__thumb:hover {
    border-color: var(--primary);
    opacity: 1;
}

.product-gallery__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-info__breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.product-info__breadcrumb a {
    color: var(--text-muted);
}

.product-info__breadcrumb a:hover {
    color: var(--accent);
}

.product-info__title {
    font-size: var(--fs-2xl);
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.product-info__rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-info__price-block {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
    padding: var(--space-lg);
    background: var(--bg-input);
    border-radius: var(--radius-lg);
}

.product-info__price {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--accent);
}

.product-info__original-price {
    font-size: var(--fs-lg);
    color: var(--text-muted);
    text-decoration: line-through;
}

.product-info__discount {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--danger);
    background: rgba(231, 76, 60, 0.15);
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.product-info__desc {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-xl);
}

.product-info__meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.product-info__meta-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.product-info__meta-icon {
    color: var(--primary-light);
}

.product-info__quantity {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.quantity-selector {
    display: flex;
    align-items: center;
    background: var(--bg-input);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector button {
    width: 44px;
    height: 44px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: var(--fs-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition-fast);
}

.quantity-selector button:hover {
    background: var(--bg-hover);
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    background: none;
    border: none;
    border-left: 1px solid var(--border-light);
    border-right: 1px solid var(--border-light);
    color: var(--text-primary);
    font-weight: 600;
    font-size: var(--fs-base);
    height: 44px;
}

.product-info__actions {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

@media (max-width: 768px) {
    .product-detail__grid {
        grid-template-columns: 1fr;
    }

    .product-gallery {
        position: static;
    }
}

/* ============================================
   Cart Page
   ============================================ */
.cart-page {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-2xl);
    align-items: start;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.cart-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.cart-item:hover {
    border-color: var(--border-color);
}

.cart-item__image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--bg-tertiary);
}

.cart-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item__info {
    flex: 1;
}

.cart-item__name {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.cart-item__price {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--accent);
    font-size: var(--fs-lg);
    margin-top: var(--space-sm);
}

.cart-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.cart-summary__title {
    font-size: var(--fs-lg);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--border-light);
}

.cart-summary__row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    font-size: var(--fs-sm);
    color: var(--text-secondary);
}

.cart-summary__row--total {
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--text-primary);
    border-top: 1px solid var(--border-light);
    margin-top: var(--space-md);
    padding-top: var(--space-md);
}

@media (max-width: 768px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }

    .cart-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ============================================
   Checkout Page
   ============================================ */
.checkout-page {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: var(--space-2xl);
    align-items: start;
}

.checkout-step {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-xl);
}

.checkout-step__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.checkout-step__number {
    width: 36px;
    height: 36px;
    background: var(--primary-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: var(--fs-sm);
    color: white;
    flex-shrink: 0;
}

.checkout-step__title {
    font-size: var(--fs-lg);
    font-weight: 700;
}

/* Payment Methods */
.payment-methods {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-md);
}

.payment-method {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg);
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.payment-method:hover {
    border-color: var(--primary);
    background: var(--bg-hover);
}

.payment-method.selected {
    border-color: var(--primary);
    background: rgba(5, 150, 105, 0.1);
}

.payment-method__icon {
    font-size: 2rem;
}

.payment-method__name {
    font-size: var(--fs-sm);
    font-weight: 600;
}

@media (max-width: 768px) {
    .checkout-layout {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Auth Page
   ============================================ */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-2xl);
    position: relative;
}

.auth-page__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.auth-page__bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
}

.auth-page__bg-orb--1 {
    width: 400px;
    height: 400px;
    background: var(--primary);
    opacity: 0.1;
    top: -100px;
    right: -100px;
}

.auth-page__bg-orb--2 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    opacity: 0.08;
    bottom: -50px;
    left: -50px;
}

.auth-container {
    width: 100%;
    max-width: 460px;
    position: relative;
    z-index: 1;
}

.auth-card {
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    animation: scaleIn 0.4s ease;
}

.auth-card__logo {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.auth-card__logo-text {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
}

.auth-card__title {
    font-size: var(--fs-xl);
    font-weight: 700;
    text-align: center;
    margin-bottom: var(--space-xs);
}

.auth-card__subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: var(--fs-sm);
    margin-bottom: var(--space-2xl);
}

.auth-card__divider {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin: var(--space-xl) 0;
}

.auth-card__divider::before,
.auth-card__divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-light);
}

.auth-card__divider span {
    font-size: var(--fs-xs);
    color: var(--text-muted);
    text-transform: uppercase;
}

.auth-card__footer {
    text-align: center;
    margin-top: var(--space-xl);
    font-size: var(--fs-sm);
    color: var(--text-muted);
}

.auth-card__footer a {
    color: var(--primary-light);
    font-weight: 600;
}

/* OTP Input */
.otp-input-group {
    display: flex;
    gap: var(--space-sm);
    justify-content: center;
    margin: var(--space-xl) 0;
}

.otp-input {
    width: 52px;
    height: 56px;
    text-align: center;
    font-size: var(--fs-xl);
    font-weight: 700;
    background: var(--bg-input);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition-fast);
}

.otp-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}

/* ============================================
   Profile Page
   ============================================ */
.profile-page {
    padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: var(--space-2xl);
}

.profile-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
}

.profile-sidebar__card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
    text-align: center;
}

.profile-sidebar__avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 3px solid var(--primary);
    object-fit: cover;
    margin: 0 auto var(--space-md);
}

.profile-sidebar__name {
    font-weight: 700;
    margin-bottom: var(--space-xs);
}

.profile-sidebar__email {
    font-size: var(--fs-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-lg);
}

.profile-sidebar__nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
    margin-top: var(--space-lg);
    border-top: 1px solid var(--border-light);
    padding-top: var(--space-lg);
}

.profile-sidebar__nav-item {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 10px var(--space-md);
    color: var(--text-secondary);
    font-size: var(--fs-sm);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all var(--transition-fast);
    border: none;
    background: none;
    width: 100%;
    text-align: left;
}

.profile-sidebar__nav-item:hover,
.profile-sidebar__nav-item.active {
    background: var(--bg-hover);
    color: var(--primary-light);
}

.profile-content {
    min-height: 60vh;
}

@media (max-width: 768px) {
    .profile-layout {
        grid-template-columns: 1fr;
    }

    .profile-sidebar {
        position: static;
    }
}

/* ============================================
   Order Tracking
   ============================================ */
.tracking-timeline {
    position: relative;
    padding-left: var(--space-2xl);
}

.tracking-timeline::before {
    content: '';
    position: absolute;
    left: 11px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border-light);
}

.tracking-step {
    position: relative;
    padding-bottom: var(--space-2xl);
}

.tracking-step:last-child {
    padding-bottom: 0;
}

.tracking-step__dot {
    position: absolute;
    left: calc(-1 * var(--space-2xl) + 3px);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    z-index: 1;
}

.tracking-step.completed .tracking-step__dot {
    background: var(--success);
    border-color: var(--success);
}

.tracking-step.current .tracking-step__dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 10px rgba(5, 150, 105, 0.5);
}

.tracking-step__title {
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.tracking-step__time {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

.tracking-step__desc {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    margin-top: var(--space-xs);
}

/* ============================================
   Shop Page Filters Sidebar
   ============================================ */
.shop-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-2xl);
    padding-top: calc(var(--nav-height) + var(--space-2xl));
}

.shop-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + var(--space-xl));
    height: fit-content;
}

.filter-section {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    margin-bottom: var(--space-md);
}

.filter-section__title {
    font-size: var(--fs-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-md);
    color: var(--text-primary);
}

.filter-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-sm) 0;
    cursor: pointer;
}

.filter-option label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    cursor: pointer;
}

.filter-option__count {
    font-size: var(--fs-xs);
    color: var(--text-muted);
}

/* Price Range */
.price-range {
    padding: var(--space-md) 0;
}

.price-range__slider {
    width: 100%;
    accent-color: var(--primary);
}

.price-range__values {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-xs);
    color: var(--text-muted);
    margin-top: var(--space-sm);
}

@media (max-width: 768px) {
    .shop-layout {
        grid-template-columns: 1fr;
    }

    .shop-sidebar {
        position: static;
        display: none;
    }

    .shop-sidebar.open {
        display: block;
    }
}

/* ============================================
   Newsletter / CTA Section
   ============================================ */
.cta-section {
    padding: var(--space-4xl) 0;
}

.cta-card {
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    padding: var(--space-4xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 300px;
    height: 300px;
    background: rgba(0, 210, 211, 0.1);
    border-radius: 50%;
}

.cta-card__content {
    position: relative;
    z-index: 1;
}

.cta-card__title {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: white;
    margin-bottom: var(--space-md);
}

.cta-card__desc {
    color: rgba(255, 255, 255, 0.8);
    max-width: 500px;
    margin: 0 auto var(--space-xl);
}

.cta-card__form {
    display: flex;
    gap: var(--space-sm);
    max-width: 450px;
    margin: 0 auto;
}

.cta-card__input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-full);
    color: white;
    font-size: var(--fs-base);
}

.cta-card__input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.cta-card__btn {
    padding: 14px 28px;
    background: white;
    color: var(--primary);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-fast);
    white-space: nowrap;
}

.cta-card__btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

@media (max-width: 480px) {
    .cta-card__form {
        flex-direction: column;
    }

    .cta-card {
        padding: var(--space-2xl);
    }
}