/* ═══════════════════════════════════════════════════════════════════════════
   GKFM ULTIMATE - Components CSS
   All UI Components
   ═══════════════════════════════════════════════════════════════════════════ */

/* ════════════════════════════════════════════════════════════════════════════
   LOADER
   ════════════════════════════════════════════════════════════════════════════ */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg-darker);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-loader);
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.loader__logo {
    width: 140px;
    height: 80px;
}

.loader__chart {
    width: 100%;
    height: 100%;
}

.loader__line {
    stroke-dasharray: 300;
    stroke-dashoffset: 300;
    animation: loaderDraw 2s ease-in-out infinite;
}

.loader__text {
    display: flex;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--font-black);
}

.loader__letter {
    display: inline-block;
    animation: loaderBounce 0.6s ease infinite;
    animation-delay: calc(var(--i) * 0.1s);
}

.loader__letter:nth-child(1) { color: #084c78; }
.loader__letter:nth-child(2) { color: rgba(43, 168, 204); }
.loader__letter:nth-child(3) { color: rgba(43, 168, 204); }
.loader__letter:nth-child(4) { color: rgba(43, 168, 204); }

.loader__bar {
    width: 200px;
    height: 3px;
    background: var(--bg-surface);
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader__progress {
    width: 0;
    height: 100%;
    background: var(--gradient-secondary);
    border-radius: var(--radius-full);
    animation: loaderProgress 2s ease-in-out forwards;
}

.loader__tagline {
    font-size: var(--text-sm);
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ════════════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════════════ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    overflow: hidden;
    white-space: nowrap;
}

.btn__icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform var(--transition-base);
}

.btn__shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s ease;
}

.btn:hover .btn__shine {
    left: 100%;
}

/* Primary Button */
.btn--primary {
    background: var(--gradient-primary);
    color: var(--text-primary);
    box-shadow: var(--shadow-glow-cyan);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(62, 184, 212, 0.4);
}

.btn--primary:hover .btn__icon {
    transform: translateX(4px);
}

/* Gold Button */
.btn--gold {
    background: var(--gradient-gold);
    color: var(--bg-darker);
    box-shadow: var(--shadow-glow-gold);
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Outline Button */
.btn--outline {
    background: transparent;
    border: 1px solid var(--bg-surface-light);
    color: var(--text-primary);
}

.btn--outline:hover {
    background: var(--bg-surface);
    border-color: var(--gkfm-cyan);
}

/* Sizes */
.btn--lg {
    padding: var(--space-md) var(--space-2xl);
    font-size: var(--text-base);
}

.btn--lg .btn__icon {
    width: 20px;
    height: 20px;
}

.btn--full {
    width: 100%;
}

/* Header Button */
.btn--header {
    padding: var(--space-sm) var(--space-lg);
}

/* Loading State */
.btn__loading {
    position: absolute;
    display: flex;
    gap: 4px;
    opacity: 0;
}

.btn__loading span {
    width: 8px;
    height: 8px;
    background: currentColor;
    border-radius: 50%;
    animation: btnLoading 1s ease-in-out infinite;
}

.btn__loading span:nth-child(2) { animation-delay: 0.2s; }
.btn__loading span:nth-child(3) { animation-delay: 0.4s; }

.btn.loading .btn__text,
.btn.loading .btn__icon {
    opacity: 0;
}

.btn.loading .btn__loading {
    opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════════════
   HEADER
   ════════════════════════════════════════════════════════════════════════════ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--z-fixed);
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.header.scrolled {
    padding: var(--space-sm) 0;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(62, 184, 212, 0.1);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.header__container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-xl);
}

/* Logo */
.header__logo {
    flex-shrink: 0;
}

.header__logo-img {
    height: 80px;
    width: auto;
    transition: transform var(--transition-base);
}

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

/* Navigation */
.nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav__link {
    position: relative;
    padding: var(--space-sm) var(--space-md);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

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

.nav__link:hover,
.nav__link.active {
    color: var(--text-primary);
}

.nav__link:hover::after,
.nav__link.active::after {
    width: 60%;
}

/* Mobile Toggle */
.header__toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    padding: 4px;
}

.header__toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    transform-origin: center;
}

