/* ================================================================
   GLOXI - Unified CSS
   Beauty Salon Management Software Website
   Version: 2.0
   Primary: #3b82f6 (Blue)
   Style: Modern SaaS (Linear/Vercel/Stripe inspired)
   ================================================================ */

/* ----------------------------------------------------------------
   1. CSS VARIABLES
   ---------------------------------------------------------------- */
:root {
    /* Primary palette */
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-darker: #1d4ed8;
    --primary-light: #60a5fa;
    --primary-lighter: #93c5fd;
    --primary-50: #eff6ff;
    --primary-100: #dbeafe;
    --primary-900: #1e3a5f;

    /* Secondary / accent */
    --secondary: #8b5cf6;
    --secondary-dark: #7c3aed;
    --secondary-light: #a78bfa;

    /* Feature-specific accents */
    --color-staff: #10b981;
    --color-staff-bg: #ecfdf5;
    --color-customers: #f43f5e;
    --color-customers-bg: #fff1f2;
    --color-billing: #f59e0b;
    --color-billing-bg: #fffbeb;
    --color-inventory: #06b6d4;
    --color-inventory-bg: #ecfeff;
    --color-analytics: #6366f1;
    --color-analytics-bg: #eef2ff;
    --color-appointments: #3b82f6;
    --color-appointments-bg: #eff6ff;
    --color-booking: #8b5cf6;
    --color-booking-bg: #f5f3ff;
    --color-loyalty: #ec4899;
    --color-loyalty-bg: #fdf2f8;

    /* Semantic colors */
    --success: #10b981;
    --warning: #f59e0b;
    --danger: #f43f5e;
    --info: #06b6d4;

    /* Text */
    --text-dark: #0f172a;
    --text-body: #334155;
    --text-light: #64748b;
    --text-muted: #94a3b8;

    /* Backgrounds */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-alt: #f1f5f9;
    --bg-dark: #0f172a;
    --bg-dark-secondary: #1e293b;

    /* Borders */
    --border-light: #e2e8f0;
    --border-default: #cbd5e1;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 40%, #1e3a5f 100%);
    --gradient-hero-inner: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    --gradient-accent: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    --gradient-cta: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);

    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 8px 10px -6px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 4px 14px rgba(59, 130, 246, 0.25);
    --shadow-primary-lg: 0 10px 30px rgba(59, 130, 246, 0.3);

    /* Radius */
    --radius-sm: 6px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Spacing */
    --container-max: 1200px;
    --container-narrow: 900px;
    --section-padding: 80px;
    --header-height: 72px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

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

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    font-size: inherit;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ----------------------------------------------------------------
   3. TYPOGRAPHY
   ---------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { font-size: 3rem; font-weight: 800; }
h2 { font-size: 2.25rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-light);
    line-height: 1.7;
}

.text-gradient {
    background: linear-gradient(135deg, #60a5fa, #3b82f6, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-gradient-warm {
    background: linear-gradient(135deg, #3b82f6, #06b6d4, #10b981);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-white { color: #fff; }
.text-muted { color: var(--text-muted); }

.lead {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-light);
}

/* ----------------------------------------------------------------
   4. LAYOUT & CONTAINERS
   ---------------------------------------------------------------- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

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

.section {
    padding: var(--section-padding) 0;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-dark {
    background-color: var(--bg-dark);
    color: #fff;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.section-header .section-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary);
    background: var(--primary-50);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-header h2 {
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* Grid utilities */
.grid {
    display: grid;
    gap: 24px;
}

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

.flex {
    display: flex;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gap-sm { gap: 8px; }
.gap-md { gap: 16px; }
.gap-lg { gap: 24px; }
.gap-xl { gap: 32px; }

/* ----------------------------------------------------------------
   5. BUTTONS
   ---------------------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    cursor: pointer;
    border: 2px solid transparent;
    text-decoration: none;
    line-height: 1.4;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    box-shadow: var(--shadow-primary-lg);
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.btn-secondary:hover {
    background: var(--secondary-dark);
    border-color: var(--secondary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-1px);
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 28px;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all var(--transition-base);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-white {
    background: #fff;
    color: var(--primary);
    border-color: #fff;
}

.btn-white:hover {
    background: var(--primary-50);
    transform: translateY(-1px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn i,
.btn svg {
    font-size: 1.1em;
}

/* ----------------------------------------------------------------
   6. HEADER & NAVIGATION
   ---------------------------------------------------------------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(226, 232, 240, 0.5);
    transition: all var(--transition-base);
    height: var(--header-height);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom-color: var(--border-light);
}

.header-top {
    background: var(--bg-dark);
    color: #fff;
    font-size: 0.82rem;
    padding: 6px 0;
}

.header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-top a {
    color: rgba(255, 255, 255, 0.8);
    transition: color var(--transition-fast);
}

.header-top a:hover {
    color: #fff;
}

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

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.navbar-brand img {
    height: 36px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-menu a {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
    background: var(--primary-50);
}

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

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all var(--transition-base);
}

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

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

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

/* ----------------------------------------------------------------
   7. HERO SECTIONS
   ---------------------------------------------------------------- */

/* Homepage hero - dark gradient */
.hero {
    background: var(--gradient-hero);
    color: #fff;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    margin-top: var(--header-height);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 40%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1.5'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.hero-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 560px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary-lighter);
    margin-bottom: 24px;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-screenshot {
    border-radius: var(--radius-xl);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stats {
    display: flex;
    gap: 32px;
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.hero-stat .stat-number {
    font-size: 1.6rem;
    font-weight: 800;
    color: #fff;
}

.hero-stat .stat-label {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 2px;
}

/* Inner page hero */
.page-hero {
    background: var(--gradient-hero-inner);
    padding: 120px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.page-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
}

.page-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
}

.page-hero .hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--primary-lighter);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: var(--radius-full);
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
}

/* Features hero (dark gradient, taller) */
.features-hero {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #1e3a5f 100%);
    padding: 140px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin-top: var(--header-height);
}

.features-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%),
        radial-gradient(circle at 70% 80%, rgba(139, 92, 246, 0.12) 0%, transparent 50%);
    pointer-events: none;
}

.features-hero-content {
    position: relative;
    z-index: 1;
    max-width: 720px;
    margin: 0 auto;
}

.features-hero h1 {
    font-size: 2.8rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 16px;
}

.features-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 28px;
}

/* ----------------------------------------------------------------
   8. FEATURE CARDS
   ---------------------------------------------------------------- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    --card-accent: var(--primary);
    --card-accent-bg: var(--primary-50);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--card-accent);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.feature-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    background: var(--card-accent-bg);
    color: var(--card-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    transition: all var(--transition-base);
}

.feature-card:hover .feature-card-icon {
    background: var(--card-accent);
    color: #fff;
    transform: scale(1.05);
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.65;
}

.feature-card .card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--card-accent);
    margin-top: 16px;
    transition: gap var(--transition-fast);
}

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

/* Feature-specific accent overrides */
.feature-card[data-accent="appointments"],
.feature-card.accent-appointments {
    --card-accent: var(--color-appointments);
    --card-accent-bg: var(--color-appointments-bg);
}

.feature-card[data-accent="staff"],
.feature-card.accent-staff {
    --card-accent: var(--color-staff);
    --card-accent-bg: var(--color-staff-bg);
}

.feature-card[data-accent="customers"],
.feature-card.accent-customers {
    --card-accent: var(--color-customers);
    --card-accent-bg: var(--color-customers-bg);
}

.feature-card[data-accent="billing"],
.feature-card.accent-billing {
    --card-accent: var(--color-billing);
    --card-accent-bg: var(--color-billing-bg);
}

.feature-card[data-accent="inventory"],
.feature-card.accent-inventory {
    --card-accent: var(--color-inventory);
    --card-accent-bg: var(--color-inventory-bg);
}

.feature-card[data-accent="analytics"],
.feature-card.accent-analytics {
    --card-accent: var(--color-analytics);
    --card-accent-bg: var(--color-analytics-bg);
}

.feature-card[data-accent="booking"],
.feature-card.accent-booking {
    --card-accent: var(--color-booking);
    --card-accent-bg: var(--color-booking-bg);
}

.feature-card[data-accent="loyalty"],
.feature-card.accent-loyalty {
    --card-accent: var(--color-loyalty);
    --card-accent-bg: var(--color-loyalty-bg);
}

