:root {
    --bg-color: #050505;
    --card-bg: rgba(255, 255, 255, 0.05);
    --primary: #00f2ea;
    --secondary: #ff0050;
    --text-main: #ffffff;
    --text-muted: #a0a0a0;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Syncopate', sans-serif;
    --glass-border: rgba(255, 255, 255, 0.1);
    --gradient-main: linear-gradient(135deg, var(--primary), var(--secondary));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-main);
    position: relative;
    overflow-x: hidden;
    cursor: none;
    /* Move cursor hiding here */
}

/* Noise Overlay */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    background: url('https://grainy-gradients.vercel.app/noise.svg');
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #000;
    z-index: 10000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 2rem;
    overflow: hidden;
}

.loader-text span {
    display: inline-block;
    transform: translateY(100%);
}

.loader-bar-bg {
    width: 200px;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-bar {
    width: 100%;
    height: 100%;
    background: var(--primary);
    transform: translateX(-100%);
}

/* Custom Cursor */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 10001;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--primary);
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary);
    transition: width 0.2s, height 0.2s, background-color 0.2s;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #000;
    z-index: 10000;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.8);
}

.cart-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
}

.close-cart {
    background: transparent;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart-msg {
    text-align: center;
    color: var(--text-muted);
    margin-top: 3rem;
}

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

.cart-item img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background: #111;
}

.cart-item-info h4 {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.cart-item-info span {
    color: var(--primary);
    font-size: 0.9rem;
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #050505;
}

.total-row {
    display: flex;
    justify-content: space-between;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.checkout-btn {
    width: 100%;
    justify-content: center;
    border-radius: 8px;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 9999;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
}

.cart-overlay.active {
    opacity: 1;
    pointer-events: all;
}

body:hover .cursor-outline {
    opacity: 1;
}

/* Glassmorphism Utility */
.glass {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transform: translateY(-100%);
    /* For GSAP reveal */
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo-icon {
    color: var(--primary);
}

.logo-text {
    font-family: var(--font-display);
}

.highlight {
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--text-main);
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.icon-btn {
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.2rem;
    margin-left: 1.5rem;
    position: relative;
    transition: transform 0.2s;
}

.badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--secondary);
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8%;
    position: relative;
    overflow: hidden;
}

.hero-bg-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: -1;
    background: radial-gradient(circle at 70% 50%, rgba(0, 242, 234, 0.08), transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(255, 0, 80, 0.08), transparent 40%);
}

.hero-content {
    flex: 1;
    z-index: 2;
}

/* Reveal Text Helper */
.reveal-text-container,
.title-line {
    overflow: hidden;
}

.reveal-text {
    display: inline-block;
    transform: translateY(100%);
    /* For GSAP */
}