.header__toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__toggle.active span:nth-child(2) {
    opacity: 0;
}

.header__toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ════════════════════════════════════════════════════════════════════════════
   FINANCIAL TICKER
   ════════════════════════════════════════════════════════════════════════════ */
.ticker {
    position: absolute;
    bottom: -32px;
    left: 0;
    right: 0;
    height: 32px;
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(62, 184, 212, 0.1);
    border-bottom: 1px solid rgba(62, 184, 212, 0.1);
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all var(--transition-base);
}

.header.scrolled .ticker {
    opacity: 1;
    transform: translateY(0);
}

.ticker__track {
    height: 100%;
    overflow: hidden;
}

.ticker__content {
    display: flex;
    height: 100%;
    align-items: center;
    animation: tickerScroll 40s linear infinite;
}

.ticker__item {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    padding: 0 var(--space-2xl);
    white-space: nowrap;
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
}

.ticker__symbol {
    color: var(--text-muted);
    letter-spacing: 1px;
}

.ticker__value {
    font-weight: var(--font-semibold);
    font-family: var(--font-heading);
}

.ticker__item--positive .ticker__value {
    color: var(--color-success);
}

.ticker__item--negative .ticker__value {
    color: var(--color-error);
}

.ticker__arrow {
    width: 14px;
    height: 14px;
    fill: currentColor;
}

.ticker__item--positive .ticker__arrow {
    fill: var(--color-success);
}

.ticker__item--negative .ticker__arrow {
    fill: var(--color-error);
    transform: rotate(180deg);
}

/* ════════════════════════════════════════════════════════════════════════════
   HERO SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 0 100px;
    overflow: hidden;
}

/* Hero Background */
.hero__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(62, 184, 212, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 184, 212, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
}