/* ----------------------------------------------------------------
   9. SCREENSHOT SHOWCASE (alternating layout)
   ---------------------------------------------------------------- */
.feature-showcase {
    padding: var(--section-padding) 0;
}

.feature-showcase:nth-child(even) {
    background: var(--bg-light);
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.showcase-grid.reverse {
    direction: rtl;
}

.showcase-grid.reverse > * {
    direction: ltr;
}

.showcase-content {
    max-width: 480px;
}

.showcase-content .showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--card-accent, var(--primary));
    background: var(--card-accent-bg, var(--primary-50));
    padding: 5px 12px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.showcase-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.showcase-content p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.screenshot-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-2xl);
    border: 1px solid var(--border-light);
    background: var(--bg-white);
}

.screenshot-wrapper img {
    width: 100%;
    display: block;
}

.screenshot-wrapper .screenshot-browser-bar {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 12px 16px;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border-light);
}

.screenshot-browser-bar .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.screenshot-browser-bar .dot:nth-child(1) { background: #f87171; }
.screenshot-browser-bar .dot:nth-child(2) { background: #fbbf24; }
.screenshot-browser-bar .dot:nth-child(3) { background: #34d399; }

/* Feature checklist in showcase */
.feature-checklist {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.5;
}

.feature-checklist li i,
.feature-checklist li svg,
.feature-checklist .check-icon {
    flex-shrink: 0;
    width: 22px;
    height: 22px;
    background: var(--card-accent-bg, var(--primary-50));
    color: var(--card-accent, var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    margin-top: 2px;
}

/* ----------------------------------------------------------------
   10. QUICK NAV BAR (features page)
   ---------------------------------------------------------------- */
.features-quick-nav {
    position: sticky;
    top: var(--header-height);
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    z-index: 90;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.features-quick-nav::-webkit-scrollbar {
    display: none;
}

.quick-nav-list {
    display: flex;
    align-items: center;
    gap: 4px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 8px 24px;
    white-space: nowrap;
}

.quick-nav-list a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-light);
    border-radius: var(--radius-full);
    transition: all var(--transition-fast);
}

.quick-nav-list a:hover,
.quick-nav-list a.active {
    color: var(--primary);
    background: var(--primary-50);
}

.quick-nav-list a i {
    font-size: 1rem;
}

/* ----------------------------------------------------------------
   11. FEATURE BADGES
   ---------------------------------------------------------------- */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.badge-primary {
    background: var(--primary-50);
    color: var(--primary);
}

.badge-success {
    background: var(--color-staff-bg);
    color: var(--color-staff);
}

.badge-warning {
    background: var(--color-billing-bg);
    color: var(--color-billing);
}

.badge-danger {
    background: var(--color-customers-bg);
    color: var(--color-customers);
}

.badge-info {
    background: var(--color-inventory-bg);
    color: var(--color-inventory);
}

/* ----------------------------------------------------------------
   12. PRICING CARDS
   ---------------------------------------------------------------- */
.pricing-hero {
    background: var(--gradient-hero-inner);
    color: #fff;
    padding: 120px 0 60px;
    text-align: center;
    margin-top: var(--header-height);
    position: relative;
    overflow: hidden;
}

.pricing-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 80%, rgba(59, 130, 246, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.pricing-hero h1 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.pricing-hero p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
    z-index: 1;
}

.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    max-width: var(--container-narrow);
    margin: 0 auto;
}

.plan-card {
    background: var(--bg-white);
    padding: 36px 32px;
    border-radius: var(--radius-xl);
    text-align: center;
    border: 2px solid var(--border-light);
    position: relative;
    transition: all var(--transition-base);
}

.plan-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-xl);
}

.plan-card.popular {
    border-color: var(--primary);
    transform: scale(1.03);
    box-shadow: var(--shadow-primary-lg);
}

.plan-card.popular:hover {
    transform: scale(1.03) translateY(-4px);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: #fff;
    padding: 4px 20px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.plan-card .plan-name {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.plan-card .plan-price {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.1;
    margin-bottom: 4px;
}

.plan-card .plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.plan-card .plan-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 24px;
}

.plan-card .plan-features {
    text-align: left;
    margin-bottom: 28px;
}

.plan-card .plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--text-body);
    border-bottom: 1px solid var(--bg-alt);
}

.plan-card .plan-features li:last-child {
    border-bottom: none;
}

.plan-card .plan-features li i {
    color: var(--success);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.plan-card .plan-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
}

.plan-card .plan-features li.disabled i {
    color: var(--text-muted);
}

.plan-card .btn {
    width: 100%;
}

/* Toggle billing cycle */
.billing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.billing-toggle span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
}

.billing-toggle span.active {
    color: var(--text-dark);
    font-weight: 600;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--border-default);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: background var(--transition-base);
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform var(--transition-base);
    box-shadow: var(--shadow-xs);
}

.toggle-switch.active::after {
    transform: translateX(22px);
}

.save-badge {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--success);
    background: var(--color-staff-bg);
    padding: 2px 8px;
    border-radius: var(--radius-full);
}

/* ----------------------------------------------------------------
   13. TESTIMONIALS / STORIES
   ---------------------------------------------------------------- */
.testimonials-section {
    padding: var(--section-padding) 0;
}

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

.testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    display: flex;
    gap: 2px;
    color: #fbbf24;
    margin-bottom: 16px;
    font-size: 0.9rem;
}

.testimonial-text {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Story / case-study cards */
.story-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

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

.story-card-image {
    height: 200px;
    overflow: hidden;
}

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

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

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

.story-card-body h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.story-card-body p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ----------------------------------------------------------------
   14. FAQ ACCORDION
   ---------------------------------------------------------------- */
.faq-section {
    padding: var(--section-padding) 0;
}

.faq-list {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.faq-item:hover {
    border-color: var(--primary-light);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

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

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

.faq-question .faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: var(--text-light);
    transition: all var(--transition-base);
}

.faq-item.active .faq-icon {
    background: var(--primary);
    color: #fff;
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 24px 20px;
}

.faq-answer p {
    font-size: 0.92rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ----------------------------------------------------------------
   15. CITY GRID
   ---------------------------------------------------------------- */
.city-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.city-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
}

.city-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 20px;
    text-align: center;
    transition: all var(--transition-base);
    text-decoration: none;
}

.city-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.city-card i {
    font-size: 1.4rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.city-card h4 {
    font-size: 0.92rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.city-card span {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   16. BLOG / POST CARDS
   ---------------------------------------------------------------- */
.blog-section {
    padding: var(--section-padding) 0;
}

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

.blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
    text-decoration: none;
    display: block;
}

.blog-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
    border-color: transparent;
}

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

.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-image .blog-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--primary);
    color: #fff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

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

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.blog-card-body h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--text-dark);
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card-body h3 {
    color: var(--primary);
}

.blog-card-body p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--bg-alt);
}

.blog-card-footer .read-more {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Single post page */
.post-content {
    max-width: 780px;
    margin: 0 auto;
    padding: 48px 24px;
}

.post-content h2 {
    font-size: 1.6rem;
    margin: 32px 0 16px;
}

.post-content h3 {
    font-size: 1.3rem;
    margin: 24px 0 12px;
}

.post-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-body);
}

.post-content img {
    border-radius: var(--radius-lg);
    margin: 24px 0;
}

.post-content ul,
.post-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.post-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-body);
    margin-bottom: 8px;
    list-style-type: disc;
}

.post-content ol li {
    list-style-type: decimal;
}

/* ----------------------------------------------------------------
   17. CTA SECTIONS
   ---------------------------------------------------------------- */
.cta-section {
    padding: var(--section-padding) 0;
    background: var(--gradient-hero);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Inline CTA (within page content) */
.cta-inline {
    background: var(--gradient-primary);
    border-radius: var(--radius-2xl);
    padding: 48px;
    text-align: center;
    color: #fff;
    margin: 48px 0;
}

.cta-inline h3 {
    font-size: 1.6rem;
    color: #fff;
    margin-bottom: 12px;
}

.cta-inline p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* ----------------------------------------------------------------
   18. FOOTER
   ---------------------------------------------------------------- */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
    padding-top: 64px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px 48px;
}

.footer-brand {
    max-width: 280px;
}

.footer-brand .footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}

.footer-brand .footer-logo img {
    height: 32px;
}

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

.footer-social {
    display: flex;
    gap: 8px;
}

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

