/* ============================================================
   STYLE.CSS — Dark Glassmorphism Service Website
   Author: AI CSS Expert
   Version: 2.0
   Last Updated: 2026-06-12
   ============================================================ */

/* ============================================================
   1. GOOGLE FONTS IMPORT
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800&display=swap');

/* ============================================================
   2. CSS CUSTOM PROPERTIES (:root)
   ============================================================ */
:root {
    /* — Primary Palette — */
    --color-primary: #8B5CF6;
    --color-primary-rgb: 139, 92, 246;
    --color-secondary: #A78BFA;
    --color-secondary-rgb: 167, 139, 250;
    --color-accent: #C4B5FD;
    --color-accent-rgb: 196, 181, 253;

    /* — Background & Surface — */
    --color-bg: #070B1A;
    --color-bg-rgb: 7, 11, 26;
    --color-surface: #0E1230;
    --color-surface-rgb: 14, 18, 48;
    --color-card: rgba(139, 92, 246, 0.04);
    --color-footer-bg: #050815;

    /* — Text — */
    --color-text: #FFFFFE;
    --color-text-rgb: 255, 255, 254;
    --color-muted: #9294B8;
    --color-muted-rgb: 146, 148, 184;

    /* — Border — */
    --color-border: rgba(139, 92, 246, 0.08);
    --color-border-hover: rgba(139, 92, 246, 0.25);

    /* — Status Colors — */
    --color-success: #00E676;
    --color-success-rgb: 0, 230, 118;
    --color-warning: #FFAB40;
    --color-warning-rgb: 255, 171, 64;
    --color-danger: #FF5252;
    --color-danger-rgb: 255, 82, 82;

    /* — Typography — */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --font-mono: 'Fira Code', 'Cascadia Code', 'Consolas', monospace;

    /* — Font Sizes — */
    --text-xs: 0.75rem;
    --text-sm: 0.85rem;
    --text-base: 0.95rem;
    --text-md: 1rem;
    --text-lg: 1.1rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 2rem;
    --text-4xl: 3rem;
    --text-5xl: 4rem;

    /* — Spacing Scale (4px base) — */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-7: 28px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-14: 56px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;
    --space-28: 112px;
    --space-32: 128px;

    /* — Border Radius — */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-2xl: 28px;
    --radius-full: 50px;
    --radius-circle: 50%;

    /* — Shadows — */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.25);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.3);
    --shadow-primary: 0 4px 25px rgba(108, 99, 255, 0.35);
    --shadow-primary-hover: 0 12px 35px rgba(108, 99, 255, 0.45);
    --shadow-glow: 0 0 20px rgba(108, 99, 255, 0.2);
    --shadow-glow-strong: 0 0 40px rgba(108, 99, 255, 0.4);

    /* — Transitions — */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-in-out: cubic-bezier(0.4, 0, 0.6, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-fast: 0.2s;
    --transition-base: 0.3s;
    --transition-slow: 0.4s;
    --transition-slower: 0.5s;
    --transition-slowest: 0.8s;

    /* — Z-Index Scale — */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-navbar: 1000;
    --z-modal: 2000;
    --z-toast: 3000;
    --z-tooltip: 4000;

    /* — Container — */
    --container-max: 1200px;
    --container-padding: 24px;

    /* — Gradients — */
    --gradient-primary: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
    --gradient-primary-accent: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    --gradient-text: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    --gradient-hero: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    --gradient-shimmer: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.08) 50%, transparent 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01));
}

/* ============================================================
   3. RESET & BASE STYLES
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
    min-height: 100vh;
}

::selection {
    background: rgba(108, 99, 255, 0.3);
    color: #fff;
}

::-moz-selection {
    background: rgba(108, 99, 255, 0.3);
    color: #fff;
}

/* — Headings — */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-text);
    letter-spacing: -0.01em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.1rem;
}

h6 {
    font-size: 1rem;
}

/* — Links — */
a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition-base) var(--ease-out);
}

a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* — Images — */
img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* — Lists — */
ul,
ol {
    list-style: none;
}

/* — Button Reset — */
button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    color: inherit;
}

/* — Input Reset — */
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

textarea {
    resize: vertical;
}

/* — Scrollbar — */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: rgba(10, 10, 18, 0.8);
}

::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
    transition: background var(--transition-base);
}

::-webkit-scrollbar-thumb:hover {
    background: #8078FF;
}

/* Firefox scrollbar */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--color-primary) rgba(10, 10, 18, 0.8);
}

/* ============================================================
   4. KEYFRAME ANIMATIONS
   ============================================================ */

/* — Float Up/Down — */
@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* — Float Reverse (Down/Up) — */
@keyframes floatReverse {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(20px);
    }
}

/* — Pulse Glow — */
@keyframes pulseGlow {
    0%,
    100% {
        box-shadow: 0 0 20px rgba(108, 99, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(108, 99, 255, 0.4);
    }
}

/* — Slow Rotation — */
@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* — Gradient Shift — */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* — Fade In Up — */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* — Fade In Left — */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* — Fade In Right — */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* — Scale In — */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* — Shimmer — */
@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* — Border Glow — */
@keyframes borderGlow {
    0%,
    100% {
        border-color: rgba(108, 99, 255, 0.2);
    }
    50% {
        border-color: rgba(108, 99, 255, 0.5);
    }
}

/* — Text Glow — */
@keyframes textGlow {
    0%,
    100% {
        text-shadow: 0 0 10px rgba(108, 99, 255, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(108, 99, 255, 0.6);
    }
}

/* — Morph Blob — */
@keyframes morphBlob {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

/* — Spin (for loaders) — */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* — Fade In — */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* — Slide Down — */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* — Bounce Subtle — */
@keyframes bounceSoft {
    0%,
    100% {
        transform: translateY(0);
    }
    25% {
        transform: translateY(-6px);
    }
    75% {
        transform: translateY(3px);
    }
}

/* ============================================================
   5. UTILITY CLASSES
   ============================================================ */

/* — Container — */
.container {
    max-width: var(--container-max);
    margin-left: auto;
    margin-right: auto;
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    width: 100%;
}

/* — Gradient Text — */
.gradient-text {
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* — Section — */
.section {
    padding: 120px 0;
    position: relative;
}

/* — Section Header — */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

/* — Section Tag — */
.section-tag {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: var(--text-xs);
    color: var(--color-primary);
    font-weight: 600;
    display: inline-block;
    padding: var(--space-2) var(--space-5);
    background: rgba(108, 99, 255, 0.08);
    border: 1px solid rgba(108, 99, 255, 0.15);
    border-radius: var(--radius-full);
    margin-bottom: var(--space-5);
    line-height: 1.4;
}

/* — Section Title — */
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: var(--space-5);
    font-family: var(--font-heading);
    font-weight: 700;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary-accent);
    margin: var(--space-4) auto 0;
    border-radius: var(--radius-full);
}

/* — Section Description — */
.section-description {
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: var(--text-lg);
    line-height: 1.8;
}

/* ============================================================
   6. BUTTONS
   ============================================================ */

/* — Base Button — */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-lg);
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: all var(--transition-slow) var(--ease-out);
    position: relative;
    overflow: hidden;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
    user-select: none;
    -webkit-user-select: none;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    transition: left 0.6s var(--ease-out);
    z-index: 1;
}

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

