/* ═══════════════════════════════════════════
   NO9 SPORTS — Design System & Styles
   ═══════════════════════════════════════════ */

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

/* ── CSS Variables / Design Tokens ── */
:root {
    /* Brand Colors */
    --brand-orange: #E8611A;
    --brand-orange-light: #FF7A33;
    --brand-orange-dark: #C04E10;
    --brand-navy: #0F1B2D;
    --brand-navy-light: #1A2D47;
    --brand-navy-medium: #152238;
    --brand-cream: #F5F0E8;

    /* Light Theme (Default) */
    --bg-primary: #FFFFFF;
    --bg-secondary: #F8F9FC;
    --bg-tertiary: #F0F2F7;
    --bg-card: #FFFFFF;
    --bg-card-hover: #FAFBFD;
    --bg-nav: rgba(255, 255, 255, 0.92);
    --bg-footer: #0F1B2D;
    --bg-hero-overlay: rgba(15, 27, 45, 0.7);

    --text-primary: #1A1A2E;
    --text-secondary: #4A5568;
    --text-tertiary: #718096;
    --text-inverse: #FFFFFF;
    --text-on-brand: #FFFFFF;

    --border-color: #E2E8F0;
    --border-light: #EDF2F7;

    --shadow-sm: 0 1px 3px rgba(15, 27, 45, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 27, 45, 0.08);
    --shadow-lg: 0 8px 30px rgba(15, 27, 45, 0.1);
    --shadow-xl: 0 16px 50px rgba(15, 27, 45, 0.12);
    --shadow-brand: 0 8px 30px rgba(232, 97, 26, 0.25);

    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(255, 255, 255, 0.3);

    /* Spacing */
    --section-padding: 100px 0;
    --container-padding: 0 24px;
    --container-max: 1200px;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);

    /* Font */
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ── Dark Theme ── */
[data-theme="dark"] {
    --bg-primary: #0B1120;
    --bg-secondary: #111827;
    --bg-tertiary: #1A2332;
    --bg-card: #151F2E;
    --bg-card-hover: #1A2940;
    --bg-nav: rgba(11, 17, 32, 0.92);
    --bg-footer: #080D16;
    --bg-hero-overlay: rgba(11, 17, 32, 0.75);

    --text-primary: #F1F5F9;
    --text-secondary: #94A3B8;
    --text-tertiary: #64748B;
    --text-inverse: #0F1B2D;

    --border-color: #1E293B;
    --border-light: #1A2332;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.35);
    --shadow-xl: 0 16px 50px rgba(0, 0, 0, 0.4);
    --shadow-brand: 0 8px 30px rgba(232, 97, 26, 0.2);

    --glass-bg: rgba(21, 31, 46, 0.85);
    --glass-border: rgba(30, 41, 59, 0.5);
}

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

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

body {
    font-family: var(--font-secondary);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    transition: background-color var(--transition-base), color var(--transition-base);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-primary);
    line-height: 1.2;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font-secondary);
}

/* ── Utility Classes ── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--container-padding);
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--brand-orange);
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--brand-orange);
    border-radius: 2px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-title span {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

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

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

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.btn:hover::after {
    opacity: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: var(--text-on-brand);
    box-shadow: var(--shadow-brand);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 97, 26, 0.35);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--brand-orange);
    color: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: #FFFFFF;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.btn-icon {
    width: 48px;
    height: 48px;
    padding: 0;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 24px;
    transition: all var(--transition-base);
}

.nav.scrolled {
    background: var(--bg-nav);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-md);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 1001;
}

.nav-logo img {
    height: 48px;
    width: auto;
}

.nav-logo-text {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--text-primary);
}

.nav-logo-text em {
    color: var(--brand-orange);
    font-style: normal;
}

.nav.at-top .nav-logo-text {
    color: #FFFFFF;
}

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

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

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 4px 0;
}

.nav.at-top .nav-link {
    color: rgba(255, 255, 255, 0.85);
}

.nav.scrolled .nav-link {
    color: var(--text-secondary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--brand-orange);
    transition: width var(--transition-base);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link:hover,
.nav-link.active {
    color: var(--brand-orange);
}

.nav.at-top .nav-link:hover,
.nav.at-top .nav-link.active {
    color: var(--brand-orange-light);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.theme-toggle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
}

.nav.at-top .theme-toggle {
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.nav.scrolled .theme-toggle {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.theme-toggle:hover {
    background: var(--brand-orange);
    color: #FFFFFF;
    border-color: var(--brand-orange);
    transform: rotate(30deg);
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.82rem;
    white-space: nowrap;
}

.nav.at-top .nav-cta {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: #FFFFFF;
}

/* Mobile menu */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.nav.at-top .mobile-toggle span {
    background: #FFFFFF;
}

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

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

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