.tagline {
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.hero-title {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
    font-family: var(--font-display);
}

.gradient-text {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-desc {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.cta-group {
    display: flex;
    gap: 1.5rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary {
    background: var(--text-main);
    color: #000;
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: 0 0 20px rgba(0, 242, 234, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--text-main);
}

.btn-secondary:hover {
    border-color: var(--text-main);
    background: rgba(255, 255, 255, 0.05);
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
    perspective: 1000px;
    opacity: 0;
    /* For GSAP */
}

.floating-card {
    position: relative;
    width: 400px;
    transform-style: preserve-3d;
}

.hero-img {
    width: 100%;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.5));
    transition: transform 0.1s;
}

.card-info {
    position: absolute;
    bottom: -20px;
    right: -40px;
    padding: 1.5rem;
    border-radius: 12px;
    display: flex;
    gap: 2rem;
    background: rgba(10, 10, 10, 0.6);
    transform: translateZ(50px);
    backdrop-filter: blur(20px);
}

.info-divider {
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.info-row {
    display: flex;
    flex-direction: column;
}

.info-row span {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.info-row strong {
    font-size: 1.5rem;
    color: var(--primary);
    font-family: var(--font-display);
}

/* Marquee */
.marquee-container {
    background: var(--primary);
    color: #000;
    padding: 1.5rem 0;
    overflow: hidden;
    position: relative;
    transform: rotate(-1deg) scale(1.05);
    margin: 4rem 0;
}

.marquee-content {
    display: flex;
    gap: 4rem;
    font-weight: 800;
    text-transform: uppercase;
    font-family: var(--font-display);
    font-size: 1.2rem;
    white-space: nowrap;
}

/* Categories Section */
.categories-section {
    padding: 5rem 8%;
    background: linear-gradient(180deg, #050505 0%, #0a0a0a 100%);
}

.category-flex {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 20px;
    width: 200px;
    transition: 0.3s;
    text-decoration: none;
}

.cat-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.cat-item img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(255, 255, 255, 0.1);
    padding: 5px;
    transition: 0.3s;
}

.cat-item:hover img {
    border-color: var(--primary);
}

.cat-item span {
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.cat-item:hover span {
    color: #fff;
}

/* Products Section */
.products-section {
    padding: 5rem 8%;
}

.products-section.alternate-bg {
    background: #0a0a0a;
}

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

.section-title {
    font-size: 3.5rem;
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
}

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

.product-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: 0.4s;
    background: rgba(255, 255, 255, 0.02);
}

.p-img-container {
    height: 350px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.p-img-container img {
    width: 80%;
    height: auto;
    object-fit: contain;
    transition: 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

.product-card:hover .p-img-container img {
    transform: scale(1.1) translateY(-10px);
}

.p-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: 0.3s;
}

.product-card:hover .p-overlay {
    opacity: 1;
}

.view-btn {
    padding: 0.8rem 1.5rem;
    background: #fff;
    color: #000;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    transform: translateY(20px);
    transition: 0.3s;
}

.product-card:hover .view-btn {
    transform: translateY(0);
}

.p-details {
    padding: 2rem;
}

.p-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 0.5rem;
}

.p-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    font-family: var(--font-display);
}

.p-cat {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 2rem;
}

.add-with-text {
    width: 100%;
    padding: 1rem;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    border-radius: 10px;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 1px;
    transition: 0.3s;
}

.add-with-text:hover {
    background: var(--text-main);
    color: #000;
}

.badge-new,
.badge-hot {
    position: absolute;
    top: 20px;
    left: 20px;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 800;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.badge-discount {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #ffeb3b;
    color: #000;
    padding: 5px 12px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.9rem;
    z-index: 10;
    transform: rotate(5deg);
    box-shadow: 0 5px 15px rgba(255, 235, 59, 0.3);
}

.old-price {
    text-decoration: line-through;
    opacity: 0.5;
    font-size: 0.9rem;
    margin-right: 5px;
    color: var(--text-muted);
}

.badge-new {
    background: var(--primary);
    color: #000;
}

.badge-hot {
    background: var(--secondary);
    color: #fff;
}

/* Tech Specs (Bento) */
.specs-section {
    padding: 5rem 8%;
}

/* Bento Grid */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 1.5rem;
    margin-top: 4rem;
}

.bento-item {
    border-radius: 20px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s;
}

.bento-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.8;
    transition: transform 0.5s;
}

.bento-item:hover .bento-bg {
    transform: scale(1.1);
    opacity: 0.6;
}

.bento-content {
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Bento Data Viz */
.stat-big {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin: 1rem 0 0.5rem;
    font-family: var(--font-display);
}

.stat-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Audio Visualizer */
.visualizer {
    display: flex;
    gap: 5px;
    align-items: flex-end;
    height: 40px;
    margin-top: auto;
}

.bar {
    width: 6px;
    background: var(--primary);
    animation: bounce 1s infinite ease-in-out alternate;
}

.bar:nth-child(2) {
    animation-delay: 0.1s;
    height: 60%;
}

.bar:nth-child(3) {
    animation-delay: 0.3s;
    height: 80%;
}

.bar:nth-child(4) {
    animation-delay: 0.2s;
    height: 50%;
}

.bar:nth-child(5) {
    animation-delay: 0.4s;
    height: 90%;
}

.bar:nth-child(6) {
    animation-delay: 0.6s;
    height: 70%;
}

@keyframes bounce {
    0% {
        height: 20%;
        opacity: 0.5;
    }

    100% {
        height: 100%;
        opacity: 1;
    }
}

/* Battery Spec */
.battery-stat {
    margin: 1.5rem 0;
}

.battery-fill {
    height: 6px;
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.battery-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 80%;
    background: #00f2ea;
    box-shadow: 0 0 10px #00f2ea;
}

.spec-list {
    list-style: none;
    padding: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
}

.spec-list li strong {
    color: #fff;
}

/* Material Spec */
.material-spec {
    margin-top: 1rem;
    border-left: 2px solid var(--primary);
    padding-left: 1rem;
}

.material-spec span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.material-spec strong {
    font-size: 1.2rem;
    display: block;
}

.weight-stat {
    margin-top: auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
}

.surround-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    margin-top: 1rem;
    backdrop-filter: blur(5px);
}

.bento-item:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.bento-item.large {
    grid-column: span 2;
    grid-row: span 2;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(0, 242, 234, 0.05));
}

.bento-item.wide {
    grid-column: span 2;
}

.tech-icon {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 1rem;
}

.tech-icon.large {
    font-size: 4rem;
    opacity: 0.2;
}

.bento-content h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.bento-content p {
    color: var(--text-muted);
    line-height: 1.6;
}

.row-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

/* Visual Story */
.visual-story {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-bg {
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: url('https://images.unsplash.com/photo-1511379938547-c1f69419868d?q=80&w=1920&auto=format&fit=crop') no-repeat center center/cover;
    z-index: -1;
    filter: brightness(0.6);
}

.story-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.visual-story:hover .parallax-bg {
    filter: brightness(0.6) grayscale(0%);
}

.story-title {
    font-size: 5rem;
    line-height: 1;
    font-family: var(--font-display);
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.outline-text {
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.8);
    color: transparent;
}

/* Newsletter */
.newsletter-section {
    padding: 5rem 8%;
    display: flex;
    justify-content: center;
}

.newsletter-container {
    width: 100%;
    max-width: 800px;
    padding: 3rem;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.02), rgba(0, 242, 234, 0.05));
}

