/* 
  OPEIS v21 Ã¢â‚¬â€ ULTRA-LUXURY NEO-PREMIUM OVERRIDE
  This file restructures the aesthetic to a breathtaking, Awwwards-winning 
  Deep Midnight & Liquid Champagne Neo-Glassmorphism aesthetic.
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600&display=swap');

:root {
    /* Editorial Typography */
    --f-serif: 'Playfair Display', Georgia, serif !important;
    --f-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;

    /* Deep Midnight Slate Palette */
    --ink: #020617 !important;       /* Slate 950 */
    --ink-1: #0f172a !important;     /* Slate 900 */
    --ink-2: #1e293b !important;     /* Slate 800 */
    
    /* Liquid Champagne & Platinum Accents */
    --gold: #d4af37 !important;      /* Metallic Gold */
    --gold-lt: #f3e5ab !important;   /* Champagne */
    --gold-dim: rgba(212, 175, 55, 0.08) !important;
    --gold-rim: rgba(243, 229, 171, 0.25) !important;
    --g-gold: linear-gradient(135deg, #d4af37 0%, #f3e5ab 50%, #c5a017 100%) !important; /* Liquid Metallic */
    
    /* Elegant Dividers & Rules */
    --rule: rgba(243, 229, 171, 0.06) !important;
    --rule-2: rgba(243, 229, 171, 0.12) !important;
    --rule-3: rgba(243, 229, 171, 0.18) !important;
    
    /* Text */
    --txt: #f8fafc !important;       /* Clean White-blue */
    --txt-2: #94a3b8 !important;     /* Slate 400 */
    --txt-3: #64748b !important;     /* Slate 500 */
    
    /* True Glassmorphism Backgrounds */
    --g-card: rgba(15, 23, 42, 0.4) !important;
    --g-panel: rgba(2, 6, 23, 0.5) !important;
    
    /* Animation Easing */
    --ease-o: cubic-bezier(0.16, 1, 0.3, 1) !important;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: var(--ink);
    color: var(--txt);
    font-family: var(--f-sans) !important;
    letter-spacing: 0.01em;
}

/* =======================================
   TYPOGRAPHY (LUXURY EDITORIAL)
   ======================================= */
h1, h2, h3, .adash-topbar h1 {
    font-family: var(--f-serif) !important;
    letter-spacing: -0.01em !important;
    font-weight: 500 !important;
    color: #ffffff !important;
}

/* Let the Champagne glow inside emphasis elements */
em {
    font-style: italic !important;
    color: transparent !important;
    background: var(--g-gold) !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    font-weight: 600 !important;
}

/* =======================================
   PUBLIC VISUALS (AURORA & GLASS)
   ======================================= */
.site-body-premium {
    background: var(--ink) !important;
    position: relative;
}

/* Subtle Chic Grid Background (Absolute for 60fps scrolling) */
.site-body-premium::before {
    content: '';
    position: absolute !important;
    inset: 0 !important;
    background-image: radial-gradient(rgba(212, 175, 55, 0.04) 1px, transparent 1px) !important;
    background-size: 40px 40px !important;
    background-attachment: scroll !important;
    pointer-events: none !important;
    z-index: 0 !important;
    opacity: 0.8 !important;
}

/* Hero Typography Refinement */
.hero-v2-copy h1, .hero-spec-copy h1 {
    font-size: clamp(36px, 3.6vw, 52px) !important;
    line-height: 1.08 !important;
}
.hero-v2-copy p, .hero-spec-copy p {
    font-size: 19px !important;
    font-weight: 300 !important;
    color: var(--txt-2) !important;
    line-height: 1.8 !important;
}

/* Advanced Card Hover (Neo-Premium) */
.svc-premium-card,
.project-card-v2,
.why-feature-card,
.big-stat-card,
.blog-premium-card,
.testimonial-slide,
.content-card,
.service-card-v2,
.blog-card-v2 {
    background: linear-gradient(180deg, rgba(30, 41, 59, 0.3) 0%, rgba(15, 23, 42, 0.5) 100%) !important;
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
    transition: all 0.5s var(--ease-o) !important;
    border-radius: 24px !important; /* Elegant smooth curve */
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.5) !important;
    transform: translateZ(0);
}

.svc-premium-card:hover,
.project-card-v2:hover,
.why-feature-card:hover,
.big-stat-card:hover,
.blog-premium-card:hover,
.testimonial-slide:hover,
.content-card:hover,
.service-card-v2:hover,
.blog-card-v2:hover {
    border: 1px solid rgba(212, 175, 55, 0.3) !important;
    border-top: 1px solid rgba(243, 229, 171, 0.5) !important; /* Glow on upper edge */
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.8), 
                0 0 40px -10px rgba(212, 175, 55, 0.15) !important;
    transform: translateY(-8px) scale(1.01) !important;
}

/* Solid Metallic Primary Button */
.btn-primary {
    background: var(--g-gold) !important;
    color: #000 !important;
    box-shadow: 0 8px 24px rgba(212, 175, 55, 0.25) !important;
    border: none !important;
    font-weight: 600 !important;
    letter-spacing: 0.02em !important;
    border-radius: 12px !important;
}
.btn-primary:hover {
    box-shadow: 0 12px 32px rgba(212, 175, 55, 0.4) !important;
    transform: translateY(-3px) !important;
}
.btn-outline, .btn-dark-outline {
    background: rgba(255,255,255,0.02) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: var(--txt) !important;
    backdrop-filter: blur(12px) !important;
    font-weight: 400 !important;
    border-radius: 12px !important;
}
.btn-outline:hover, .btn-dark-outline:hover {
    background: rgba(255,255,255,0.06) !important;
    border-color: rgba(243, 229, 171, 0.4) !important;
}

/* Site Header */
.site-header, .premium-header {
    background: rgba(2, 6, 23, 0.6) !important;
    backdrop-filter: blur(24px) saturate(140%) !important;
    -webkit-backdrop-filter: blur(24px) saturate(140%) !important;
    border-bottom: 1px solid rgba(255,255,255,0.04) !important;
}

/* =======================================
   ADMIN & CUSTOMER DASHBOARD (EXECUTIVE VIEW)
   ======================================= */
/* Layout Background */
.admin-layout, .customer-layout {
    background: var(--ink) !important;
    position: relative;
}

/* Sleek Minimal Dashboard Grid */
.admin-layout::before, .customer-layout::before {
    content: '';
    position: absolute; inset: 0; pointer-events: none;
    background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
}

/* Floating Executive Sidebar */
.sidebar, .customer-sidebar {
    background: rgba(15, 23, 42, 0.4) !important; /* Midnight Glass */
    backdrop-filter: blur(28px) !important;
    -webkit-backdrop-filter: blur(28px) !important;
    border-right: 1px solid rgba(255,255,255,0.06) !important;
    z-index: 10 !important;
}

.sidebar-menu a, .sidebar-footer a {
    color: var(--txt-2) !important;
    border-radius: 10px !important;
    font-weight: 400 !important;
    transition: all 0.3s ease !important;
}
.sidebar-menu a:hover, .sidebar-footer a:hover {
    background: rgba(255,255,255,0.04) !important;
    color: var(--gold-lt) !important;
}
.sidebar-menu a.active {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%) !important;
    color: var(--gold-lt) !important;
    border-left: 2px solid var(--gold) !important;
    border-radius: 0 10px 10px 0 !important;
    box-shadow: none !important;
}

/* Panel Containers */
.panel {
    background: linear-gradient(160deg, rgba(30, 41, 59, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 20px !important;
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.8), inset 0 1px 1px rgba(255,255,255,0.03) !important;
    transform: translateZ(0);
}

/* Metric Cards */
.adash-stat {
    position: relative;
    padding: 26px 22px !important;
    border-radius: 24px !important;
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.5) 0%, rgba(15, 23, 42, 0.8) 100%) !important;
    border: 1px solid rgba(255,255,255,0.05) !important;
    border-top: 1px solid rgba(255,255,255,0.12) !important;
    overflow: hidden;
    transition: all 0.5s var(--ease-o) !important;
    transform: translateZ(0); 
    box-shadow: 0 10px 20px rgba(0,0,0,0.4) !important;
}
.adash-stat:hover {
    border-color: rgba(212, 175, 55, 0.3) !important;
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 35px -10px rgba(0,0,0,0.7), inset 0 1px 1px rgba(243, 229, 171, 0.2) !important;
}
.adash-stat strong {
    font-family: var(--f-serif) !important;
    font-weight: 600 !important;
    color: var(--gold-lt) !important;
    font-size: 38px !important;
}

/* Tables (Elegant) */
table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
}
th {
    background: transparent !important;
    border-bottom: 1px solid rgba(255,255,255,0.08) !important;
    color: var(--gold-lt) !important;
    font-size: 11px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.1em !important;
    font-weight: 500 !important;
    padding-bottom: 16px !important;
}
td {
    border-bottom: 1px solid rgba(255,255,255,0.03) !important;
    color: var(--txt) !important;
    font-size: 14.5px !important;
    font-weight: 300 !important;
    padding: 16px 12px !important;
}
tr:hover td {
    background: rgba(255,255,255,0.02) !important;
}

/* Inputs (Luxurious Focus) */
input[type="text"], input[type="email"], input[type="password"], input[type="tel"], input[type="number"], input[type="file"], textarea, select {
    background: rgba(15, 23, 42, 0.5) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    color: var(--txt) !important;
    border-radius: 12px !important;
    font-size: 15px !important;
    padding: 14px 18px !important;
    transition: all 0.3s !important;
    backdrop-filter: blur(8px) !important;
}
input:focus, textarea:focus, select:focus {
    border-color: rgba(212, 175, 55, 0.6) !important;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1), inset 0 2px 4px rgba(0,0,0,0.2) !important;
    outline: none !important;
}

