/* ===========================
   GIBBS EDU TECH — SALES PROPOSAL
   Design System & Styles
   =========================== */

/* --- CSS Variables / Design Tokens --- */
:root {
    /* Colors */
    --primary: #43c6ac;
    --primary-dark: #2fa08a;
    --primary-light: #6fd9c4;
    --secondary: #191654;
    --secondary-light: #2a2580;
    --accent: #f7b733;
    --accent-light: #fad06e;
    --danger: #e74c3c;
    --success: #2ecc71;
    --neutral: #95a5a6;

    --bg-dark: #0c0e1a;
    --bg-darker: #070912;
    --bg-card-dark: rgba(20, 22, 40, 0.85);
    --bg-light: #f8fafb;
    --bg-white: #ffffff;

    --text-primary: #1a1a2e;
    --text-secondary: #636282;
    --text-light: #a0a0b8;
    --text-white: #ffffff;
    --text-on-dark: #d0d0e8;

    --border-light: rgba(67, 198, 172, 0.15);
    --border-dark: rgba(255, 255, 255, 0.08);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #43c6ac 0%, #191654 100%);
    --gradient-hero: linear-gradient(135deg, #0c0e1a 0%, #191654 40%, #1a2a6c 70%, #0c0e1a 100%);
    --gradient-card: linear-gradient(145deg, rgba(67, 198, 172, 0.08) 0%, rgba(25, 22, 84, 0.05) 100%);
    --gradient-text: linear-gradient(135deg, #43c6ac, #f7b733, #43c6ac);
    --gradient-glow: radial-gradient(ellipse at center, rgba(67, 198, 172, 0.15) 0%, transparent 70%);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.15);
    --shadow-glow: 0 0 30px rgba(67, 198, 172, 0.25);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);

    /* Typography */
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-accent: 'Outfit', sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;

    /* Spacing */
    --section-padding: 100px 0;
    --container-max: 1240px;
    --border-radius: 16px;
    --border-radius-sm: 10px;
    --border-radius-xs: 6px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-med: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset & Base --- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition-fast); }
ul { list-style: none; }

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

.section {
    padding: var(--section-padding);
    position: relative;
}

.section-dark {
    background: var(--bg-dark);
    color: var(--text-on-dark);
}

/* --- Gradient Text --- */
.gradient-text {
    background: var(--gradient-text);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s linear infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

/* --- Section Headers --- */
.section-header { text-align: center; margin-bottom: 64px; }

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(67, 198, 172, 0.1);
    color: var(--primary);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

.section-dark .section-tag { background: rgba(67, 198, 172, 0.15); }

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.8;
}

.section-dark .section-subtitle { color: var(--text-light); }

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    transition: all var(--transition-med);
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--text-white);
    border-color: var(--primary);
}

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

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

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--primary);
    color: var(--primary-light);
    transform: translateY(-3px);
}

.btn-full { width: 100%; justify-content: center; }

/* ===================== NAVIGATION ===================== */
#main-nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition-med);
    background: transparent;
}

#main-nav.scrolled {
    background: rgba(12, 14, 26, 0.92);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    max-width: 280px;
    object-fit: contain;
    display: block;
    border-radius: 6px;
    transition: transform var(--transition-fast);
}

.nav-logo:hover .logo-img {
    transform: scale(1.03);
}

.logo-icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-white);
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text-white);
    line-height: 1.1;
}

.logo-sub {
    font-size: 0.68rem;
    color: var(--primary-light);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
}

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

.nav-links a {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding: 4px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    transition: width var(--transition-med);
}

.nav-links a:hover { color: var(--primary-light); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
    padding: 10px 24px;
    border-radius: 50px;
    background: var(--primary);
    color: var(--text-white) !important;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    transition: all var(--transition-med);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-toggle span {
    width: 24px; height: 2px;
    background: var(--text-white);
    border-radius: 2px;
}

/* ===================== HERO ===================== */
#hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-hero);
    padding: 120px 24px 80px;
}

.hero-bg-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(67, 198, 172, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 30%, rgba(247, 183, 51, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(25, 22, 84, 0.3) 0%, transparent 60%);
    z-index: 1;
}

.hero-particles { position: absolute; inset: 0; z-index: 1; overflow: hidden; }

.hero-particle {
    position: absolute;
    width: 4px; height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 8s infinite ease-in-out;
}