.nl-text h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.nl-text p {
    color: var(--text-muted);
}

.nl-form {
    display: flex;
    gap: 1rem;
    flex: 1;
    position: relative;
}

.nl-input {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 0;
    color: #fff;
    font-size: 1rem;
    font-family: var(--font-main);
}

.nl-input:focus {
    outline: none;
    border-color: var(--primary);
}

.send-btn {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}



/* Limited Drop Section (New) */
.limited-drop {
    padding: 6rem 8%;
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, rgba(255, 0, 80, 0.1), transparent 60%);
}

.drop-content {
    text-align: center;
    max-width: 800px;
}

.drop-label {
    color: var(--secondary);
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 700;
    margin-bottom: 1rem;
    display: block;
}

.drop-title {
    font-size: 6rem;
    font-family: var(--font-display);
    line-height: 0.9;
    margin-bottom: 2rem;
}

.drop-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 4rem;
}

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

.time-box {
    width: 120px;
    height: 120px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 20px;
    border-color: rgba(255, 0, 80, 0.3);
}

.time-box span {
    font-size: 3rem;
    font-weight: 800;
    font-family: var(--font-display);
    color: #fff;
    line-height: 1;
}

.time-box small {
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 5px;
}



/* Trusted By / Logo Wall */
.logo-wall {
    padding: 3rem 0;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
}

.logo-track {
    white-space: nowrap;
}

.logo-slide {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.logo-slide i {
    font-size: 3rem;
    margin: 0 4rem;
    color: var(--text-muted);
    transition: 0.3s;
}

.logo-slide i:hover {
    color: var(--primary);
    filter: drop-shadow(0 0 10px var(--primary));
}

/* Testimonials */
.testimonials-section {
    padding: 8rem 8%;
}

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

.test-card {
    padding: 2.5rem;
    border-radius: 20px;
}

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

.test-header img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
}

.stars {
    color: #ffeb3b;
    font-size: 0.8rem;
    margin-top: 5px;
}

.test-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

/* Footer (Pre-existing) */
footer {
    padding: 4rem 8% 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(0, 0, 0, 0.8);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 3rem;
}

.footer-social {
    display: flex;
    gap: 2rem;
}

.footer-social a {
    color: var(--text-muted);
    font-size: 1.5rem;
    transition: 0.3s;
}

.footer-social a:hover {
    color: var(--primary);
    transform: translateY(-5px);
}

.copyright {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.9rem;
}

/* Small adjustments for responsiveness */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 15vh;
    }

    .hero-visual {
        margin-top: 4rem;
        width: 100%;
    }

    .floating-card {
        width: 90%;
        margin: 0 auto;
    }

    .card-info {
        right: 0;
        bottom: -50px;
        left: 0;
        width: 100%;
        justify-content: center;
        transform: translateZ(20px);
    }

    .cta-group {
        justify-content: center;
    }
}