/* 2026 UI refinement layer */
body {
    background:
        radial-gradient(circle at top left, rgba(212, 175, 55, 0.06), transparent 30%),
        radial-gradient(circle at bottom right, rgba(45, 212, 191, 0.07), transparent 28%),
        linear-gradient(180deg, #020617 0%, #030712 50%, #02040a 100%) !important;
    color: var(--txt) !important;
}

.main-inner,
.site-container {
    position: relative;
    z-index: 1;
}

.main-inner {
    max-width: 1380px;
}

.admin-shell,
.customer-shell {
    min-height: 100vh;
    color: var(--txt);
}

.portal-topbar {
    display: flex !important;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
}

.portal-topbar-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1 1 360px;
    min-width: 0;
    max-width: 520px;
}

.portal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-mono);
    font-size: 10px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--txt-3);
}

.portal-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    box-shadow: 0 0 16px rgba(212, 175, 55, 0.45);
}

.portal-title {
    margin: 0;
    font-family: var(--f-serif);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--txt);
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.portal-title em {
    font-style: normal;
    color: var(--gold-lt);
}

.portal-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--txt-2);
    font-size: 12px;
}

.portal-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--txt-2);
    font-size: 12px;
    font-weight: 500;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}

.portal-chip:hover {
    transform: translateY(-2px);
    border-color: rgba(243, 229, 171, 0.3);
    background: rgba(255,255,255,0.06);
    color: var(--txt);
}

.portal-chip strong {
    color: var(--gold-lt);
    font-weight: 600;
}

.portal-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
    flex: 0 1 520px;
}

.portal-search {
    position: relative;
    min-width: 200px;
    width: min(260px, 100%);
}

.portal-search svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.36);
    pointer-events: none;
}

.portal-search input {
    width: 100%;
    height: 46px;
    padding: 0 18px 0 42px !important;
    border-radius: 14px !important;
    background: rgba(255,255,255,0.03) !important;
}

.sidebar-logo {
    padding-bottom: 16px !important;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logo-wrap {
    align-items: flex-start !important;
}

.sidebar-logo-wrap h2 {
    font-family: var(--f-serif) !important;
    font-size: 20px !important;
    font-weight: 700 !important;
    letter-spacing: -0.03em !important;
}

.sidebar-logo-wrap span {
    font-family: var(--f-mono) !important;
    letter-spacing: 0.15em !important;
}

.sidebar-rail-card {
    margin: 18px 12px 8px;
    padding: 16px 16px 14px;
    border-radius: 18px;
    background:
        linear-gradient(180deg, rgba(243, 229, 171, 0.08), rgba(243, 229, 171, 0.02)),
        rgba(255,255,255,0.02);
    border: 1px solid rgba(243, 229, 171, 0.12);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.03);
}

.sidebar-rail-card--teal {
    background:
        linear-gradient(180deg, rgba(45, 212, 191, 0.11), rgba(45, 212, 191, 0.03)),
        rgba(255,255,255,0.02);
    border-color: rgba(45, 212, 191, 0.14);
}

.sidebar-rail-card strong {
    display: block;
    font-size: 13px;
    line-height: 1.5;
    color: var(--txt);
}

.sidebar-rail-card span {
    display: block;
    margin-top: 6px;
    font-size: 11px;
    line-height: 1.7;
    color: var(--txt-3);
}

.sidebar-menu a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    min-height: 42px;
}

.nav-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-lt));
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.08);
    flex-shrink: 0;
}

.sidebar-footer {
    padding: 16px 12px !important;
}

.sidebar-footer a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 14px;
    text-decoration: none;
    color: var(--txt-2);
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    transition: all .25s ease;
}

.sidebar-footer a:hover {
    color: var(--txt);
    border-color: rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.08);
}

.dashboard-shell {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.dashboard-hero-card {
    position: relative;
    overflow: hidden;
    padding: 28px 30px;
    border-radius: 28px;
    background:
        radial-gradient(circle at top right, rgba(243, 229, 171, 0.12), transparent 34%),
        linear-gradient(135deg, rgba(15, 23, 42, 0.96), rgba(10, 15, 27, 0.85));
    border: 1px solid rgba(255,255,255,0.07);
    box-shadow: 0 24px 60px rgba(0,0,0,0.24);
}

.dashboard-hero-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    -webkit-mask-image: radial-gradient(circle at center, black 35%, transparent 85%);
    opacity: .55;
    pointer-events: none;
}

.dashboard-hero-card > * {
    position: relative;
    z-index: 1;
}

.dashboard-hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.dashboard-hero-pill {
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
}

.dashboard-hero-pill strong {
    display: block;
    margin-bottom: 4px;
    font-size: 18px;
    font-family: var(--f-serif);
    color: var(--txt);
}

.dashboard-hero-pill span {
    font-size: 11px;
    color: var(--txt-3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.adash-topbar,
.cdash-welcome {
    margin-bottom: 0 !important;
}

.adash-topbar h1,
.cdash-welcome-info h1 {
    margin-bottom: 6px !important;
}

.adash-topbar-right,
.cdash-welcome-actions {
    flex-wrap: wrap;
}

.adash-msg-badge,
.cdash-welcome-actions a {
    min-height: 42px;
}

.adash-stats,
.adash-finance,
.cdash-stats,
.cdash-quick {
    gap: 18px !important;
}

.adash-stat,
.adash-fin-card,
.cdash-stat,
.cdash-panel,
.adash-panel,
.adash-chart-panel {
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
}

.quick-link-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.quick-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 15px;
    border-radius: 16px;
    text-decoration: none;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    transition: transform .24s ease, border-color .24s ease, background .24s ease;
}

.quick-link-card:hover {
    transform: translateY(-3px);
    background: rgba(255,255,255,0.05);
}

.quick-link-badge {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--f-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    flex-shrink: 0;
}

.quick-link-copy strong {
    display: block;
    font-size: 13px;
    color: var(--txt);
}

.quick-link-copy span {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    color: var(--txt-3);
}

.hero-spectacular {
    padding-top: 156px !important;
}

.hero-spectacular::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top right, rgba(243, 229, 171, 0.12), transparent 30%),
        linear-gradient(180deg, transparent, rgba(2, 6, 23, 0.3));
    pointer-events: none;
}

.hero-spec-copy {
    position: relative;
}

.hero-spec-copy::after {
    display: none;
}

.hero-spec-actions .btn {
    min-height: 54px;
    border-radius: 16px !important;
    font-weight: 600 !important;
    letter-spacing: 0.01em;
}

.hero-stats-strip {
    box-shadow: 0 20px 50px rgba(0,0,0,.2);
}

.hero-trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 18px;
}

.hero-trust-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    color: var(--txt-2);
    font-size: 12px;
}

.hero-trust-chip::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    box-shadow: 0 0 12px rgba(45, 212, 191, 0.35);
}

@media (max-width: 1100px) {
    .dashboard-hero-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .portal-topbar {
        flex-direction: column;
        align-items: stretch;
    }

    .portal-title {
        white-space: normal;
    }

    .portal-actions {
        justify-content: flex-start;
    }

    .portal-search {
        min-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .quick-link-grid {
        grid-template-columns: 1fr;
    }

    .hero-trust-row {
        flex-direction: column;
    }
}

/* =======================================
   OPEIS v22 Ã¢â‚¬â€ SIGNATURE PREMIUM SYSTEM
   ======================================= */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
    --f-display: 'Cormorant Garamond', Georgia, serif !important;
    --f-ui: 'Manrope', 'Inter', sans-serif !important;
    --bg-deep: #040816 !important;
    --bg-mid: #0b1120 !important;
    --bg-soft: #121a2b !important;
    --champagne: #f6df99 !important;
    --champagne-soft: rgba(246, 223, 153, 0.16) !important;
    --cyan-soft: rgba(108, 230, 222, 0.16) !important;
    --panel-edge: rgba(255,255,255,0.08) !important;
    --panel-shadow: 0 24px 80px rgba(0,0,0,0.42) !important;
}

body,
.admin-shell,
.customer-shell {
    font-family: var(--f-ui) !important;
    background:
        radial-gradient(circle at 10% 15%, rgba(246,223,153,0.08), transparent 22%),
        radial-gradient(circle at 88% 18%, rgba(108,230,222,0.08), transparent 24%),
        linear-gradient(180deg, #050816 0%, #091120 54%, #060b16 100%) !important;
    color: var(--txt) !important;
}

.site-body-premium,
.admin-layout,
.customer-layout {
    background:
        radial-gradient(circle at top left, rgba(246,223,153,0.05), transparent 20%),
        radial-gradient(circle at bottom right, rgba(108,230,222,0.05), transparent 22%),
        linear-gradient(180deg, rgba(4,8,22,0.98), rgba(8,14,27,0.98)) !important;
}

.site-body-premium::before,
.admin-layout::before,
.customer-layout::before {
    background-image:
        linear-gradient(rgba(255,255,255,0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.028) 1px, transparent 1px) !important;
    background-size: 36px 36px !important;
    opacity: 0.32 !important;
}

h1, h2, h3, h4,
.portal-title,
.hero-spec-copy h1,
.cdash-welcome-info h1,
.adash-topbar h1 {
    font-family: var(--f-display) !important;
    letter-spacing: -0.03em !important;
}

.site-header,
.premium-header,
.portal-topbar,
.admin-topbar-global {
    background: linear-gradient(180deg, rgba(5,10,22,0.84), rgba(5,10,22,0.58)) !important;
    border-bottom: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow: 0 18px 44px rgba(0,0,0,0.26) !important;
    backdrop-filter: blur(22px) saturate(160%) !important;
    -webkit-backdrop-filter: blur(22px) saturate(160%) !important;
}

.portal-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-ui) !important;
    font-size: 10px !important;
    font-weight: 700 !important;
    letter-spacing: 0.22em !important;
    text-transform: uppercase;
    color: rgba(246,223,153,0.86) !important;
}

