/* Base Styles */
:root {
    --black: #0B0B0D;
    --gold: #D4AF37;
    --gold-glow: #FFD700;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --transition: all 0.3s ease;
    --animation-duration: 0.5s;
    --animation-timing: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --card-hover-transform: translateY(-10px) scale(1.03);
    --card-hover-shadow: 0 10px 25px rgba(212, 175, 55, 0.25);
}

/* Global Animations */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardPulse {
    0% { transform: scale(1); box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
    50% { transform: scale(1.02); box-shadow: 0 0 15px rgba(212, 175, 55, 0.3); }
    100% { transform: scale(1); box-shadow: 0 0 0 rgba(212, 175, 55, 0); }
}

@keyframes borderGlowAnimation {
    0% { border-color: rgba(212, 175, 55, 0.1); }
    50% { border-color: rgba(212, 175, 55, 0.5); }
    100% { border-color: rgba(212, 175, 55, 0.1); }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

@keyframes shimmer {
    0% { box-shadow: 0 0 5px var(--gold-glow); }
    50% { box-shadow: 0 0 15px var(--gold-glow); }
    100% { box-shadow: 0 0 5px var(--gold-glow); }
}

@keyframes borderGlow {
    0% { border-color: rgba(212, 175, 55, 0.3); }
    50% { border-color: rgba(212, 175, 55, 0.8); }
    100% { border-color: rgba(212, 175, 55, 0.3); }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--black);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    font-size: 1.05rem;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
h2{
    font-size: 2rem;
}

a {
    text-decoration: none;
    color: var(--text-primary);
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

section {
    padding: 5rem 0;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--black);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow), inset 0 0 0 2px var(--gold);
    transform: translateY(-3px);
    transition: all 0.3s var(--animation-timing);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(11, 11, 13, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    animation: fadeInDown var(--animation-duration) var(--animation-timing) forwards;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.logo a {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    text-shadow: 0 0 5px rgba(255, 215, 0, 0.5);
    position: relative;
    display: inline-block;
    transition: all 0.4s ease;
}

.logo a:hover {
    text-shadow: 0 0 10px var(--gold-glow);
    transform: scale(1.05);
}

.logo a::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--animation-timing);
}

.logo a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu li {
    margin-left: 2rem;
}

.nav-link {
    display: flex;
    align-items: center;
    font-weight: 500;
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.nav-link-lang {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    position: relative;
    overflow: hidden;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Space Grotesk', sans-serif;
    background-color: transparent;
    color: var(--gold);
    box-shadow: 0 0 10px var(--gold-glow), inset 0 0 0 2px var(--gold);
}
.nav-link-lang:hover {
    color: var(--gold);
    box-shadow: none;
    transform: translateY(-3px);
    border: none;
    transition: all 0.3s var(--animation-timing);
}

.nav-link .icon {
    margin-right: 0.5rem;
    stroke: var(--text-primary);
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
}

.nav-link:hover .icon {
    stroke: var(--gold);
    filter: drop-shadow(0 0 3px var(--gold-glow));
    transform: scale(1.1);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s var(--animation-timing);
}

.nav-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    margin-top: 0;
    padding-top: 10rem;
    perspective: 1000px;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1350px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    padding: 2rem;
    position: relative;
    z-index: 10;
    animation: fadeIn 1s var(--animation-timing) forwards;
    transform-style: preserve-3d;
}

@media (max-width: 1024px) {
    .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: center;
    }

    .hero-content {
        text-align: center;
        padding: 2rem 0rem;
    }

    .hero-timeline {
        max-width: 600px;
        margin: 0 auto;
    }

    .cta-buttons {
        justify-content: center;
    }
}

.hero-timeline {
    width: 100%;
    background: rgba(11, 11, 13, 0.8);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 12px;
    padding: 2rem;
    backdrop-filter: blur(10px);
    animation: fadeInRight var(--animation-duration) var(--animation-timing);
}