.hero__orb--1 {
    width: 600px;
    height: 600px;
    background: var(--gkfm-navy);
    top: -200px;
    right: -200px;
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.hero__orb--2 {
    width: 400px;
    height: 400px;
    background: var(--gkfm-cyan);
    bottom: -100px;
    left: -100px;
    opacity: 0.2;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

.hero__orb--3 {
    width: 300px;
    height: 300px;
    background: var(--gkfm-gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: orbPulse 10s ease-in-out infinite;
}

/* Hero Chart Background */
.hero__chart-bg {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    pointer-events: none;
    opacity: 0.6;
}

.hero__chart {
    width: 100%;
    height: 100%;
}

.hero__chart-area {
    animation: chartPulse 4s ease-in-out infinite;
}

.hero__chart-line {
    stroke-dasharray: 2000;
    stroke-dashoffset: 2000;
    animation: drawChart 3s ease forwards 0.5s;
}

.hero__chart-point {
    fill: var(--gkfm-gold);
    opacity: 0;
    animation: chartPoint 0.5s ease forwards;
}

.hero__chart-point:nth-child(4) { animation-delay: 1s; }
.hero__chart-point:nth-child(5) { animation-delay: 1.5s; }
.hero__chart-point:nth-child(6) { animation-delay: 2s; }

/* Hero Container */
.hero__container {
    position: relative;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: var(--space-4xl);
    align-items: center;
    z-index: var(--z-base);
}

/* Hero Content */
.hero__content {
    max-width: 700px;
}

.hero__badge {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: rgba(62, 184, 212, 0.1);
    border: 1px solid rgba(62, 184, 212, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--gkfm-cyan);
    margin-bottom: var(--space-xl);
    overflow: hidden;
}

.hero__badge-icon {
    width: 20px;
    height: 20px;
}

.hero__badge-icon svg {
    width: 100%;
    height: 100%;
}

.hero__badge-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100px;
    height: 100px;
    background: var(--gkfm-cyan);
    border-radius: 50%;
    filter: blur(30px);
    opacity: 0.3;
    transform: translate(-50%, -50%);
    animation: badgeGlow 3s ease-in-out infinite;
}

.hero__title {
    font-size: var(--text-6xl);
    font-weight: var(--font-black);
    line-height: var(--leading-tight);
    margin-bottom: var(--space-xl);
}

.hero__title-line {
    display: block;
    overflow: hidden;
}

.hero__title .word {
    display: inline-block;
    margin-right: 0.3em;
}

.hero__description {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 550px;
    margin-bottom: var(--space-2xl);
}

.hero__cta {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

/* Hero Stats */
.hero__stats {
    display: flex;
    gap: var(--space-lg);
}

.hero__stat {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: rgba(15, 30, 50, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(62, 184, 212, 0.15);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.hero__stat:hover {
    transform: translateY(-5px);
    border-color: var(--gkfm-cyan);
    box-shadow: var(--shadow-glow-cyan);
}

.hero__stat-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
}

.hero__stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--bg-darker);
}

.hero__stat-content {
    display: flex;
    flex-direction: column;
}

.hero__stat-number {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.hero__stat-suffix {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    color: var(--gkfm-cyan);
}

.hero__stat-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Hero Side Panel */
.hero__panel {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

/* Mini Charts */
.mini-chart {
    background: rgba(15, 30, 50, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(62, 184, 212, 0.15);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
    transition: all var(--transition-base);
}

.mini-chart:hover {
    transform: translateX(-10px);
    border-color: var(--gkfm-cyan);
    box-shadow: var(--shadow-glow-cyan);
}

.mini-chart__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.mini-chart__title {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
}

.mini-chart__badge {
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: var(--text-xs);
    font-weight: var(--font-semibold);
}

.mini-chart__badge--positive {
    background: var(--color-success-light);
    color: var(--color-success);
}

.mini-chart__badge--negative {
    background: var(--color-error-light);
    color: var(--color-error);
}

.mini-chart__graph {
    height: 60px;
    margin-bottom: var(--space-sm);
}

.mini-chart__graph svg {
    width: 100%;
    height: 100%;
}

.mini-chart__area {
    opacity: 0.5;
}

.mini-chart__line {
    fill: none;
    stroke: var(--gkfm-gold);
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: miniChartDraw 2s ease forwards 0.5s;
}

.mini-chart__footer {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Mini Chart Bars */
.mini-chart__bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 60px;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.mini-chart__bar {
    flex: 1;
    height: var(--height);
    background: var(--bg-surface-light);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    transition: all var(--transition-base);
    animation: barGrow 1s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.mini-chart__bar:nth-child(1) { animation-delay: 0.1s; }
.mini-chart__bar:nth-child(2) { animation-delay: 0.2s; }
.mini-chart__bar:nth-child(3) { animation-delay: 0.3s; }
.mini-chart__bar:nth-child(4) { animation-delay: 0.4s; }
.mini-chart__bar:nth-child(5) { animation-delay: 0.5s; }
.mini-chart__bar:nth-child(6) { animation-delay: 0.6s; }
.mini-chart__bar:nth-child(7) { animation-delay: 0.7s; }

.mini-chart__bar--active {
    background: var(--gradient-secondary);
}

.mini-chart__bar:hover {
    background: var(--gkfm-cyan);
}

/* Mini Chart Live */
.mini-chart--live {
    border-color: rgba(212, 175, 55, 0.2);
}

.mini-chart--live:hover {
    border-color: var(--gkfm-gold);
    box-shadow: var(--shadow-glow-gold);
}

.mini-chart__live {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--color-success);
}

.mini-chart__live-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

.mini-chart__metrics {
    display: flex;
    gap: var(--space-xl);
}

.mini-chart__metric {
    display: flex;
    flex-direction: column;
}

.mini-chart__metric-value {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--text-primary);
}

.mini-chart__metric-label {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

/* Hero Scroll Indicator */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.hero__scroll-mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    position: relative;
}

.hero__scroll-wheel {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gkfm-cyan);
    border-radius: var(--radius-full);
    animation: scrollWheel 2s ease-in-out infinite;
}

.hero__scroll span {
    font-size: var(--text-xs);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ════════════════════════════════════════════════════════════════════════════
   ABOUT SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.about {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--bg-dark);
}

.about__container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 480px;
    gap: var(--space-4xl);
    align-items: start;
}

.about__content {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

.about__text {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.about__lead {
    font-size: var(--text-xl);
    color: var(--text-primary);
    line-height: var(--leading-relaxed);
}

/* Value Cards */
.about__values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
}

.value-card {
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--gkfm-cyan);
    box-shadow: var(--shadow-glow-cyan);
}

.value-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.value-card__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gkfm-cyan);
}

.value-card__title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-xs);
}