.portal-kicker::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--gold), var(--teal));
    box-shadow: 0 0 14px rgba(246,223,153,0.4);
}

.portal-title,
.admin-topbar-global .portal-title {
    font-size: clamp(32px, 3vw, 48px) !important;
    line-height: 0.98 !important;
    color: #fbfdff !important;
    max-width: 760px;
}

.portal-meta,
.portal-chip,
.portal-search,
.hero-trust-chip,
.hero-spec-eyebrow,
.dashboard-hero-pill,
.quick-link-card,
.sidebar-rail-card {
    backdrop-filter: blur(18px) !important;
    -webkit-backdrop-filter: blur(18px) !important;
}

.portal-search {
    min-height: 52px;
    border-radius: 18px !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04);
}

.portal-search input {
    font-family: var(--f-ui) !important;
    color: var(--txt) !important;
}

.portal-search input::placeholder {
    color: rgba(255,255,255,0.42) !important;
}

.portal-chip {
    min-height: 46px;
    padding: 0 16px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    background: rgba(255,255,255,0.04) !important;
    color: var(--txt-2) !important;
}

.portal-chip strong {
    color: var(--champagne) !important;
}

.sidebar,
.customer-sidebar {
    background:
        linear-gradient(180deg, rgba(10,16,29,0.84), rgba(8,13,25,0.76)) !important;
    border: 1px solid rgba(255,255,255,0.06) !important;
    box-shadow:
        0 28px 80px rgba(0,0,0,0.38),
        inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

.sidebar-logo-wrap h2,
.customer-sidebar .sidebar-logo-wrap h2 {
    font-family: var(--f-display) !important;
    font-size: 28px !important;
    line-height: 0.9 !important;
    letter-spacing: -0.03em !important;
}

.sidebar-logo-wrap span,
.customer-sidebar .sidebar-logo-wrap span {
    font-family: var(--f-ui) !important;
    letter-spacing: 0.18em !important;
}

.sidebar-rail-card {
    background:
        linear-gradient(135deg, rgba(246,223,153,0.08), rgba(255,255,255,0.03)) !important;
    border: 1px solid rgba(246,223,153,0.16) !important;
    border-radius: 18px !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.sidebar-rail-card--teal {
    background:
        linear-gradient(135deg, rgba(108,230,222,0.12), rgba(255,255,255,0.03)) !important;
    border-color: rgba(108,230,222,0.18) !important;
}

.sidebar-menu a,
.customer-sidebar .sidebar-menu a {
    min-height: 46px;
    border: 1px solid transparent !important;
    border-radius: 14px !important;
    color: rgba(255,255,255,0.72) !important;
}

.sidebar-menu a:hover,
.customer-sidebar .sidebar-menu a:hover {
    background: rgba(255,255,255,0.045) !important;
    border-color: rgba(255,255,255,0.06) !important;
    transform: translateX(3px);
}

.sidebar-menu a.active,
.customer-sidebar .sidebar-menu a.active {
    background: linear-gradient(90deg, rgba(246,223,153,0.12), rgba(108,230,222,0.06)) !important;
    border-color: rgba(246,223,153,0.18) !important;
    color: #fff7dc !important;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.04) !important;
}

.nav-dot {
    box-shadow: 0 0 14px currentColor;
}

.main-inner,
.dashboard-shell {
    max-width: 1440px !important;
}

.dashboard-hero-card,
.cdash-welcome,
.adash-topbar,
.panel,
.adash-panel,
.adash-chart-panel,
.cdash-panel,
.cdash-progress-ring,
.cdash-alert-banner,
.cdash-stat,
.adash-stat,
.adash-fin-card,
.quick-link-card {
    background:
        linear-gradient(160deg, rgba(17,24,39,0.82), rgba(10,16,29,0.68)) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    border-top: 1px solid rgba(255,255,255,0.11) !important;
    box-shadow: var(--panel-shadow) !important;
}

.dashboard-hero-card::before,
.cdash-welcome::before,
.adash-topbar::before {
    background: linear-gradient(90deg, rgba(246,223,153,0.96), rgba(108,230,222,0.75)) !important;
}

.dashboard-hero-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 22px;
}

.dashboard-hero-pill {
    padding: 16px 18px !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,0.04) !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
}

.dashboard-hero-pill strong {
    font-family: var(--f-display) !important;
    font-size: 28px !important;
    color: #fff7dc !important;
}

.dashboard-hero-pill span {
    font-family: var(--f-ui) !important;
    font-size: 11px !important;
    letter-spacing: 0.12em !important;
    text-transform: uppercase;
    color: rgba(255,255,255,0.44) !important;
}

.adash-stat,
.cdash-stat,
.adash-fin-card {
    border-radius: 20px !important;
}

.adash-stat-val,
.cdash-stat-val,
.adash-fin-val {
    font-family: var(--f-display) !important;
    font-size: clamp(30px, 2.1vw, 40px) !important;
    line-height: 0.96 !important;
    color: #fbfdff !important;
}

.adash-stat-label,
.cdash-stat-label,
.adash-fin-label,
.hero-stat-label {
    font-family: var(--f-ui) !important;
    font-size: 10px !important;
    letter-spacing: 0.18em !important;
    color: rgba(255,255,255,0.42) !important;
}

.hero-spectacular {
    padding-top: 168px !important;
    padding-bottom: 120px !important;
}

.hero-spec-grid {
    gap: 74px !important;
    align-items: center !important;
}

.hero-spec-copy h1 {
    font-size: clamp(36px, 3.6vw, 52px) !important;
    line-height: 1.08 !important;
    max-width: 100% !important;
    text-wrap: wrap !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    hyphens: auto !important;
    -webkit-hyphens: auto !important;
}

.hero-spec-desc {
    max-width: 640px !important;
    font-size: 18px !important;
    line-height: 1.9 !important;
    color: rgba(255,255,255,0.76) !important;
}

.hero-spec-actions .btn,
.cdash-welcome-actions a,
.btn-primary,
.btn-outline,
.btn-dark-outline {
    min-height: 56px !important;
    padding: 0 22px !important;
    border-radius: 18px !important;
    font-family: var(--f-ui) !important;
    font-weight: 700 !important;
    letter-spacing: 0.01em !important;
}

.btn-primary,
.cdash-welcome-actions .btn-gold {
    background: linear-gradient(135deg, #f3d680, #cfa63a 52%, #f7e7b4) !important;
    color: #0f172a !important;
    box-shadow: 0 16px 34px rgba(201,168,76,0.22) !important;
}

.btn-outline,
.btn-dark-outline,
.cdash-welcome-actions .btn-outline {
    background: rgba(255,255,255,0.035) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    color: #f8fafc !important;
}

.hero-stats-strip,
.terminal-card-v2,
.svc-premium-card,
.project-card-v2,
.blog-card-v2,
.why-feature-card,
.big-stat-card {
    border-radius: 24px !important;
    border: 1px solid rgba(255,255,255,0.07) !important;
    box-shadow: 0 28px 70px rgba(0,0,0,0.34) !important;
}

.hero-stats-strip {
    background: rgba(8,13,25,0.72) !important;
}

.hero-stat-num {
    font-size: clamp(30px, 2.3vw, 42px) !important;
    color: #fff7dc !important;
}

.terminal-card-v2 {
    background: linear-gradient(180deg, rgba(14,21,34,0.96), rgba(8,12,22,0.92)) !important;
}

.svc-premium-grid {
    gap: 24px !important;
}

.svc-premium-card h3,
.project-card-v2 h3,
.blog-card-v2 h3,
.why-feature-card h4,
.big-stat-card .value {
    font-family: var(--f-display) !important;
}

.svc-premium-card p,
.project-card-v2 p,
.blog-card-v2 p,
.why-feature-card p,
.quick-link-copy span {
    color: rgba(255,255,255,0.68) !important;
}

table,
.cdash-panel table,
.adash-panel table {
    border-collapse: separate !important;
    border-spacing: 0 !important;
}

thead th {
    background: rgba(255,255,255,0.018) !important;
    color: rgba(255,255,255,0.42) !important;
    font-family: var(--f-ui) !important;
    letter-spacing: 0.15em !important;
}

tbody tr {
    transition: background .2s ease, transform .2s ease !important;
}

tbody tr:hover {
    background: rgba(255,255,255,0.03) !important;
}

input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select,
textarea {
    background: rgba(255,255,255,0.03) !important;
    border: 1px solid rgba(255,255,255,0.09) !important;
    border-radius: 14px !important;
    color: #f8fafc !important;
    font-family: var(--f-ui) !important;
}

input::placeholder,
textarea::placeholder {
    color: rgba(255,255,255,0.38) !important;
}

@media (max-width: 1180px) {
    .portal-title {
        max-width: 100%;
    }

    .dashboard-hero-summary {
        grid-template-columns: 1fr;
    }

    .hero-spec-grid {
        grid-template-columns: 1fr !important;
        gap: 34px !important;
    }
}

@media (max-width: 900px) {
    .sidebar,
    .customer-sidebar {
        left: 0 !important;
        right: 0 !important;
        width: auto !important;
        margin: 12px !important;
    }

    .admin-layout .main-content,
    .customer-layout .main-content {
        margin-left: 0 !important;
        width: 100% !important;
        padding: 108px 16px 24px !important;
    }

    .hero-spec-copy h1 {
        font-size: clamp(46px, 12vw, 64px) !important;
    }
}


/* ===== OPEIS v22: Midnight Neon Premium Layer ===== */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=Space+Grotesk:wght@400;500;700&display=swap');

:root {
  --f-sans: 'Sora', 'Space Grotesk', system-ui, sans-serif !important;
  --ink: #030711 !important;
  --ink-1: #071226 !important;
  --ink-2: #0a1730 !important;
  --txt: #eaf2ff !important;
  --txt-2: #b8c7e6 !important;
  --txt-3: #8ca0c8 !important;
  --gold: #22d3ee !important;
  --gold-lt: #67e8f9 !important;
  --gold-dim: rgba(34,211,238,.14) !important;
  --gold-rim: rgba(103,232,249,.28) !important;
  --g-gold: linear-gradient(135deg,#22d3ee 0%,#60a5fa 48%,#c084fc 100%) !important;
}

.site-body-premium {
  background:
    radial-gradient(900px 500px at 12% 12%, rgba(34,211,238,.12), transparent 60%),
    radial-gradient(850px 520px at 82% 24%, rgba(192,132,252,.11), transparent 62%),
    radial-gradient(720px 440px at 56% 92%, rgba(96,165,250,.10), transparent 64%),
    var(--ink) !important;
}

.premium-header,
.site-header {
  background: rgba(3,7,17,.72) !important;
  border-bottom: 1px solid rgba(148,163,184,.16) !important;
}

.premium-nav-links a.active,
.premium-nav-links a:hover {
  color: #ecfeff !important;
  background: linear-gradient(90deg, rgba(34,211,238,.20), rgba(99,102,241,.18)) !important;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.10);
}

.btn-primary {
  color: #03111f !important;
  box-shadow: 0 12px 32px rgba(34,211,238,.28), 0 8px 24px rgba(192,132,252,.18) !important;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.01) !important;
  box-shadow: 0 18px 40px rgba(34,211,238,.34), 0 14px 32px rgba(192,132,252,.24) !important;
}

