/* =====================================================
   SWARANK MUSIC - MODERN REDESIGN
   A bold, dramatic aesthetic with luxury music vibes
   ===================================================== */

/* =============== FONTS =============== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800;900&family=DM+Sans:wght@400;500;600;700&display=swap');

/* =============== CSS VARIABLES =============== */
:root {
    /* Colors - Rich, dramatic palette */
    --color-primary: #1a1f4e;
    --color-primary-dark: #0d1033;
    --color-primary-light: #2f3c80;
    --color-accent: #d4a853;
    --color-accent-light: #eed89c;
    --color-accent-dark: #b8923f;
    --color-white: #ffffff;
    --color-off-white: #f8f6f3;
    --color-dark: #0a0c1a;
    --color-text: #4a4a5a;
    --color-text-light: #8a8a9a;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4a853 0%, #c09f5d 50%, #b8923f 100%);
    --gradient-dark: linear-gradient(180deg, #1a1f4e 0%, #0d1033 100%);
    --gradient-hero: linear-gradient(135deg, #0d1033 0%, #1a1f4e 50%, #2f3c80 100%);
    --gradient-accent: linear-gradient(135deg, #d4a853 0%, #eed89c 100%);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', system-ui, sans-serif;

    /* Sizing */
    --header-height: 5rem;
    --container-width: 1200px;
    --container-padding: 1.5rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 60px rgba(212, 168, 83, 0.3);

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-full: 9999px;
}

/* =============== RESET & BASE =============== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}












.progress-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 0%;
    background: var(--color-accent, #d4a853);
    z-index: 9998;
    transition: width 0.08s linear;
}





img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

/* =============== UTILITIES =============== */
.container {
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

/* =============== ANIMATED BACKGROUND =============== */
.bg-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    background: var(--gradient-hero);
}

.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: rgba(212, 168, 83, 0.3);
    top: -20%;
    right: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: rgba(47, 60, 128, 0.5);
    bottom: -10%;
    left: -5%;
    animation-delay: -7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: rgba(212, 168, 83, 0.2);
    top: 50%;
    left: 50%;
    animation-delay: -14s;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -30px) scale(1.1);
    }

    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}

/* =============== HEADER / NAV =============== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1rem 0;
    transition: var(--transition-slow);
}

.header.scrolled {
    background: rgba(13, 16, 51, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.5rem 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    position: relative;
    overflow: hidden;
}

.nav__link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-base);
    transform: translateX(-50%);
}

.nav__link:hover::before {
    width: 60%;
}

.nav__link--highlight {
    background: rgba(212, 168, 83, 0.15);
    color: var(--color-accent);
}

.nav__buttons {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__login {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-white);
    opacity: 0.8;
}

.nav__login:hover {
    opacity: 1;
    color: var(--color-accent);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: var(--transition-base);
}

.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);
}

/* =============== BUTTONS =============== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    white-space: nowrap;
}

.btn i {
    font-size: 1.1rem;
    transition: transform var(--transition-base);
}

.btn:hover i {
    transform: translateX(3px);
}

.btn--primary {
    background: var(--gradient-gold);
    color: var(--color-dark);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.btn--gradient {
    background: var(--gradient-gold);
    color: var(--color-dark);
}

.btn--gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(212, 168, 83, 0.4);
}

.btn--outline {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: var(--color-white);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--color-accent);
    background: rgba(212, 168, 83, 0.1);
}

.btn--outline-light {
    border: 2px solid rgba(255, 255, 255, 0.5);
    color: var(--color-white);
    background: transparent;
}

.btn--outline-light:hover {
    border-color: var(--color-white);
    background: rgba(255, 255, 255, 0.1);
}

.btn--glass {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: var(--color-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn--glass:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* =============== HERO SECTION =============== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

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

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(212, 168, 83, 0.15);
    border: 1px solid rgba(212, 168, 83, 0.3);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    color: var(--color-accent);
    margin-bottom: 2rem;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.badge__icon {
    font-size: 1rem;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2);
    }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.title__line {
    display: block;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.title__line--1 {
    color: var(--color-accent-light);
    animation-delay: 0.2s;
    font-size: 1.5em;
}

.title__line--2 {
    color: rgba(255, 255, 255, 0.6);
    font-style: italic;
    animation-delay: 0.4s;
}

.title__line--3 {
    animation-delay: 0.6s;
    font-size: 1.5em;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero__description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 0.8s;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1s;
}

.hero__stats {
    display: flex;
    gap: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.stat {
    text-align: left;
}

.stat__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat__suffix {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-accent);
}

.stat__label {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.25rem;
}

/* Hero Visual */
.hero__visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__image-wrapper {
    position: relative;
    width: 100%;
    max-width: 500px;
    animation: floatImage 6s ease-in-out infinite;
}