.value-card__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Stats Panel */
.about__stats {
    position: sticky;
    top: 120px;
}

.stats-panel {
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--space-xl);
}

.stats-panel__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-md);
    border-bottom: 1px solid rgba(62, 184, 212, 0.1);
    margin-bottom: var(--space-lg);
}

.stats-panel__header span {
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-muted);
}

.stats-panel__live {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: var(--text-xs);
    color: var(--color-success);
}

.stats-panel__live-dot {
    width: 8px;
    height: 8px;
    background: var(--color-success);
    border-radius: 50%;
    animation: livePulse 2s ease-in-out infinite;
}

/* Circular Stats */
.stats-panel__circles {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.circle-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    position: relative;
}

.circle-stat__svg {
    width: 100px;
    height: 100px;
    transform: rotate(-90deg);
}

.circle-stat__bg {
    fill: none;
    stroke: var(--bg-surface-light);
    stroke-width: 8;
}

.circle-stat__progress {
    fill: none;
    stroke: var(--gkfm-cyan);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 264;
    stroke-dashoffset: calc(264 - (264 * var(--progress)) / 100);
    transition: stroke-dashoffset 1.5s ease;
}

.circle-stat__progress--gold {
    stroke: var(--gkfm-gold);
}

.circle-stat__value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-top: -10px;
}

.circle-stat__label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Number Stats */
.stats-panel__numbers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-md);
    padding: var(--space-lg) 0;
    border-top: 1px solid rgba(62, 184, 212, 0.1);
    border-bottom: 1px solid rgba(62, 184, 212, 0.1);
    margin-bottom: var(--space-lg);
}

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

.number-stat__value {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
}

.number-stat__suffix {
    color: var(--gkfm-cyan);
}

.number-stat__label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-xs);
}

/* Growth Chart */
.stats-panel__growth {
    padding: var(--space-md);
    background: rgba(62, 184, 212, 0.05);
    border-radius: var(--radius-md);
}

.stats-panel__growth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-md);
}

.stats-panel__growth-header span:first-child {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.stats-panel__growth-badge {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--color-success);
}

.growth-bars {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 80px;
    gap: var(--space-sm);
}

.growth-bars__item {
    flex: 1;
    height: var(--h);
    background: var(--gkfm-navy);
    border-radius: var(--radius-sm) var(--radius-sm) 0 0;
    position: relative;
    transition: all var(--transition-base);
    animation: growthBarGrow 1s ease forwards;
    transform-origin: bottom;
    transform: scaleY(0);
}

.growth-bars__item:nth-child(1) { animation-delay: 0.1s; }
.growth-bars__item:nth-child(2) { animation-delay: 0.2s; }
.growth-bars__item:nth-child(3) { animation-delay: 0.3s; }
.growth-bars__item:nth-child(4) { animation-delay: 0.4s; }
.growth-bars__item:nth-child(5) { animation-delay: 0.5s; }

.growth-bars__item--active {
    background: var(--gradient-gold);
}

.growth-bars__item span {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.growth-bars__item:hover {
    filter: brightness(1.2);
}

/* ════════════════════════════════════════════════════════════════════════════
   SERVICES / BENTO GRID
   ════════════════════════════════════════════════════════════════════════════ */
.services {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--bg-darker);
    overflow: hidden;
}

.services__bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.services__grid-pattern {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(62, 184, 212, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(62, 184, 212, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    mask-image: radial-gradient(ellipse at top center, black 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at top center, black 0%, transparent 60%);
}

.services__container {
    position: relative;
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
    z-index: var(--z-base);
}

/* Bento Grid */
.bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.bento__item {
    position: relative;
    padding: var(--space-xl);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.bento__item:hover {
    border-color: var(--gkfm-cyan);
}

.bento__item:hover .bento__glow {
    opacity: 1;
}

.bento__glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(62, 184, 212, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity var(--duration-slow);
    pointer-events: none;
}

.bento__item--main {
    grid-column: span 2;
    grid-row: span 2;
}

.bento__item--wide {
    grid-column: span 2;
}

.bento__content {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    z-index: var(--z-base);
}

.bento__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
    transition: all var(--transition-base);
}

.bento__icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--gkfm-cyan);
}