.svc-premium-card,
.project-card-v2,
.blog-premium-card,
.service-card-v2,
.content-card,
.testimonial-slide,
.adash-stat,
.panel {
  background: linear-gradient(165deg, rgba(14,24,45,.56), rgba(8,14,28,.72)) !important;
  border: 1px solid rgba(148,163,184,.18) !important;
  border-top: 1px solid rgba(226,232,240,.26) !important;
}

.svc-premium-card:hover,
.project-card-v2:hover,
.blog-premium-card:hover,
.service-card-v2:hover,
.content-card:hover,
.testimonial-slide:hover,
.adash-stat:hover,
.panel:hover {
  border-color: rgba(34,211,238,.42) !important;
  box-shadow: 0 20px 50px -16px rgba(5,10,24,.92), 0 0 36px -14px rgba(34,211,238,.38) !important;
}

h1, h2, h3 {
  letter-spacing: -0.02em !important;
}

@media (max-width: 1100px) {
  .hero-v2-grid { gap: 34px !important; }
  .hero-v2-copy h1 { font-size: clamp(38px, 7.6vw, 56px) !important; }
}

@media (max-width: 768px) {
  .premium-navbar { padding: 12px 0 !important; }
  .premium-brand { font-size: 18px !important; }
  .hero-v2 { padding: 84px 0 68px !important; }
  .hero-v2-copy p { font-size: 16px !important; line-height: 1.7 !important; }
  .btn, .btn-lg { width: 100%; justify-content: center; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
/* ===== OPEIS v23: Reference-Matched Premium (Blue Neon) ===== */
@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root{
  --f-sans:'Plus Jakarta Sans','Manrope',system-ui,sans-serif !important;
  --f-serif:'Plus Jakarta Sans','Manrope',system-ui,sans-serif !important;
  --ink:#040824 !important;
  --ink-1:#071033 !important;
  --ink-2:#0b1640 !important;
  --txt:#eef4ff !important;
  --txt-2:#c7d2fe !important;
  --txt-3:#8ea0cc !important;
  --gold:#22d3ee !important;
  --gold-lt:#38bdf8 !important;
  --gold-dim:rgba(56,189,248,.12) !important;
  --gold-rim:rgba(56,189,248,.26) !important;
  --g-gold:linear-gradient(125deg,#22d3ee 0%,#38bdf8 45%,#a78bfa 100%) !important;
  --rule:rgba(148,163,184,.16) !important;
  --rule-2:rgba(148,163,184,.24) !important;
  --rule-3:rgba(148,163,184,.34) !important;
}

body.site-body-premium,
.site-body-premium{
  background:
    radial-gradient(900px 500px at 5% 0%, rgba(14,165,233,.22), transparent 60%),
    radial-gradient(850px 520px at 90% 10%, rgba(139,92,246,.20), transparent 62%),
    radial-gradient(700px 420px at 50% 100%, rgba(56,189,248,.17), transparent 64%),
    linear-gradient(180deg,#040824 0%,#050b2b 45%,#040824 100%) !important;
}

.site-body-premium::before{
  content:'';
  position:fixed;
  inset:0;
  pointer-events:none;
  background-image:radial-gradient(rgba(125,211,252,.06) 1px, transparent 1px);
  background-size:28px 28px;
  opacity:.35;
  z-index:0;
}

.premium-header,.site-header{
  background:rgba(4,8,36,.76) !important;
  backdrop-filter:blur(18px) saturate(140%) !important;
  -webkit-backdrop-filter:blur(18px) saturate(140%) !important;
  border-bottom:1px solid rgba(56,189,248,.18) !important;
}

.premium-brand{font-weight:800 !important; letter-spacing:.01em !important;}
.premium-nav-links a{font-weight:500 !important; color:#b5c2e8 !important;}
.premium-nav-links a.active,
.premium-nav-links a:hover{
  color:#e6f3ff !important;
  background:linear-gradient(120deg, rgba(56,189,248,.22), rgba(167,139,250,.20)) !important;
  box-shadow:inset 0 0 0 1px rgba(191,219,254,.25);
}

.hero-v2-copy h1,
.hero-spec-copy h1,
.section-title h2{
  font-family:var(--f-sans) !important;
  font-weight:800 !important;
  letter-spacing:-.03em !important;
  line-height:1.05 !important;
  color:#f5f8ff !important;
}
.hero-v2-copy h1 em,
.hero-spec-copy h1 em,
.gradient-text{
  font-style:normal !important;
  background: linear-gradient(90deg, #d78bff 0%, #8f8dff 50%, #5bd6ff 100%) !important;
  -webkit-background-clip:text !important;
  background-clip:text !important;
  color:transparent !important;
  -webkit-text-fill-color: transparent !important;
  font-size: clamp(28px, 3vw, 44px) !important;
  word-break: break-word !important;
  overflow-wrap: break-word !important;
  hyphens: auto !important;
  -webkit-hyphens: auto !important;
}
.hero-v2-copy p,
.hero-spec-copy p{font-size:18px !important; line-height:1.8 !important; color:#b9c8ee !important;}

.btn-primary{
  color:#041126 !important;
  border:0 !important;
  border-radius:14px !important;
  font-weight:700 !important;
  background:var(--g-gold) !important;
  box-shadow:0 14px 34px rgba(14,165,233,.28), 0 10px 26px rgba(139,92,246,.20) !important;
}
.btn-primary:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 18px 44px rgba(14,165,233,.34), 0 14px 34px rgba(139,92,246,.26) !important;
}
.btn-outline,.btn-dark-outline{
  border:1px solid rgba(148,163,184,.35) !important;
  background:rgba(10,20,55,.42) !important;
  color:#dbe9ff !important;
}
.btn-outline:hover,.btn-dark-outline:hover{
  border-color:rgba(56,189,248,.56) !important;
  background:rgba(14,165,233,.14) !important;
}

.svc-premium-card,.project-card-v2,.blog-premium-card,.service-card-v2,.content-card,.why-feature-card,.big-stat-card,.testimonial-slide,.panel,.adash-stat{
  border-radius:22px !important;
  background:linear-gradient(165deg, rgba(12,24,68,.56), rgba(8,14,42,.78)) !important;
  border:1px solid rgba(148,163,184,.20) !important;
  box-shadow:0 18px 40px -20px rgba(2,6,23,.95) !important;
  backdrop-filter:blur(14px) !important;
  -webkit-backdrop-filter:blur(14px) !important;
  transition:transform .35s ease, border-color .35s ease, box-shadow .35s ease !important;
}
.svc-premium-card:hover,.project-card-v2:hover,.blog-premium-card:hover,.service-card-v2:hover,.content-card:hover,.why-feature-card:hover,.big-stat-card:hover,.testimonial-slide:hover,.panel:hover,.adash-stat:hover{
  transform:translateY(-6px) !important;
  border-color:rgba(56,189,248,.44) !important;
  box-shadow:0 28px 60px -26px rgba(15,23,42,.95), 0 0 32px -14px rgba(56,189,248,.44) !important;
}

.adash-stat strong,.adash-stat-val{
  color:#f1f6ff !important;
  font-family:var(--f-sans) !important;
  font-weight:800 !important;
}

.section-chip{
  border-radius:999px !important;
  border-color:rgba(56,189,248,.28) !important;
  background:rgba(14,165,233,.12) !important;
  color:#67e8f9 !important;
}

.footer-premium,
.site-footer{
  background:linear-gradient(180deg, rgba(4,8,36,.35), rgba(4,8,36,.95)) !important;
  border-top:1px solid rgba(56,189,248,.16) !important;
}

@media (max-width:1024px){
  .hero-v2-grid{gap:34px !important;}
  .hero-v2-copy h1,.hero-spec-copy h1{font-size:clamp(28px,7vw,42px) !important;}
}
@media (max-width:768px){
  .premium-navbar{padding:12px 0 !important;}
  .hero-v2{padding:86px 0 66px !important;}
  .hero-v2-copy p,.hero-spec-copy p{font-size:16px !important;}
  .btn,.btn-lg{width:100% !important;justify-content:center !important;}
  .svc-premium-card,.project-card-v2,.blog-premium-card,.service-card-v2,.content-card,.panel,.adash-stat{border-radius:18px !important;}
}

/* Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â
   PREMIUM v23 Ã¢â‚¬â€ GLOBAL ENHANCEMENTS
   Ã¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢ÂÃ¢â€¢Â */

/* Ã¢â€â‚¬Ã¢â€â‚¬ Timing tokens Ã¢â€â‚¬Ã¢â€â‚¬ */
:root {
  --dur-xs:   120ms;
  --dur-sm:   220ms;
  --dur-md:   380ms;
  --dur-lg:   600ms;
  --ease-spring: cubic-bezier(.34,1.56,.64,1);
  --ease-out:    cubic-bezier(.22,.61,.36,1);
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Page load fade-in Ã¢â€â‚¬Ã¢â€â‚¬ */
@keyframes pageEnter {
  from { opacity:0; transform:translateY(10px); }
  to   { opacity:1; transform:none; }
}
.site-body { animation: pageEnter .55s var(--ease-out) both; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Header: glassmorphism on scroll Ã¢â€â‚¬Ã¢â€â‚¬ */
.site-header,
.premium-header {
  transition: background var(--dur-md) ease,
              border-color var(--dur-md) ease,
              box-shadow var(--dur-md) ease,
              backdrop-filter var(--dur-md) ease !important;
}
.site-header.scrolled,
.premium-header.scrolled {
  background: rgba(3,7,17,.88) !important;
  backdrop-filter: blur(20px) saturate(180%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(180%) !important;
  border-bottom-color: rgba(56,189,248,.18) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,.4), 0 1px 0 rgba(56,189,248,.08) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Nav links: sliding underline Ã¢â€â‚¬Ã¢â€â‚¬ */
.premium-nav-links a {
  position: relative;
  transition: color var(--dur-sm) ease !important;
}
.premium-nav-links a::after {
  content: '';
  position: absolute; bottom: -4px; left: 0;
  width: 100%; height: 2px;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--dur-sm) var(--ease-spring);
}
.premium-nav-links a:hover::after,
.premium-nav-links a.active::after { transform: scaleX(1); }
.premium-nav-links a.active,
.premium-nav-links a:hover {
  background: transparent !important;
  box-shadow: none !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Scroll-reveal system Ã¢â€â‚¬Ã¢â€â‚¬ */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-lg) var(--ease-out),
              transform var(--dur-lg) var(--ease-out);
}
.reveal.reveal-left  { transform: translateX(-40px); }
.reveal.reveal-right { transform: translateX(40px); }
.reveal.reveal-scale { transform: scale(.94); }
.reveal.is-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Card premium 3D hover Ã¢â€â‚¬Ã¢â€â‚¬ */
.svc-premium-card,
.project-card-v2,
.blog-premium-card,
.service-card-v2,
.why-feature-card,
.big-stat-card {
  transform-style: preserve-3d;
  transition: transform .4s var(--ease-out),
              border-color .35s ease,
              box-shadow .35s ease !important;
  will-change: transform;
}
.svc-premium-card:hover,
.project-card-v2:hover,
.blog-premium-card:hover,
.service-card-v2:hover,
.why-feature-card:hover {
  transform: translateY(-8px) perspective(600px) rotateX(1.5deg) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Card top glow line on hover Ã¢â€â‚¬Ã¢â€â‚¬ */
.svc-premium-card::before,
.service-card-v2::before,
.blog-premium-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, #22d3ee, #818cf8, #f0abfc);
  opacity: 0;
  transition: opacity .35s ease;
  border-radius: 22px 22px 0 0;
  z-index: 1;
}
.svc-premium-card:hover::before,
.service-card-v2:hover::before,
.blog-premium-card:hover::before { opacity: 1; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Button: ripple + glow Ã¢â€â‚¬Ã¢â€â‚¬ */
.btn-primary,
.btn { position: relative; overflow: hidden; }

.btn-primary::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,.22) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .3s ease;
  pointer-events: none;
}
.btn-primary:hover::before { opacity: 1; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Form inputs: premium focus Ã¢â€â‚¬Ã¢â€â‚¬ */
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="password"],
select,
textarea {
  transition: border-color var(--dur-sm) ease,
              box-shadow var(--dur-sm) ease,
              background var(--dur-sm) ease !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border-color: rgba(34,211,238,.6) !important;
  box-shadow: 0 0 0 3px rgba(34,211,238,.14),
              0 2px 12px rgba(34,211,238,.1) !important;
  outline: none !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Section headings: gradient accent Ã¢â€â‚¬Ã¢â€â‚¬ */
.section-title h2,
.section-heading {
  position: relative;
  display: inline-block;
}
.section-title h2::after,
.section-heading::after {
  content: '';
  position: absolute; bottom: -8px; left: 0;
  width: 48px; height: 3px;
  background: linear-gradient(90deg, #22d3ee, #818cf8);
  border-radius: 3px;
  transition: width .5s var(--ease-spring);
}
.section-title:hover h2::after,
.section-heading:hover::after { width: 100%; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Timeline glow (HakkÃ„Â±mÃ„Â±zda) Ã¢â€â‚¬Ã¢â€â‚¬ */
.timeline-line,
.timeline::before {
  box-shadow: 0 0 14px rgba(34,211,238,.25) !important;
}
.timeline-dot,
.timeline-marker {
  box-shadow: 0 0 0 4px rgba(34,211,238,.15),
              0 0 14px rgba(34,211,238,.3) !important;
  transition: box-shadow .3s ease, transform .3s ease !important;
}
.timeline-item:hover .timeline-dot,
.timeline-item:hover .timeline-marker {
  transform: scale(1.2) !important;
  box-shadow: 0 0 0 6px rgba(34,211,238,.2),
              0 0 22px rgba(34,211,238,.45) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Stats: glow on visible Ã¢â€â‚¬Ã¢â€â‚¬ */
.stat-v2,
.big-stat-card {
  transition: box-shadow .4s ease !important;
}
.stat-v2.is-visible,
.big-stat-card.is-visible {
  box-shadow: 0 8px 40px rgba(34,211,238,.1),
              0 0 0 1px rgba(34,211,238,.12) !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Social icons: glow hover Ã¢â€â‚¬Ã¢â€â‚¬ */
.social-links a,
.footer-social a {
  transition: color .25s ease, transform .25s ease, filter .25s ease !important;
}
.social-links a:hover,
.footer-social a:hover {
  transform: translateY(-3px) scale(1.18) !important;
  filter: drop-shadow(0 0 8px rgba(34,211,238,.7)) !important;
  color: #22d3ee !important;
}

/* Ã¢â€â‚¬Ã¢â€â‚¬ Footer links: underline slide Ã¢â€â‚¬Ã¢â€â‚¬ */
.footer-links a,
.site-footer nav a {
  position: relative;
  transition: color .22s ease !important;
}
.footer-links a::after,
.site-footer nav a::after {
  content: '';
  position: absolute; bottom: -2px; left: 0;
  width: 100%; height: 1px;
  background: #22d3ee;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease-spring);
}
.footer-links a:hover::after,
.site-footer nav a:hover::after { transform: scaleX(1); }
.footer-links a:hover,
.site-footer nav a:hover { color: #22d3ee !important; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Newsletter success bounce Ã¢â€â‚¬Ã¢â€â‚¬ */
@keyframes successBounce {
  0%   { transform: scale(.8); opacity:0; }
  60%  { transform: scale(1.06); opacity:1; }
  100% { transform: scale(1); }
}
#newsletterMsg { animation: successBounce .5s var(--ease-spring) both; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Stagger helper Ã¢â€â‚¬Ã¢â€â‚¬ */
.stagger-children > *:nth-child(1) { transition-delay:  0ms !important; }
.stagger-children > *:nth-child(2) { transition-delay: 80ms !important; }
.stagger-children > *:nth-child(3) { transition-delay:160ms !important; }
.stagger-children > *:nth-child(4) { transition-delay:240ms !important; }
.stagger-children > *:nth-child(5) { transition-delay:320ms !important; }
.stagger-children > *:nth-child(6) { transition-delay:400ms !important; }

/* Ã¢â€â‚¬Ã¢â€â‚¬ Glow orb background accent (subtle, global) Ã¢â€â‚¬Ã¢â€â‚¬ */
body::before {
  content: '';
  position: fixed; top: -30vh; right: -20vw;
  width: 60vw; height: 60vw; max-width: 900px; max-height: 900px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.06) 0%, transparent 70%);
  pointer-events: none; z-index: 0;
}

@media (max-width:768px){
  .reveal { transform: translateY(20px) !important; }
  .svc-premium-card:hover,
  .project-card-v2:hover { transform: translateY(-4px) !important; }
}


.cta-spectacular {
  padding: 88px 0 52px !important;
}

.footer-v2 {
  padding: 40px 0 24px !important;
  overflow: hidden !important;
}

.footer-v2-inner {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}


.footer-v2 {
  position: relative !important;
}

.footer-v2::after {
  display: none !important;
}

/* Footer sonrası boşluğu önle */
html {
  background: #08112d !important;
}

/* ═══════════════════════════════════════════════════
   PREMIUM v22 — FULL LUXURY UPGRADE
   ═══════════════════════════════════════════════════ */

/* ── 1. Cinematic Film Grain ────────────────────── */
.cinematic-grain {
  position: fixed; inset: 0; z-index: 9998;
  pointer-events: none; user-select: none;
  opacity: 0.032;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 200px 200px;
  animation: grainMove 0.35s steps(2) infinite;
}
@keyframes grainMove {
  0%   { background-position: 0   0; }
  25%  { background-position: -12px  8px; }
  50%  { background-position:   6px -10px; }
  75%  { background-position: -8px   5px; }
  100% { background-position:  10px  -6px; }
}

/* ── 2. Custom Scrollbar ─────────────────────────── */
::-webkit-scrollbar { width: 3px; height: 3px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d4af37 0%, rgba(212,175,55,0.25) 100%);
  border-radius: 3px;
}
html { scrollbar-width: thin; scrollbar-color: #d4af37 transparent; }

/* ── 3. Loader Screen ────────────────────────────── */
#siteLoader {
  position: fixed; inset: 0; z-index: 99999;
  background: #020617;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 28px;
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), visibility 0.8s;
}
#siteLoader.loader-gone { opacity: 0; visibility: hidden; pointer-events: none; }
.loader-brand {
  display: flex; align-items: center; gap: 16px;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px; font-weight: 700; color: #fff;
  opacity: 0; transform: translateY(18px);
  animation: loaderIn 0.7s 0.08s cubic-bezier(0.16,1,0.3,1) forwards;
}
.loader-badge {
  width: 52px; height: 52px; border-radius: 14px;
  background: linear-gradient(135deg, #d4af37 0%, #f3e5ab 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 800; color: #020617;
  font-family: 'Fira Code', monospace;
  box-shadow: 0 0 48px rgba(212,175,55,0.55), 0 0 80px rgba(212,175,55,0.2);
}
.loader-tagline {
  font-family: 'Fira Code', monospace; font-size: 10px;
  letter-spacing: 0.24em; text-transform: uppercase; color: #475569;
  opacity: 0;
  animation: loaderIn 0.7s 0.18s cubic-bezier(0.16,1,0.3,1) forwards;
}
.loader-bar {
  width: 180px; height: 1px;
  background: rgba(212,175,55,0.12);
  border-radius: 1px; overflow: hidden;
  opacity: 0;
  animation: loaderIn 0.7s 0.22s cubic-bezier(0.16,1,0.3,1) forwards;
}
.loader-bar-fill {
  height: 100%; width: 0%;
  background: linear-gradient(90deg, #d4af37, #f3e5ab);
  border-radius: 1px;
  transition: width 1.1s cubic-bezier(0.16,1,0.3,1);
}
@keyframes loaderIn { to { opacity: 1; transform: none; } }

/* ── 4. Split-text hero words ────────────────────── */
.split-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.6s cubic-bezier(0.16,1,0.3,1),
              transform 0.6s cubic-bezier(0.16,1,0.3,1);
}
.split-word.visible { opacity: 1; transform: none; }

/* ── 5. Shimmer on <em> / accent text ───────────── */
@keyframes accentShimmer {
  0%   { background-position: 200% center; }
  100% { background-position: -200% center; }
}
em {
  background: linear-gradient(90deg,
    #b8860b 0%, #d4af37 18%, #f3e5ab 36%, #fffde7 50%,
    #f3e5ab 64%, #d4af37 82%, #b8860b 100%) !important;
  background-size: 200% auto !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  animation: accentShimmer 4.5s linear infinite !important;
}

/* ── 6. Magnetic button will-change ─────────────── */
.btn { will-change: transform; }

/* ── 7. SVG Stat Rings ───────────────────────────── */
.bsc-ring-wrap {
  position: relative; flex-shrink: 0;
  width: 108px; height: 108px;
}
.bsc-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  transform: rotate(-90deg);
  overflow: visible;
}
.bsc-bg {
  fill: none;
  stroke: rgba(212,175,55,0.09);
  stroke-width: 4;
}
.bsc-fill {
  fill: none;
  stroke: url(#bscGold);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 263.9;
  stroke-dashoffset: 263.9;
  transition: stroke-dashoffset 1.9s cubic-bezier(0.16,1,0.3,1);
}
.bsc-center {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.bsc-text {
  display: flex; flex-direction: column; gap: 5px;
}
.big-stat-card {
  display: flex !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 26px 22px !important;
}
.big-stat-num {
  font-size: 20px !important;
  font-family: var(--f-serif) !important;
  line-height: 1 !important;
}

/* ── 8. Why-feature slide on hover ──────────────── */
.why-feature-card {
  transition: border-color 0.3s ease, background 0.3s ease,
              transform 0.35s cubic-bezier(0.16,1,0.3,1) !important;
}
.why-feature-card:hover {
  transform: translateX(8px) !important;
  border-color: rgba(212,175,55,0.22) !important;
}

/* ── 9. Process step glow on hover ──────────────── */
.process-step { position: relative !important; overflow: hidden !important; }
.process-step::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(212,175,55,0.07), transparent 65%);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.process-step:hover::after { opacity: 1; }
.process-step:hover .process-number { color: var(--gold) !important; }
.process-number { transition: color 0.3s ease; }

/* ── 10. Section gradient dividers ──────────────── */
.alt-surface::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.18) 50%, transparent 100%);
  pointer-events: none; z-index: 2;
}
.alt-surface::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(212,175,55,0.18) 50%, transparent 100%);
  pointer-events: none; z-index: 2;
}
.alt-surface { position: relative; }

/* ── 11. Project card hover glow + lift ─────────── */
.project-card-v2 {
  transition: transform 0.38s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.38s ease !important;
}
.project-card-v2:hover {
  transform: translateY(-10px) !important;
  box-shadow: 0 32px 64px rgba(0,0,0,0.45),
              0 0 0 1px rgba(212,175,55,0.14) !important;
}

/* ── 12. Service card num glow on hover ──────────── */
.svc-premium-num { transition: color 0.3s ease; }
.svc-premium-card:hover .svc-premium-num { color: var(--gold) !important; }

/* ── 13. Hero eyebrow dot pulse ─────────────────── */
@keyframes eyebrowPulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212,175,55,0.6); }
  60%       { box-shadow: 0 0 0 7px rgba(212,175,55,0); }
}
.hero-spec-eyebrow-dot {
  animation: eyebrowPulse 2.2s ease-in-out infinite !important;
}

/* ── 14. Section chip hover ─────────────────────── */
.section-chip {
  transition: letter-spacing 0.4s ease, box-shadow 0.4s ease !important;
  cursor: default;
}
.section-chip:hover {
  letter-spacing: 0.24em !important;
  box-shadow: 0 0 22px rgba(212,175,55,0.18) !important;
}

/* ── 15. Footer newsletter note fade-in ─────────── */
#newsletterMsg { animation: loaderIn 0.4s ease forwards; }

/* ═══════════════════════════════════════════════════
   PREMIUM v23 — INTERACTION & UX LAYER
   ═══════════════════════════════════════════════════ */

/* ── Custom Cursor ─────────────────────────────────── */
.cursor-dot {
  position: fixed; top: -4px; left: -4px;
  width: 8px; height: 8px; border-radius: 50%;
  background: #d4af37;
  pointer-events: none; z-index: 99997;
  opacity: 0; mix-blend-mode: normal;
}
.cursor-outline {
  position: fixed; top: -20px; left: -20px;
  width: 40px; height: 40px; border-radius: 50%;
  border: 1.5px solid rgba(212,175,55,0.55);
  pointer-events: none; z-index: 99996;
  opacity: 0;
  transition: width 0.3s ease, height 0.3s ease,
              border-color 0.3s ease, background 0.3s ease,
              top 0.02s, left 0.02s;
}
.cursor-outline.hovering {
  width: 58px; height: 58px;
  top: -29px !important; left: -29px !important;
  border-color: rgba(212,175,55,0.85);
  background: rgba(212,175,55,0.05);
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-outline { display: none !important; }
}

/* ── Card Spotlight (injected .card-spotlight child) ── */
.card-spotlight {
  position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(
    500px circle at var(--sx,50%) var(--sy,50%),
    rgba(212,175,55,0.07) 0%, transparent 55%
  );
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none; z-index: 0;
}
.svc-premium-card:hover .card-spotlight,
.project-card-v2:hover .card-spotlight,
.big-stat-card:hover .card-spotlight,
.why-feature-card:hover .card-spotlight { opacity: 1; }

/* Make sure cards have position:relative for spotlight */
.svc-premium-card,
.project-card-v2,
.big-stat-card,
.why-feature-card { position: relative !important; overflow: hidden !important; }

/* ── Page Transition ───────────────────────────────── */
#pageTransition {
  position: fixed; inset: 0; z-index: 999990;
  pointer-events: none;
  display: flex;
}
.pt-slice {
  flex: 1; height: 100%;
  background: #020617;
  transform: scaleY(0);
  transform-origin: bottom;
}
#pageTransition.pt-enter .pt-slice { animation: ptIn 0.5s cubic-bezier(0.76,0,0.24,1) forwards; }
#pageTransition.pt-exit  .pt-slice { animation: ptOut 0.6s cubic-bezier(0.76,0,0.24,1) forwards; }
.pt-slice:nth-child(1) { animation-delay: 0ms; }
.pt-slice:nth-child(2) { animation-delay: 60ms; }
.pt-slice:nth-child(3) { animation-delay: 120ms; }
.pt-slice:nth-child(4) { animation-delay: 180ms; }
.pt-slice:nth-child(5) { animation-delay: 240ms; }
@keyframes ptIn  { from { transform: scaleY(0); } to { transform: scaleY(1); } }
@keyframes ptOut { from { transform: scaleY(1); } to { transform: scaleY(0); transform-origin: top; } }

/* ── Hero Cursor Spotlight ─────────────────────────── */
.hero-spectacular { --hsx: 50%; --hsy: 50%; }
.hero-spectacular .hero-spotlight {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(
    700px circle at var(--hsx) var(--hsy),
    rgba(212,175,55,0.055) 0%, transparent 65%
  );
  transition: background 0.12s ease;
}

/* ── Back-to-Top + Scroll Ring ─────────────────────── */
#backToTop {
  position: fixed; right: 24px; bottom: 82px; z-index: 499;
  width: 46px; height: 46px;
  background: rgba(15,23,42,0.85);
  border: none; border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(12px) scale(0.85);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.16,1,0.3,1);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}