.hero-timeline h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
}

.hero-timeline .form-group {
    margin-bottom: 1.5rem;
}

.hero-timeline label {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.hero-timeline .form-control {
    width: 100%;
    padding: 0.75rem;
    background: black;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 6px;
    color: var(--text-primary);
    transition: var(--transition);
}

.hero-timeline .form-control:focus {
    border-color: var(--gold);
    outline: none;
    box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.hero-timeline .slider {
    -webkit-appearance: none;
    height: 4px;
    background: rgba(212, 175, 55, 0.3);
    border-radius: 2px;
    margin: 1rem 0;
}

.hero-timeline .slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--gold);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.hero-timeline .slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.timeline-result {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    min-height: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, rgba(11, 11, 13, 0.95) 70%);
    z-index: -1;
    box-shadow: inset 0 0 100px rgba(212, 175, 55, 0.1);
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1" fill="%23D4AF37" opacity="0.3"/></svg>');
    background-size: 100px 100px;
    z-index: -1;
}

.hero-image-1 {
    top: 10%;
    right: 5%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.3) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    filter: blur(40px);
}

.hero-image-2 {
    bottom: 10%;
    left: 5%;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.2) 0%, rgba(212, 175, 55, 0) 70%);
    border-radius: 50%;
    filter: blur(30px);
}

#particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

@keyframes particleAnimation {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 100px 100px;
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.headline {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--animation-duration) var(--animation-timing) forwards 0.3s;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
    font-weight: 800;
    letter-spacing: -0.03em;
    position: relative;
}

.headline::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 43%;
    transform: translateX(-50%);
    width: 150px;
    height: 3px;
    background: linear-gradient(to right, rgba(212, 175, 55, 0.3), var(--gold), rgba(212, 175, 55, 0.3));
    border-radius: 3px;
}

.subheadline {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp var(--animation-duration) var(--animation-timing) forwards 0.6s;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-weight: 500;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}
.cta-buttons.herobuttons{
    justify-content: start;
}

.cta-buttons .btn {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.5s forwards;
}

.cta-buttons .btn:nth-child(1) {
    animation-delay: 0.8s;
}

.cta-buttons .btn:nth-child(2) {
    animation-delay: 1s;
}

.cta-buttons .btn:nth-child(3) {
    animation-delay: 1.2s;
}

/* Hustle Timeline Section */
.hustle-timeline {
    background-color: rgba(11, 11, 13, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.hustle-timeline h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gold);
}
.timeline-headline{
    text-align: center;
}

.timeline-form {
    max-width: 600px;
    margin: 0 auto 3rem;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(11, 11, 13, 0.8);
    color: var(--text-primary);
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.slider {
    -webkit-appearance: none;
    height: 8px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 5px var(--gold-glow);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--gold);
    cursor: pointer;
    box-shadow: 0 0 5px var(--gold-glow);
    border: none;
}

#grind-hours-value {
    display: inline-block;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--gold);
}

#generate-timeline {
    font-size: 1rem;
    width: 100%;
    margin-top: 1rem;
}

.timeline-result {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    display: none;
}

.timeline-block {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
    padding: 1rem;
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--gold);
    border-radius: 0 4px 4px 0;
    animation: fadeIn 0.5s forwards;
    opacity: 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    gap: 1rem;
}

.timeline-block:hover {
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.timeline-icon {
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gold);
}

.timeline-content {
    flex-grow: 1;
}

.timeline-time {
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.25rem;
    min-width: fit-content;
}

.timeline-activity {
    flex-grow: 1;
}

.timeline-cta {
    text-align: center;
    margin-top: 2rem;
    animation: fadeIn 0.5s forwards;
}

.timeline-cta p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.timeline-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.timeline-cta .btn {
    min-width: 200px;
    transition: all 0.3s var(--animation-timing);
}