.btn span,
.btn svg,
.btn i {
    position: relative;
    z-index: 2;
}

/* — Primary Button — */
.btn-primary {
    background: var(--gradient-primary);
    color: #ffffff;
    box-shadow: var(--shadow-primary);
}

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

.btn-primary:active {
    transform: translateY(-1px);
    box-shadow: var(--shadow-primary);
}

/* — Outline Button — */
.btn-outline {
    background: transparent;
    border: 1px solid rgba(108, 99, 255, 0.4);
    color: var(--color-primary);
}

.btn-outline:hover {
    background: rgba(108, 99, 255, 0.08);
    border-color: var(--color-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

.btn-outline:active {
    transform: translateY(-1px);
}

/* — Large Button — */
.btn-lg {
    padding: 18px 40px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

/* — Block Button — */
.btn-block {
    width: 100%;
    justify-content: center;
}

/* — Small Button — */
.btn-sm {
    padding: 10px 20px;
    font-size: var(--text-sm);
    border-radius: var(--radius-md);
}

/* — Icon-only Button — */
.btn-icon {
    padding: 12px;
    width: 44px;
    height: 44px;
}

/* — Ghost Button — */
.btn-ghost {
    background: transparent;
    color: var(--color-muted);
    padding: 10px 20px;
}

.btn-ghost:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.04);
}

/* ============================================================
   7. BADGES
   ============================================================ */

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    font-size: var(--text-xs);
    font-weight: 600;
    border-radius: var(--radius-full);
    line-height: 1.4;
    letter-spacing: 0.3px;
}

.badge-primary {
    background: rgba(108, 99, 255, 0.1);
    color: var(--color-primary);
    border: 1px solid rgba(108, 99, 255, 0.2);
}

.badge-success {
    background: rgba(0, 230, 118, 0.08);
    color: var(--color-success);
    border: 1px solid rgba(0, 230, 118, 0.2);
}

.badge-warning {
    background: rgba(255, 171, 64, 0.08);
    color: var(--color-warning);
    border: 1px solid rgba(255, 171, 64, 0.2);
}

.badge-danger {
    background: rgba(255, 82, 82, 0.08);
    color: var(--color-danger);
    border: 1px solid rgba(255, 82, 82, 0.2);
}

.badge-accent {
    background: rgba(0, 217, 255, 0.08);
    color: var(--color-accent);
    border: 1px solid rgba(0, 217, 255, 0.2);
}

/* ============================================================
   8. SCROLL REVEAL
   ============================================================ */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-slowest) var(--ease-out),
                transform var(--transition-slowest) var(--ease-out);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* — Staggered Delays — */
.scroll-reveal:nth-child(2) {
    transition-delay: 0.15s;
}

.scroll-reveal:nth-child(3) {
    transition-delay: 0.3s;
}

.scroll-reveal:nth-child(4) {
    transition-delay: 0.45s;
}

.scroll-reveal:nth-child(5) {
    transition-delay: 0.6s;
}

.scroll-reveal:nth-child(6) {
    transition-delay: 0.75s;
}

/* — Direction Variants — */
.scroll-reveal-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity var(--transition-slowest) var(--ease-out),
                transform var(--transition-slowest) var(--ease-out);
}

.scroll-reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity var(--transition-slowest) var(--ease-out),
                transform var(--transition-slowest) var(--ease-out);
}

.scroll-reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.scroll-reveal-scale {
    opacity: 0;
    transform: scale(0.92);
    transition: opacity var(--transition-slowest) var(--ease-out),
                transform var(--transition-slowest) var(--ease-out);
}

.scroll-reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================
   9. GLASS CARD BASE
   ============================================================ */

.glass-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-slower) var(--ease-out);
}

/* ============================================================
   10. NAVBAR
   ============================================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: var(--z-navbar);
    background: transparent;
    padding: 20px 0;
    transition: all var(--transition-slow) var(--ease-out);
}

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

/* — Logo — */
.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform var(--transition-base) var(--ease-out);
    text-decoration: none;
    letter-spacing: -0.02em;
    line-height: 1;
    display: inline-block;
}

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

/* — Nav Links — */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    list-style: none;
}

.nav-links a {
    padding: 10px 20px;
    color: var(--color-muted);
    font-weight: 500;
    font-size: 0.9rem;
    border-radius: var(--radius-md);
    position: relative;
    transition: all var(--transition-base) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
}

.nav-links a:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.04);
}

.nav-links a.active {
    color: var(--color-primary);
    background: rgba(108, 99, 255, 0.08);
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--gradient-primary-accent);
    border-radius: var(--radius-full);
}

/* — Nav CTA Button — */
.nav-cta {
    background: var(--gradient-primary) !important;
    color: #ffffff !important;
    padding: 10px 24px !important;
    border-radius: var(--radius-full) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.3);
    transition: all var(--transition-base) var(--ease-out) !important;
    border: none;
}

.nav-cta:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 30px rgba(108, 99, 255, 0.4) !important;
    background: var(--gradient-primary) !important;
}

/* — Navbar Scrolled State — */
.navbar.scrolled {
    background: rgba(10, 10, 18, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    padding: 12px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

/* — Hamburger — */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    border-radius: var(--radius-full);
    transition: all var(--transition-base) var(--ease-out);
    transform-origin: center;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(5px) translateX(5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-10px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-5px) translateX(5px);
}

/* — Mobile Menu Overlay — */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity var(--transition-base) var(--ease-out);
}

.nav-overlay.active {
    opacity: 1;
}

/* ============================================================
   11. HERO SECTION
   ============================================================ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-bg);
}

/* — Background Elements — */
.hero-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

.gradient-orb-1 {
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.12), transparent 70%);
    animation: morphBlob 15s ease-in-out infinite;
    filter: blur(40px);
}

.gradient-orb-2 {
    position: absolute;
    bottom: -30%;
    left: -15%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 101, 132, 0.08), transparent 70%);
    animation: morphBlob 20s ease-in-out infinite reverse;
    filter: blur(40px);
}

.gradient-orb-3 {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.06), transparent 70%);
    animation: float 12s ease-in-out infinite;
    filter: blur(30px);
    transform: translateX(-50%);
}

/* — Floating Shapes — */
.floating-shape {
    position: absolute;
    border: 1px solid rgba(255, 255, 255, 0.06);
    pointer-events: none;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 15%;
    left: 10%;
    border-radius: 12px;
    animation: float 8s ease-in-out infinite, rotateSlow 25s linear infinite;
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 70%;
    right: 15%;
    border-radius: 50%;
    animation: floatReverse 10s ease-in-out infinite;
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 30%;
    border-radius: 16px;
    transform: rotate(45deg);
    animation: float 12s ease-in-out infinite;
}

.shape-4 {
    width: 30px;
    height: 30px;
    top: 30%;
    right: 25%;
    border-radius: 8px;
    animation: floatReverse 7s ease-in-out infinite;
}

.shape-5 {
    width: 50px;
    height: 50px;
    top: 60%;
    left: 60%;
    border-radius: 50%;
    animation: float 9s ease-in-out infinite;
}