#backToTop.btt-visible { opacity: 1; transform: translateY(0) scale(1); }
#backToTop:hover { transform: translateY(-3px) scale(1.06) !important; }
#backToTop .btt-icon {
  position: relative; z-index: 1;
  color: #d4af37; font-size: 18px; line-height: 1;
  font-family: sans-serif;
}
#backToTop svg.btt-svg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  transform: rotate(-90deg); border-radius: 50%;
}
.btt-bg  { fill: none; stroke: rgba(212,175,55,0.1); stroke-width: 2.5; }
.btt-fill{
  fill: none; stroke: #d4af37; stroke-width: 2.5; stroke-linecap: round;
  stroke-dasharray: 125.7; stroke-dashoffset: 125.7;
  transition: stroke-dashoffset 0.15s linear;
}

/* ── Social Proof Toast ────────────────────────────── */
#socialToast {
  position: fixed; left: 24px; bottom: 24px; z-index: 498;
  background: rgba(15,23,42,0.9);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212,175,55,0.14);
  border-radius: 14px; padding: 14px 18px;
  display: flex; align-items: center; gap: 13px;
  max-width: 280px; min-width: 220px;
  opacity: 0; transform: translateY(16px) scale(0.96);
  transition: opacity 0.45s cubic-bezier(0.16,1,0.3,1),
              transform 0.45s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
}
#socialToast.toast-show { opacity: 1; transform: none; pointer-events: auto; }
.toast-avatar {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #d4af37, #f3e5ab);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; color: #020617;
  font-family: 'Fira Code', monospace;
}
.toast-body { flex: 1; min-width: 0; }
.toast-name { font-size: 13px; font-weight: 600; color: #f8fafc; }
.toast-detail { font-size: 11px; color: #64748b; margin-top: 2px; font-family: 'Fira Code', monospace; }
.toast-time { font-size: 10px; color: rgba(212,175,55,0.7); font-family: 'Fira Code', monospace; flex-shrink: 0; }

/* ── Nav Pill Indicator ────────────────────────────── */
.nav-pill {
  position: absolute; bottom: -6px; height: 2px;
  background: linear-gradient(90deg, transparent, #d4af37, transparent);
  border-radius: 1px;
  transition: left 0.35s cubic-bezier(0.16,1,0.3,1),
              width 0.35s cubic-bezier(0.16,1,0.3,1),
              opacity 0.3s ease;
  pointer-events: none;
}

/* ── Cookie Banner Premium ─────────────────────────── */
#cookie-banner {
  position: fixed !important; bottom: 20px !important;
  left: 50% !important; transform: translateX(-50%) !important;
  right: auto !important;
  background: rgba(15,23,42,0.92) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
  border: 1px solid rgba(212,175,55,0.14) !important;
  border-radius: 16px !important;
  padding: 16px 20px !important;
  display: flex !important; align-items: center !important;
  gap: 16px !important; max-width: 540px !important;
  width: calc(100% - 48px) !important;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5) !important;
  z-index: 9990 !important;
}
#cookie-banner p { font-size: 13px !important; color: #94a3b8 !important; margin: 0 !important; flex: 1 !important; }
#cookie-banner a { color: #d4af37 !important; }
#cookie-decline {
  padding: 8px 14px !important; border-radius: 8px !important;
  background: transparent !important; border: 1px solid rgba(212,175,55,0.18) !important;
  color: #64748b !important; font-size: 12px !important; cursor: pointer !important;
  white-space: nowrap !important; transition: border-color 0.2s, color 0.2s !important;
}
#cookie-decline:hover { border-color: rgba(212,175,55,0.4) !important; color: #94a3b8 !important; }
#cookie-accept {
  padding: 8px 16px !important; border-radius: 8px !important;
  background: linear-gradient(135deg, #d4af37, #f3e5ab) !important;
  border: none !important; color: #020617 !important;
  font-size: 12px !important; font-weight: 600 !important;
  cursor: pointer !important; white-space: nowrap !important;
  transition: opacity 0.2s !important;
}
#cookie-accept:hover { opacity: 0.88 !important; }