/* About Section */
.about{
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.about-text h2 {
    color: var(--gold);
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.pillar-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pillar-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s var(--animation-timing);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

.pillar-card:hover {
    transform: var(--card-hover-transform);
    box-shadow: var(--card-hover-shadow);
    border-color: var(--gold);
}

.pillar-card:hover::before {
    opacity: 1;
    animation: pulse 2s infinite;
}

.pillar-icon {
    stroke: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s var(--animation-timing);
    position: relative;
    z-index: 1;
}

.pillar-card:hover .pillar-icon {
    filter: drop-shadow(0 0 8px var(--gold-glow));
    transform: scale(1.15) translateY(-5px);
}

.pillar-card h3 {
    color: var(--gold);
    margin-bottom: 0.8rem;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.pillar-card:hover h3 {
    transform: translateY(-3px);
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.pillar-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pillar-card:hover p {
    color: var(--text-primary);
}

.pillar-link {
    color: var(--gold);
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.pillar-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: width 0.4s var(--animation-timing);
}

.pillar-card:hover .pillar-link::after {
    width: 100%;
}

.pillar-card:hover .pillar-link {
    font-weight: 700;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

.pillar-card a.card-link {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    text-indent: -9999px;
    overflow: hidden;
}

/* The Future of Self-Improvement Section */
.future-improvement {
    position: relative;
    background-color: var(--black);
    overflow: hidden;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.future-improvement::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.1) 0%, rgba(11, 11, 13, 0.9) 70%);
    z-index: 0;
}

.future-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.future-content h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2.3rem;
    animation: fadeInUp var(--animation-duration) var(--animation-timing) forwards;
}

.future-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
    animation: fadeInUp var(--animation-duration) var(--animation-timing) forwards;
    animation-delay: 0.2s;
}

.btn-glow {
    animation: pulse 2s infinite;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
}

.btn-glow::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    animation: rotate 10s linear infinite;
    z-index: -1;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.feature-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
    animation: fadeIn var(--animation-duration) var(--animation-timing) forwards;
    animation-delay: calc(0.3s * var(--i, 1));
}

.feature-card:nth-child(1) { --i: 1; }
.feature-card:nth-child(2) { --i: 2; }
.feature-card:nth-child(3) { --i: 3; }

.feature-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.5s var(--animation-timing);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.feature-card:hover::after {
    transform: scaleX(1);
}

.feature-icon {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-icon svg {
    stroke: var(--gold);
    transition: var(--transition);
}

.feature-card:hover .feature-icon svg {
    filter: drop-shadow(0 0 5px var(--gold-glow));
    transform: scale(1.1);
}

.feature-card h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Featured Drops Section */
.featured-drops {
    background-color: rgba(11, 11, 13, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-drops h2 {
    text-align: center;
    margin-bottom: 2.5rem;
    color: var(--gold);
}

.product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.product-card {
    background-color: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid rgba(212, 175, 55, 0.1);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    border-color: var(--gold);
}

.product-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    color: var(--gold);
}

.product-card p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
}

.product-card .btn {
    margin: 0 1.5rem 1.5rem;
}

/* Testimonials Section */
.testimonials {
    background-color: var(--black);
    padding: 5rem 0;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--gold);
    font-size: 2.5rem;
}

.gold-text {
    color: var(--gold);
}