@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.6; }
    90% { opacity: 0.2; }
    100% { opacity: 0; transform: translateY(-100px) scale(1.5); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 960px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    border-radius: 50px;
    background: rgba(67, 198, 172, 0.12);
    border: 1px solid rgba(67, 198, 172, 0.25);
    color: var(--primary-light);
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 32px;
    backdrop-filter: blur(10px);
}

.hero-badge i { color: var(--accent); }

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--text-white);
    line-height: 1.15;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: clamp(0.95rem, 1.4vw, 1.15rem);
    color: var(--text-light);
    max-width: 720px;
    margin: 0 auto 48px;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.stat-item { text-align: center; }

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    color: var(--primary-light);
    display: inline;
}

.stat-suffix {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
    font-weight: 500;
}

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

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.mouse {
    width: 26px; height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}

.mouse-wheel {
    width: 3px; height: 8px;
    background: var(--primary);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; transform: translateY(0); }
    100% { opacity: 0; transform: translateY(12px); }
}

.scroll-indicator span {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animations */
.animate-fade-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }
.delay-5 { animation-delay: 0.75s; }

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

/* ===================== PREPARED FOR BANNER ===================== */
.prepared-for-banner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.pfb-left, .pfb-right {
    padding: 40px;
}

.pfb-left {
    background: linear-gradient(135deg, #f0fdf8 0%, #e8f8f5 100%);
    border-right: 3px solid var(--primary);
}

.pfb-right {
    background: linear-gradient(135deg, #eef2ff 0%, #e8ecf8 100%);
}

.pfb-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(67, 198, 172, 0.15);
    color: var(--primary-dark);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
}

.pfb-right .pfb-tag {
    background: rgba(25, 22, 84, 0.1);
    color: var(--secondary);
}

.prepared-for-banner h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

.prepared-for-banner p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.pfb-detail {
    margin-top: 12px;
    font-size: 0.85rem !important;
    color: var(--text-secondary);
}

/* ===================== CHALLENGE / SOLUTION ===================== */
.challenge-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.cs-card {
    padding: 36px;
    border-radius: var(--border-radius);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
}

.cs-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}

.cs-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.challenge-icon { background: rgba(231, 76, 60, 0.15); color: var(--danger); }
.solution-icon { background: rgba(46, 204, 113, 0.15); color: var(--success); }

.cs-header h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
}

.cs-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.cs-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.6;
}

.cs-list li i { margin-top: 4px; font-size: 0.85rem; }
.challenge-card .cs-list li i { color: rgba(231, 76, 60, 0.6); }
.solution-card .cs-list li i { color: var(--success); }