/* ── Blur-up lazy images ───────────────────────────── */
.real-image img:not(.img-ready) {
  filter: blur(10px) saturate(0.7);
  transition: filter 0.8s cubic-bezier(0.16,1,0.3,1);
}
.real-image img.img-ready { filter: none; }

/* ── Terminal typewriter cursor ────────────────────── */
.term-typing-cursor {
  display: inline-block; width: 7px; height: 1.1em;
  background: #d4af37; margin-left: 2px;
  vertical-align: text-bottom;
  animation: termBlink 0.85s step-end infinite;
}
@keyframes termBlink { 50% { opacity: 0; } }

/* ═══════════════════════════════════════════════════
   PREMIUM v24 — DEPTH & DELIGHT
   ═══════════════════════════════════════════════════ */

/* ── Floating Contact Button ───────────────────────── */
#floatingContact {
  position: fixed; right: 24px; bottom: 140px; z-index: 497;
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, #22d3ee 0%, #818cf8 100%);
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 22px rgba(34,211,238,0.42);
  opacity: 0; transform: scale(0.65) translateY(16px);
  animation: fcFlyIn 0.55s 2.2s cubic-bezier(0.16,1,0.3,1) forwards;
  transition: transform 0.32s cubic-bezier(0.16,1,0.3,1),
              box-shadow 0.32s ease;
}
@keyframes fcFlyIn { to { opacity: 1; transform: scale(1) translateY(0); } }
#floatingContact:hover {
  transform: scale(1.1) translateY(-4px);
  box-shadow: 0 8px 34px rgba(34,211,238,0.62);
}
#floatingContact svg {
  width: 22px; height: 22px;
  fill: none; stroke: #fff; stroke-width: 2;
  stroke-linecap: round; stroke-linejoin: round;
  position: relative; z-index: 1;
}
/* Pulse ring */
#floatingContact::before {
  content: '';
  position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid rgba(34,211,238,0.55);
  animation: fcPulse 2.6s ease-out 4s infinite;
}
@keyframes fcPulse {
  0%   { transform: scale(1);   opacity: 0.75; }
  100% { transform: scale(2.1); opacity: 0; }
}
/* Tooltip label */
#floatingContact .fc-label {
  position: absolute; right: 58px; top: 50%;
  transform: translateY(-50%) translateX(6px);
  background: rgba(4,8,36,0.93);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(34,211,238,0.2); border-radius: 9px;
  padding: 6px 13px; font-size: 12px; font-weight: 500;
  color: #dbeafe; white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.22s ease, transform 0.22s ease;
}
#floatingContact:hover .fc-label {
  opacity: 1; transform: translateY(-50%) translateX(0);
}

