:root {
    --primary: #EFBF04;
    /* Bright Gold */
    --primary-light: #FFD700;
    --primary-hover: #D4AF37;
    --bg-dark: #050505;
    --bg-card: #111111;
    --bg-alt: #0a0a0a;
    --text-white: #ffffff;
    --text-gold: #EFBF04;
    --text-gray: #aab4be;
    --accent: #ffae00;
    --glow: 0 0 20px rgba(239, 191, 4, 0.3);
    --container-width: 1200px;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --danger: #ff4d4d;

    /* Responsive Variables */
    --section-padding: clamp(60px, 8vw, 120px);
    --h1-size: clamp(2.5rem, 8vw, 4.5rem);
    --h2-size: clamp(2rem, 5vw, 3rem);
    --script-size: clamp(3.2rem, 10vw, 5.5rem);
}

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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-white);
    background-color: var(--bg-dark);
    overflow-x: hidden;
    overflow-y: hidden;
    /* Oculta scroll durante o preloader */
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--bg-dark);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.piano-loader {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-bottom: 20px;
}

.key {
    width: 12px;
    height: 40px;
    background: var(--primary);
    border-radius: 4px;
    animation: piano-pulse 1.2s infinite;
}

.key:nth-child(2) {
    animation-delay: 0.2s;
}

.key:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes piano-pulse {

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

    50% {
        transform: scaleY(1.8);
        opacity: 1;
        box-shadow: 0 0 15px var(--primary);
    }
}

.loader-text {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: white;
}

.loader-text span {
    color: var(--primary);
}

h1,
h2,
h3,
.logo {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    text-transform: none;
    letter-spacing: -0.5px;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 24px;
}

.container.narrow {
    max-width: 800px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 14, 20, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -1px;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-gray);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links li a:hover {
    color: var(--primary);
}

.nav-student {
    background: rgba(239, 191, 4, 0.05);
    border: 1px solid rgba(239, 191, 4, 0.2);
    padding: 6px 12px;
    border-radius: 6px;
    color: var(--primary-light) !important;
    font-size: 0.85rem !important;
    display: flex;
    align-items: center;
    transition: var(--transition);
}

.nav-student:hover {
    background: rgba(239, 191, 4, 0.15);
    border-color: var(--primary);
    color: var(--primary) !important;
    transform: translateY(-1px);
}

/* Section Commons */
.section {
    padding: var(--section-padding) 0;
}

.section.bg-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-size: var(--h2-size);
    margin-bottom: 2rem;
    line-height: 1.2;
}