.footer-social a:hover {
    background: var(--primary);
    color: #fff;
    transform: translateY(-2px);
}

.footer-column h4 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 20px;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.5);
    transition: all var(--transition-fast);
}

.footer-column a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.footer-bottom .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a:hover {
    color: #fff;
}

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

/* ----------------------------------------------------------------
   19. CONTACT PAGE
   ---------------------------------------------------------------- */
.contact-section {
    padding: var(--section-padding) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

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

.contact-info-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: all var(--transition-base);
}

.contact-info-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.contact-info-card .info-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: var(--radius-lg);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-info-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.88rem;
    color: var(--text-light);
}

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

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

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

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

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    background: var(--bg-white);
    color: var(--text-dark);
    transition: all var(--transition-fast);
    outline: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

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

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

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

/* ----------------------------------------------------------------
   20. ABOUT PAGE
   ---------------------------------------------------------------- */
.about-section {
    padding: var(--section-padding) 0;
}

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

.about-text h2 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.about-text p {
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.stats-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    padding: 32px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    transition: all var(--transition-base);
}

.stat-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.stat-card .stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-card .stat-label {
    font-size: 0.88rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.team-card {
    text-align: center;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px 24px;
    transition: all var(--transition-base);
}

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

.team-card img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 16px;
    border: 3px solid var(--primary-50);
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-card span {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ----------------------------------------------------------------
   21. SERVICES PAGE
   ---------------------------------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-xl);
    background: var(--primary-50);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin: 0 auto 20px;
}

.service-card h3 {
    font-size: 1.15rem;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.65;
}

/* ----------------------------------------------------------------
   22. WHATSAPP FLOATING BUTTON
   ---------------------------------------------------------------- */
.wa-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.wa-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #25d366;
    color: #ffffff;
    padding: 16px 24px;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    transition: all var(--transition-base);
}

.wa-btn:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(37, 211, 102, 0.4);
}

.wa-btn i {
    font-size: 1.4rem;
}

/* ----------------------------------------------------------------
   23. UTILITY CLASSES
   ---------------------------------------------------------------- */

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

/* Flexbox */
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.align-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.flex-wrap { flex-wrap: wrap; }
.flex-col { flex-direction: column; }

/* Spacing */
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.py-1 { padding-top: 8px; padding-bottom: 8px; }
.py-2 { padding-top: 16px; padding-bottom: 16px; }
.py-3 { padding-top: 24px; padding-bottom: 24px; }
.py-4 { padding-top: 32px; padding-bottom: 32px; }
.py-5 { padding-top: 48px; padding-bottom: 48px; }
.px-1 { padding-left: 8px; padding-right: 8px; }
.px-2 { padding-left: 16px; padding-right: 16px; }
.px-3 { padding-left: 24px; padding-right: 24px; }

/* Sizing */
.w-full { width: 100%; }
.max-w-sm { max-width: 480px; }
.max-w-md { max-width: 680px; }
.max-w-lg { max-width: 900px; }

/* Borders */
.rounded { 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); }

/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }

/* Overflow */
.overflow-hidden { overflow: hidden; }

/* Position */
.relative { position: relative; }
.absolute { position: absolute; }

/* Visibility on dark hero sections */
.on-dark h1,
.on-dark h2,
.on-dark h3,
.on-dark h4,
.on-dark h5,
.on-dark h6 {
    color: #fff;
}

.on-dark p {
    color: rgba(255, 255, 255, 0.65);
}

/* ----------------------------------------------------------------
   24. ANIMATIONS
   ---------------------------------------------------------------- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.92);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

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

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.3); }
}

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

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

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Animation classes */
.animate-fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

.animate-fade-in-down {
    animation: fadeInDown 0.6s ease forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease forwards;
}

.animate-fade-in-left {
    animation: fadeInLeft 0.6s ease forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 0.6s ease forwards;
}

.animate-scale-in {
    animation: scaleIn 0.5s ease forwards;
}

.animate-float {
    animation: float 3s ease-in-out infinite;
}

/* Stagger delays */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }

/* Scroll-triggered (pair with JS IntersectionObserver) */
.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Hover transitions */
.hover-lift {
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

/* Loading skeleton */
.skeleton {
    background: linear-gradient(90deg, var(--bg-alt) 25%, var(--bg-light) 50%, var(--bg-alt) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-md);
}

/* ----------------------------------------------------------------
   25. RESPONSIVE - TABLET (max-width: 768px)
   ---------------------------------------------------------------- */
@media (max-width: 768px) {
    :root {
        --section-padding: 56px;
        --header-height: 64px;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.25rem; }

    .container {
        padding: 0 16px;
    }

    /* Header mobile */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-white);
        flex-direction: column;
        align-items: stretch;
        padding: 80px 24px 24px;
        gap: 0;
        box-shadow: var(--shadow-2xl);
        transition: right var(--transition-slow);
        z-index: 999;
        overflow-y: auto;
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu a {
        padding: 14px 16px;
        font-size: 1rem;
        border-bottom: 1px solid var(--bg-alt);
    }

    .nav-actions {
        display: none;
    }

    .nav-actions.mobile-show {
        display: flex;
        flex-direction: column;
        padding: 16px 24px;
    }

    /* Mobile overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 998;
        opacity: 0;
        visibility: hidden;
        transition: all var(--transition-base);
    }

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

    /* Hero mobile */
    .hero {
        padding: 80px 0 48px;
        min-height: auto;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

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

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

    .hero-stats {
        justify-content: center;
        gap: 24px;
    }

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

    .hero-visual {
        max-width: 480px;
        margin: 0 auto;
    }

    /* Page hero mobile */
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

    .features-hero {
        padding: 100px 0 48px;
    }

    .features-hero h1 {
        font-size: 2rem;
    }

    /* Grids mobile */
    .grid-2,
    .grid-3,
    .grid-4,
    .features-grid,
    .blog-grid,
    .testimonials-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

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

    /* Showcase mobile */
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .showcase-grid.reverse {
        direction: ltr;
    }

    .showcase-content {
        max-width: 100%;
    }

    /* Pricing mobile */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .plan-card.popular {
        transform: none;
    }

    .plan-card.popular:hover {
        transform: translateY(-4px);
    }

    .pricing-hero {
        padding: 80px 0 40px;
    }

    /* Contact mobile */
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

    /* About mobile */
    .about-content {
        grid-template-columns: 1fr;
    }

    /* Footer mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .footer-brand {
        max-width: 100%;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    /* City grid mobile */
    .city-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* CTA mobile */
    .cta-content h2 {
        font-size: 1.6rem;
    }

    .cta-inline {
        padding: 32px 24px;
    }

    /* Blog grid mobile */
    .blog-grid {
        gap: 20px;
    }

    /* Quick nav scroll */
    .quick-nav-list {
        padding: 8px 16px;
    }

    /* WhatsApp button mobile */
    .wa-float-btn {
        bottom: 20px;
        right: 20px;
    }

    .wa-btn {
        padding: 14px 20px;
        font-size: 0.9rem;
        gap: 10px;
    }

    .wa-btn i {
        font-size: 1.3rem;
    }

    /* Buttons mobile */
    .btn-large {
        padding: 14px 24px;
        font-size: 0.95rem;
    }
}

/* ----------------------------------------------------------------
   26. RESPONSIVE - MOBILE SMALL (max-width: 480px)
   ---------------------------------------------------------------- */
@media (max-width: 480px) {
    h1 { font-size: 1.7rem; }
    h2 { font-size: 1.4rem; }

    .hero h1 {
        font-size: 1.8rem;
    }

    .page-hero h1,
    .features-hero h1 {
        font-size: 1.6rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
    }

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

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

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

    .section-header p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 24px;
    }

    .plan-card {
        padding: 28px 20px;
    }

    .contact-form {
        padding: 24px 20px;
    }

    .cta-content h2 {
        font-size: 1.4rem;
    }

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

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

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

    .post-content {
        padding: 32px 16px;
    }

    .post-content p,
    .post-content li {
        font-size: 0.95rem;
    }

    /* Header top hide on small mobile */
    .header-top {
        display: none;
    }

    /* Testimonial adjustments */
    .testimonial-card {
        padding: 24px;
    }

    /* Footer column spacing */
    .footer-grid {
        gap: 24px;
    }

    .footer-column h4 {
        margin-bottom: 12px;
    }
}