@keyframes floatImage {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero__image {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 60px rgba(212, 168, 83, 0.3));
}

.hero__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.3) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

/* Floating Notes */
.floating-notes {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.note {
    position: absolute;
    font-size: 2rem;
    color: var(--color-accent);
    opacity: 0.6;
    animation: floatNote 8s ease-in-out infinite;
}

.note-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.note-2 {
    top: 20%;
    right: 10%;
    animation-delay: -2s;
}

.note-3 {
    bottom: 20%;
    left: 5%;
    animation-delay: -4s;
}

.note-4 {
    bottom: 10%;
    right: 15%;
    animation-delay: -6s;
}

@keyframes floatNote {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) rotate(10deg);
        opacity: 0.3;
    }
}

/* Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-accent), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

    0%,
    100% {
        transform: scaleY(1);
        opacity: 1;
    }

    50% {
        transform: scaleY(0.5);
        opacity: 0.5;
    }
}

/* =============== ABOUT SECTION =============== */
.about {
    background: var(--color-off-white);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d4a853' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

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

.about__image-container {
    position: relative;
}

.about__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__image {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.about__image-wrapper:hover .about__image {
    transform: scale(1.05);
}

.about__image-decoration {
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 3px solid var(--color-accent);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__experience {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--gradient-gold);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience__number {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
}

.experience__text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-dark);
}

/* Section Titles */
.section__subtitle {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-dark);
    margin-bottom: 0.75rem;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about__text {
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.about__text strong {
    color: var(--color-primary);
}

.about__features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
}

.feature i {
    font-size: 1.25rem;
    color: var(--color-accent-dark);
}

.about__social {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.social__label {
    font-size: 0.85rem;
    color: var(--color-text-light);
}

.social__links {
    display: flex;
    gap: 0.75rem;
}

.social__link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.social__link:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
}

/* =============== PILLARS SECTION =============== */
.pillars {
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.pillars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.02' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.section__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.pillars .section__subtitle {
    color: var(--color-accent);
}

.pillars .section__title {
    color: var(--color-white);
}

.section__description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

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

/* Pillar Cards */
.pillar-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: var(--transition-slow);
}

.pillar-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 168, 83, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition-slow);
}

.pillar-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 168, 83, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.pillar-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-md);
    font-size: 1.75rem;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    transition: var(--transition-base);
}

.pillar-card:hover .pillar-card__icon {
    transform: scale(1.1) rotate(5deg);
}

.pillar-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.pillar-card__text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.pillar-card__tag {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    background: rgba(212, 168, 83, 0.15);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

/* Pillar Carousel */
.pillar-card__carousel {
    width: 100%;
    height: 200px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.3);
}

.pillar-card__carousel .carousel {
    display: flex;
    height: 100%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.pillar-card__carousel .carousel::-webkit-scrollbar {
    display: none;
}

.pillar-card__carousel .slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-card__carousel .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.6);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 1rem;
    z-index: 10;
    transition: var(--transition-base);
    border: none;
    cursor: pointer;
}

.carousel-btn:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

/* =============== CTA SECTION =============== */
.cta {
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 168, 83, 0.15) 0%, transparent 60%);
    animation: rotateBg 30s linear infinite;
}

@keyframes rotateBg {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.cta__content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1rem;
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

.cta__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

/* =============== FOOTER =============== */
.footer {
    background: var(--color-dark);
    padding: 5rem 0 2rem;
    position: relative;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__logo {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
}

.footer__tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0.5rem 0 1rem;
}

.footer__description {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer__social {
    display: flex;
    gap: 0.75rem;
}

.footer__social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 1.1rem;
    transition: var(--transition-base);
}

.footer__social-link:hover {
    background: var(--color-accent);
    color: var(--color-dark);
    transform: translateY(-3px);
}

.footer__title {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-white);
    margin-bottom: 1.5rem;
}