.mobile-toggle.active span {
    background: var(--text-primary) !important;
}

.mobile-menu {
    display: none;
}

/* ── Hero Section ── */
.hero {
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15, 27, 45, 0.85) 0%, rgba(15, 27, 45, 0.5) 50%, rgba(15, 27, 45, 0.75) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    padding-top: 100px;
    padding-bottom: 30px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    background: rgba(232, 97, 26, 0.15);
    border: 1px solid rgba(232, 97, 26, 0.3);
    color: var(--brand-orange-light);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease forwards;
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease 0.1s forwards;
    opacity: 0;
}

.hero-title .highlight {
    position: relative;
    display: inline;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 3px;
    opacity: 0.6;
    z-index: -1;
}

.hero-description {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 560px;
    line-height: 1.8;
    margin-bottom: 36px;
    animation: fadeInUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0;
}

.hero-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    animation: fadeInUp 0.8s ease 0.4s forwards;
    opacity: 0;
}

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

.hero-stat-number {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--brand-orange-light);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 6px;
}

/* Hero slider dots */
.hero-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.hero-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.hero-dot.active {
    background: var(--brand-orange);
    width: 30px;
    border-radius: 5px;
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    cursor: pointer;
    transition: border-color var(--transition-base);
}

.hero-scroll-indicator:hover {
    border-color: var(--brand-orange-light);
}

.hero-scroll-indicator span {
    display: block;
    width: 4px;
    height: 10px;
    background: var(--brand-orange-light);
    border-radius: 2px;
    margin-top: 8px;
    animation: scrollDown 1.8s ease-in-out infinite;
}

@keyframes scrollDown {
    0% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(14px);
        opacity: 0.3;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ── Page Hero (Subpages) ── */
.page-hero {
    padding: 140px 0 60px;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -150px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.08);
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.06);
}

.page-hero-content {
    position: relative;
    z-index: 1;
}

.page-hero .section-label {
    color: var(--brand-orange-light);
}

.page-hero .section-label::before {
    background: var(--brand-orange-light);
}

.page-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.2rem);
    font-weight: 900;
    color: #FFFFFF;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.page-hero-title span {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-hero-desc {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    line-height: 1.7;
}

/* ── Alt Background for alternating sections ── */
.features.alt-bg {
    background: var(--bg-primary);
}

/* ── Trust Bar ── */
.trust-bar {
    padding: 40px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.trust-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--brand-orange);
}

/* ── Sports Branches Section ── */
.branches {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.branch-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 28px 16px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    cursor: pointer;
}

.branch-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-orange);
}

.branch-card:hover .branch-icon {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: #FFFFFF;
    transform: scale(1.1);
}

.branch-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--bg-tertiary);
    color: var(--brand-orange);
    transition: all var(--transition-spring);
}

.branch-name {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

/* ── Features Section ── */
.features {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.feature-card {
    position: relative;
    padding: 36px 28px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.05));
    color: var(--brand-orange);
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: #FFFFFF;
    transform: scale(1.05);
}

.feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ── Apps Showcase ── */
.apps {
    padding: var(--section-padding);
    background: var(--bg-primary);
    overflow: hidden;
}