/* ----------------------------------------------------------------
   27. PRINT STYLES
   ---------------------------------------------------------------- */
@media print {
    .header,
    .footer,
    .wa-float-btn,
    .cta-section,
    .features-quick-nav,
    .nav-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .hero,
    .page-hero,
    .features-hero,
    .pricing-hero {
        background: #f0f0f0 !important;
        color: #000 !important;
        margin-top: 0;
        padding: 40px 0;
    }

    .hero h1,
    .page-hero h1 {
        color: #000 !important;
    }

    a {
        text-decoration: underline;
    }
}

/* ================================================================
   HEADER/FOOTER gx- BEM ALIASES
   Maps gx-prefixed classes (used in header.php/footer.php) to
   the base classes defined above.
   ================================================================ */

/* Header aliases */
.gx-header { }
.gx-topbar {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #fff;
    padding: 0;
    font-size: 0.8rem;
    height: 38px;
    display: flex;
    align-items: stretch;
    position: relative;
    border-bottom: 1px solid rgba(59,130,246,0.1);
}
.gx-topbar::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59,130,246,0.4), rgba(139,92,246,0.4), transparent);
}
.gx-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width:100%; }
.gx-topbar__inner { display: flex; justify-content: space-between; align-items: center; width:100%; height:100%; }
.gx-topbar__contact { display: flex; gap: 0; align-items: stretch; height:100%; }
.gx-topbar__item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 0 14px;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.78rem;
    border-right: 1px solid rgba(255,255,255,0.06);
    transition: all 0.2s;
    letter-spacing: 0.2px;
}
.gx-topbar__item:hover { color: #fff; background: rgba(255,255,255,0.04); }
.gx-topbar__item i {
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    background: rgba(59,130,246,0.15);
    color: var(--primary-light);
}
.gx-topbar__actions { display: flex; align-items: stretch; gap: 0; }
.gx-topbar__cta {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.3px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}
.gx-topbar__cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transition: left 0.4s;
}
.gx-topbar__cta:hover::before { left: 100%; }
.gx-topbar__cta:hover { background: linear-gradient(135deg, var(--primary-dark), #1d4ed8); }
.gx-topbar__item--info { cursor: default; }
.gx-topbar__item--info:hover { background: transparent; }
.gx-topbar__promo {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
    border-right: 1px solid rgba(255,255,255,0.06);
    letter-spacing: 0.2px;
}
.gx-topbar__promo i {
    color: #f59e0b;
    font-size: 0.72rem;
}

/* Nav aliases */
.gx-nav { background: var(--bg-white); box-shadow: var(--shadow-sm); position: sticky; top: 0; z-index: 100; transition: all 0.3s; }
.gx-nav--sticky { box-shadow: var(--shadow-md); backdrop-filter: blur(12px); background: rgba(255,255,255,0.95); }
.gx-nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.gx-nav__brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.gx-nav__logo { width: 36px; height: 36px; }
.gx-nav__brand-text { display: flex; flex-direction: column; }
.gx-nav__brand-name { font-size: 1.2rem; font-weight: 800; color: var(--text-dark); line-height: 1.2; }
.gx-nav__brand-tagline { font-size: 0.65rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.gx-nav__menu { display: flex; list-style: none; margin: 0; padding: 0; gap: 0; align-items: center; }
.gx-nav__item { position: relative; }
.gx-nav__link { display: flex; align-items: center; gap: 6px; padding: 8px 14px; color: var(--text-body); text-decoration: none; font-size: 0.88rem; font-weight: 500; border-radius: var(--radius-md); transition: all 0.2s; white-space: nowrap; }
.gx-nav__link:hover { color: var(--primary); background: var(--primary-50); }
.gx-nav__link i { font-size: 0.75rem; }
.gx-dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--bg-white); border-radius: var(--radius-lg); box-shadow: var(--shadow-xl); border: 1px solid var(--border-light); padding: 8px; opacity: 0; visibility: hidden; transform: translateY(8px); transition: all 0.2s; z-index: 200; }
.gx-nav__item:hover .gx-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.gx-dropdown__link { display: flex; align-items: center; gap: 10px; padding: 10px 12px; color: var(--text-body); text-decoration: none; font-size: 0.85rem; border-radius: var(--radius-md); transition: all 0.15s; }
.gx-dropdown__link:hover { background: var(--primary-50); color: var(--primary); }
.gx-dropdown__link i { width: 18px; text-align: center; color: var(--text-muted); font-size: 0.85rem; }
.gx-dropdown__link:hover i { color: var(--primary); }
.gx-nav__cta .gx-btn--primary { font-size: 0.85rem; padding: 8px 18px; }
.gx-nav__toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; background: none; border: none; }
.gx-nav__toggle span { display: block; width: 22px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all 0.3s; }

