/* =========================================
   0. IMPORT FONTS
   ========================================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --bg-dark: #0f172a;
    --bg-card: #1e293b;
    --text-light: #f8fafc;
    --text-gray: #94a3b8;
    --success: #10b981;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
}

a { text-decoration: none; color: inherit; transition: 0.3s; }
ul { list-style: none; }

/* =========================================
   2. HEADER & NAVIGATION
   ========================================= */
header {
    background-color: transparent;
    padding: 1rem 5%;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
}

header.scrolled {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    padding: 0.7rem 2rem;
    width: 90%;
    left: 50%;
    transform: translateX(-50%);
    top: 15px;
    border-radius: 50px;
}

.logo img {
    height: 60px;
    width: auto;
    transition: all 0.4s ease;
}

header.scrolled .logo img {
    height: 40px;
}

nav ul {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
}

nav a:hover { color: #ffcc00; }

/* Hamburger Icon — hidden on desktop */
.menu-icon {
    display: none;
    font-size: 1.8rem;
    color: white;
    cursor: pointer;
}

/* =========================================
   3. BUTTONS
   ========================================= */
.btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    letter-spacing: 0.5px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.6);
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-color);
    color: white;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Shine sweep animation on hover */
.btn::after {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: none;
}

.btn:hover::after {
    left: 100%;
    transition: 0.5s ease-in-out;
}

/* Glass Buttons (used in pricing cards) */
.glass-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 12px;
    border-radius: 8px;
    width: 100%;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.glass-btn:hover { background: rgba(255, 255, 255, 0.2); }

.glass-btn.primary { background: #2563eb; border: none; }
.glass-btn.primary:hover { background: #1d4ed8; }

/* =========================================
   4. HERO SECTION
   ========================================= */
.hero-premium {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 5%;
    background-image: url('JANIT.svg');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, rgba(53, 81, 148, 0.95) 0%, rgba(15, 23, 42, 0.6) 45%, transparent 50%);
    z-index: 1;
}

.hero-content-left {
    position: relative;
    z-index: 2;
    max-width: 650px;
    text-align: left;
}

.hero-content-left .badge {
    display: inline-block;
    background: rgba(59, 130, 246, 0.1);
    color: #60a5fa;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.hero-content-left h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.8);
}

.highlight-text { color: var(--primary-color); }

.hero-content-left p {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-bottom: 40px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.8);
}

.hero-buttons,
.portfolio-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUpAnim 1s ease forwards;
}

.delay-2 { animation-delay: 0.4s; }

@keyframes fadeUpAnim {
    to { opacity: 1; transform: translateY(0); }
}

/* =========================================
   5. SECTION HEADERS (shared)
   ========================================= */
.section { padding: 5rem 5%; }

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 { font-size: 2.5rem; margin-bottom: 10px; }
.section-header p { color: var(--text-gray); }

.badge-pill {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* =========================================
   6. SERVICES / PREMIUM CARDS SECTION
   ========================================= */
.services-premium-section {
    position: relative;
    padding: 6rem 5%;
    background: #0f172a;
    overflow: hidden;
}

/* Background Glow Orbs */
.glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.4;
}