/* — Hero Container — */
.hero-container {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 var(--container-padding);
    margin: 0 auto;
}

/* — Hero Content — */
.hero-content {
    animation: fadeInUp 1s ease-out;
}

/* — Hero Title — */
.hero-title {
    margin-bottom: var(--space-6);
}

.hero-title-gradient {
    font-size: clamp(3rem, 6vw, 5rem);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(135deg, var(--color-text) 0%, var(--color-primary) 50%, var(--color-accent) 100%);
    background-size: 200% 200%;
    animation: gradientShift 6s ease infinite;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    display: inline-block;
}

/* — Hero Subtitle — */
.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    line-height: 1.8;
    font-weight: 400;
}

/* — Hero Buttons — */
.hero-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* — Hero Scroll Indicator — */
.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    animation: bounceSoft 2s ease-in-out infinite;
    opacity: 0.6;
    transition: opacity var(--transition-base);
}

.hero-scroll-indicator:hover {
    opacity: 1;
}

.hero-scroll-indicator svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   12. SERVICES SECTION
   ============================================================ */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-6);
}

/* — Service Card — */
.service-card {
    padding: 36px 32px;
    position: relative;
    overflow: hidden;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-slower) var(--ease-out);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary-accent);
    opacity: 0;
    transition: opacity var(--transition-slower) var(--ease-out);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
        600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(108, 99, 255, 0.04),
        transparent 40%
    );
    z-index: 0;
    opacity: 0;
    transition: opacity var(--transition-slow);
    pointer-events: none;
}

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

.service-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-hover);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3),
                0 0 0 1px rgba(108, 99, 255, 0.1);
}

/* — Service Icon — */
.service-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-6);
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.12), rgba(0, 217, 255, 0.08));
    border: 1px solid rgba(108, 99, 255, 0.1);
    position: relative;
    z-index: 1;
    transition: all var(--transition-slow) var(--ease-out);
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(108, 99, 255, 0.15);
}

.service-emoji {
    font-size: 1.8rem;
    line-height: 1;
}

/* — Service Card Title — */
.service-card-title {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-3);
    position: relative;
    z-index: 1;
}

/* — Service Card Description — */
.service-card-desc {
    color: var(--color-muted);
    line-height: 1.8;
    font-size: var(--text-base);
    position: relative;
    z-index: 1;
}

/* — Service Card Link — */
.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: var(--space-5);
    transition: all var(--transition-base) var(--ease-out);
    position: relative;
    z-index: 1;
    text-decoration: none;
}

.service-card-link:hover {
    gap: 12px;
    color: var(--color-accent);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base) var(--ease-out);
}

.service-card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   13. ABOUT PREVIEW SECTION
   ============================================================ */

.about-preview {
    position: relative;
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* — About Text Column — */
.about-text-col .section-tag {
    text-align: left;
}

.about-text-col .section-title {
    text-align: left;
}

.about-text-col .section-title::after {
    margin: var(--space-4) 0 0;
}

.about-text {
    color: var(--color-muted);
    line-height: 1.9;
    font-size: 1.05rem;
    margin-bottom: var(--space-8);
}

/* — About Image Column / Visual — */
.about-visual-col {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-xl);
    object-fit: cover;
}

/* — Stats Grid — */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

/* — Stat Card — */
.stat-card {
    padding: 28px 24px;
    text-align: center;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-slow) var(--ease-out);
}

.stat-card:hover {
    transform: translateY(-4px);
    border-color: rgba(108, 99, 255, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

/* — Stat Number — */
.stat-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    display: inline-block;
}

/* — Stat Suffix — */
.stat-suffix {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
    display: inline;
}

/* — Stat Label — */
.stat-label {
    color: var(--color-muted);
    font-size: var(--text-sm);
    margin-top: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ============================================================
   14. BLOG SECTION
   ============================================================ */

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 28px;
}

/* — Blog Card — */
.blog-card {
    overflow: hidden;
    transition: all var(--transition-slower) var(--ease-out);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(108, 99, 255, 0.15);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

/* — Blog Card Image — */
.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.08);
}

/* — Blog Card Image Placeholder — */
.blog-card-image-placeholder {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(255, 101, 132, 0.05));
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.placeholder-icon {
    font-size: 3rem;
    opacity: 0.3;
    line-height: 1;
}

/* — Blog Card Category Tag — */
.blog-card-category {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

/* — Blog Card Body — */
.blog-card-body {
    padding: 28px;
}

/* — Blog Card Meta — */
.blog-card-meta {
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.blog-card-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-muted);
    font-size: 0.8rem;
}

.blog-card-date svg {
    width: 14px;
    height: 14px;
    opacity: 0.6;
}

.blog-card-author {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--color-muted);
    font-size: 0.8rem;
}

/* — Blog Card Title — */
.blog-card-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: var(--space-3);
}

.blog-card-title a {
    color: var(--color-text);
    transition: color var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.blog-card-title a:hover {
    color: var(--color-primary);
}

/* — Blog Card Excerpt — */
.blog-card-excerpt {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* — Blog Card Link — */
.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 0.9rem;
    margin-top: var(--space-5);
    transition: all var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.blog-card-link:hover {
    gap: 12px;
    color: var(--color-accent);
}

.blog-card-link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-base) var(--ease-out);
}

.blog-card-link:hover svg {
    transform: translateX(4px);
}

/* ============================================================
   15. BLOG DETAIL
   ============================================================ */

.blog-detail {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px var(--container-padding);
}

/* — Breadcrumb — */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    font-size: var(--text-sm);
    margin-bottom: var(--space-8);
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-muted);
    transition: color var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--color-primary);
}

.breadcrumb svg {
    width: 16px;
    height: 16px;
    opacity: 0.5;
    flex-shrink: 0;
}

.breadcrumb-separator {
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--color-text);
    font-weight: 500;
}

/* — Blog Detail Header — */
.blog-detail-header {
    margin-bottom: var(--space-10);
}

.blog-detail-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: var(--space-5);
    color: var(--color-text);
}

.blog-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    color: var(--color-muted);
    font-size: 0.9rem;
    flex-wrap: wrap;
}

.blog-detail-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-detail-meta svg {
    width: 16px;
    height: 16px;
    opacity: 0.6;
}

/* — Blog Detail Featured Image — */
.blog-detail-image {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: var(--space-10);
}

.blog-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* — Blog Detail Content Typography — */
.blog-detail-content {
    color: var(--color-muted);
    font-size: 1.05rem;
    line-height: 1.9;
}

.blog-detail-content h2 {
    font-size: 1.8rem;
    margin-top: var(--space-10);
    margin-bottom: var(--space-4);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.blog-detail-content h3 {
    font-size: 1.4rem;
    margin-top: var(--space-8);
    margin-bottom: var(--space-3);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
}

.blog-detail-content h4 {
    font-size: 1.15rem;
    margin-top: var(--space-6);
    margin-bottom: var(--space-3);
    color: var(--color-text);
    font-family: var(--font-heading);
    font-weight: 600;
}

.blog-detail-content p {
    line-height: 1.9;
    color: var(--color-muted);
    margin-bottom: var(--space-5);
    font-size: 1.05rem;
}

.blog-detail-content ul,
.blog-detail-content ol {
    margin-left: var(--space-6);
    margin-bottom: var(--space-5);
    list-style: none;
}

.blog-detail-content ol {
    counter-reset: list-counter;
}

.blog-detail-content ol li {
    counter-increment: list-counter;
}

.blog-detail-content ol li::before {
    content: counter(list-counter) '.';
    color: var(--color-primary);
    font-weight: 700;
    margin-right: 10px;
}

.blog-detail-content ul li {
    position: relative;
    padding-left: 20px;
}

.blog-detail-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 12px;
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
}