.section-title.center {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title.inverse {
    color: var(--text-white);
}

.center {
    text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-small,
.btn-whatsapp {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #B8860B);
    color: #000;
    box-shadow: var(--glow);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(239, 191, 4, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-left: 12px;
}

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

.btn-small {
    padding: 8px 20px;
    background-color: var(--primary);
    color: #000 !important;
    font-size: 0.85rem;
}

.btn-whatsapp {
    background-color: #25D366;
    color: white;
    font-size: 1.2rem;
    padding: 20px 48px;
    margin-top: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
}

.btn-whatsapp.pulse {
    animation: whatsapp-pulse 2s infinite;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes urgent-pulse {
    0% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(239, 191, 4, 0.5);
    }

    50% {
        transform: scale(1.05);
        text-shadow: 0 0 15px rgba(239, 191, 4, 0.8);
    }

    100% {
        transform: scale(1);
        text-shadow: 0 0 5px rgba(239, 191, 4, 0.5);
    }
}

.urgent-badge {
    background: linear-gradient(135deg, var(--danger), #8b0000);
    color: white;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 800;
    font-size: 0.85rem;
    display: inline-block;
    margin-bottom: 1rem;
    animation: urgent-pulse 2s infinite;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-highlights {
    display: flex;
    gap: 20px;
    margin-bottom: 2rem;
}

.date-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(239, 191, 4, 0.2);
    padding: 15px 25px;
    border-radius: 12px;
    flex: 1;
    text-align: center;
}

.date-item .label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.date-item .value {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.date-item.critical {
    border-color: var(--danger);
    background: rgba(255, 77, 77, 0.05);
}

.date-item.critical .value {
    color: var(--danger);
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: scale(1.05);
}

/* Hero */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    text-align: left;
}

.hero-content {
    max-width: 700px;
}

.hero-content h1 {
    font-size: var(--h1-size);
    margin-bottom: 1.5rem;
    background: linear-gradient(to right, #ffffff, var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.pricing-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(239, 191, 4, 0.3);
    padding: 0;
    border-radius: 24px;
    display: inline-block;
    margin-bottom: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), var(--glow);
    backdrop-filter: blur(15px);
    position: relative;
    transition: var(--transition);
    overflow: hidden;
    max-width: 500px;
    width: 100%;
}

.pricing-header {
    padding: 40px 40px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-header h3 {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    color: var(--text-white);
}

.benefits-list {
    list-style: none;
    text-align: left;
    margin-bottom: 0;
}

.benefits-list li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-list li span {
    font-size: 1.2rem;
}

.pricing-values {
    padding: 30px 40px 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

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

.pricing-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.04);
}

.pricing-box::before {
    content: "VAGAS LIMITADAS";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: #000;
    padding: 5px 20px;
    border-radius: 0 0 12px 12px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 4px 10px rgba(239, 191, 4, 0.4);
    z-index: 10;
}

.cta-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.urgency-text {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.contact-info {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-gray);
}

.location-box {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.location-box p {
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.price-item {
    margin: 5px 0;
}

.price-label {
    text-transform: uppercase;
    font-size: 0.75rem;
    color: var(--text-gray);
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-top: 5px;
    text-shadow: 0 0 15px rgba(239, 191, 4, 0.2);
}

.hero-content h1 span.script {
    font-family: 'Great Vibes', cursive;
    -webkit-text-fill-color: var(--primary);
    font-size: var(--script-size);
    display: block;
    margin-top: -10px;
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grid & Layouts */
.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.grid-banner {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.banner-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.banner-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.8s ease;
}

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

.grid-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Stats */
.stats {
    display: flex;
    gap: 40px;
    margin-top: 3rem;
}

.stat-item h3 {
    font-size: 2rem;
    color: var(--primary);
}

.stat-item p {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Method Cards */
.method-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 40px 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.method-card:hover {
    border-color: rgba(239, 191, 4, 0.5);
    transform: translateY(-10px) scale(1.05);
    background: rgba(239, 191, 4, 0.03);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 25px rgba(239, 191, 4, 0.1);
}

/* Light Sweep for Method Card */
.method-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(30deg);
    transition: none;
}

.method-card:hover::after {
    left: 130%;
    transition: all 0.6s ease;
}

.method-card .icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
    transition: var(--transition);
    filter: drop-shadow(0 0 5px rgba(239, 191, 4, 0.1));
}

.method-card:hover .icon {
    transform: scale(1.2) translateY(-5px);
    filter: drop-shadow(0 0 15px rgba(239, 191, 4, 0.4));
}

.method-card h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-white);
    letter-spacing: 0.5px;
}

.method-card p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
    font-weight: 300;
}

/* Module Cards */
.module-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.module-header {
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.module-header span {
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 600;
}

.module-header h3 {
    font-size: 1.5rem;
    margin-top: 5px;
}

.module-header.destaque {
    background: linear-gradient(135deg, rgba(239, 191, 4, 0.15), transparent);
    border-bottom: 2px solid var(--primary);
    box-shadow: inset 0 -10px 20px rgba(239, 191, 4, 0.05);
}

.module-content {
    padding: 30px;
    flex-grow: 1;
}

.objective {
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.module-content ul {
    list-style: none;
}

.module-content li {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.module-content li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary);
}

.module-footer {
    padding: 20px 30px;
    background: rgba(0, 0, 0, 0.2);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-gray);
    text-align: right;
}

/* Schedules Section */
.schedules-grid {
    margin-top: 3rem;
}

.schedule-card {
    background: rgba(17, 17, 17, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.schedule-card:hover {
    border-color: rgba(239, 191, 4, 0.5);
    transform: translateY(-12px) scale(1.02);
    background: rgba(239, 191, 4, 0.03);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(239, 191, 4, 0.1);
}

/* Light Sweep Effect */
.schedule-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -60%;
    width: 20%;
    height: 200%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.05), transparent);
    transform: rotate(30deg);
    transition: none;
}

.schedule-card:hover::after {
    left: 130%;
    transition: all 0.8s ease;
}

.schedule-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 3px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 3px;
}

.schedule-card:hover::before {
    width: 60%;
}

.shift-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    filter: drop-shadow(0 0 10px rgba(239, 191, 4, 0.2));
    transition: var(--transition);
}