.footer__list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__link {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition-base);
}

.footer__link:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.footer__newsletter-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1rem;
}

.footer__form {
    display: flex;
    gap: 0.5rem;
}

.footer__input {
    flex: 1;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    color: var(--color-white);
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-base);
}

.footer__input:focus {
    border-color: var(--color-accent);
    background: rgba(255, 255, 255, 0.15);
}

.footer__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.footer__submit {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-gold);
    border-radius: var(--radius-sm);
    color: var(--color-dark);
    font-size: 1.25rem;
    transition: var(--transition-base);
}

.footer__submit:hover {
    transform: translateX(3px);
}

.footer__bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* =============== MODAL =============== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.modal-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 100%;
    overflow: hidden;
    position: relative;
    animation: scaleIn 0.3s ease;
}

@keyframes scaleIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    color: var(--color-white);
    border-radius: var(--radius-full);
    font-size: 1.5rem;
    z-index: 10;
    transition: var(--transition-base);
    cursor: pointer;
    border: none;
}

.modal-close:hover {
    background: var(--color-accent);
    color: var(--color-dark);
}

.modal-image {
    width: 100%;
    height: auto;
}

.modal-actions {
    padding: 1.5rem;
    text-align: center;
}

/* =============== REVEAL ANIMATIONS =============== */
[data-reveal] {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="up"] {
    transform: translateY(40px);
}

[data-reveal="left"] {
    transform: translateX(-40px);
}

[data-reveal="right"] {
    transform: translateX(40px);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translate(0);
}

/* Staggered delays */
[data-delay="100"] {
    transition-delay: 0.1s;
}

[data-delay="200"] {
    transition-delay: 0.2s;
}

[data-delay="300"] {
    transition-delay: 0.3s;
}

/* =============== RESPONSIVE DESIGN =============== */

/* Tablets */
@media screen and (max-width: 1024px) {
    .hero__container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        order: 2;
    }

    .hero__visual {
        order: 1;
    }

    .hero__description {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-wrapper {
        max-width: 350px;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-container {
        max-width: 400px;
        margin: 0 auto;
    }

    .about__content {
        text-align: center;
    }

    .about__features {
        max-width: 400px;
        margin-left: auto;
        margin-right: auto;
    }

    .about__social {
        justify-content: center;
    }

    .pillars__grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media screen and (max-width: 768px) {
    :root {
        --header-height: 4rem;
    }

    .section {
        padding: 4rem 0;
    }

    /* Navigation */
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: rgba(13, 16, 51, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 6rem 2rem 2rem;
        transition: var(--transition-slow);
        z-index: 999;
    }

    .nav__menu.show {
        right: 0;
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav__list {
        flex-direction: column;
        width: 100%;
        gap: 0.5rem;
    }

    .nav__link {
        display: block;
        padding: 1rem;
        font-size: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav__link::before {
        display: none;
    }

    .nav__buttons {
        flex-direction: column;
        width: 100%;
        margin-top: 1rem;
    }

    .nav__buttons .btn {
        width: 100%;
    }

    .nav__login {
        text-align: center;
        padding: 1rem;
    }

    .nav__toggle {
        display: flex;
    }

    /* Hero */
    .hero {
        min-height: auto;
        padding: 6rem 0 4rem;
    }

    .hero__badge {
        font-size: 0.7rem;
    }

    .hero__stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .stat {
        text-align: center;
    }

    .hero__scroll {
        display: none;
    }

    .floating-notes {
        display: none;
    }

    /* About */
    .about__experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 1rem;
        display: inline-block;
    }

    .about__image-decoration {
        display: none;
    }

    .about__features {
        grid-template-columns: 1fr;
        text-align: left;
    }

    /* CTA */
    .cta__actions {
        flex-direction: column;
    }

    .cta__actions .btn {
        width: 100%;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__social {
        justify-content: center;
    }

    .footer__form {
        max-width: 300px;
        margin: 0 auto;
    }
}

/* Small phones */
@media screen and (max-width: 480px) {
    .container {
        --container-padding: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

    .pillar-card {
        padding: 1.5rem;
    }

    .pillar-card__carousel {
        height: 150px;
    }
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .orb {
        display: none;
    }
}