.apps-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.apps-image {
    position: relative;
}

.apps-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.apps-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--brand-orange);
    border-radius: var(--radius-xl);
    opacity: 0.2;
    z-index: -1;
}

.apps-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.app-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    background: var(--bg-card);
    transition: all var(--transition-base);
    cursor: pointer;
}

.app-item:hover {
    border-color: var(--brand-orange);
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}

.app-item-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #FFFFFF;
    overflow: hidden;
}

.app-item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-md);
}

.app-item-content h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

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

.app-stores {
    display: flex;
    gap: 12px;
    margin-top: 32px;
}

.store-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--brand-navy);
    color: #FFFFFF;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
}

[data-theme="dark"] .store-btn {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.store-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    background: var(--brand-navy-light);
}

.store-btn i {
    font-size: 1.5rem;
}

.store-btn-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.store-btn-text small {
    font-size: 0.65rem;
    opacity: 0.7;
}

.store-btn-text strong {
    font-size: 0.9rem;
}

/* Per-App Store Links */
.app-store-links {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-top: 48px;
}

.store-btn-web {
    background: linear-gradient(135deg, #7C3AED, #9333EA);
}

.store-btn-web:hover {
    background: linear-gradient(135deg, #6D28D9, #7C3AED);
}

/* App Icon Badge */
.app-icon-badge {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.app-icon-img {
    width: 100px;
    height: 100px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.app-icon-img:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

/* ── AI Analytics ── */
.ai-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    overflow: hidden;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.ai-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ai-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.ai-feature:hover {
    border-color: var(--brand-orange);
    transform: translateX(4px);
}

.ai-feature-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.05));
    color: var(--brand-orange);
}

.ai-feature h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.ai-feature p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.ai-image {
    position: relative;
}

.ai-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.ai-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    opacity: 0.15;
    z-index: -1;
}

/* ── Blog Section ── */
.blog {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 50px;
}

.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-base);
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.blog-card-image {
    position: relative;
    overflow: hidden;
    height: 200px;
}

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

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

.blog-card-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 14px;
    background: var(--brand-orange);
    color: #FFFFFF;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 24px;
}

.blog-card-date {
    font-size: 0.78rem;
    color: var(--text-tertiary);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.blog-card-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-excerpt {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-orange);
    transition: gap var(--transition-fast);
}

.blog-card-link:hover {
    gap: 10px;
}

/* ── CTA Section ── */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-navy) 0%, var(--brand-navy-medium) 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.08);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(232, 97, 26, 0.06);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 560px;
    margin: 0 auto 36px;
}

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

/* ── Contact Section ── */
.contact {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.contact-info-item:hover {
    border-color: var(--brand-orange);
    transform: translateX(4px);
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.05));
    color: var(--brand-orange);
}

.contact-info-item h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.contact-info-item p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.contact-info-item a {
    color: var(--brand-orange);
    font-weight: 500;
}

.contact-form {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-secondary);
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-md);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: all var(--transition-fast);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--brand-orange);
    box-shadow: 0 0 0 3px rgba(232, 97, 26, 0.1);
}

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

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

.contact-map {
    margin-top: 24px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    height: 200px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ── Footer ── */
.footer {
    background: var(--bg-footer);
    padding: 72px 0 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.6);
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    transition: all var(--transition-base);
}

.footer-social a:hover {
    background: var(--brand-orange);
    color: #FFFFFF;
    transform: translateY(-3px);
}

/* Instagram CTA Banner */
.footer-instagram {
    margin-top: 20px;
    margin-bottom: 8px;
}

.footer-ig-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    border-radius: var(--radius-md);
    color: #FFFFFF;
    text-decoration: none;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.footer-ig-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
    opacity: 0;
    transition: opacity var(--transition-fast);
}

.footer-ig-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 48, 108, 0.3);
}

.footer-ig-btn:hover::before {
    opacity: 1;
}