/* Button aliases */
.gx-btn { display: inline-flex; align-items: center; gap: 8px; padding: 10px 22px; border-radius: var(--radius-md); font-weight: 600; font-size: 0.9rem; text-decoration: none; border: 2px solid transparent; cursor: pointer; transition: all var(--transition-base); white-space: nowrap; }
.gx-btn--primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.gx-btn--primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); box-shadow: var(--shadow-primary); }
.gx-btn--outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.gx-btn--outline:hover { background: var(--primary); color: #fff; }
.gx-btn--outline-light { background: transparent; color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.3); }
.gx-btn--outline-light:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); color: #fff; }
.gx-btn--outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,0.4); }
.gx-btn--outline-white:hover { background: rgba(255,255,255,0.1); border-color: #fff; }
.gx-btn--white { background: #fff; color: var(--primary); border-color: #fff; }
.gx-btn--white:hover { background: #f0f4ff; transform: translateY(-1px); box-shadow: var(--shadow-lg); }
.gx-btn--lg { padding: 14px 28px; font-size: 1rem; }
.gx-btn--block { display: flex; justify-content: center; width: 100%; }

/* Hero aliases */
.gx-hero { background: var(--gradient-hero); padding: 60px 0 50px; position: relative; overflow: hidden; }
.gx-hero::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(circle at 30% 40%, rgba(59,130,246,0.2) 0%, transparent 50%), radial-gradient(circle at 70% 80%, rgba(139,92,246,0.15) 0%, transparent 50%); pointer-events:none; }
.gx-hero__grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: center; position: relative; z-index: 1; }
.gx-hero__content { color: #fff; }
.gx-hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.15); color: var(--primary-lighter); font-size: 0.82rem; font-weight: 600; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 20px; }
.gx-hero__title { font-size: 2.8rem; font-weight: 800; line-height: 1.15; margin-bottom: 16px; color: #fff; }

/* Force white text on all dark hero sections */
.gx-hero h1, .gx-hero h2, .gx-hero h3,
.gx-page-hero h1, .gx-page-hero h2, .gx-page-hero h3,
.gx-cta h1, .gx-cta h2, .gx-cta h3 {
    color: #fff !important;
}
.gx-hero p, .gx-page-hero p, .gx-cta p {
    color: rgba(255,255,255,0.75) !important;
}
.gx-text-gradient { background: linear-gradient(135deg, #60a5fa, #a78bfa, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.gx-hero__desc { font-size: 1.1rem; color: rgba(255,255,255,0.75); line-height: 1.7; margin-bottom: 28px; }
.gx-hero__actions { display: flex; gap: 12px; margin-bottom: 32px; flex-wrap: wrap; }
.gx-hero__stats { display: flex; gap: 32px; }
.gx-hero__stat { display: flex; flex-direction: column; }
.gx-hero__stat strong { font-size: 1.5rem; font-weight: 800; color: #fff; }
.gx-hero__stat span { font-size: 0.75rem; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }
.gx-hero__visual { position: relative; }
.gx-hero__screenshot { border-radius: var(--radius-xl); overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 4px 16px rgba(0,0,0,0.15); border: 1px solid rgba(255,255,255,0.1); transition: transform 0.4s; }
.gx-hero__screenshot:hover { transform: translateY(-6px); }
.gx-hero__screenshot img { width: 100%; height: auto; display: block; }

/* Section aliases */
.gx-section { padding: 80px 0; }
.gx-section--alt { background: var(--bg-light); }
.gx-section__header { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.gx-section__label { display: inline-flex; align-items: center; gap: 6px; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--primary); margin-bottom: 12px; }
.gx-section__header h2 { font-size: 2rem; font-weight: 800; color: var(--text-dark); margin-bottom: 12px; line-height: 1.2; }
.gx-section__header p { font-size: 1.05rem; color: var(--text-light); line-height: 1.6; }
.gx-section__link { display: inline-flex; align-items: center; gap: 6px; color: var(--primary); font-weight: 600; font-size: 0.9rem; text-decoration: none; }
.gx-section__link:hover { gap: 10px; }

/* Feature cards */
.gx-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.gx-feature-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px 24px; text-decoration: none; color: var(--text-dark); border: 1px solid var(--border-light); border-top: 3px solid var(--card-accent, var(--primary)); transition: all 0.3s; }
.gx-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: transparent; }
.gx-feature-card__icon { width: 48px; height: 48px; border-radius: var(--radius-lg); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; background: var(--card-bg, var(--primary-50)); color: var(--card-accent, var(--primary)); }
.gx-feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.gx-feature-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; margin: 0; }
.gx-feature-card--cta { background: var(--primary-50); border-color: var(--primary); }
.gx-feature-card--cta:hover { background: var(--primary); color: #fff; }
.gx-feature-card--cta:hover .gx-feature-card__icon { background: rgba(255,255,255,0.2); color: #fff; }
.gx-feature-card--cta:hover p { color: rgba(255,255,255,0.8); }

/* Showcase (feature detail with screenshot) */
.gx-showcase { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; margin-bottom: 60px; }
.gx-showcase:last-child { margin-bottom: 0; }
.gx-showcase--reverse { grid-template-columns: 1.2fr 1fr; }
.gx-showcase--reverse .gx-showcase__content { order: 2; }
.gx-showcase--reverse .gx-showcase__image { order: 1; }
.gx-showcase__content h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; line-height: 1.25; }
.gx-showcase__content h3 { font-size: 1.6rem; font-weight: 800; color: var(--text-dark); margin-bottom: 14px; line-height: 1.25; }
.gx-showcase__content > p { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 24px; }
.gx-showcase__image { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-2xl); border: 1px solid var(--border-light); transition: transform 0.4s; }
.gx-showcase__image:hover { transform: translateY(-4px); }
.gx-showcase__image img { width: 100%; height: auto; display: block; }
.gx-showcase__image--narrow { max-width: 480px; }

/* Badges */
.gx-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px; border-radius: var(--radius-full); font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.gx-badge--blue { color: #3b82f6; background: #eff6ff; }
.gx-badge--purple { color: #8b5cf6; background: #f5f3ff; }
.gx-badge--green { color: #10b981; background: #ecfdf5; }
.gx-badge--amber { color: #f59e0b; background: #fffbeb; }
.gx-badge--indigo { color: #6366f1; background: #eef2ff; }
.gx-badge--cyan { color: #06b6d4; background: #ecfeff; }
.gx-badge--rose { color: #f43f5e; background: #fff1f2; }

/* Checklist */
.gx-checklist { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.gx-checklist li { display: flex; align-items: flex-start; gap: 10px; font-size: 0.93rem; color: var(--text-dark); line-height: 1.5; }
.gx-checklist li i { color: var(--check, var(--primary)); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }

/* Page hero (inner pages) */
.gx-page-hero { background: var(--gradient-hero); padding: 60px 0 45px; text-align: center; color: #fff; position: relative; overflow: hidden; }
.gx-page-hero::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(circle at 50% 50%, rgba(59,130,246,0.2) 0%, transparent 60%); pointer-events:none; }
.gx-page-hero .gx-container { position: relative; z-index: 1; }
.gx-page-hero__label { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.1); color: var(--primary-lighter); font-size: 0.82rem; font-weight: 600; padding: 6px 16px; border-radius: var(--radius-full); margin-bottom: 16px; border: 1px solid rgba(255,255,255,0.15); }
.gx-page-hero h1 { font-size: 2.5rem; font-weight: 800; margin-bottom: 14px; line-height: 1.2; }
.gx-page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 600px; margin: 0 auto; line-height: 1.6; }

/* Quick nav */
.gx-quicknav { background: var(--bg-white); margin-top: -30px; position: relative; z-index: 2; padding: 0 0 40px; }
.gx-quicknav__grid { display: flex; background: var(--bg-white); border-radius: var(--radius-xl); box-shadow: var(--shadow-xl); overflow: hidden; }
.gx-quicknav__item { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 22px 10px; text-decoration: none; color: var(--text-body); font-size: 0.78rem; font-weight: 600; transition: all 0.2s; border-bottom: 3px solid transparent; }
.gx-quicknav__item:hover { background: var(--qn-bg, var(--primary-50)); border-bottom-color: var(--qn, var(--primary)); color: var(--qn, var(--primary)); }
.gx-quicknav__item i { font-size: 1.3rem; width: 40px; height: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-lg); background: var(--qn-bg, var(--primary-50)); color: var(--qn, var(--primary)); transition: transform 0.2s; }
.gx-quicknav__item:hover i { transform: scale(1.1); }

/* Solutions */
.gx-solutions-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gx-solution-card { background: var(--bg-white); border-radius: var(--radius-xl); padding: 36px 28px; border: 1px solid var(--border-light); position: relative; transition: all 0.3s; }
.gx-solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gx-solution-card--featured { border-color: var(--primary); box-shadow: var(--shadow-primary); }
.gx-solution-card__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--primary); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: var(--radius-full); }
.gx-solution-card__icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.gx-solution-card h3 { font-size: 1.3rem; font-weight: 700; margin-bottom: 10px; color: var(--text-dark); }
.gx-solution-card > p { color: var(--text-light); font-size: 0.93rem; margin-bottom: 16px; line-height: 1.6; }
.gx-solution-card ul { list-style: none; padding: 0; margin: 0 0 20px; display: flex; flex-direction: column; gap: 8px; }
.gx-solution-card ul li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-body); }
.gx-solution-card ul li i { color: var(--success); font-size: 0.8rem; }
.gx-solution-card__price { display: block; font-size: 0.85rem; font-weight: 700; color: var(--primary); }

/* City cards */
.gx-cities-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gx-city-card { display: flex; align-items: center; gap: 10px; padding: 14px 16px; background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-md); text-decoration: none; color: var(--text-body); transition: all 0.2s; }
.gx-city-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); color: var(--primary); }
.gx-city-card i { color: var(--primary); font-size: 0.85rem; }
.gx-city-card span { font-weight: 600; font-size: 0.85rem; flex: 1; }
.gx-city-card small { font-size: 0.72rem; color: var(--text-muted); white-space: nowrap; }

/* Testimonials */
.gx-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gx-testimonial { background: var(--bg-white); border-radius: var(--radius-xl); padding: 32px; border: 1px solid var(--border-light); }
.gx-testimonial__stars { color: #f59e0b; font-size: 0.85rem; margin-bottom: 16px; display: flex; gap: 2px; }
.gx-testimonial p { font-size: 0.95rem; color: var(--text-body); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.gx-testimonial__author strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.gx-testimonial__author span { font-size: 0.8rem; color: var(--text-muted); }

/* FAQ */
.gx-faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.gx-faq { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; }
.gx-faq summary { padding: 18px 24px; font-weight: 600; font-size: 0.95rem; color: var(--text-dark); cursor: pointer; list-style: none; display: flex; align-items: center; justify-content: space-between; transition: background 0.2s; }
.gx-faq summary::-webkit-details-marker { display: none; }
.gx-faq summary::after { content: '+'; font-size: 1.3rem; color: var(--text-muted); font-weight: 400; }
.gx-faq[open] summary::after { content: '−'; }
.gx-faq[open] summary { background: var(--primary-50); color: var(--primary); }
.gx-faq p { padding: 0 24px 18px; font-size: 0.9rem; color: var(--text-light); line-height: 1.7; margin: 0; }

/* Blog/Post cards */
.gx-posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gx-post-card { background: var(--bg-white); border-radius: var(--radius-lg); padding: 28px; border: 1px solid var(--border-light); text-decoration: none; color: var(--text-dark); transition: all 0.3s; display: flex; flex-direction: column; }
.gx-post-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--primary); }
.gx-post-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 10px; line-height: 1.4; }
.gx-post-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.gx-post-card__meta { display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: var(--text-muted); }
.gx-post-card__meta i { margin-right: 4px; }
.gx-post-card__read { color: var(--primary); font-weight: 600; }