/* ── Button click ripple ───────────────────────────── */
.btn-ripple {
  position: absolute; border-radius: 50%;
  background: rgba(255,255,255,0.24);
  pointer-events: none; transform: scale(0);
  animation: rippleExp 0.62s ease-out forwards;
}
@keyframes rippleExp { to { transform: scale(4.2); opacity: 0; } }

/* ── FAQ open-state glow ───────────────────────────── */
.faq-row-v2 { transition: border-color 0.3s ease, box-shadow 0.3s ease; }
.faq-row-v2[open] {
  border-color: rgba(34,211,238,0.30) !important;
  box-shadow: 0 0 28px rgba(34,211,238,0.07), 0 8px 28px rgba(0,0,0,0.28) !important;
}
.faq-row-v2 summary { transition: color 0.25s ease; }
.faq-row-v2[open] > summary { color: #67e8f9 !important; }

/* ── Glitch on brand name hover ────────────────────── */
@keyframes glitch1 {
  0%,100% { clip-path: inset(0 0 96% 0); transform: translate(-2px, 0); }
  33%      { clip-path: inset(28% 0 55% 0); transform: translate(2px, 0); }
  66%      { clip-path: inset(72% 0 18% 0); transform: translate(-1px, 0); }
}
@keyframes glitch2 {
  0%,100% { clip-path: inset(88% 0 0 0); transform: translate(2px, 0); }
  33%      { clip-path: inset(8% 0 82% 0); transform: translate(-2px, 0); }
  66%      { clip-path: inset(48% 0 42% 0); transform: translate(1px, 0); }
}
.premium-brand { position: relative; display: inline-flex; }
.premium-brand::before,
.premium-brand::after {
  content: attr(data-glitch);
  position: absolute; inset: 0;
  pointer-events: none; opacity: 0;
  font: inherit; color: inherit;
}
.premium-brand:hover::before {
  opacity: 0.8; color: #22d3ee;
  animation: glitch1 0.35s steps(2) 2;
}
.premium-brand:hover::after {
  opacity: 0.7; color: #818cf8;
  animation: glitch2 0.35s steps(2) 2;
}

/* ── Service / feature icon morph on card hover ─────── */
.svc-premium-icon,
.svc-icon-wrap,
.feature-icon-v2,
.why-icon {
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1),
              filter 0.4s ease !important;
  will-change: transform;
}
.svc-premium-card:hover .svc-premium-icon,
.svc-premium-card:hover .svc-icon-wrap,
.why-feature-card:hover .why-icon,
.service-card-v2:hover .feature-icon-v2 {
  transform: scale(1.22) rotate(7deg) !important;
  filter: drop-shadow(0 0 10px rgba(34,211,238,0.5)) !important;
}

/* ── Terminal card inner glow + parallax ready ──────── */
.terminal-card-v2 {
  will-change: transform;
  transition: box-shadow 0.42s ease !important;
}
.terminal-card-v2:hover {
  box-shadow: 0 28px 70px rgba(0,0,0,0.38),
              0 0 48px rgba(34,211,238,0.07) !important;
}