.footer-ig-icon {
    font-size: 1.4rem;
    min-width: 24px;
    text-align: center;
}

.footer-ig-text {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.footer-ig-label {
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.footer-ig-handle {
    font-size: 0.75rem;
    opacity: 0.8;
}

.footer-ig-arrow {
    font-size: 0.85rem;
    transition: transform var(--transition-fast);
}

.footer-ig-btn:hover .footer-ig-arrow {
    transform: translateX(4px);
}

/* Social highlight (Instagram) */
.footer-social a.social-highlight {
    background: linear-gradient(135deg, #833AB4, #E1306C, #F77737);
    color: #FFFFFF;
}

.footer-social a.social-highlight:hover {
    box-shadow: 0 4px 16px rgba(225, 48, 108, 0.4);
}

.footer-column h4 {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    transition: all var(--transition-fast);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-column ul li a:hover {
    color: var(--brand-orange);
    transform: translateX(4px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--brand-orange);
}

/* ── Scroll Animations ── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

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

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

.delay-5 {
    transition-delay: 0.5s;
}

/* ── Floating Gradient Orbs ── */
.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

.gradient-orb.orb-1 {
    width: 400px;
    height: 400px;
    background: var(--brand-orange);
    top: -100px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.gradient-orb.orb-2 {
    width: 300px;
    height: 300px;
    background: var(--brand-orange-light);
    bottom: -50px;
    left: -50px;
    animation: float 6s ease-in-out infinite reverse;
}

/* ── Counter Animation ── */
.counter {
    display: inline-block;
}

/* ── Cookie Banner ── */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 20px 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    display: none;
}

.cookie-banner.show {
    display: block;
    animation: fadeInUp 0.5s ease;
}

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

.cookie-banner p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    flex: 1;
}

.cookie-banner-actions {
    display: flex;
    gap: 10px;
}

/* ── Back to Top ── */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    color: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-brand);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all var(--transition-base);
    z-index: 100;
    cursor: pointer;
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(232, 97, 26, 0.4);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .apps-content,
    .ai-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .apps-image {
        order: -1;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px 0;
    }

    .nav-links {
        display: none;
    }

    .nav-cta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .mobile-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-primary);
        z-index: 999;
        padding: 100px 24px 40px;
        flex-direction: column;
        gap: 0;
        overflow-y: auto;
    }

    .mobile-menu.active {
        display: flex;
    }

    .mobile-menu a {
        display: block;
        padding: 16px 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-primary);
        border-bottom: 1px solid var(--border-light);
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: var(--brand-orange);
    }

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

    .hero-stats {
        gap: 24px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

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

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

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

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .branches-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .trust-bar-inner {
        gap: 24px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn {
        text-align: center;
    }

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

    .hero-description {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-stats {
        justify-content: center;
    }

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

    .hero-dots {
        bottom: 20px;
    }

    .cookie-banner-inner {
        flex-direction: column;
        text-align: center;
    }

    .app-stores,
    .app-store-links {
        flex-direction: column;
        align-items: center;
    }

    .page-hero {
        padding: 120px 0 40px;
    }

    .page-hero-title {
        font-size: clamp(1.6rem, 5vw, 2.4rem);
    }

    .page-hero-desc {
        font-size: 0.95rem;
    }

    .section-title {
        font-size: clamp(1.5rem, 4vw, 2.2rem);
    }

    .feature-card {
        padding: 24px 20px;
    }

    .cta-content h2 {
        font-size: clamp(1.4rem, 4vw, 2rem);
    }

    .cta-buttons {
        flex-direction: column;
    }

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

@media (max-width: 480px) {
    .branches-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .trust-bar-inner {
        flex-direction: column;
        gap: 16px;
    }

    .store-btn {
        padding: 10px 18px;
        width: 100%;
        justify-content: center;
    }

    .hero-description {
        font-size: 1rem;
    }

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

/* ── Loading Animation ── */
.page-loader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-content img {
    width: 80px;
    margin: 0 auto 16px;
    animation: pulse 1.5s ease-in-out infinite;
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: var(--border-color);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.loader-bar-fill {
    height: 100%;
    width: 40%;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
    border-radius: 3px;
    animation: loading 1.5s ease-in-out infinite;
}

@keyframes loading {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(350%);
    }
}

/* ── Particles ── */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(232, 97, 26, 0.4);
    border-radius: 50%;
    animation: particleFloat linear infinite;
}

@keyframes particleFloat {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) rotate(720deg);
        opacity: 0;
    }
}

/* ── Notification Toast ── */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--brand-orange);
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    color: var(--text-primary);
    transition: transform var(--transition-spring);
    max-width: 400px;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast i {
    color: var(--brand-orange);
    font-size: 1.2rem;
}