/* CTA section */
.gx-cta { background: var(--gradient-cta); padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.gx-cta::before { content:''; position:absolute; top:0; left:0; right:0; bottom:0; background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 60%); pointer-events:none; }
.gx-cta__content { position: relative; z-index: 1; max-width: 600px; margin: 0 auto; }
.gx-cta__content h2 { font-size: 2rem; font-weight: 800; color: #fff; margin-bottom: 14px; }
.gx-cta__content p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 28px; line-height: 1.6; }
.gx-cta__actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Pricing cards */
.gx-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.gx-pricing-card { background: var(--bg-white); border-radius: var(--radius-xl); padding: 36px 28px; border: 2px solid var(--border-light); text-align: center; position: relative; transition: all 0.3s; }
.gx-pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.gx-pricing-card--popular { border-color: var(--primary); transform: scale(1.03); box-shadow: var(--shadow-primary-lg); }
.gx-pricing-card--popular:hover { transform: scale(1.03) translateY(-4px); }
.gx-pricing-card__badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-primary); color: #fff; font-size: 0.75rem; font-weight: 700; padding: 5px 20px; border-radius: var(--radius-full); white-space: nowrap; }
.gx-pricing-card h3 { font-size: 1.3rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.gx-pricing-card__price { font-size: 2.5rem; font-weight: 800; color: var(--text-dark); margin-bottom: 8px; }
.gx-pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--text-muted); }
.gx-pricing-card__desc { font-size: 0.85rem; color: var(--text-light); margin-bottom: 24px; }
.gx-pricing-card__features { list-style: none; padding: 0; margin: 0 0 28px; text-align: left; display: flex; flex-direction: column; gap: 10px; }
.gx-pricing-card__features li { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-body); }
.gx-pricing-card__features li i { color: var(--success); font-size: 0.8rem; }

/* Stats */
.gx-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.gx-stat-card { text-align: center; padding: 32px 20px; background: var(--bg-white); border-radius: var(--radius-xl); border: 1px solid var(--border-light); }
.gx-stat-card__icon { font-size: 1.8rem; color: var(--stat-color, var(--primary)); margin-bottom: 12px; }
.gx-stat-card__number { font-size: 2.2rem; font-weight: 800; color: var(--text-dark); }
.gx-stat-card__label { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }

/* About */
.gx-about-story { max-width: 700px; margin: 0 auto; }
.gx-about-story h2 { font-size: 1.8rem; font-weight: 800; color: var(--text-dark); margin-bottom: 20px; }
.gx-about-story p { font-size: 1rem; color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }

/* Values */
.gx-values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.gx-value-card { text-align: center; padding: 36px 24px; background: var(--bg-white); border-radius: var(--radius-xl); border: 1px solid var(--border-light); transition: all 0.3s; }
.gx-value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gx-value-card__icon { font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.gx-value-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.gx-value-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }

/* Footer aliases */
.gx-footer { background: var(--bg-dark); color: rgba(255,255,255,0.7); padding: 60px 0 0; }
.gx-footer__grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.gx-footer__brand { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.gx-footer__brand img { width: 32px; height: 32px; }
.gx-footer__brand-name { font-size: 1.2rem; font-weight: 800; color: #fff; }
.gx-footer__brand-tagline { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.gx-footer__desc { font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; color: rgba(255,255,255,0.6); }
.gx-footer__social { display: flex; gap: 10px; }
.gx-footer__social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); background: rgba(255,255,255,0.08); color: rgba(255,255,255,0.6); text-decoration: none; transition: all 0.2s; font-size: 0.85rem; }
.gx-footer__social a:hover { background: var(--primary); color: #fff; }
.gx-footer__heading { font-size: 0.85rem; font-weight: 700; color: #fff; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 16px; }
.gx-footer__links { display: flex; flex-direction: column; gap: 10px; }
.gx-footer__link { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.gx-footer__link:hover { color: var(--primary-light); }
.gx-footer__contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 0.85rem; }
.gx-footer__contact-item i { color: var(--primary-light); margin-top: 3px; font-size: 0.8rem; }
.gx-footer__contact-item a { color: rgba(255,255,255,0.6); text-decoration: none; }
.gx-footer__contact-item a:hover { color: var(--primary-light); }
.gx-footer__bottom { padding: 20px 0; display: flex; justify-content: space-between; align-items: center; }
.gx-footer__copyright { font-size: 0.8rem; color: rgba(255,255,255,0.4); }
.gx-footer__bottom-social { display: flex; gap: 12px; }
.gx-footer__bottom-social a { color: rgba(255,255,255,0.4); font-size: 0.85rem; text-decoration: none; }
.gx-footer__bottom-social a:hover { color: var(--primary-light); }

/* ================================================================
   RESPONSIVE - gx- classes
   ================================================================ */
@media (max-width: 768px) {
    .gx-topbar { display: none; }
    .gx-nav__inner { height: 56px; }
    .gx-nav__toggle { display: flex; }
    .gx-nav__menu { display: none; position: fixed; top: 56px; left: 0; right: 0; bottom: 0; background: var(--bg-white); flex-direction: column; padding: 20px; gap: 4px; overflow-y: auto; z-index: 200; }
    .gx-nav__menu.active { display: flex; }
    .gx-nav__link { padding: 12px 16px; font-size: 0.95rem; }
    .gx-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 20px; display: none; }
    .gx-nav__item.open .gx-dropdown { display: block; }
    .gx-nav__cta { margin-top: 12px; }
    .gx-nav__cta .gx-btn--primary { width: 100%; justify-content: center; }

    .gx-hero { padding: 80px 0 40px; }
    .gx-hero__grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .gx-hero__title { font-size: 2rem; }
    .gx-hero__actions { justify-content: center; }
    .gx-hero__stats { justify-content: center; }
    .gx-hero__screenshot { max-width: 500px; margin: 0 auto; }

    .gx-page-hero { padding: 100px 0 40px; }
    .gx-page-hero h1 { font-size: 1.8rem; }

    .gx-section { padding: 50px 0; }
    .gx-features-grid { grid-template-columns: repeat(2, 1fr); }
    .gx-showcase, .gx-showcase--reverse { grid-template-columns: 1fr; gap: 30px; }
    .gx-showcase--reverse .gx-showcase__content,
    .gx-showcase--reverse .gx-showcase__image { order: unset; }
    .gx-solutions-grid { grid-template-columns: 1fr; }
    .gx-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
    .gx-pricing-card--popular { transform: none; }
    .gx-testimonials-grid { grid-template-columns: 1fr; }
    .gx-cities-grid { grid-template-columns: repeat(2, 1fr); }
    .gx-posts-grid { grid-template-columns: 1fr; }
    .gx-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .gx-values-grid { grid-template-columns: 1fr; }
    .gx-quicknav__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
    .gx-quicknav__item { padding: 14px 6px; font-size: 0.68rem; }

    .gx-footer__grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .gx-footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
    .gx-cta__content h2 { font-size: 1.5rem; }
}

@media (max-width: 480px) {
    .gx-hero__title { font-size: 1.6rem; }
    .gx-hero__actions { flex-direction: column; align-items: center; }
    .gx-features-grid { grid-template-columns: 1fr; }
    .gx-quicknav__grid { grid-template-columns: repeat(3, 1fr); }
    .gx-cities-grid { grid-template-columns: 1fr; }
    .gx-footer__grid { grid-template-columns: 1fr; }
    .gx-city-blogs-grid { grid-template-columns: 1fr; }
}

/* ================================================================
   BROWSER FRAME (for hero screenshot)
   ================================================================ */
.gx-browser-frame {
    background: #1e293b;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0,0,0,0.4), 0 8px 24px rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.08);
}
.gx-browser-frame__bar {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: #0f172a;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.gx-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}
.gx-dot--red { background: #ef4444; }
.gx-dot--yellow { background: #f59e0b; }
.gx-dot--green { background: #22c55e; }
.gx-browser-frame__url {
    margin-left: 12px;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    background: rgba(255,255,255,0.06);
    padding: 3px 12px;
    border-radius: 4px;
    font-family: monospace;
}
.gx-browser-frame img {
    width: 100%;
    height: auto;
    display: block;
}

/* Better hero screenshot with perspective */
.gx-hero__screenshot {
    perspective: 1200px;
    transform-style: preserve-3d;
}
.gx-hero__screenshot .gx-browser-frame {
    transform: rotateY(-5deg) rotateX(2deg);
    transition: transform 0.5s ease;
}
.gx-hero__screenshot:hover .gx-browser-frame {
    transform: rotateY(0deg) rotateX(0deg);
}

/* Also add browser frame to showcase images */
.gx-showcase__image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.12), 0 4px 16px rgba(0,0,0,0.06);
    border: 1px solid var(--border-light);
    transition: transform 0.4s, box-shadow 0.4s;
}
.gx-showcase__image:hover {
    transform: translateY(-6px);
    box-shadow: 0 28px 70px rgba(0,0,0,0.16), 0 8px 24px rgba(0,0,0,0.08);
}

/* ================================================================
   CITY-WISE BLOG CARDS
   ================================================================ */
.gx-city-blogs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.gx-city-blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    border-left: 4px solid var(--primary);
}
.gx-city-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--primary-dark);
}
.gx-city-blog-card__location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}
.gx-city-blog-card__location i {
    font-size: 0.7rem;
}
.gx-city-blog-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--text-dark);
}
.gx-city-blog-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}
.gx-city-blog-card__read {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gx-city-blog-card:hover .gx-city-blog-card__read {
    gap: 8px;
}
.gx-city-blog-card__read i {
    font-size: 0.7rem;
    transition: transform 0.2s;
}
.gx-city-blog-card:hover .gx-city-blog-card__read i {
    transform: translateX(3px);
}

@media (max-width: 768px) {
    .gx-city-blogs-grid { grid-template-columns: 1fr; }
    .gx-browser-frame__bar { padding: 8px 10px; }
    .gx-browser-frame__url { display: none; }
    .gx-hero__screenshot .gx-browser-frame { transform: none; }
}

/* ================================================================
   ARTICLE / BLOG POST PAGE
   ================================================================ */

/* Article Hero */
.gx-article-hero {
    background: var(--gradient-hero);
    padding: 60px 0 40px;
    color: #fff;
    position: relative;
}
.gx-article-hero::before {
    content:''; position:absolute; top:0; left:0; right:0; bottom:0;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.15) 0%, transparent 50%);
    pointer-events:none;
}
.gx-article-hero .gx-container { position: relative; z-index: 1; max-width: 900px; }
.gx-article-hero h1 { font-size: 2.2rem; font-weight: 800; color: #fff !important; line-height: 1.3; margin-bottom: 16px; }
.gx-article-hero__excerpt { font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.7; margin-top: 8px; }
.gx-article-hero__meta { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 16px; font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.gx-article-hero__meta span { display: inline-flex; align-items: center; gap: 5px; }
.gx-article-hero__meta i { font-size: 0.75rem; }
.gx-article-hero__location { color: var(--primary-lighter) !important; font-weight: 600; background: rgba(255,255,255,0.1); padding: 2px 10px; border-radius: var(--radius-full); }

/* Breadcrumb */
.gx-breadcrumb { display: flex; align-items: center; gap: 8px; margin-bottom: 20px; font-size: 0.8rem; }
.gx-breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; }
.gx-breadcrumb a:hover { color: #fff; }
.gx-breadcrumb span { color: rgba(255,255,255,0.3); font-size: 0.6rem; }

/* Article Layout */
.gx-article-layout { display: grid; grid-template-columns: 1fr 340px; gap: 40px; align-items: start; }

/* Main Content */
.gx-article-main { min-width: 0; }
.gx-article-content { font-size: 1.02rem; line-height: 1.8; color: var(--text-body); }
.gx-article-content h2 { font-size: 1.5rem; font-weight: 700; margin: 32px 0 14px; color: var(--text-dark); border-left: 4px solid var(--primary); padding-left: 14px; }
.gx-article-content h3 { font-size: 1.2rem; font-weight: 700; margin: 24px 0 10px; color: var(--text-dark); }
.gx-article-content p { margin-bottom: 16px; }
.gx-article-content ul, .gx-article-content ol { margin: 12px 0 20px 24px; }
.gx-article-content li { margin-bottom: 8px; }
.gx-article-content img { max-width: 100%; height: auto; border-radius: var(--radius-lg); margin: 20px 0; }
.gx-article-content a { color: var(--primary); text-decoration: underline; }
.gx-article-content a:hover { color: var(--primary-dark); }
.gx-article-content blockquote { border-left: 4px solid var(--primary); padding: 16px 20px; margin: 20px 0; background: var(--bg-light); border-radius: 0 var(--radius-md) var(--radius-md) 0; font-style: italic; color: var(--text-light); }
.gx-article-content table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.gx-article-content th, .gx-article-content td { padding: 10px 14px; border: 1px solid var(--border-light); text-align: left; }
.gx-article-content th { background: var(--bg-light); font-weight: 600; }

/* Tags */
.gx-article-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0 24px; padding-top: 24px; border-top: 1px solid var(--border-light); }
.gx-tag { display: inline-block; padding: 4px 12px; background: var(--bg-light); color: var(--text-light); font-size: 0.78rem; font-weight: 500; border-radius: var(--radius-full); border: 1px solid var(--border-light); }

/* Share */
.gx-article-share { display: flex; align-items: center; gap: 10px; margin: 24px 0; padding: 20px 0; border-top: 1px solid var(--border-light); }
.gx-article-share__label { font-size: 0.85rem; font-weight: 600; color: var(--text-light); }
.gx-share-btn { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: var(--radius-md); font-size: 0.9rem; text-decoration: none; transition: all 0.2s; color: #fff; }
.gx-share-btn--whatsapp { background: #25d366; }
.gx-share-btn--facebook { background: #1877f2; }
.gx-share-btn--twitter { background: #1da1f2; }
.gx-share-btn--linkedin { background: #0a66c2; }
.gx-share-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* Article Image */
.gx-article-image { margin: 24px 0; border-radius: var(--radius-lg); overflow: hidden; }
.gx-article-image img { width: 100%; height: auto; display: block; }

/* Sidebar */
.gx-article-sidebar { position: sticky; top: 80px; display: flex; flex-direction: column; gap: 20px; }
.gx-sidebar-widget { background: var(--bg-white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 24px; }
.gx-sidebar-widget h3 { font-size: 1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.gx-sidebar-widget h3 i { color: var(--primary); }

/* CTA Widget */
.gx-sidebar-widget--cta { background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%); color: #fff; border: none; text-align: center; }
.gx-sidebar-widget--cta h3 { color: #fff; justify-content: center; font-size: 1.1rem; }
.gx-sidebar-widget--cta p { color: rgba(255,255,255,0.7); font-size: 0.85rem; margin-bottom: 14px; }
.gx-sidebar-widget__icon { font-size: 2rem; color: var(--primary-light); margin-bottom: 10px; }
.gx-sidebar-widget__checks { list-style: none; padding: 0; margin: 0 0 18px; display: flex; flex-direction: column; gap: 6px; }
.gx-sidebar-widget__checks li { display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.8); }
.gx-sidebar-widget__checks li i { color: #22c55e; font-size: 0.75rem; }
.gx-sidebar-widget__phone { display: block; margin-top: 12px; color: rgba(255,255,255,0.5); font-size: 0.8rem; text-decoration: none; }
.gx-sidebar-widget__phone:hover { color: #fff; }
.gx-sidebar-widget__phone i { margin-right: 4px; }

/* Features Widget */
.gx-sidebar-features { display: flex; flex-direction: column; gap: 14px; }
.gx-sidebar-feature { display: flex; gap: 12px; align-items: flex-start; }
.gx-sidebar-feature i { font-size: 1rem; margin-top: 3px; flex-shrink: 0; }
.gx-sidebar-feature strong { display: block; font-size: 0.85rem; color: var(--text-dark); }
.gx-sidebar-feature p { font-size: 0.78rem; color: var(--text-light); margin: 2px 0 0; }

/* Related Posts */
.gx-related-posts { display: flex; flex-direction: column; gap: 12px; }
.gx-related-post { display: block; padding: 12px; border: 1px solid var(--border-light); border-radius: var(--radius-md); text-decoration: none; transition: all 0.2s; }
.gx-related-post:hover { border-color: var(--primary); background: var(--primary-50); }
.gx-related-post h4 { font-size: 0.85rem; font-weight: 600; color: var(--text-dark); line-height: 1.4; margin: 0; }
.gx-related-post:hover h4 { color: var(--primary); }
.gx-related-post__city { font-size: 0.72rem; color: var(--text-muted); margin-top: 4px; display: flex; align-items: center; gap: 4px; }
.gx-related-post__city i { font-size: 0.65rem; }

/* Stats Widget */
.gx-sidebar-widget--stats { background: var(--bg-light); }
.gx-sidebar-stats { display: flex; flex-direction: column; gap: 12px; }
.gx-sidebar-stat { display: flex; justify-content: space-between; align-items: center; }
.gx-sidebar-stat strong { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.gx-sidebar-stat span { font-size: 0.8rem; color: var(--text-light); }

/* Responsive */
@media (max-width: 768px) {
    .gx-article-hero { padding: 100px 0 40px; }
    .gx-article-hero h1 { font-size: 1.6rem; }
    .gx-article-layout { grid-template-columns: 1fr; }
    .gx-article-sidebar { position: static; }
    .gx-article-hero__meta { gap: 10px; }
}

/* ================================================================
   BLOG LISTING PAGE
   ================================================================ */
.gx-blog-filters {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    padding: 16px 0;
}
.gx-blog-filters__search {
    position: relative;
    flex: 1;
    min-width: 200px;
}
.gx-blog-filters__search i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.85rem;
}
.gx-blog-filters__search input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: border-color 0.2s;
}
.gx-blog-filters__search input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.gx-blog-filters__select {
    padding: 10px 14px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    min-width: 140px;
}
.gx-blog-filters__select:focus {
    border-color: var(--primary);
}

/* Blog Grid */
.gx-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gx-blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.gx-blog-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}
.gx-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.75rem;
    color: var(--text-muted);
}
.gx-blog-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gx-blog-card__city {
    color: var(--primary) !important;
    font-weight: 600;
}
.gx-blog-card h2 {
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 10px;
    color: var(--text-dark);
}
.gx-blog-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.gx-blog-card__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.gx-blog-card__read {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gx-blog-card:hover .gx-blog-card__read { gap: 8px; }
.gx-blog-card__read i { font-size: 0.7rem; transition: transform 0.2s; }
.gx-blog-card:hover .gx-blog-card__read i { transform: translateX(3px); }
.gx-blog-card__views {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Pagination */
.gx-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.gx-pagination__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
    text-decoration: none;
    transition: all 0.2s;
}
.gx-pagination__btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-50);
}
.gx-pagination__btn--active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .gx-blog-grid { grid-template-columns: 1fr; }
    .gx-blog-filters { flex-direction: column; }
    .gx-blog-filters__search { width: 100%; }
    .gx-blog-filters__select { width: 100%; }
}

/* ================================================================
   STICKY CONTACT BUTTONS (all pages)
   ================================================================ */
.gx-sticky-contact {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.gx-sticky-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    color: #fff;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}
.gx-sticky-btn i { font-size: 1.2rem; }
.gx-sticky-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.gx-sticky-btn--whatsapp { background: #25d366; }
.gx-sticky-btn--whatsapp:hover { background: #1ebe57; }
.gx-sticky-btn--phone { background: var(--primary); }
.gx-sticky-btn--phone:hover { background: var(--primary-dark); }

@media (max-width: 768px) {
    .gx-sticky-contact { bottom: 16px; right: 16px; }
    .gx-sticky-btn { padding: 10px 16px; font-size: 0.82rem; }
    .gx-sticky-btn span { display: none; }
    .gx-sticky-btn { padding: 12px; border-radius: 50%; width: 48px; height: 48px; justify-content: center; }
}

/* ================================================================
   CONTACT PAGE
   ================================================================ */
.gx-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gx-contact-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 32px;
    text-align: center;
    transition: all 0.3s;
}
.gx-contact-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}
.gx-contact-card--primary {
    border-color: #25d366;
    box-shadow: 0 4px 20px rgba(37,211,102,0.15);
}
.gx-contact-card__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 16px;
}
.gx-contact-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}
.gx-contact-card > p {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 12px;
}
.gx-contact-card__detail {
    display: block;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.gx-contact-card__availability {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

/* Quick Actions */
.gx-quick-actions {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.gx-action-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.gx-action-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}
.gx-action-card__icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--ac, var(--primary));
    background: color-mix(in srgb, var(--ac, var(--primary)) 10%, white);
    margin-bottom: 14px;
}
.gx-action-card h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-dark);
}
.gx-action-card p {
    font-size: 0.82rem;
    color: var(--text-light);
    line-height: 1.5;
    flex: 1;
    margin-bottom: 12px;
}
.gx-action-card__link {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.gx-action-card:hover .gx-action-card__link { gap: 8px; }
.gx-action-card__link i { font-size: 0.7rem; transition: transform 0.2s; }
.gx-action-card:hover .gx-action-card__link i { transform: translateX(3px); }

/* Office Card */
.gx-office-card {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 40px;
    align-items: center;
}
.gx-office-card__info h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.gx-office-card__info h3 i { color: var(--primary); }
.gx-office-card__details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.gx-office-detail {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}
.gx-office-detail i {
    color: var(--primary);
    margin-top: 4px;
    font-size: 0.85rem;
    width: 16px;
}
.gx-office-detail strong { display: block; font-size: 0.9rem; color: var(--text-dark); }
.gx-office-detail span { font-size: 0.8rem; color: var(--text-muted); }
.gx-office-card__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.gx-office-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
}
.gx-office-stat strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); }
.gx-office-stat span { font-size: 0.78rem; color: var(--text-muted); }

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.gx-about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}
.gx-about-story h2 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 16px;
    line-height: 1.25;
}
.gx-about-story p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 14px;
}
.gx-about-visual .gx-browser-frame {
    box-shadow: var(--shadow-2xl);
}
.gx-about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.gx-about-feature {
    padding: 28px 24px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}