.bento__icon--gold {
    background: rgba(212, 175, 55, 0.1);
}

.bento__icon--gold svg {
    stroke: var(--gkfm-gold);
}

.bento__icon--cyan {
    background: rgba(62, 184, 212, 0.15);
}

.bento__item:hover .bento__icon {
    transform: scale(1.1);
    background: var(--gkfm-cyan);
}

.bento__item:hover .bento__icon svg {
    stroke: var(--bg-darker);
}

.bento__title {
    font-size: var(--text-xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-sm);
}

.bento__item--main .bento__title {
    font-size: var(--text-2xl);
}

.bento__text {
    font-size: var(--text-base);
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    flex-grow: 1;
}

/* Bento Tags */
.bento__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
    margin-top: var(--space-lg);
}

.bento__tag {
    padding: var(--space-xs) var(--space-md);
    background: rgba(62, 184, 212, 0.1);
    border: 1px solid rgba(62, 184, 212, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--gkfm-cyan);
}

/* Bento Metric */
.bento__metric {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-top: var(--space-lg);
}

.bento__metric-value {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--font-bold);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bento__metric-label {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Bento Chart */
.bento__chart {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    opacity: 0.4;
}

.bento__chart svg {
    width: 100%;
    height: 100%;
}

.bento__chart-line {
    fill: none;
    stroke: var(--gkfm-gold);
    stroke-width: 2;
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: bentoChartDraw 2s ease forwards;
}

/* Bento Features */
.bento__features {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
}

.bento__feature {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--text-sm);
    color: var(--text-secondary);
}

.bento__feature svg {
    width: 18px;
    height: 18px;
    stroke: var(--gkfm-cyan);
}

/* ════════════════════════════════════════════════════════════════════════════
   PROCESS / TIMELINE
   ════════════════════════════════════════════════════════════════════════════ */
.process {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--bg-dark);
}

.process__container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.timeline {
    position: relative;
    margin-top: var(--space-3xl);
}

.timeline__track {
    position: absolute;
    top: 50px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--bg-surface-light);
}

.timeline__progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-secondary);
    transition: width 1.5s ease;
}

.timeline.animated .timeline__progress {
    width: 100%;
}

.timeline__items {
    display: flex;
    justify-content: space-between;
    gap: var(--space-lg);
}

.timeline__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.timeline__marker {
    position: relative;
    width: 50px;
    height: 50px;
    background: var(--bg-surface);
    border: 2px solid var(--bg-surface-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-xl);
    transition: all var(--transition-base);
    z-index: var(--z-base);
}

.timeline__marker span {
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: var(--font-bold);
    color: var(--text-muted);
    transition: color var(--transition-base);
}

.timeline__item:hover .timeline__marker,
.timeline__item.active .timeline__marker {
    background: var(--gradient-secondary);
    border-color: var(--gkfm-cyan);
    transform: scale(1.1);
    box-shadow: var(--shadow-glow-cyan);
}

.timeline__item:hover .timeline__marker span,
.timeline__item.active .timeline__marker span {
    color: var(--bg-darker);
}

.timeline__card {
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    max-width: 220px;
}

.timeline__item:hover .timeline__card {
    transform: translateY(-5px);
    border-color: var(--gkfm-cyan);
    box-shadow: var(--shadow-glow-cyan);
}

.timeline__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-md);
}

.timeline__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gkfm-cyan);
}

.timeline__title {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-sm);
}

.timeline__text {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
}