/* Overview Image */
.overview-image-section {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.overview-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.overview-caption {
    padding: 16px 24px;
    background: rgba(20, 22, 40, 0.9);
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.overview-caption i { color: var(--primary); }

/* ===================== PROGRAMS ===================== */
.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.program-card {
    background: var(--bg-light);
    border: 1px solid rgba(67, 198, 172, 0.1);
    border-radius: var(--border-radius);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all var(--transition-med);
}

.program-card:hover {
    box-shadow: var(--shadow-lg);
    border-color: rgba(67, 198, 172, 0.25);
}

.program-card-accent {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.program-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.program-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(67, 198, 172, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.4rem;
}

.program-meta {
    display: flex;
    gap: 16px;
}

.program-meta span {
    font-size: 0.8rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 5px;
    font-weight: 500;
}

.program-name {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 4px;
}

.program-name span {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.program-tagline {
    font-family: var(--font-mono);
    font-size: 0.82rem;
    color: var(--primary-dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.program-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 800px;
}

/* Program Curriculum */
.program-curriculum {
    margin-bottom: 24px;
    padding: 24px;
    border-radius: var(--border-radius-sm);
    background: rgba(67, 198, 172, 0.04);
    border: 1px solid rgba(67, 198, 172, 0.08);
}

.program-curriculum h4 {
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.program-curriculum h4 i { color: var(--primary); }

.month-block {
    margin-bottom: 20px;
}

.month-block:last-child { margin-bottom: 0; }

.month-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.month-block ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.month-block li {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.5;
    padding-left: 16px;
    position: relative;
}

.month-block li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: 700;
}

/* Program Skills */
.program-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.program-skills span {
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    font-family: var(--font-accent);
    background: rgba(67, 198, 172, 0.08);
    color: var(--primary-dark);
    border: 1px solid rgba(67, 198, 172, 0.15);
    transition: all var(--transition-fast);
}

.program-skills span:hover {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

/* ===================== METHODOLOGY ===================== */
.methodology-flow {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.method-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    width: 100%;
    padding: 24px;
    border-radius: var(--border-radius);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    transition: all var(--transition-med);
}

.method-step:hover {
    border-color: rgba(67, 198, 172, 0.3);
    transform: translateX(8px);
}

.method-number {
    width: 52px; height: 52px;
    min-width: 52px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--text-white);
}

.method-content h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 6px;
    font-size: 1.05rem;
}

.method-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.method-connector {
    width: 2px;
    height: 32px;
    background: linear-gradient(to bottom, var(--primary), rgba(67, 198, 172, 0.2));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.method-connector i {
    color: var(--primary);
    font-size: 0.7rem;
    position: absolute;
    animation: arrowBounce 1.5s infinite;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(-2px); }
    50% { transform: translateY(4px); }
}

/* ===================== CAPACITY TABLE ===================== */
.capacity-table-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(67, 198, 172, 0.25);
    background: var(--bg-card-dark);
}

.capacity-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.capacity-table th {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 18px 24px;
    text-align: left;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.capacity-table td {
    padding: 18px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: #e2e8f0;
    font-weight: 400;
}

.capacity-table tbody tr:hover {
    background: rgba(67, 198, 172, 0.08);
}

.capacity-table .total-row {
    background: rgba(67, 198, 172, 0.15);
}

.capacity-table .total-row td {
    border-bottom: none;
    font-weight: 700;
    color: #ffffff;
}

.capacity-note {
    margin-top: 24px;
    padding: 18px 24px;
    border-radius: var(--border-radius-sm);
    background: rgba(67, 198, 172, 0.08);
    border: 1px solid rgba(67, 198, 172, 0.2);
    color: var(--text-light);
    font-size: 0.92rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.capacity-note i {
    color: var(--primary-light);
    font-size: 1.2rem;
}

.highlight-total {
    color: var(--primary-dark) !important;
    font-size: 1.1rem;
}

.track-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    font-family: var(--font-accent);
}

.track-badge.se { background: rgba(67, 198, 172, 0.1); color: #2fa08a; }
.track-badge.qa { background: rgba(155, 89, 182, 0.1); color: #8e44ad; }
.track-badge.da { background: rgba(52, 152, 219, 0.1); color: #2980b9; }
.track-badge.hr { background: rgba(247, 183, 51, 0.1); color: #d4a017; }
.track-badge.mkt { background: rgba(231, 76, 60, 0.1); color: #c0392b; }

/* ===================== PRICING ===================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    border-radius: var(--border-radius);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    overflow: hidden;
    transition: all var(--transition-med);
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(67, 198, 172, 0.15);
}

.pricing-card-featured {
    border-color: var(--primary);
    transform: scale(1.04);
    box-shadow: var(--shadow-glow);
}

.pricing-card-featured:hover {
    transform: scale(1.04) translateY(-6px);
}

.pricing-popular {
    background: var(--gradient-primary);
    color: var(--text-white);
    text-align: center;
    padding: 8px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.pricing-header {
    padding: 32px 28px 20px;
    text-align: center;
}

.pricing-tier {
    font-family: var(--font-accent);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

.pricing-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-white);
    margin: 8px 0 6px;
}

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

.pricing-body {
    padding: 0 28px 28px;
    text-align: center;
}

.pricing-amount {
    margin: 20px 0;
}

.pricing-currency {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-light);
    vertical-align: top;
}

.pricing-value {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
}

.pricing-per {
    font-size: 0.9rem;
    color: var(--text-light);
}

.pricing-savings {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    background: rgba(46, 204, 113, 0.15);
    color: var(--success);
    font-size: 0.78rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.pricing-features {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--text-light);
}

.pricing-features li i { font-size: 0.85rem; }
.pricing-features li .fa-check { color: var(--success); }
.pricing-features li .fa-times { color: rgba(255, 255, 255, 0.15); }
.pricing-features li.disabled { opacity: 0.4; }

.pricing-cta {
    margin-top: 8px;
}

.pricing-note {
    text-align: center;
    margin-top: 32px;
    padding: 16px 24px;
    border-radius: var(--border-radius-sm);
    background: rgba(67, 198, 172, 0.08);
    color: var(--text-light);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-note i { color: var(--primary); }

/* One Track Callout */
.one-track-callout {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 28px 36px;
    border-radius: var(--border-radius);
    background: linear-gradient(135deg, rgba(67, 198, 172, 0.12) 0%, rgba(25, 22, 84, 0.15) 100%);
    border: 1px solid rgba(67, 198, 172, 0.25);
    margin-bottom: 48px;
    backdrop-filter: blur(10px);
}

.otc-icon {
    width: 56px; height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    font-size: 1.4rem;
}

.otc-content {
    flex: 1;
}

.otc-content h4 {
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-white);
    margin-bottom: 4px;
}

.otc-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.6;
}

.otc-price {
    text-align: center;
    min-width: 140px;
}

.otc-amount {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-light);
    line-height: 1.1;
}

.otc-per {
    display: block;
    font-size: 0.78rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 4px;
}

/* Pricing Total */
.pricing-total {
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(67, 198, 172, 0.08);
    border: 1px solid rgba(67, 198, 172, 0.15);
    color: var(--text-light);
    font-size: 0.82rem;
    margin-bottom: 20px;
    display: inline-block;
}

.pricing-total strong {
    color: var(--primary-light);
    font-size: 0.92rem;
}

/* ===================== PRICING CENTRAL CARD ===================== */
.pricing-central {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.pricing-central-card {
    background: var(--bg-card-dark);
    border: 1px solid rgba(67, 198, 172, 0.25);
    border-radius: var(--border-radius);
    padding: 48px 56px;
    max-width: 780px;
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(67, 198, 172, 0.12);
}

.pricing-central-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.pricing-central-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: linear-gradient(135deg, rgba(67, 198, 172, 0.15), rgba(247, 183, 51, 0.1));
    border: 1px solid rgba(67, 198, 172, 0.25);
    color: var(--primary-light);
    font-family: var(--font-accent);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

.pricing-central-badge i {
    font-size: 0.9rem;
    color: var(--accent);
}

.pricing-central-amount {
    margin-bottom: 12px;
}

.pricing-currency-big {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-light);
    vertical-align: top;
    line-height: 1.6;
}

.pricing-value-big {
    font-family: var(--font-display);
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-white);
    line-height: 1;
    letter-spacing: -1px;
}

.pricing-per-big {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    font-family: var(--font-accent);
    margin-top: 4px;
}

.pricing-central-subtitle {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.pricing-includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    text-align: left;
    margin-bottom: 36px;
}

.pricing-include-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    background: rgba(67, 198, 172, 0.05);
    border: 1px solid rgba(67, 198, 172, 0.08);
    transition: all var(--transition-fast);
}

.pricing-include-item:hover {
    background: rgba(67, 198, 172, 0.1);
    border-color: rgba(67, 198, 172, 0.2);
    transform: translateX(4px);
}

.pricing-include-item i {
    font-size: 1rem;
    color: var(--primary);
    min-width: 20px;
    text-align: center;
}

.pricing-include-item span {
    font-size: 0.85rem;
    color: var(--text-on-dark);
    line-height: 1.4;
}

.pricing-main-cta {
    padding: 16px 48px !important;
    font-size: 1.05rem !important;
}

.btn-lg {
    padding: 16px 40px;
    font-size: 1rem;
}

/* ===================== COMPARISON TABLE ===================== */
.comparison-table-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(67, 198, 172, 0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.comparison-table th {
    background: var(--bg-light);
    padding: 16px 20px;
    text-align: left;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--text-primary);
    border-bottom: 2px solid rgba(67, 198, 172, 0.1);
}

.comparison-table th.highlight-col {
    background: rgba(67, 198, 172, 0.1);
    color: var(--primary-dark);
}

.comparison-table td {
    padding: 14px 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    color: var(--text-secondary);
}

.comparison-table td.highlight-col {
    background: rgba(67, 198, 172, 0.04);
    color: var(--text-primary);
    font-weight: 500;
}

.comparison-table tbody tr:hover { background: rgba(67, 198, 172, 0.02); }

.comparison-table .check { color: var(--success); }
.comparison-table .cross { color: var(--danger); }
.comparison-table .neutral { color: var(--neutral); }

/* ===================== WHY US ===================== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.why-card {
    padding: 36px;
    border-radius: var(--border-radius);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    transition: all var(--transition-med);
    position: relative;
    overflow: hidden;
}

.why-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity var(--transition-med);
}

.why-card:hover {
    transform: translateY(-6px);
    border-color: rgba(67, 198, 172, 0.25);
    box-shadow: 0 12px 40px rgba(67, 198, 172, 0.1);
}

.why-card:hover::after { opacity: 1; }

.why-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(67, 198, 172, 0.15);
    margin-bottom: 12px;
    line-height: 1;
}

.why-card:hover .why-number { color: rgba(67, 198, 172, 0.4); }

.why-card h4 {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-white);
    margin-bottom: 10px;
}

.why-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===================== BENEFITS ===================== */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    padding: 32px;
    border-radius: var(--border-radius);
    background: var(--bg-light);
    border: 1px solid rgba(67, 198, 172, 0.08);
    text-align: center;
    transition: all var(--transition-med);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(67, 198, 172, 0.2);
}

.benefit-icon {
    width: 60px; height: 60px;
    border-radius: 16px;
    background: rgba(67, 198, 172, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all var(--transition-med);
}

.benefit-card:hover .benefit-icon {
    background: var(--gradient-primary);
    color: var(--text-white);
    transform: scale(1.1);
}

.benefit-card h4 {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================== CONTACT / CTA ===================== */
.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.cta-steps h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
}

.cta-step {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--border-radius-sm);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
    margin-bottom: 12px;
    transition: all var(--transition-med);
}

.cta-step:hover {
    border-color: rgba(67, 198, 172, 0.3);
    transform: translateX(4px);
}

.cta-step-num {
    width: 36px; height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1rem;
    color: var(--text-white);
}

.cta-step h4 {
    font-family: var(--font-accent);
    font-weight: 600;
    color: var(--text-white);
    font-size: 0.95rem;
    margin-bottom: 4px;
}

.cta-step p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Contact Form */
.contact-form-wrapper {
    padding: 36px;
    border-radius: var(--border-radius);
    background: var(--bg-card-dark);
    border: 1px solid var(--border-dark);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form h3 i { color: var(--primary); }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group:not(.form-row .form-group) { margin-bottom: 16px; }

.form-group label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input:not([type="checkbox"]),
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255, 255, 255, 0.25); }

.form-group input:not([type="checkbox"]):focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 198, 172, 0.1);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%2343c6ac' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Custom Multi-Select UI */
.custom-multi-select { position: relative; }
.multi-select-box {
    padding: 12px 16px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 0.92rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all var(--transition-fast);
}
.multi-select-box:hover { border-color: rgba(67, 198, 172, 0.5); }
.multi-select-box.active {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(67, 198, 172, 0.1);
}
.multi-select-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius-sm);
    margin-top: 4px;
    padding: 8px 0;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.multi-select-dropdown label {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9rem;
    color: var(--text-white);
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.2s;
    margin: 0;
}
.multi-select-dropdown label:hover { background: rgba(255, 255, 255, 0.05); }
.multi-select-dropdown input[type="checkbox"] {
    margin-right: 12px;
    cursor: pointer;
    width: 16px;
    height: 16px;
    accent-color: var(--primary);
    outline: none;
    box-shadow: none;
    padding: 0;
}
.multi-select-value {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-right: 12px;
    color: rgba(255, 255, 255, 0.5);
}
.multi-select-icon {
    font-size: 0.8rem;
    color: var(--primary);
    transition: transform 0.3s;
}
.multi-select-box.active .multi-select-icon { transform: rotate(180deg); }