/* ── Stat number counter glow on reveal ─────────────── */
[data-count].is-visible,
.stat-v2 strong.is-visible {
  text-shadow: 0 0 32px rgba(34,211,238,0.22);
}

/* ── Conic ambient glow on CTA section ──────────────── */
.cta-spectacular {
  position: relative; overflow: hidden;
}
.cta-spectacular::before {
  content: '';
  position: absolute; inset: -80px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(ellipse 60% 40% at 20% 50%, rgba(34,211,238,0.09), transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 50%, rgba(129,140,248,0.09), transparent 70%);
  animation: ctaGlowShift 7s ease-in-out infinite alternate;
}
@keyframes ctaGlowShift {
  from { opacity: 0.6; transform: scale(1); }
  to   { opacity: 1;   transform: scale(1.12); }
}

/* ── Section headings: clip-path sweep on reveal ────── */
.section-title h2,
.section-heading {
  overflow: hidden;
}
.section-title.is-visible h2,
.section-heading.is-visible {
  animation: sweepReveal 0.65s 0.1s cubic-bezier(0.16,1,0.3,1) both;
}
@keyframes sweepReveal {
  from { clip-path: inset(0 100% 0 0); }
  to   { clip-path: inset(0 0% 0 0); }
}

/* ── Scroll progress bar: neon glow ─────────────────── */
#scroll-progress {
  box-shadow: 0 0 10px rgba(34,211,238,0.55), 0 0 4px rgba(129,140,248,0.4) !important;
}

/* ── Mobile: hide floating btn & glitch ─────────────── */
@media (max-width: 768px) {
  #floatingContact { width: 42px; height: 42px; right: 16px; bottom: 120px; }
  #floatingContact .fc-label { display: none; }
  .premium-brand::before,
  .premium-brand::after { display: none; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM v25 — FEATURES EXPANSION
   ═══════════════════════════════════════════════════ */

/* ── 1. Section Progress Sidebar ─────────────────────── */
.section-progress {
  position: fixed; right: 18px; top: 50%; transform: translateY(-50%);
  z-index: 490; display: flex; flex-direction: column;
  align-items: center; gap: 9px;
  padding: 12px 9px; border-radius: 24px;
  background: rgba(4,8,36,0.58);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(148,163,184,0.1);
  box-shadow: 0 8px 32px rgba(0,0,0,0.28);
}
.sp-dot {
  width: 7px; height: 7px; border-radius: 50%;
  border: none; padding: 0; cursor: pointer;
  background: rgba(148,163,184,0.28);
  transition: all 0.38s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.sp-dot::before {
  content: attr(data-label);
  position: absolute; right: calc(100% + 10px); top: 50%;
  transform: translateY(-50%) translateX(4px);
  background: rgba(4,8,36,0.92);
  border: 1px solid rgba(34,211,238,0.2);
  border-radius: 6px; padding: 4px 10px;
  font-size: 11px; font-weight: 500; color: #c7d2fe;
  white-space: nowrap; pointer-events: none;
  opacity: 0; transition: opacity 0.2s ease, transform 0.2s ease;
}
.sp-dot:hover::before { opacity: 1; transform: translateY(-50%) translateX(0); }
.sp-dot:hover { background: rgba(148,163,184,0.65); transform: scale(1.35); }
.sp-dot.active {
  background: #22d3ee; height: 24px; border-radius: 4px;
  box-shadow: 0 0 12px rgba(34,211,238,0.55);
}
.sp-dot.active:hover { transform: scaleX(1.3); }
@media (max-width: 1280px) { .section-progress { display: none !important; } }

/* ── 2. Hero Canvas Particle Layer ───────────────────── */
#heroCanvas {
  position: absolute; inset: 0;
  width: 100% !important; height: 100% !important;
  z-index: 0; pointer-events: none;
  opacity: 0.6;
}
@media (prefers-reduced-motion: reduce) { #heroCanvas { display: none !important; } }

/* ── 5. Marquee pill hover glow ──────────────────────── */
.marquee-pill {
  border-radius: 6px;
  transition: color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease !important;
  cursor: default;
}
.marquee-pill:hover {
  color: #22d3ee !important;
  background: rgba(34,211,238,0.06) !important;
  box-shadow: 0 0 16px rgba(34,211,238,0.12) !important;
}

/* ── 6. Drag-to-scroll cursor ────────────────────────── */
.svc-premium-grid,
.blog-premium-grid {
  cursor: grab;
  -webkit-user-select: none; user-select: none;
}
.svc-premium-grid.is-dragging,
.blog-premium-grid.is-dragging {
  cursor: grabbing !important;
}
.svc-premium-grid.is-dragging *,
.blog-premium-grid.is-dragging * {
  pointer-events: none !important;
}

/* ── Mobile refinements ───────────────────────────────── */
@media (max-width: 900px) {
  .svc-premium-grid,
  .blog-premium-grid { cursor: default; }
}

/* ═══════════════════════════════════════════════════
   PREMIUM v26 — OPEIS.TR CLEAN DARK
   ═══════════════════════════════════════════════════ */

/* ── 1. Arka plan: derin lacivert, minimal glow ─────── */
body.site-body-premium,
.site-body-premium {
  background:
    radial-gradient(ellipse 70% 55% at 78% -8%, rgba(99,102,241,0.10), transparent 55%),
    radial-gradient(ellipse 50% 38% at 6%  18%, rgba(56,189,248,0.05), transparent 50%),
    #030c1d !important;
}

/* ── 2. Nokta-grid overlay'ini kaldır ───────────────── */
.site-body-premium::before { display: none !important; }

/* ── 3. body::before global glow orb'unu kaldır ─────── */
body::before { display: none !important; }

/* ── 4. Orb'ları çok daha soluk yap ─────────────────── */
.home-orb {
  opacity: 0.07 !important;
  filter: blur(180px) !important;
}

/* ── 5. Canvas partikülleri: barely visible ──────────── */
#heroCanvas { opacity: 0.18 !important; }

/* ── 6. Hero: şeffaf arka plan, hafif overlay ────────── */
.hero-spectacular {
  background: transparent !important;
}
.hero-spectacular::after {
  background:
    radial-gradient(circle at 85% 20%, rgba(99,102,241,0.07), transparent 38%),
    linear-gradient(180deg, transparent 70%, rgba(3,12,29,0.12) 100%) !important;
}

/* ── 7. Hero h1 em: mor-teal gradient, shimmer yok ──── */
.hero-spec-copy h1 em {
  background: linear-gradient(90deg, #c084fc 0%, #818cf8 42%, #38bdf8 100%) !important;
  background-size: 100% !important;
  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;
  font-style: normal !important;
  animation: none !important;
}

/* ── 8. Nav: sadece alt çizgi, bg highlight yok ─────── */
.premium-nav-links a.active,
.premium-nav-links a:hover {
  background: transparent !important;
  box-shadow: none !important;
  color: #e6f3ff !important;
}

/* ── 9. Terminal kart: opeis.tr glassmorphism ────────── */
.terminal-card-v2 {
  background: rgba(5,13,32,0.84) !important;
  border: 1px solid rgba(148,163,184,0.15) !important;
  backdrop-filter: blur(22px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(22px) saturate(130%) !important;
  box-shadow: 0 24px 64px rgba(0,0,0,0.45), inset 0 1px 0 rgba(255,255,255,0.05) !important;
}

/* ── 10. Section bloklar: şeffaf, sadece alt yüzey tonu ─ */
.section-block { background: transparent !important; }
.section-block.alt-surface {
  background: rgba(4,10,26,0.55) !important;
}

/* ── 11. Header: opeis.tr minimal glassmorphism ──────── */
.premium-header,
.site-header {
  background: rgba(3,10,28,0.72) !important;
  border-bottom: 1px solid rgba(148,163,184,0.12) !important;
  backdrop-filter: blur(20px) saturate(150%) !important;
  -webkit-backdrop-filter: blur(20px) saturate(150%) !important;
}
.site-header.scrolled,
.premium-header.scrolled {
  background: rgba(3,10,28,0.90) !important;
  border-bottom-color: rgba(148,163,184,0.18) !important;
}

/* ── 12. Slider dots: opeis.tr pill stili ────────────── */
.hero-slider-dot {
  background: rgba(148,163,184,0.20) !important;
  border-color: rgba(148,163,184,0.20) !important;
}
.hero-slider-dot.is-active {
  background: linear-gradient(90deg, #22d3ee, #818cf8) !important;
  border-color: transparent !important;
  box-shadow: 0 0 14px rgba(34,211,238,0.35) !important;
}

/* ── 13. Floating ok butonları: opeis.tr stili ───────── */
.hero-float-arrow {
  background: rgba(5,13,32,0.65) !important;
  border: 1px solid rgba(148,163,184,0.18) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  color: rgba(194,204,236,0.75) !important;
  transition: all 0.28s ease !important;
}
.hero-float-arrow:hover {
  background: rgba(34,211,238,0.12) !important;
  border-color: rgba(34,211,238,0.42) !important;
  color: #fff !important;
  box-shadow: 0 0 18px rgba(34,211,238,0.2) !important;
}

/* ── 14. Hero scroll indikatörü ──────────────────────── */
.hero-scroll-indicator {
  background: rgba(5,13,32,0.65) !important;
  border: 1px solid rgba(148,163,184,0.18) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
}

/* ── 15. CTA section: daha sade ─────────────────────── */
.cta-spectacular {
  background:
    radial-gradient(ellipse 70% 55% at 50% 50%, rgba(56,189,248,0.07), transparent 65%),
    rgba(4,10,26,0.85) !important;
}
.cta-spectacular::before { display: none !important; }

/* ── Responsive ──────────────────────────────────────── */
@media (max-width: 768px) {
  .hero-float-arrow { display: none !important; }
}