.blog-detail-content li {
    margin-bottom: var(--space-2);
    line-height: 1.7;
    color: var(--color-muted);
    font-size: 1.02rem;
}

.blog-detail-content strong {
    color: var(--color-text);
    font-weight: 600;
}

.blog-detail-content em {
    font-style: italic;
    color: var(--color-muted);
}

.blog-detail-content blockquote {
    border-left: 3px solid var(--color-primary);
    padding-left: var(--space-5);
    margin: 28px 0;
    color: var(--color-muted);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
    background: rgba(108, 99, 255, 0.03);
    padding: var(--space-5) var(--space-6);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.blog-detail-content code {
    background: rgba(108, 99, 255, 0.1);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: var(--text-sm);
    color: var(--color-primary);
    font-family: var(--font-mono);
}

.blog-detail-content pre {
    margin: var(--space-6) 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.blog-detail-content pre code {
    display: block;
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    background: rgba(10, 10, 18, 0.8);
    border: 1px solid var(--color-border);
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-muted);
}

.blog-detail-content a {
    color: var(--color-primary);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color var(--transition-base);
}

.blog-detail-content a:hover {
    color: var(--color-accent);
}

.blog-detail-content img {
    border-radius: var(--radius-lg);
    margin: var(--space-6) 0;
}

.blog-detail-content hr {
    border: none;
    height: 1px;
    background: var(--color-border);
    margin: var(--space-10) 0;
}

/* — Blog Detail Tags — */
.blog-detail-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

/* — Blog Detail Navigation — */
.blog-detail-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-border);
}

.blog-nav-item {
    padding: var(--space-5);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.blog-nav-item:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-2px);
}

.blog-nav-label {
    font-size: var(--text-xs);
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: var(--space-2);
}

.blog-nav-title {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.4;
}

.blog-nav-next {
    text-align: right;
}

/* ============================================================
   16. CONTACT SECTION
   ============================================================ */

.contact-section {
    position: relative;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--space-12);
    align-items: start;
}

/* — Contact Form Card — */
.contact-form-card {
    padding: var(--space-10);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.contact-form-subtitle {
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: var(--space-8);
    line-height: 1.6;
}

/* — Form Group — */
.form-group {
    margin-bottom: var(--space-6);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-6);
}

/* — Form Label — */
.form-label {
    display: block;
    color: var(--color-muted);
    font-size: var(--text-sm);
    font-weight: 500;
    margin-bottom: 10px;
}

.required {
    color: var(--color-secondary);
    margin-left: 2px;
}

/* — Input Wrapper — */
.input-wrapper {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color var(--transition-base) var(--ease-out);
}

.input-icon svg {
    width: 18px;
    height: 18px;
}

/* — Form Input — */
.form-input {
    width: 100%;
    padding: 16px 18px 16px 48px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--transition-slow) var(--ease-out);
    outline: none;
}

.form-input::placeholder {
    color: rgba(139, 140, 160, 0.5);
}

.form-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    background: rgba(10, 10, 18, 0.9);
}

.form-input:focus + .input-icon,
.form-input:focus ~ .input-icon {
    color: var(--color-primary);
}

/* — Form Input without icon — */
.form-input-no-icon {
    padding-left: 18px;
}

/* — Form Textarea — */
.form-textarea {
    width: 100%;
    padding: 16px 18px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--transition-slow) var(--ease-out);
    outline: none;
    min-height: 140px;
    resize: vertical;
    line-height: 1.7;
}

.form-textarea::placeholder {
    color: rgba(139, 140, 160, 0.5);
}

.form-textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    background: rgba(10, 10, 18, 0.9);
}

/* — Form Select — */
.form-select {
    width: 100%;
    padding: 16px 18px 16px 48px;
    background: rgba(10, 10, 18, 0.6);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--transition-slow) var(--ease-out);
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238B8CA0' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    background-color: rgba(10, 10, 18, 0.9);
}

.form-select option {
    background: var(--color-surface);
    color: var(--color-text);
}

/* — Form Messages — */
.form-message {
    padding: 16px;
    border-radius: var(--radius-lg);
    margin-top: var(--space-4);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: fadeInUp 0.4s var(--ease-out);
}

.form-message.success {
    background: rgba(0, 230, 118, 0.08);
    border: 1px solid rgba(0, 230, 118, 0.2);
    color: var(--color-success);
}

.form-message.error {
    background: rgba(255, 82, 82, 0.08);
    border: 1px solid rgba(255, 82, 82, 0.2);
    color: var(--color-danger);
}

.form-message svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* — Spinner — */
.spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-sm {
    width: 16px;
    height: 16px;
    border-width: 2px;
}

/* — Contact Info Column — */
.contact-info-col {
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* — Contact Info Card — */
.contact-info-card {
    padding: var(--space-6);
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-base) var(--ease-out);
}

.contact-info-card:hover {
    border-color: var(--color-border-hover);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.1), rgba(0, 217, 255, 0.06));
    border-radius: var(--radius-lg);
    border: 1px solid rgba(108, 99, 255, 0.08);
}

.contact-info-details {
    flex: 1;
}

.contact-info-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text);
    margin-bottom: var(--space-1);
}

.contact-info-text {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-info-text a {
    color: var(--color-muted);
    transition: color var(--transition-base);
    text-decoration: none;
}

.contact-info-text a:hover {
    color: var(--color-primary);
}

/* — Contact Map Placeholder — */
.contact-map-placeholder {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.map-gradient {
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(0, 217, 255, 0.04));
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
}

.map-pin {
    color: var(--color-muted);
    margin-bottom: var(--space-2);
    font-size: 2rem;
    opacity: 0.5;
}

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

/* ============================================================
   17. CTA SECTION
   ============================================================ */

.cta-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(
        135deg,
        rgba(108, 99, 255, 0.15) 0%,
        rgba(10, 10, 18, 1) 40%,
        rgba(10, 10, 18, 1) 60%,
        rgba(255, 101, 132, 0.1) 100%
    );
}

/* — CTA Background Elements — */
.cta-bg-elements {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.cta-orb-1 {
    position: absolute;
    top: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.1), transparent 70%);
    animation: morphBlob 18s ease-in-out infinite;
    filter: blur(40px);
}

.cta-orb-2 {
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 101, 132, 0.08), transparent 70%);
    animation: morphBlob 22s ease-in-out infinite reverse;
    filter: blur(40px);
}

/* — CTA Content — */
.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: var(--space-5);
    line-height: 1.2;
}