.form-group select option { background: var(--bg-dark); color: var(--text-white); }
.form-group textarea { resize: vertical; min-height: 100px; }

/* ===================== FOOTER ===================== */
#footer {
    background: var(--bg-darker);
    padding: 48px 0 0;
    color: var(--text-on-dark);
}

.footer-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 36px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 14px;
    max-width: 580px;
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ===================== BACK TO TOP ===================== */
#backToTop {
    position: fixed;
    bottom: 32px; right: 32px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-med);
    box-shadow: var(--shadow-glow);
}

#backToTop.visible { opacity: 1; visibility: visible; transform: translateY(0); }
#backToTop:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(67, 198, 172, 0.4); }

/* ===================== SCROLL REVEAL ===================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===================== RESPONSIVE ===================== */
@media (max-width: 1024px) {
    .prepared-for-banner { grid-template-columns: 1fr; }
    .pfb-left { border-right: none; border-bottom: 3px solid var(--primary); }
    .challenge-solution-grid { grid-template-columns: 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card-featured { transform: none; }
    .pricing-card-featured:hover { transform: translateY(-6px); }
    .comparison-table-wrapper { overflow-x: auto; }
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .benefits-grid { grid-template-columns: repeat(2, 1fr); }
    .cta-grid { grid-template-columns: 1fr; }
    .footer-simple { grid-template-columns: 1fr; }
    .footer-proposal-info { text-align: left; }
}

@media (max-width: 768px) {
    :root { --section-padding: 72px 0; }
    .nav-links, .nav-cta { display: none; }
    .mobile-toggle { display: flex; }

    .nav-links.mobile-open {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0; left: 0; right: 0; bottom: 0;
        background: rgba(12, 14, 26, 0.98);
        backdrop-filter: blur(20px);
        justify-content: center;
        align-items: center;
        gap: 28px;
        z-index: 999;
    }

    .nav-links.mobile-open a { font-size: 1.3rem; color: var(--text-white); }

    .hero-stats { gap: 20px; }
    .stat-divider { display: none; }

    .month-block ul { grid-template-columns: 1fr; }

    .why-grid, .benefits-grid { grid-template-columns: 1fr; }

    .form-row { grid-template-columns: 1fr; }

    .hero-title { font-size: clamp(2rem, 7vw, 2.8rem); }

    .pricing-central-card {
        padding: 36px 24px;
    }

    .pricing-includes-grid {
        grid-template-columns: 1fr;
    }

    .pricing-value-big {
        font-size: 3.2rem;
    }

    .capacity-table-wrapper { overflow-x: auto; }
}

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

    .hero-stats { flex-direction: column; gap: 16px; }

    .program-card { padding: 24px; }

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

/* --- Print Styles --- */
@media print {
    #main-nav, #backToTop, .scroll-indicator, .hero-particles { display: none !important; }
    body { color: #000; background: #fff; }
    .section-dark { background: #f5f5f5 !important; color: #333 !important; }
    .section { padding: 40px 0; page-break-inside: avoid; }
    .gradient-text { -webkit-text-fill-color: var(--primary-dark) !important; }
}

/* ===== SHARED PASSWORD GATE STYLE ===== */
.password-gate {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.password-gate::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: var(--gradient-glow);
    border-radius: 50%;
    opacity: 0.6;
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.4; }
    50% { transform: translate(-50%, -50%) scale(1.15); opacity: 0.7; }
}

.password-card {
    background: var(--bg-card-dark);
    border: 1px solid rgba(67, 198, 172, 0.2);
    border-radius: var(--border-radius);
    padding: 56px 48px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    position: relative;
    z-index: 2;
    backdrop-filter: blur(20px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.password-card .lock-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(67, 198, 172, 0.2), rgba(25, 22, 84, 0.3));
    border: 2px solid rgba(67, 198, 172, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary-light);
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.password-card h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-white);
    margin-bottom: 8px;
}

.password-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 28px;
    line-height: 1.6;
}