.orb-1 { width: 300px; height: 300px; background: #2563eb; top: -50px; left: -50px; }
.orb-2 { width: 400px; height: 400px; background: #f59e0b; bottom: -100px; right: -100px; opacity: 0.2; }

/* Grid */
.services-grid-pro {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

/* Card */
.service-card-pro {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 35px 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.service-card-pro:hover {
    transform: translateY(-10px);
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
}

/* Gradient top border on hover */
.service-card-pro::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 2px;
    background: linear-gradient(90deg, #2563eb, #f59e0b);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card-pro:hover::before { transform: scaleX(1); }

/* Icon Box */
.icon-box {
    width: 60px; height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #60a5fa;
    margin-bottom: 25px;
    transition: all 0.3s ease;
}

.icon-box.blue   { color: #60a5fa; background: rgba(37, 99, 235, 0.1); }
.icon-box.gold   { color: #fbbf24; background: rgba(251, 191, 36, 0.1); }
.icon-box.purple { color: #c084fc; background: rgba(192, 132, 252, 0.1); }
.icon-box.pink   { color: #f472b6; background: rgba(244, 114, 182, 0.1); }

.service-card-pro:hover .icon-box {
    transform: scale(1.1) rotate(5deg);
    background: var(--primary-color);
    color: #fff;
}

.service-card-pro h3 { font-size: 1.4rem; color: #fff; margin-bottom: 12px; font-weight: 700; }
.service-card-pro p  { color: #94a3b8; font-size: 0.95rem; line-height: 1.6; margin-bottom: 25px; }

.read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #fff;
    opacity: 0.7;
    transition: 0.3s;
}

.read-more i { font-size: 0.8rem; transition: transform 0.3s; }
.service-card-pro:hover .read-more { opacity: 1; color: #fbbf24; }
.service-card-pro:hover .read-more i { transform: translateX(5px); }

/* =========================================
   7. PRICING SECTION
   ========================================= */
.pricing-section {
    background: linear-gradient(135deg, #0f172a, #162032, #0f172a);
    padding: 80px 0;
    position: relative;
}

.category-title {
    text-align: center;
    color: #fff;
    font-size: 2rem;
    margin: 60px 0 30px;
    font-weight: bold;
}

.category-title span { color: #4ade80; }

/* Tabs */
.pricing-tabs-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
    padding: 0 10px;
}

.pricing-tab {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    padding: 12px 24px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.pricing-tab:hover { background: rgba(251, 191, 36, 0.1); color: #fbbf24; }

.pricing-tab.active {
    background: #fbbf24;
    color: #000;
    font-weight: bold;
    border-color: #fbbf24;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.4);
    transform: scale(1.05);
}

/* Panels */
.pricing-panel {
    display: none;
    animation: slideUpFade 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-panel.active-panel { display: block; }

@keyframes slideUpFade {
    from { opacity: 0; transform: translateY(40px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Glass Cards */
.glass-container {
    display: flex;
    gap: 25px;
    justify-content: center;
    flex-wrap: wrap;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.glass-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
    border-radius: 16px;
    padding: 35px 25px;
    flex: 1;
    min-width: 300px;
    max-width: 360px;
    color: #fff;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.glass-card.popular {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.5);
    transform: scale(1.05);
}

.glass-card.popular:hover { transform: scale(1.05) translateY(-10px); }

.popular-badge {
    position: absolute;
    top: 15px; right: 15px;
    background: linear-gradient(90deg, #f59e0b, #fbbf24);
    color: #000;
    font-size: 0.75rem;
    font-weight: bold;
    padding: 5px 12px;
    border-radius: 20px;
}

.glass-card h3     { font-size: 1.3rem; margin-bottom: 10px; }
.glass-card .price { font-size: 2rem; font-weight: bold; margin-bottom: 5px; }
.glass-card .duration { font-size: 0.9rem; color: #94a3b8; font-weight: normal; }

.glass-card p.desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    margin-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 15px;
}

.glass-card ul         { padding: 0; margin: 0 0 25px 0; }
.glass-card ul li      { color: #e2e8f0; font-size: 0.95rem; margin-bottom: 12px; }

/* =========================================
   8. MODAL (Inquiry / Booking)
   ========================================= */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal-overlay.active { display: flex; }

.modal-content {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    width: 90%;
    max-width: 500px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5), 0 0 40px rgba(251, 191, 36, 0.08);
    animation: slideDown 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-30px) scale(0.95); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.close-modal {
    position: absolute;
    top: 16px; right: 20px;
    font-size: 1.6rem;
    color: #94a3b8;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.close-modal:hover { color: #fbbf24; }

.modal-header h2 { color: #fbbf24; font-size: 1.6rem; font-weight: 700; margin-bottom: 6px; }
.modal-header p  { color: #94a3b8; font-size: 0.88rem; margin-bottom: 1.5rem; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    color: #cbd5e1;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: #f8fafc;
    font-size: 0.92rem;
    font-family: inherit;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: rgba(251, 191, 36, 0.5);
}

.form-group textarea    { resize: vertical; min-height: 100px; }
.form-group input[readonly] { background: rgba(251, 191, 36, 0.08); color: #fbbf24; font-weight: bold; cursor: default; }

/* Submit / Send Inquiry Button */
.modal-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #0f172a;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.3px;
}

.modal-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.35);
}

.modal-submit-btn:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }

/* Modal Success View */
.modal-success { display: none; text-align: center; padding: 2rem 1rem; }
.modal-success .success-icon { font-size: 3.5rem; color: #4ade80; margin-bottom: 1rem; }
.modal-success h3 { color: #fff; font-size: 1.4rem; margin-bottom: 0.5rem; }
.modal-success p  { color: #94a3b8; font-size: 0.9rem; }

/* =========================================
   9. FAQ SECTION
   ========================================= */
.faq-container { max-width: 800px; margin: 0 auto; }

.faq-item {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.5);
    transition: border-color 0.3s;
}

.faq-item.open { border-color: rgba(251, 191, 36, 0.3); }

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: #f8fafc;
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    transition: color 0.3s;
    font-family: inherit;
}

.faq-question:hover { color: #fbbf24; }
.faq-icon { flex-shrink: 0; transition: transform 0.35s ease; color: #fbbf24; }
.faq-item.open .faq-icon { transform: rotate(180deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { padding: 0 1.5rem 1.2rem; color: #94a3b8; font-size: 0.92rem; line-height: 1.7; }
.faq-item.open .faq-answer { max-height: 400px; }

/* FAQ Inquiry Button */
.faq-inquiry-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 4px 0 10px 1.5rem;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.12), rgba(245, 158, 11, 0.06));
    border: 1px solid rgba(251, 191, 36, 0.4);
    border-radius: 50px;
    color: #fbbf24;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    letter-spacing: 0.3px;
}

.faq-inquiry-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.28), rgba(245, 158, 11, 0.14));
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.2);
}

.faq-inquiry-btn i { font-size: 0.8rem; }

/* =========================================
   10. FOOTER
   ========================================= */
footer {
    background: #020617;
    padding: 4rem 5%;
    color: var(--text-gray);
    border-top: 1px solid #334155;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 { color: var(--text-light); margin-bottom: 20px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a:hover { color: var(--text-light); }

.copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #1e293b;
    font-size: 0.9rem;
}

/* =========================================
   11. PAGE LOADING ANIMATION
   ========================================= */
.page-reveal-overlay {
    position: fixed;
    inset: 0;
    background-color: #0f172a;
    z-index: 99999;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeOutOverlay 0.5s ease forwards;
    animation-delay: 3s;
    transition: transform 1s ease;
}

.page-reveal-overlay::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(0, 180, 255, 0.15), transparent 60%);
}

.reveal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.reveal-logo img {
    width: 160px;
    height: auto;
    opacity: 0;
    transform: scale(1.8);
    animation: fadeInLogo 1.8s ease forwards;
}

.loading-bar-container {
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

.loading-bar-fill {
    width: 0%;
    height: 100%;
    background-color: #b2c036;
    box-shadow: 0 0 10px rgba(33, 74, 121, 0.5);
    animation: fillProgress 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.8s;
}

body.loading-locked { overflow: hidden; }

@keyframes fadeInLogo  { to { opacity: 1; transform: scale(1); } }
@keyframes fillProgress { 0% { width: 0%; } 100% { width: 100%; } }
@keyframes fadeOutOverlay { 0% { opacity: 1; } 100% { opacity: 0; visibility: hidden; } }

/* =========================================
   12. WHATSAPP FLOAT BUTTON
   ========================================= */
.whatsapp-float {
    position: fixed;
    bottom: 28px; right: 28px;
    z-index: 999;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: #fff;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s, box-shadow 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.12);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float::before {
    content: '';
    position: absolute;
    width: 60px; height: 60px;
    background: #25d366;
    border-radius: 50%;
    animation: wa-pulse 2s infinite;
    z-index: -1;
}

@keyframes wa-pulse {
    0%  { transform: scale(1); opacity: 0.6; }
    70% { transform: scale(1.6); opacity: 0; }
    100%{ opacity: 0; }
}

.wa-tooltip {
    position: absolute;
    right: 70px;
    background: #1e293b;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    font-size: 0.82rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.wa-tooltip::after {
    content: '';
    position: absolute;
    right: -6px; top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: #1e293b;
}

.whatsapp-float:hover .wa-tooltip { opacity: 1; }

/* =========================================
   13. RESPONSIVE / MOBILE
   ========================================= */
@media (max-width: 992px) {
    header {
        justify-content: space-between;
        padding: 0.8rem 5%;
        flex-wrap: wrap;
    }

    .logo { order: 1; flex: 0 0 auto; }
    .logo img { height: 40px; }

    .menu-icon {
        display: block;
        order: 2;
        font-size: 1.5rem;
        cursor: pointer;
        color: white;
        background: rgba(255, 255, 255, 0.1);
        width: 40px; height: 40px;
        line-height: 40px;
        text-align: center;
        border-radius: 50%;
        margin: 0 10px;
        transition: 0.3s;
    }

    .menu-icon:hover { background: var(--primary-color); }

    .auth-buttons { display: block !important; order: 3; }
    .auth-buttons .btn { padding: 0.5rem 1rem; font-size: 0.8rem; }

    nav { order: 4; width: 100%; }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(15px);
        margin-top: 15px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        padding: 10px 0;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
        animation: slideDown 0.3s ease-in-out;
    }

    nav ul.active { display: flex; }

    nav ul li { width: 100%; text-align: center; }
    nav ul li a { display: block; padding: 12px; font-size: 1rem; border-bottom: 1px solid rgba(255, 255, 255, 0.05); }
    nav ul li:last-child a { border-bottom: none; }
}

@media (max-width: 768px) {
    .hero-premium {
        background-position: 80% center;
        padding-top: 8rem;
    }

    .hero-overlay {
        background: linear-gradient(180deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.95) 100%);
    }

    .hero-content-left { text-align: center; margin: 0 auto; }
    .hero-content-left h1 { font-size: 2.5rem; }
    .hero-buttons, .portfolio-actions { flex-direction: column; justify-content: center; }

    .btn { padding: 0.5rem 1.2rem; font-size: 0.85rem; }

    .pricing-tabs-container {
        overflow-x: auto;
        white-space: nowrap;
        justify-content: flex-start;
        padding-bottom: 10px;
    }

    .pricing-tab { flex: 0 0 auto; }
}