/* ═══════════ BLOG DETAIL PAGE ═══════════ */

/* Breadcrumb */
.breadcrumb {
    padding: 20px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-light);
}

.breadcrumb-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-tertiary);
    flex-wrap: wrap;
}

.breadcrumb-inner a {
    color: var(--text-secondary);
    transition: color var(--transition-fast);
}

.breadcrumb-inner a:hover {
    color: var(--brand-orange);
}

.breadcrumb-inner i {
    font-size: 0.7rem;
    color: var(--text-tertiary);
}

.breadcrumb-inner .current {
    color: var(--brand-orange);
    font-weight: 500;
}

/* Blog Detail Layout */
.blog-detail {
    padding: 60px 0 100px;
    background: var(--bg-primary);
}

.blog-detail-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 48px;
    align-items: start;
}

/* Article Content */
.article-header {
    margin-bottom: 36px;
}

.article-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.05));
    color: var(--brand-orange);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

.article-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 0.88rem;
    color: var(--text-tertiary);
    padding-bottom: 24px;
    border-bottom: 1px solid var(--border-light);
}

.article-meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.article-meta-item i {
    color: var(--brand-orange);
    font-size: 0.9rem;
}

.article-cover {
    width: 100%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-bottom: 36px;
    box-shadow: var(--shadow-lg);
}

.article-cover img {
    width: 100%;
    height: auto;
    display: block;
}

/* Article Body */
.article-body {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.article-body h2 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 16px;
    position: relative;
    padding-left: 18px;
}

.article-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(to bottom, var(--brand-orange), var(--brand-orange-light));
}

.article-body h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 32px 0 12px;
}

.article-body p {
    margin-bottom: 20px;
}

.article-body ul,
.article-body ol {
    margin: 16px 0 24px 24px;
}

.article-body ul {
    list-style: none;
}

.article-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
}

.article-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--brand-orange);
}

.article-body ol {
    list-style: decimal;
}

.article-body ol li {
    margin-bottom: 10px;
    padding-left: 4px;
}

.article-body ol li::marker {
    color: var(--brand-orange);
    font-weight: 700;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 24px 28px;
    border-left: 4px solid var(--brand-orange);
    background: var(--bg-secondary);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--text-primary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.article-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Article Share */
.article-share {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 28px 0;
    margin-top: 40px;
    border-top: 1px solid var(--border-light);
}

.article-share span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.share-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #FFFFFF;
    transition: all var(--transition-base);
}

.share-btn:hover {
    transform: translateY(-3px) scale(1.1);
}

.share-btn.twitter {
    background: #1DA1F2;
}

.share-btn.facebook {
    background: #4267B2;
}

.share-btn.linkedin {
    background: #0077B5;
}

.share-btn.whatsapp {
    background: #25D366;
}

.share-btn.copy {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.share-btn.copy:hover {
    background: var(--brand-orange);
    color: #FFFFFF;
    border-color: var(--brand-orange);
}

/* Sidebar */
.blog-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-widget {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-bottom: 24px;
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border-light);
    position: relative;
}

.sidebar-widget-title::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--brand-orange);
}

.sidebar-post {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border-light);
    transition: opacity var(--transition-fast);
}