.schedule-card:hover .shift-icon {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(239, 191, 4, 0.4));
}

.schedule-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
    color: var(--text-white);
    letter-spacing: 1px;
}

.time-slot {
    font-size: 1.3rem;
    font-weight: 700;
    color: #000;
    background: var(--primary);
    padding: 8px 24px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
    box-shadow: var(--glow);
    font-family: 'Outfit', sans-serif;
    display: inline-block;
}

.schedule-card p {
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 300;
}

/* Accordion */
.accordion {
    margin-top: 2rem;
}

.accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.accordion-header {
    padding: 24px 0;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
}

.accordion-header::after {
    content: "+";
    color: var(--primary);
}

.accordion-item.active .accordion-header::after {
    content: "-";
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    color: var(--text-gray);
    transition: max-height 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 200px;
    padding-bottom: 24px;
}



/* --- SEÇÃO PERFIS E RESULTADOS (AJUSTE PREMIUM & ANIMAÇÃO) --- */

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
    margin-top: 4rem;
}

.profile-card {
    background: rgba(17, 17, 17, 0.6);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.profile-img-box {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.profile-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.profile-info {
    padding: 25px;
    text-align: center;
    flex-grow: 1;
}

.profile-info h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.profile-info p {
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.profile-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), 0 0 20px rgba(239, 191, 4, 0.1);
}

.profile-card:hover img {
    transform: scale(1.1);
}

/* Skills Section */
.skills-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    margin-top: 3rem;
}

.skills-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(239, 191, 4, 0.2);
    transition: var(--transition);
}

.skills-img-wrapper:hover {
    border-color: var(--primary);
    transform: scale(1.02);
}

.skills-img-wrapper img {
    width: 100%;
    display: block;
}

.skills-content-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.skill-box {
    background: rgba(255, 255, 255, 0.02);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.skill-box:hover {
    background: rgba(239, 191, 4, 0.05);
    border-color: var(--primary);
    transform: translateX(10px);
}

.skill-box h4 {
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.skill-box p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

/* Delays para Staggered Animation */
.delay-1 {
    transition-delay: 0.1s !important;
}

.delay-2 {
    transition-delay: 0.2s !important;
}

.delay-3 {
    transition-delay: 0.3s !important;
}

.delay-4 {
    transition-delay: 0.4s !important;
}

/* --- FIM SEÇÃO PERFIS --- */

/* CTA & Footer */
.cta-section {
    background: linear-gradient(to bottom, var(--bg-dark), #000);
}

footer {
    padding: 60px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-content p {
    color: var(--text-gray);
    font-size: 0.85rem;
    margin-top: 1.5rem;
}

/* Glass Card */
.card-glass {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-text {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    font-style: italic;
}

/* Animations */
.reveal,
.reveal-left,
.reveal-right {
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal {
    transform: translateY(30px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.reveal.visible,
.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 28px;
    height: 3px;
    background-color: var(--text-white);
    border-radius: 2px;
    transition: var(--transition);
}

/* Mobile Menu Active State */
.menu-toggle.is-active .bar:nth-child(2) {
    opacity: 0;
}

.menu-toggle.is-active .bar:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.menu-toggle.is-active .bar:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Responsive Overrides */
@media (max-width: 992px) {

    .grid-banner,
    .skills-layout {
        grid-template-columns: 1fr !important;
        gap: 40px;
        text-align: center;
    }

    .banner-wrapper,
    .skills-img-wrapper {
        max-width: 500px;
        margin: 0 auto;
    }

    .content,
    .skills-content {
        text-align: center;
    }

    .content .badge,
    .skills-content .badge {
        margin: 0 auto 1.5rem;
        display: block;
        width: fit-content;
    }

    .stats {
        justify-content: center;
    }

    .grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100vh;
        width: 80%;
        max-width: 300px;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(15px);
        flex-direction: column;
        justify-content: center;
        padding: 40px;
        transition: var(--transition);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        border-left: 1px solid rgba(239, 191, 4, 0.2);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .hero-content {
        text-align: center;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .btn-secondary {
        margin-left: 0;
    }

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

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

    .pricing-box {
        max-width: 100%;
    }
}

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

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

    .pricing-header {
        padding: 40px 20px 20px;
    }

    .pricing-values {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .price-divider {
        width: 80%;
        height: 1px;
    }

    .price-value {
        font-size: 2.2rem;
    }

    .urgent-badge {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}