.testimonial-subheading {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.testimonial-carousel {
    position: relative;
    max-width: 950px;
    margin: 0 auto;
}

.testimonial-slides {
    position: relative;
    min-height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.testimonial-slide.active {
    opacity: 1;
    visibility: visible;
}

.testimonial-content {
    min-height: 300px;
    background-color: #1a1a1c;
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.quote-icon {
    position: absolute;
    top: -30px;
    left: 50px;
    color: var(--gold);
    opacity: 0.8;
    transform: scale(1);
}

.testimonial-text {
    font-size: 1.5rem;
    line-height: 1.5;
    color: #ffffff;
    margin-bottom: 2rem;
    font-weight: 500;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.testimonial-author h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.testimonial-author p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.testimonial-achievement {
    background-color: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    gap: 1rem;
}

.testimonial-control {
    background-color: transparent;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--gold);
}

.testimonial-control:hover {
    background-color: var(--gold);
    color: black;
}

.testimonial-control:hover svg {
    stroke: var(--black);
}

.testimonial-control svg {
    stroke: var(--gold);
    width: 20px;
    height: 20px;
}

.testimonial-indicators {
    display: flex;
    gap: 0.5rem;
}

.indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(212, 175, 55, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.indicator.active {
    background-color: var(--gold);
    width: 24px;
    border-radius: 4px;
}

/* Email Opt-in Section */
.email-optin {
    background-color: rgba(11, 11, 13, 0.8);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.optin-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.optin-content h2 {
    color: var(--gold);
}

.optin-content p {
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.optin-form .form-group {
    display: flex;
    gap: 0.5rem;
}

.optin-form input {
    flex-grow: 1;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: rgba(11, 11, 13, 0.8);
    color: var(--text-primary);
    border-radius: 4px;
    font-family: 'Manrope', sans-serif;
}

.optin-form input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

#form-message {
    margin-top: 1rem;
    font-weight: 500;
}

.success-message {
    color: #4CAF50;
}

.error-message {
    color: #F44336;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
}

.quote-strip {
    margin-bottom: 2rem;
}

.quote-strip h2 {
    font-size: 2.5rem;
    color: var(--gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 3rem 0;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-nav ul {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-nav a:hover {
    color: var(--gold);
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.social-icon:hover {
    background-color: var(--gold);
}

.social-icon:hover svg {
    stroke: var(--black);
}

.social-icon svg {
    stroke: var(--gold);
    width: 30px;
    height: 30px;
}

.copyright {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .headline {
        font-size: 3rem;
    }
    
    .nav-menu {
        position: fixed;
        top: 0px;
        left: -100%;
        width: 100%;
        height: 100vh;
        background-color: rgba(11, 11, 13, 0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: var(--transition);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 1.5rem 0;
    }
    
    .nav-toggle {
        display: flex;
        z-index: 9;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    .testimonial-controls {
        left: 0;
        right: 0;
    }
    .headline::after {
        left:50%;
    }
}

@media (max-width: 768px) {
    section {
        padding: 4rem 0;
    }
    
    .headline {
        font-size: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        margin-bottom: 1rem;
    }
    
    .optin-form .form-group {
        flex-direction: column;
    }
    
    .testimonial-content {
        padding: 1.5rem;
    }
    
    .footer-nav ul {
        gap: 1rem;
    }
}

@media (max-width: 576px) {
    .headline {
        font-size: 3rem;
    }
    
    .subheadline {
        font-size: 1rem;
    }
    
    .pillar-cards,
    .product-cards {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 476px) {
    .testimonial-footer{
        display: grid;
        gap: 10px;
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Add smooth animations for elements coming into view */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.shake {
    animation: shake 0.5s cubic-bezier(.36,.07,.19,.97) both;
}

@keyframes shake {
    10%, 90% { transform: translate3d(-1px, 0, 0); }
    20%, 80% { transform: translate3d(2px, 0, 0); }
    30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
    40%, 60% { transform: translate3d(4px, 0, 0); }
}

.card.coming-soon {
    position: relative;
    overflow: hidden;
}

/* Only blur the content inside the card */
.card.coming-soon .card-content {
    filter: blur(5px) brightness(0.5);
    pointer-events: none;
}

.card.coming-soon::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(4px);
    z-index: 1;
}


/* Overlay the coming soon label above everything */
.card.coming-soon::after {
    content: "⏳ Coming Soon";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.6em 1em;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5em;
    z-index: 2;
    white-space: nowrap;
    pointer-events: none;
}