.password-input-group {
    position: relative;
    margin-bottom: 20px;
}

.password-input-group input {
    width: 100%;
    padding: 16px 52px 16px 20px;
    border-radius: var(--border-radius-sm);
    border: 1px solid rgba(67, 198, 172, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-white);
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: all var(--transition-fast);
    letter-spacing: 2px;
}

.password-input-group input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(67, 198, 172, 0.15);
    background: rgba(255, 255, 255, 0.08);
}

.password-input-group input::placeholder {
    letter-spacing: 0;
    color: var(--text-light);
    opacity: 0.5;
}

.password-input-group .toggle-password {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--text-light);
    cursor: pointer;
    font-size: 1rem;
    transition: color var(--transition-fast);
}

.password-input-group .toggle-password:hover {
    color: var(--primary);
}

.password-error {
    color: var(--danger);
    font-size: 0.82rem;
    margin-bottom: 16px;
    display: none;
    animation: shake 0.4s ease;
}

.password-error.show {
    display: block;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-8px); }
    75% { transform: translateX(8px); }
}

.password-submit {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: var(--border-radius-sm);
    background: var(--gradient-primary);
    color: var(--text-white);
    font-family: var(--font-accent);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-med);
    letter-spacing: 0.5px;
}

.password-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 198, 172, 0.3);
}

.password-submit:active {
    transform: translateY(0);
}

.decrypted-container {
    display: none;
}

.decrypted-container.unlocked {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
}

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