.cta-text {
    color: var(--color-muted);
    max-width: 600px;
    margin: 0 auto var(--space-10);
    font-size: var(--text-lg);
    line-height: 1.8;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================================
   18. PAGE HERO (Inner Pages)
   ============================================================ */

.page-hero {
    padding: 180px 0 100px;
    position: relative;
    overflow: hidden;
    text-align: center;
    background: linear-gradient(180deg, rgba(108, 99, 255, 0.06) 0%, var(--color-bg) 100%);
}

/* — Page Hero Background — */
.page-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.page-hero-orb-1 {
    position: absolute;
    top: -20%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(108, 99, 255, 0.08), transparent 70%);
    animation: morphBlob 20s ease-in-out infinite;
    filter: blur(50px);
}

.page-hero-orb-2 {
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 217, 255, 0.05), transparent 70%);
    animation: morphBlob 25s ease-in-out infinite reverse;
    filter: blur(50px);
}

.page-hero-shape-1 {
    position: absolute;
    top: 20%;
    left: 8%;
    width: 50px;
    height: 50px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    animation: float 10s ease-in-out infinite, rotateSlow 30s linear infinite;
}

.page-hero-shape-2 {
    position: absolute;
    bottom: 25%;
    right: 10%;
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    animation: floatReverse 8s ease-in-out infinite;
}

/* — Page Hero Content — */
.page-hero-content {
    position: relative;
    z-index: 2;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: var(--space-4);
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.page-hero-subtitle {
    color: var(--color-muted);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

/* — Page Hero Breadcrumb — */
.page-hero-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: var(--space-6);
    color: var(--color-muted);
    font-size: var(--text-sm);
}

.page-hero-breadcrumb a {
    color: var(--color-muted);
    transition: color var(--transition-base);
    text-decoration: none;
}

.page-hero-breadcrumb a:hover {
    color: var(--color-primary);
}

.page-hero-breadcrumb .separator {
    opacity: 0.4;
}

.page-hero-breadcrumb .current {
    color: var(--color-primary);
}

/* ============================================================
   19. FOOTER
   ============================================================ */

.footer {
    background: var(--color-footer-bg);
    padding: 80px 0 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    position: relative;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
}

/* — Footer Brand — */
.footer-brand {
    margin-bottom: var(--space-5);
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary-accent);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-4);
    display: inline-block;
    text-decoration: none;
}

.footer-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 320px;
}

/* — Footer Heading — */
.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-md);
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: var(--space-5);
    position: relative;
    padding-bottom: var(--space-3);
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gradient-primary-accent);
    border-radius: var(--radius-full);
}

/* — Footer Links — */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: var(--color-muted);
    font-size: 0.9rem;
    transition: all var(--transition-base) var(--ease-out);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.footer-links a::before {
    content: '→';
    opacity: 0;
    transition: all var(--transition-base) var(--ease-out);
    transform: translateX(-8px);
    font-size: 0.85rem;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(4px);
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* — Footer Contact Item — */
.footer-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 14px;
    line-height: 1.5;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
}

.footer-contact-item a {
    color: var(--color-muted);
    transition: color var(--transition-base);
    text-decoration: none;
}

.footer-contact-item a:hover {
    color: var(--color-primary);
}

/* — Footer Social — */
.footer-social {
    display: flex;
    gap: var(--space-3);
    margin-top: var(--space-6);
}

.footer-social a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    transition: all var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.footer-social a svg {
    width: 18px;
    height: 18px;
}

.footer-social a:hover {
    background: rgba(108, 99, 255, 0.1);
    border-color: rgba(108, 99, 255, 0.3);
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(108, 99, 255, 0.15);
}

/* — Footer Bottom — */
.footer-bottom {
    margin-top: 60px;
    padding: var(--space-6) 0;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    text-align: center;
}

.footer-bottom p {
    color: var(--color-muted);
    font-size: 0.8rem;
    line-height: 1.6;
}

.footer-bottom a {
    color: var(--color-primary);
    transition: color var(--transition-base);
    text-decoration: none;
}

.footer-bottom a:hover {
    color: var(--color-accent);
}

/* ============================================================
   20. SERVICES PAGE SPECIFIC
   ============================================================ */

/* — Feature List — */
.feature-list {
    list-style: none;
    margin-top: var(--space-4);
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--color-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.feature-list li::before {
    content: '✓';
    color: var(--color-success);
    font-weight: 700;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

/* — Service Detail Section — */
.service-detail-card {
    padding: var(--space-10) var(--space-8);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    margin-bottom: var(--space-8);
    transition: all var(--transition-slower) var(--ease-out);
}

.service-detail-card:hover {
    border-color: var(--color-border-hover);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.2);
}

/* — Service Process Steps — */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--space-6);
    margin-top: var(--space-8);
}

.process-step {
    padding: var(--space-7);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    transition: all var(--transition-slow) var(--ease-out);
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
}

.process-step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-3);
    display: inline-block;
}

.process-step-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.process-step-desc {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

/* — Pricing Cards — */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-6);
}

.pricing-card {
    padding: var(--space-8);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    text-align: center;
    position: relative;
    transition: all var(--transition-slower) var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border-hover);
    box-shadow: 0 16px 50px rgba(0, 0, 0, 0.25);
}

.pricing-card.featured {
    border-color: rgba(108, 99, 255, 0.3);
    background: rgba(108, 99, 255, 0.04);
}

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

.pricing-label {
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: var(--space-3);
}

.pricing-plan {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-4);
}

.pricing-price {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-6);
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    -webkit-text-fill-color: var(--color-muted);
}

/* ============================================================
   21. EMPTY STATE
   ============================================================ */

.empty-state {
    text-align: center;
    padding: 60px var(--container-padding);
    color: var(--color-muted);
}

.empty-state-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    opacity: 0.3;
    line-height: 1;
}

.empty-state-title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: var(--space-2);
}

.empty-state-text {
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 400px;
    margin: 0 auto;
}

/* ============================================================
   22. SECTION FOOTER
   ============================================================ */

.section-footer {
    text-align: center;
    margin-top: var(--space-12);
}

/* ============================================================
   23. BACK LINK
   ============================================================ */

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--color-muted);
    transition: all var(--transition-base) var(--ease-out);
    margin-bottom: var(--space-8);
    font-size: 0.9rem;
    text-decoration: none;
    font-weight: 500;
}

.back-link:hover {
    color: var(--color-primary);
    gap: 10px;
}

.back-link svg {
    width: 18px;
    height: 18px;
    transition: transform var(--transition-base) var(--ease-out);
}

.back-link:hover svg {
    transform: translateX(-3px);
}

/* ============================================================
   24. PAGINATION
   ============================================================ */

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-top: var(--space-12);
}

.pagination-link {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    color: var(--color-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.pagination-link:hover {
    border-color: var(--color-border-hover);
    color: var(--color-primary);
    background: rgba(108, 99, 255, 0.06);
}

.pagination-link.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: #ffffff;
    font-weight: 600;
}

.pagination-link.disabled {
    opacity: 0.3;
    pointer-events: none;
    cursor: not-allowed;
}

.pagination-ellipsis {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-muted);
    font-size: 0.9rem;
}

/* ============================================================
   25. TAGS & CATEGORIES
   ============================================================ */

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: var(--text-xs);
    font-weight: 500;
    border-radius: var(--radius-full);
    background: rgba(108, 99, 255, 0.06);
    border: 1px solid rgba(108, 99, 255, 0.1);
    color: var(--color-primary);
    transition: all var(--transition-base) var(--ease-out);
    text-decoration: none;
}