/* ════════════════════════════════════════════════════════════════════════════
   CTA SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.cta {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--bg-darker);
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
}

.cta__canvas {
    position: absolute;
    inset: 0;
    opacity: 0.5;
}

.cta__container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: var(--space-3xl);
    text-align: center;
    background: rgba(15, 30, 50, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(62, 184, 212, 0.2);
    border-radius: var(--radius-2xl);
    z-index: var(--z-base);
}

.cta__title {
    font-size: var(--text-4xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-md);
}

.cta__text {
    font-size: var(--text-lg);
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto var(--space-2xl);
}

.cta__buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--space-md);
}

/* CTA Floating Icons */
.cta__float {
    position: absolute;
    width: 60px;
    height: 60px;
    background: rgba(62, 184, 212, 0.1);
    border: 1px solid rgba(62, 184, 212, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta__float svg {
    width: 28px;
    height: 28px;
    stroke: var(--gkfm-cyan);
}

.cta__float--1 { top: 15%; left: 8%; animation-delay: 0s; }
.cta__float--2 { top: 60%; right: 8%; animation-delay: 2s; }
.cta__float--3 { bottom: 15%; left: 15%; animation-delay: 4s; }

/* ════════════════════════════════════════════════════════════════════════════
   CONTACT SECTION
   ════════════════════════════════════════════════════════════════════════════ */
.contact {
    position: relative;
    padding: var(--space-5xl) 0;
    background: var(--bg-dark);
}

.contact__container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4xl);
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xl);
}

/* Contact Cards */
.contact__cards {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.contact-card:hover {
    transform: translateX(10px);
    border-color: var(--gkfm-cyan);
}

.contact-card__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.contact-card__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--gkfm-cyan);
}

.contact-card__content h4 {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-xs);
}

.contact-card__content p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

/* Schedule */
.contact__schedule {
    padding: var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-lg);
}

.contact__schedule h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-md);
}

.contact__schedule-items {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.contact__schedule-item {
    display: flex;
    justify-content: space-between;
    font-size: var(--text-sm);
}

.contact__schedule-item span:first-child {
    color: var(--text-muted);
}

.contact__schedule-item span:last-child {
    color: var(--gkfm-cyan);
    font-weight: var(--font-medium);
}

/* Contact Map */
.contact-map {
    margin-top: var(--space-xl);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.contact-map__header {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-lg);
    background: rgba(62, 184, 212, 0.05);
    border-bottom: 1px solid rgba(62, 184, 212, 0.1);
}

.contact-map__header svg {
    width: 20px;
    height: 20px;
    color: var(--gkfm-cyan);
}

.contact-map__header span {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
}

.contact-map__wrapper {
    position: relative;
    height: 200px;
}

.contact-map__wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    filter: grayscale(50%) contrast(1.1) brightness(0.9);
    transition: filter var(--transition-base);
}

.contact-map:hover .contact-map__wrapper iframe {
    filter: grayscale(20%) contrast(1) brightness(1);
}

.contact-map__link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    font-size: var(--text-sm);
    font-weight: var(--font-medium);
    color: var(--text-secondary);
    background: transparent;
    border-top: 1px solid rgba(62, 184, 212, 0.1);
    transition: all var(--transition-base);
    text-decoration: none;
}

.contact-map__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base);
}

.contact-map__link:hover {
    background: rgba(62, 184, 212, 0.1);
    color: var(--gkfm-cyan);
}

.contact-map__link:hover svg {
    transform: translate(3px, -3px);
}

/* Contact Form */
.contact__form-wrapper {
    padding: var(--space-2xl);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-xl);
}

.contact-form__header {
    margin-bottom: var(--space-2xl);
}

.contact-form__header h3 {
    font-size: var(--text-2xl);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-sm);
}

.contact-form__header p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-form__row {
    display: flex;
    gap: var(--space-md);
}

.contact-form__row--2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

/* Form Group */
.form-group {
    position: relative;
    flex: 1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-md);
    padding-top: var(--space-lg);
    background: var(--bg-surface-light);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-base);
    transition: all var(--transition-base);
    outline: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%2394a3b8' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}

.form-group label {
    position: absolute;
    top: 50%;
    left: var(--space-md);
    transform: translateY(-50%);
    font-size: var(--text-base);
    color: var(--text-muted);
    pointer-events: none;
    transition: all var(--transition-base);
}

.form-group textarea ~ label {
    top: var(--space-lg);
    transform: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gkfm-cyan);
    box-shadow: 0 0 0 3px rgba(62, 184, 212, 0.1);
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group select:focus ~ label,
.form-group select:valid ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
    top: 8px;
    font-size: var(--text-xs);
    color: var(--gkfm-cyan);
}