.gx-about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}
.gx-about-feature__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 14px;
}
.gx-about-feature h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}
.gx-about-feature p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .gx-contact-grid { grid-template-columns: 1fr; }
    .gx-quick-actions { grid-template-columns: 1fr 1fr; }
    .gx-office-card { grid-template-columns: 1fr; }
    .gx-about-grid { grid-template-columns: 1fr; }
    .gx-about-features { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .gx-quick-actions { grid-template-columns: 1fr; }
}

/* ================================================================
   ACCESSIBILITY FIXES - Contrast & Touch Targets
   ================================================================ */

/* Section labels - increase contrast (was too light) */
.gx-section__label {
    color: #1d4ed8 !important; /* Darker blue for WCAG AA */
}
.gx-section--alt .gx-section__label {
    color: #1e40af !important;
}

/* Badge contrast fixes */
.gx-badge--green { color: #047857 !important; background: #d1fae5 !important; }
.gx-badge--amber { color: #92400e !important; background: #fef3c7 !important; }
.gx-badge--indigo { color: #3730a3 !important; background: #e0e7ff !important; }
.gx-badge--blue { color: #1e40af !important; background: #dbeafe !important; }
.gx-badge--purple { color: #5b21b6 !important; background: #ede9fe !important; }
.gx-badge--cyan { color: #155e75 !important; background: #cffafe !important; }
.gx-badge--rose { color: #9f1239 !important; background: #ffe4e6 !important; }

/* Section link - darker for contrast */
.gx-section__link {
    color: #1d4ed8 !important;
    font-weight: 700 !important;
}

/* City blog card - darker text for contrast */
.gx-city-blog-card__location {
    color: #1d4ed8 !important;
}
.gx-city-blog-card__read {
    color: #1d4ed8 !important;
}
.gx-city-blog-card {
    border-left-color: #1d4ed8 !important;
}

/* Footer contrast - lighter text */
.gx-footer__copyright {
    color: rgba(255,255,255,0.55) !important;
}
.gx-footer {
    color: rgba(255,255,255,0.75) !important;
}
.gx-footer__desc {
    color: rgba(255,255,255,0.7) !important;
}
.gx-footer__link {
    color: rgba(255,255,255,0.7) !important;
}

/* Footer social links - larger touch targets (min 44x44px) */
.gx-footer__social-link,
.gx-footer__bottom-social a {
    min-width: 44px !important;
    min-height: 44px !important;
    width: 44px !important;
    height: 44px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 1rem !important;
}
.gx-footer__social a {
    width: 44px !important;
    height: 44px !important;
}

/* Sticky contact buttons - ensure touch target */
.gx-sticky-btn {
    min-height: 44px !important;
    min-width: 44px !important;
}