.tag:hover {
    background: rgba(108, 99, 255, 0.12);
    border-color: rgba(108, 99, 255, 0.25);
    color: var(--color-accent);
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* ============================================================
   26. TOOLTIPS
   ============================================================ */

.tooltip-wrapper {
    position: relative;
    display: inline-flex;
}

.tooltip {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%) translateY(4px);
    padding: 6px 12px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    color: var(--color-text);
    font-size: var(--text-xs);
    white-space: nowrap;
    pointer-events: none;
    opacity: 0;
    transition: all var(--transition-fast) var(--ease-out);
    z-index: var(--z-tooltip);
}

.tooltip-wrapper:hover .tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* ============================================================
   27. LOADING STATES
   ============================================================ */

.skeleton {
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.03) 25%,
        rgba(255, 255, 255, 0.06) 50%,
        rgba(255, 255, 255, 0.03) 75%
    );
    background-size: 200% 100%;
    animation: shimmer 2s infinite;
    border-radius: var(--radius-md);
}

.skeleton-text {
    height: 14px;
    margin-bottom: 10px;
    width: 100%;
}

.skeleton-text:last-child {
    width: 60%;
}

.skeleton-title {
    height: 24px;
    margin-bottom: 16px;
    width: 70%;
}

.skeleton-image {
    height: 200px;
    width: 100%;
    margin-bottom: 16px;
}

.skeleton-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

/* — Loading Overlay — */
.loading-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 18, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: var(--z-modal);
}

.loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgba(108, 99, 255, 0.2);
    border-top-color: var(--color-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

/* ============================================================
   28. TOAST / NOTIFICATIONS
   ============================================================ */

.toast-container {
    position: fixed;
    top: 24px;
    right: 24px;
    z-index: var(--z-toast);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    padding: 16px 20px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 300px;
    max-width: 420px;
    animation: slideDown 0.4s var(--ease-out);
    color: var(--color-text);
    font-size: 0.9rem;
}

.toast-success {
    border-left: 3px solid var(--color-success);
}

.toast-error {
    border-left: 3px solid var(--color-danger);
}

.toast-warning {
    border-left: 3px solid var(--color-warning);
}

.toast-info {
    border-left: 3px solid var(--color-primary);
}

.toast-close {
    margin-left: auto;
    color: var(--color-muted);
    cursor: pointer;
    padding: 4px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    background: none;
    border: none;
}

.toast-close:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.06);
}

/* ============================================================
   29. SEARCH
   ============================================================ */

.search-bar {
    position: relative;
    max-width: 480px;
    margin: 0 auto var(--space-12);
}

.search-input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    transition: all var(--transition-slow) var(--ease-out);
    outline: none;
}

.search-input::placeholder {
    color: rgba(139, 140, 160, 0.5);
}

.search-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
    background: rgba(10, 10, 18, 0.9);
}

.search-icon {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-muted);
    pointer-events: none;
    transition: color var(--transition-base);
}

.search-icon svg {
    width: 18px;
    height: 18px;
}

.search-input:focus ~ .search-icon {
    color: var(--color-primary);
}

/* ============================================================
   30. FILTER TABS
   ============================================================ */

.filter-tabs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    margin-bottom: var(--space-12);
    flex-wrap: wrap;
}

.filter-tab {
    padding: 10px 24px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-muted);
    background: transparent;
    border: 1px solid transparent;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--transition-base) var(--ease-out);
    font-family: var(--font-body);
}

.filter-tab:hover {
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.04);
}

.filter-tab.active {
    color: var(--color-primary);
    background: rgba(108, 99, 255, 0.08);
    border-color: rgba(108, 99, 255, 0.15);
}

/* ============================================================
   31. TESTIMONIALS
   ============================================================ */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-6);
}

.testimonial-card {
    padding: var(--space-8);
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all var(--transition-slower) var(--ease-out);
    position: relative;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-hover);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.testimonial-quote {
    color: var(--color-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: var(--space-6);
    font-style: italic;
    position: relative;
    padding-left: var(--space-5);
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -4px;
    font-size: 2rem;
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-border);
}

.testimonial-avatar-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(108, 99, 255, 0.15), rgba(0, 217, 255, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-primary);
    flex-shrink: 0;
}

.testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.testimonial-role {
    font-size: var(--text-xs);
    color: var(--color-muted);
    margin-top: 2px;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 16px;
    height: 16px;
    color: var(--color-warning);
    fill: var(--color-warning);
}

/* ============================================================
   32. FAQ / ACCORDION
   ============================================================ */

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.faq-item {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base) var(--ease-out);
}

.faq-item:hover {
    border-color: rgba(108, 99, 255, 0.1);
}

.faq-item.active {
    border-color: rgba(108, 99, 255, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    color: var(--color-text);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: color var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-question svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-muted);
    transition: transform var(--transition-base) var(--ease-out);
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow) var(--ease-out);
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: var(--color-muted);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ============================================================
   33. MODAL / DIALOG
   ============================================================ */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: var(--z-modal);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--container-padding);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base) var(--ease-out);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    max-width: 560px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.95) translateY(10px);
    transition: transform var(--transition-base) var(--ease-out);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5);
}

.modal-overlay.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    padding: var(--space-6) var(--space-7);
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-text);
}

.modal-close {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: none;
    border: none;
    color: var(--color-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
}

.modal-body {
    padding: var(--space-7);
}

.modal-footer {
    padding: var(--space-5) var(--space-7);
    border-top: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: var(--space-3);
}

/* ============================================================
   34. DIVIDERS & SEPARATORS
   ============================================================ */

.divider {
    width: 100%;
    height: 1px;
    background: var(--color-border);
    margin: var(--space-8) 0;
}

.divider-gradient {
    width: 100%;
    height: 1px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(108, 99, 255, 0.3),
        transparent
    );
    margin: var(--space-8) 0;
}

.divider-vertical {
    width: 1px;
    height: 24px;
    background: var(--color-border);
}

/* ============================================================
   35. TEXT UTILITIES
   ============================================================ */

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-muted {
    color: var(--color-muted);
}

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

.text-success {
    color: var(--color-success);
}

.text-warning {
    color: var(--color-warning);
}

.text-danger {
    color: var(--color-danger);
}

.text-accent {
    color: var(--color-accent);
}

.text-sm {
    font-size: var(--text-sm);
}

.text-lg {
    font-size: var(--text-lg);
}

.text-xl {
    font-size: var(--text-xl);
}

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

.font-bold {
    font-weight: 700;
}

.font-semibold {
    font-weight: 600;
}

.font-medium {
    font-weight: 500;
}

.uppercase {
    text-transform: uppercase;
}

.capitalize {
    text-transform: capitalize;
}

.tracking-wide {
    letter-spacing: 1px;
}

.tracking-wider {
    letter-spacing: 2px;
}

.leading-relaxed {
    line-height: 1.8;
}

.leading-loose {
    line-height: 2;
}

.truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ============================================================
   36. SPACING UTILITIES
   ============================================================ */

.mt-0 { margin-top: 0; }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mt-12 { margin-top: var(--space-12); }
.mt-16 { margin-top: var(--space-16); }