.form-group__line {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-secondary);
    transition: all var(--transition-base);
    transform: translateX(-50%);
    border-radius: 0 0 var(--radius-md) var(--radius-md);
}

.form-group input:focus ~ .form-group__line,
.form-group select:focus ~ .form-group__line,
.form-group textarea:focus ~ .form-group__line {
    width: 100%;
}

/* ════════════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════════════ */
.footer {
    position: relative;
    background: var(--bg-footer);
    padding-top: 80px;
}

.footer__wave {
    position: absolute;
    top: -60px;
    left: 0;
    right: 0;
    height: 60px;
    overflow: hidden;
}

.footer__wave svg {
    width: 100%;
    height: 100%;
    fill: var(--bg-footer);
}

.footer__container {
    max-width: var(--container-2xl);
    margin: 0 auto;
    padding: 0 var(--space-xl);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-3xl);
    padding-bottom: var(--space-3xl);
    border-bottom: 1px solid rgba(62, 184, 212, 0.1);
}

/* Footer Brand */
.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: inline-block;
    margin-bottom: var(--space-md);
}

.footer__logo img {
    height: 75px;
    width: auto;
}

.footer__description {
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-lg);
}

.footer__social {
    display: flex;
    gap: var(--space-sm);
}

.footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.footer__social-link svg {
    width: 18px;
    height: 18px;
    fill: var(--text-muted);
    transition: fill var(--transition-fast);
}

.footer__social-link:hover {
    background: var(--gkfm-cyan);
    border-color: var(--gkfm-cyan);
}

.footer__social-link:hover svg {
    fill: var(--bg-darker);
}

/* Footer Links */
.footer__links h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-lg);
}

.footer__links ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__links a {
    font-size: var(--text-sm);
    color: var(--text-muted);
    transition: all var(--transition-fast);
}

.footer__links a:hover {
    color: var(--gkfm-cyan);
    padding-left: var(--space-sm);
}

/* Footer Newsletter */
.footer__newsletter h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    margin-bottom: var(--space-sm);
}

.footer__newsletter p {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-md);
}

.footer__newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.footer__newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-surface);
    border: 1px solid rgba(62, 184, 212, 0.1);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: var(--text-sm);
    outline: none;
    transition: all var(--transition-fast);
}

.footer__newsletter-form input:focus {
    border-color: var(--gkfm-cyan);
}

.footer__newsletter-form input::placeholder {
    color: var(--text-muted);
}

.footer__newsletter-form button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--gradient-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

.footer__newsletter-form button svg {
    width: 18px;
    height: 18px;
    stroke: var(--bg-darker);
}

.footer__newsletter-form button:hover {
    transform: translateX(3px);
}

/* Footer Bottom */
.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg) 0;
}

.footer__bottom p {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.footer__badges {
    display: flex;
    gap: var(--space-sm);
}

.footer__badge {
    padding: var(--space-xs) var(--space-md);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: var(--font-medium);
    color: var(--gkfm-gold);
}

/* ════════════════════════════════════════════════════════════════════════════
   TOAST NOTIFICATION
   ════════════════════════════════════════════════════════════════════════════ */
.toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--bg-surface);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transform: translateX(calc(100% + 50px));
    opacity: 0;
    transition: all var(--transition-base);
    z-index: var(--z-tooltip);
}

.toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-success-light);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

.toast__icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--color-success);
}

.toast__content {
    flex: 1;
}

.toast__title {
    font-size: var(--text-sm);
    font-weight: var(--font-semibold);
    color: var(--text-primary);
    margin-bottom: 2px;
}

.toast__message {
    font-size: var(--text-xs);
    color: var(--text-muted);
}

.toast__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast);
}

.toast__close svg {
    width: 16px;
    height: 16px;
    stroke: var(--text-muted);
}

.toast__close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* ════════════════════════════════════════════════════════════════════════════
   TILT CARD EFFECT
   ════════════════════════════════════════════════════════════════════════════ */
.tilt-card {
    transform-style: preserve-3d;
    transition: transform var(--transition-base);
}