.sidebar-post:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-post:hover {
    opacity: 0.8;
}

.sidebar-post-img {
    width: 72px;
    height: 54px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
}

.sidebar-post-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sidebar-post-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.sidebar-post-date {
    font-size: 0.75rem;
    color: var(--text-tertiary);
}

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

.sidebar-tag {
    display: inline-flex;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    font-size: 0.8rem;
    font-weight: 500;
    transition: all var(--transition-fast);
}

.sidebar-tag:hover {
    background: var(--brand-orange);
    color: #FFFFFF;
}

/* Blog Detail CTA box */
.sidebar-cta {
    background: linear-gradient(135deg, var(--brand-navy), var(--brand-navy-medium));
    border: none;
    color: #FFFFFF;
    text-align: center;
}

.sidebar-cta h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.sidebar-cta p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Related Posts */
.related-posts {
    padding: 80px 0;
    background: var(--bg-secondary);
}

/* Blog Detail Responsive */
@media (max-width: 1024px) {
    .blog-detail-grid {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 640px) {
    .blog-sidebar {
        grid-template-columns: 1fr;
    }

    .article-meta {
        gap: 12px;
    }

    .article-share {
        flex-wrap: wrap;
    }
}

/* ═══════════ LEGAL / STATIC PAGES ═══════════ */
.legal-content {
    padding: 60px 0 100px;
    background: var(--bg-primary);
}

.legal-content .container {
    max-width: 860px;
}

.legal-body {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-secondary);
}

.legal-body h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 36px 0 14px;
    padding-left: 16px;
    position: relative;
}

.legal-body h2::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(to bottom, var(--brand-orange), var(--brand-orange-light));
}

.legal-body h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 24px 0 10px;
}

.legal-body p {
    margin-bottom: 16px;
}

.legal-body ul {
    margin: 12px 0 20px 24px;
    list-style: none;
}

.legal-body ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 8px;
}

.legal-body ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand-orange);
}

.legal-body strong {
    color: var(--text-primary);
    font-weight: 600;
}

.legal-meta {
    margin-bottom: 32px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-light);
    font-size: 0.88rem;
    color: var(--text-tertiary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.legal-meta i {
    color: var(--brand-orange);
}

/* ═══════════ ABOUT PAGE ═══════════ */
.about-intro {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.about-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-top: 50px;
}

.about-text p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 16px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.about-image::after {
    content: '';
    position: absolute;
    bottom: -15px;
    right: -15px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-orange), var(--brand-orange-light));
    opacity: 0.12;
    z-index: -1;
}

.vision-mission {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 50px;
}

.vm-card {
    padding: 40px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-orange), var(--brand-orange-light));
}

.vm-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.vm-card-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.05));
    color: var(--brand-orange);
    margin-bottom: 20px;
}

.vm-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
}

.vm-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.values-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.value-card {
    text-align: center;
    padding: 36px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-orange);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: linear-gradient(135deg, rgba(232, 97, 26, 0.1), rgba(232, 97, 26, 0.05));
    color: var(--brand-orange);
    margin: 0 auto 16px;
}

.value-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

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

@media (max-width: 768px) {
    .about-intro-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

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

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

/* ── WhatsApp Fixed Button ── */
.whatsapp-fixed {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all var(--transition-base);
}

.whatsapp-fixed:hover {
    transform: scale(1.1) rotate(5deg);
    background: #128C7E;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 80px;
    background: var(--bg-card);
    color: var(--text-primary);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all var(--transition-base);
    border: 1px solid var(--border-color);
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--bg-card);
    border-left: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.whatsapp-fixed:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Back to top position adjustment if needed */
.back-to-top {
    bottom: 30px;
    right: 30px;
}

@media (max-width: 768px) {
    .whatsapp-fixed {
        bottom: 20px;
        left: 20px;
        width: 50px;
        height: 50px;
        font-size: 28px;
    }
    
    .whatsapp-tooltip {
        display: none;
    }
}