.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.mb-12 { margin-bottom: var(--space-12); }
.mb-16 { margin-bottom: var(--space-16); }

.pt-0 { padding-top: 0; }
.pt-4 { padding-top: var(--space-4); }
.pt-8 { padding-top: var(--space-8); }
.pt-12 { padding-top: var(--space-12); }

.pb-0 { padding-bottom: 0; }
.pb-4 { padding-bottom: var(--space-4); }
.pb-8 { padding-bottom: var(--space-8); }
.pb-12 { padding-bottom: var(--space-12); }

.gap-2 { gap: var(--space-2); }
.gap-4 { gap: var(--space-4); }
.gap-6 { gap: var(--space-6); }
.gap-8 { gap: var(--space-8); }

/* ============================================================
   37. DISPLAY & FLEX UTILITIES
   ============================================================ */

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-grid { display: grid; }
.d-inline-flex { display: inline-flex; }

.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1; }
.flex-shrink-0 { flex-shrink: 0; }

.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.items-stretch { align-items: stretch; }

.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

.mx-auto { margin-left: auto; margin-right: auto; }

.w-full { width: 100%; }
.h-full { height: 100%; }

/* ============================================================
   38. POSITION UTILITIES
   ============================================================ */

.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }

.inset-0 { inset: 0; }
.top-0 { top: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.left-0 { left: 0; }

.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }

/* ============================================================
   39. VISUAL UTILITIES
   ============================================================ */

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-100 { opacity: 1; }

.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-full { border-radius: var(--radius-full); }

.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }

.pointer-events-none { pointer-events: none; }

/* ============================================================
   40. TRANSITION UTILITIES
   ============================================================ */

.transition-all {
    transition: all var(--transition-base) var(--ease-out);
}

.transition-colors {
    transition: color var(--transition-base) var(--ease-out),
                background-color var(--transition-base) var(--ease-out),
                border-color var(--transition-base) var(--ease-out);
}

.transition-transform {
    transition: transform var(--transition-base) var(--ease-out);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.hover-scale:hover {
    transform: scale(1.02);
}

/* ============================================================
   41. NEWSLETTER / SUBSCRIBE
   ============================================================ */

.newsletter-form {
    display: flex;
    gap: var(--space-3);
    max-width: 480px;
    margin: 0 auto;
}

.newsletter-input {
    flex: 1;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    color: var(--color-text);
    font-size: var(--text-base);
    font-family: var(--font-body);
    outline: none;
    transition: all var(--transition-slow) var(--ease-out);
}

.newsletter-input::placeholder {
    color: rgba(139, 140, 160, 0.5);
}

.newsletter-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(108, 99, 255, 0.1);
}

/* ============================================================
   42. SCROLL TO TOP
   ============================================================ */

.scroll-to-top {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: rgba(108, 99, 255, 0.15);
    border: 1px solid rgba(108, 99, 255, 0.2);
    color: var(--color-primary);
    cursor: pointer;
    z-index: var(--z-sticky);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition-base) var(--ease-out);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: rgba(108, 99, 255, 0.25);
    border-color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(108, 99, 255, 0.25);
}

.scroll-to-top svg {
    width: 20px;
    height: 20px;
}

/* ============================================================
   43. COOKIE BANNER / CONSENT
   ============================================================ */

.cookie-banner {
    position: fixed;
    bottom: 24px;
    left: 24px;
    right: 24px;
    max-width: 480px;
    padding: var(--space-6);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 16px 60px rgba(0, 0, 0, 0.4);
    z-index: var(--z-toast);
    animation: fadeInUp 0.5s var(--ease-out);
}

.cookie-banner-text {
    color: var(--color-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: var(--space-4);
}

.cookie-banner-actions {
    display: flex;
    gap: var(--space-3);
}

/* ============================================================
   44. ADMIN CONTENT (if applicable)
   ============================================================ */

.admin-content {
    padding: var(--space-6);
}

.admin-card {
    background: var(--color-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: var(--space-6);
    margin-bottom: var(--space-5);
}

.admin-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-5);
    padding-bottom: var(--space-4);
    border-bottom: 1px solid var(--color-border);
}

.admin-card-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--color-text);
}

/* — Admin Table — */
.admin-table {
    width: 100%;
    border-collapse: collapse;
}

.admin-table th {
    text-align: left;
    padding: var(--space-3) var(--space-4);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 1px solid var(--color-border);
}

.admin-table td {
    padding: var(--space-4);
    font-size: 0.9rem;
    color: var(--color-muted);
    border-bottom: 1px solid var(--color-border);
    vertical-align: middle;
}

.admin-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

.admin-table tr:last-child td {
    border-bottom: none;
}

/* ============================================================
   45. MISC HELPERS
   ============================================================ */

/* — Visually Hidden (Accessibility) — */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* — Focus Ring — */
.focus-ring:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
}

/* — Clearfix — */
.clearfix::after {
    content: '';
    display: table;
    clear: both;
}

/* — Image Cover — */
.img-cover {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.img-contain {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* — Aspect Ratios — */
.aspect-video {
    aspect-ratio: 16 / 9;
}

.aspect-square {
    aspect-ratio: 1 / 1;
}

/* — No Scrollbar — */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* — Body no scroll (when mobile menu open) — */
body.no-scroll {
    overflow: hidden;
}

/* ============================================================
   46. RESPONSIVE — 1024px (TABLET LANDSCAPE)
   ============================================================ */

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--space-12);
    }

    .about-visual-col {
        order: -1;
    }

    .about-text-col .section-title {
        text-align: center;
    }

    .about-text-col .section-title::after {
        margin: var(--space-4) auto 0;
    }

    .about-text-col .section-tag {
        display: block;
        text-align: center;
    }

    .about-text {
        text-align: center;
    }

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

    .contact-info-col {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-10);
    }

    .footer-brand {
        grid-column: 1 / -1;
    }

    .blog-detail-nav {
        gap: var(--space-4);
    }

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

/* ============================================================
   47. RESPONSIVE — 768px (TABLET PORTRAIT)
   ============================================================ */

@media (max-width: 768px) {
    /* — Navbar Mobile — */
    .hamburger {
        display: flex;
        flex-direction: column;
        gap: 5px;
        background: none;
        border: none;
        cursor: pointer;
        padding: 4px;
        z-index: 1001;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        height: 100dvh;
        background: rgba(10, 10, 18, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: var(--space-2);
        transition: right 0.4s var(--ease-out);
        z-index: 1000;
        border-left: 1px solid var(--color-border);
        overflow-y: auto;
    }

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

    .nav-links a {
        width: 100%;
        padding: 14px 20px;
        font-size: 1rem;
        border-radius: var(--radius-md);
    }

    .nav-links a.active::after {
        display: none;
    }

    .nav-cta {
        width: 100% !important;
        text-align: center !important;
        margin-top: var(--space-4) !important;
        padding: 14px 24px !important;
        border-radius: var(--radius-lg) !important;
    }

    .nav-overlay {
        display: block;
    }

    /* — Hero Mobile — */
    .hero-title-gradient {
        font-size: clamp(2.2rem, 8vw, 3.5rem);
    }

    .hero-subtitle {
        font-size: 1.05rem;
        margin-bottom: var(--space-8);
    }

    .hero-scroll-indicator {
        display: none;
    }

    /* — Grids Mobile — */
    .services-grid {
        grid-template-columns: 1fr;
    }

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

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

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

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

    /* — Section Spacing Mobile — */
    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: var(--space-12);
    }

    .section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    /* — Page Hero Mobile — */
    .page-hero {
        padding: 140px 0 80px;
    }

    .page-hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    /* — About Grid Mobile — */
    .about-grid {
        gap: var(--space-10);
    }

    /* — Blog Detail Mobile — */
    .blog-detail {
        padding: 24px var(--container-padding);
    }

    .blog-detail-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

    .blog-detail-content h2 {
        font-size: 1.5rem;
    }

    .blog-detail-content h3 {
        font-size: 1.2rem;
    }

    .blog-detail-nav {
        grid-template-columns: 1fr;
    }

    /* — Contact Form Mobile — */
    .contact-form-card {
        padding: var(--space-7);
    }

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

    /* — CTA Section Mobile — */
    .cta-section {
        padding: 80px 0;
    }

    .cta-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    /* — Footer Mobile — */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .footer-desc {
        margin: 0 auto;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        margin-top: var(--space-10);
    }

    /* — Toast Mobile — */
    .toast-container {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 16px;
    }

    .toast {
        min-width: auto;
        max-width: 100%;
    }

    /* — Cookie Banner Mobile — */
    .cookie-banner {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
    }

    /* — Newsletter Mobile — */
    .newsletter-form {
        flex-direction: column;
    }

    /* — Search Mobile — */
    .search-bar {
        max-width: 100%;
    }

    /* — Modal Mobile — */
    .modal {
        margin: 16px;
        max-height: calc(100vh - 32px);
    }

    /* — Filter Tabs Mobile — */
    .filter-tabs {
        overflow-x: auto;
        justify-content: flex-start;
        padding-bottom: var(--space-2);
        -webkit-overflow-scrolling: touch;
    }

    .filter-tab {
        white-space: nowrap;
        flex-shrink: 0;
    }
}

/* ============================================================
   48. RESPONSIVE — 480px (MOBILE SMALL)
   ============================================================ */

@media (max-width: 480px) {
    /* — Container Padding — */
    .container {
        padding-left: var(--space-4);
        padding-right: var(--space-4);
    }

    /* — Hero Buttons Mobile — */
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* — Stats Grid Single Column — */
    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* — Footer Single Column — */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .footer-brand {
        text-align: center;
    }

    /* — Admin Content — */
    .admin-content {
        padding: var(--space-4);
    }

    /* — Section even smaller — */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: var(--space-10);
    }

    /* — Service Card Padding — */
    .service-card {
        padding: 28px 24px;
    }

    /* — Blog Card Body — */
    .blog-card-body {
        padding: 20px;
    }

    .blog-card-image {
        height: 180px;
    }

    /* — Stat Number — */
    .stat-number {
        font-size: 2.2rem;
    }

    /* — Contact Form — */
    .contact-form-card {
        padding: var(--space-6);
    }

    /* — CTA — */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
    }

    /* — Page Hero — */
    .page-hero {
        padding: 120px 0 60px;
    }

    .page-hero-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    /* — Breadcrumb — */
    .breadcrumb {
        font-size: var(--text-xs);
    }

    /* — Pagination — */
    .pagination {
        gap: var(--space-1);
    }

    .pagination-link {
        width: 36px;
        height: 36px;
        font-size: var(--text-sm);
    }

    /* — Footer Bottom — */
    .footer-bottom {
        margin-top: var(--space-8);
        padding: var(--space-5) 0;
    }

    /* — Blog Detail Content — */
    .blog-detail-content {
        font-size: 0.95rem;
    }

    .blog-detail-content blockquote {
        padding: var(--space-4) var(--space-5);
    }

    /* — FAQ — */
    .faq-question {
        padding: 16px 18px;
        font-size: 0.95rem;
    }

    .faq-answer-content {
        padding: 0 18px 16px;
        font-size: 0.9rem;
    }

    /* — Scroll to Top — */
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* ============================================================
   49. RESPONSIVE — 360px (EXTRA SMALL MOBILE)
   ============================================================ */

@media (max-width: 360px) {
    .hero-title-gradient {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 0.95rem;
    }

    .section-tag {
        font-size: 0.65rem;
        padding: 6px 14px;
        letter-spacing: 2px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.2rem;
    }

    .contact-form-card {
        padding: var(--space-5);
    }

    .form-input,
    .form-textarea,
    .form-select {
        padding: 14px 16px 14px 44px;
        font-size: 0.9rem;
    }

    .form-textarea {
        padding-left: 16px;
    }

    .nav-links {
        width: 260px;
        padding: 72px 24px 24px;
    }
}

/* ============================================================
   50. PRINT STYLES
   ============================================================ */

@media print {
    *,
    *::before,
    *::after {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
    }

    .navbar,
    .hamburger,
    .footer,
    .cta-section,
    .scroll-to-top,
    .cookie-banner,
    .toast-container,
    .hero-bg-elements,
    .page-hero-bg,
    .cta-bg-elements,
    .floating-shape {
        display: none !important;
    }

    .hero {
        min-height: auto;
        padding: 40px 0;
    }

    .section {
        padding: 30px 0;
        page-break-inside: avoid;
    }

    .container {
        max-width: 100%;
        padding: 0;
    }

    a[href]::after {
        content: ' (' attr(href) ')';
        font-size: 0.8em;
    }

    img {
        max-width: 100% !important;
        page-break-inside: avoid;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }

    .glass-card,
    .service-card,
    .blog-card,
    .stat-card,
    .contact-info-card {
        border: 1px solid #ccc;
        border-radius: 0;
        backdrop-filter: none;
    }

    .gradient-text,
    .section-title,
    .hero-title-gradient,
    .page-hero-title,
    .stat-number,
    .stat-suffix {
        -webkit-text-fill-color: #000 !important;
        background: none !important;
    }
}

/* ============================================================
   51. REDUCED MOTION
   ============================================================ */

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .scroll-reveal-left,
    .scroll-reveal-right,
    .scroll-reveal-scale {
        opacity: 1;
        transform: none;
    }

    .hero-title-gradient {
        animation: none;
    }

    .gradient-orb-1,
    .gradient-orb-2,
    .gradient-orb-3,
    .floating-shape,
    .cta-orb-1,
    .cta-orb-2,
    .page-hero-orb-1,
    .page-hero-orb-2,
    .page-hero-shape-1,
    .page-hero-shape-2 {
        animation: none;
    }
}

/* ============================================================
   52. HIGH CONTRAST MODE
   ============================================================ */

@media (prefers-contrast: high) {
    :root {
        --color-border: rgba(255, 255, 255, 0.2);
        --color-muted: #B0B1C0;
    }

    .glass-card,
    .service-card,
    .blog-card,
    .stat-card,
    .contact-info-card,
    .contact-form-card {
        border-width: 2px;
    }

    .btn-outline {
        border-width: 2px;
    }

    .form-input,
    .form-textarea,
    .form-select {
        border-width: 2px;
    }
}

/* ============================================================
   END OF STYLE.CSS
   ============================================================ */
