/* ======================
   CSS Variables & Reset
   ====================== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Brand Colors - Modern Crisp SaaS Palette */
    --brand-primary: #0D9488;
    --brand-primary-dark: #0F766E;
    --brand-secondary: #0284C7;
    --brand-accent: #10B981;
    --brand-deep: #090D16;
    --brand-slate: #0F172A;

    /* Service Card Colors - Solid Refined Tone Palette */
    --service-blue: #2563EB;
    --service-pink: #DB2777;
    --service-purple: #7C3AED;
    --service-cyan: #0284C7;
    --service-teal: #0D9488;
    --service-emerald: #059669;

    /* Neutral Colors - SaaS Precision Palette */
    --slate-50: #F8FAFC;
    --slate-100: #F1F5F9;
    --slate-200: #E2E8F0;
    --slate-300: #CBD5E1;
    --slate-400: #94A3B8;
    --slate-500: #64748B;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1E293B;
    --slate-900: #0F172A;
    --slate-950: #090D16;

    /* Text Colors */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-tertiary: #64748B;

    /* Typography - Clean Modern System */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, sans-serif;

    /* Borders & Shadows */
    --border-light: 1px solid #E2E8F0;
    --border-dark: 1px solid #1E293B;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.08), 0 2px 4px -2px rgba(15, 23, 42, 0.04);
    --shadow-lg: 0 10px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);

    /* Spacing */
    --container-max-width: 1240px;
    --section-padding: 5.5rem 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    width: 100%;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    background-color: white;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: -0.011em;
    overflow-x: hidden;
    width: 100%;
    position: relative;
    padding-top: 70px;
    font-size: 16px;
    font-weight: 400;
}

@media (min-width: 768px) {
    body {
        padding-top: 75px;
        font-size: 17px;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    letter-spacing: -0.025em;
    line-height: 1.2;
    font-weight: 700;
    color: var(--text-primary);
    text-align: left;
}

h1 {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
}

h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.25;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    line-height: 1.3;
}

h4 {
    font-size: 1.25rem;
    font-weight: 600;
}

h5 {
    font-size: 1.125rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    line-height: 1.65;
    color: var(--slate-600);
    font-size: 1rem;
    font-weight: 400;
    text-align: left;
    margin: 0 0 1.25rem 0;
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }

    h2 {
        font-size: 2.5rem;
    }

    h3 {
        font-size: 1.75rem;
    }

    p {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }

    h2 {
        font-size: 2.875rem;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

section {
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    font-family: inherit;
}

/* ======================
   Utility Classes
   ====================== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
}

.hidden {
    display: none;
}

.text-accent {
    color: var(--brand-accent);
}

.text-brand {
    color: var(--brand-primary);
}

.center {
    text-align: center;
}

/* ======================
   Header & Navigation (Clean SaaS)
   ====================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: #ffffff;
    border-bottom: 1px solid var(--slate-200);
    transition: all 0.25s ease;
    width: 100%;
}

.header::before {
    display: none;
}

/* Thin Top Primary Contact Bar */
.top-header-bar {
    background-color: var(--brand-primary);
    color: #FFFFFF;
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.top-header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.top-bar-contact:hover {
    opacity: 0.85;
    color: #CCFBF1;
}

.top-bar-contact svg,
.top-bar-badge svg {
    width: 14px;
    height: 14px;
    stroke: currentColor;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    align-items: center;
}

.top-bar-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: #CCFBF1;
    font-weight: 500;
    letter-spacing: 0.01em;
}

@media (max-width: 768px) {
    .top-bar-right {
        display: none;
    }
    .top-header-container {
        justify-content: center;
    }
    .top-bar-left {
        gap: 1rem;
    }
}

.header.scrolled {
    background: #ffffff;
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.5rem;
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: transform 0.3s ease;
}

.logo-link:hover {
    transform: scale(1.02);
}

.logo {
    height: 2.75rem;
    display: block;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.08));
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--brand-deep);
    letter-spacing: -0.01em;
    line-height: 1;
    margin-top: 0.95rem;
    font-family: var(--font-display);
}

.nav-menu {
    display: none;
    align-items: center;
    gap: 0.5rem;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-700);
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    transition: all 0.25s ease;
    position: relative;
    letter-spacing: 0;
    font-family: var(--font-display);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 1.25rem;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    border-radius: 1px;
    transition: transform 0.25s ease;
}

.nav-link:hover {
    color: var(--brand-primary);
    background: rgba(20, 184, 166, 0.06);
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.dropdown {
    position: relative;
}

.dropdown-btn {
    display: flex;
    align-items: center;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--slate-600);
    padding: 0.625rem 1rem;
    border-radius: 0.625rem;
    transition: all 0.25s ease;
    font-family: var(--font-display);
}

.dropdown-btn:hover {
    color: var(--brand-primary);
    background: rgba(20, 184, 166, 0.06);
}

.dropdown-icon {
    width: 1rem;
    height: 1rem;
    margin-left: 0.375rem;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    margin-top: 0.5rem;
    width: 56rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(226, 232, 240, 0.8);
    border-radius: 1rem;
    box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.12), 0 8px 16px -4px rgba(0, 0, 0, 0.06);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 1.25rem;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item {
    display: flex;
    align-items: center;
    padding: 0.75rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: 0.625rem;
    transition: all 0.2s ease;
    font-family: var(--font-display);
}

.dropdown-item:hover {
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
    color: var(--brand-primary);
    transform: translateX(4px);
}

.cta-desktop {
    display: none;
}

.cta-desktop .btn-primary {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: 0.75rem;
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    box-shadow: 0 4px 12px -2px rgba(20, 184, 166, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-desktop .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -4px rgba(20, 184, 166, 0.45);
}

.mobile-menu-btn {
    padding: 0.5rem;
    color: var(--slate-800);
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
}

.menu-icon {
    width: 2rem;
    height: 2rem;
    stroke-width: 2.2px;
}

/* Mobile Sidebar Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: white;
    z-index: 1000;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.mobile-menu:not(.hidden) {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    background: linear-gradient(135deg, var(--brand-primary) 0%, var(--brand-primary-dark) 100%);
    flex-shrink: 0;
}

.mobile-menu-header .logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    pointer-events: none;
}

.mobile-menu-header .logo {
    height: 1.75rem;
    filter: brightness(0) invert(1);
}

.mobile-menu-header .logo-text {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    background: none;
    -webkit-text-fill-color: white;
}

.mobile-menu-close {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.mobile-menu-close:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: rotate(90deg);
}

.mobile-menu-close svg {
    width: 22px;
    height: 22px;
}

.mobile-menu-content {
    flex: 1;
    padding: 1.5rem 1.25rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Get Started Button at Top */
.mobile-menu-cta-top {
    display: none;
}

.mobile-menu-link {
    display: block;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    color: var(--slate-800);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.mobile-menu-link:hover,
.mobile-menu-link:active {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
}

.mobile-dropdown {
    margin: 0;
}

.mobile-dropdown-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 1.05rem;
    font-weight: 600;
    padding: 0.875rem 1.25rem;
    color: var(--slate-800);
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s ease;
    text-align: left;
}

.mobile-dropdown-btn:hover,
.mobile-dropdown-btn:active {
    background: rgba(20, 184, 166, 0.08);
    color: var(--brand-primary);
}

.mobile-dropdown-icon {
    width: 1.25rem;
    height: 1.25rem;
    transition: transform 0.3s ease;
    color: var(--slate-500);
    flex-shrink: 0;
}

.mobile-dropdown-btn.active .mobile-dropdown-icon {
    transform: rotate(180deg);
    color: var(--brand-primary);
}

.mobile-dropdown-menu {
    padding: 0.5rem 0 0.5rem 1rem;
    margin: 0.25rem 0 0.25rem 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    border-left: 2px solid rgba(20, 184, 166, 0.2);
}

.mobile-dropdown-menu:not(.hidden) {
    max-height: 600px;
}

.mobile-dropdown-item {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.75rem 1rem;
    color: var(--slate-600);
    border-radius: 6px;
    transition: all 0.2s ease;
    margin-bottom: 0.25rem;
}

.mobile-dropdown-item:hover,
.mobile-dropdown-item:active {
    color: var(--brand-primary);
    background: rgba(20, 184, 166, 0.06);
}

/* Remove footer from mobile menu */
.mobile-menu-footer {
    display: none;
}

.mobile-menu-cta {
    display: none;
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ======================
   Buttons
   ====================== */
.btn {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    cursor: pointer;
    max-width: 100%;
    white-space: nowrap;
    letter-spacing: 0;
    font-family: var(--font-display);
}

@media (max-width: 480px) {
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
        white-space: normal;
    }

    .btn-lg {
        padding: 0.875rem 1.5rem;
    }
}

.btn-primary {
    background-color: var(--brand-primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, .1), 0 2px 4px -2px rgba(0, 0, 0, .1);
}

.btn-primary:hover {
    background-color: var(--brand-primary-dark);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .2), 0 4px 6px -4px rgba(0, 0, 0, .1);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--brand-accent);
    color: white;
    font-weight: 700;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.btn-accent:hover {
    background-color: #22D3BB;
}

.btn-secondary {
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-weight: 600;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--slate-900);
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
}

.btn-dark:hover {
    background-color: var(--slate-800);
}

.btn-white {
    background-color: white;
    color: var(--brand-primary);
    font-weight: 700;
    padding: 1.25rem 2.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, .1), 0 8px 10px -6px rgba(0, 0, 0, .1);
}

.btn-white:hover {
    background-color: var(--slate-100);
}

.btn-accent-outline {
    background-color: rgba(45, 212, 191, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    padding: 1.25rem 2.5rem;
    backdrop-filter: blur(4px);
}

.btn-accent-outline:hover {
    background-color: rgba(45, 212, 191, 0.3);
}

.btn-lg {
    padding: 1rem 2.5rem;
}

.btn-full {
    width: 100%;
}

/* ======================
   Hero Section (Clean SaaS Dark Mode)
   ====================== */
.hero-section {
    background-color: #ffffff;
    background-image: radial-gradient(circle at 50% 0%, rgba(248, 250, 252, 1) 0%, rgba(255, 255, 255, 1) 100%);
    color: var(--slate-900);
    padding: 6.5rem 0 4rem;
    position: relative;
    overflow: hidden;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 992px) {
    .hero-grid-layout {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }
}

.hero-content {
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

.hero-badge .badge-dot {
    width: 8px;
    height: 8px;
    background-color: var(--brand-primary);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--brand-primary);
}

.hero-badge span {
    font-size: 0.8125rem;
    font-weight: 600;
    font-family: var(--font-display);
    color: #334155;
    letter-spacing: 0.02em;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
    font-family: var(--font-display);
    color: #0F172A !important;
    text-align: left;
}

.hero-title .text-accent {
    color: #0D9488 !important;
    font-weight: 800;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.85rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }
}

.hero-description {
    font-size: 1.0625rem;
    color: #475569 !important;
    margin: 0 0 2rem;
    line-height: 1.7;
    font-weight: 400;
    font-family: var(--font-sans);
    text-align: left;
    max-width: 36rem;
}

.hero-buttons {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    width: 100%;
}

.hero-buttons .btn {
    padding: 0.875rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: 0.625rem;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.btn-accent {
    background: var(--brand-primary);
    color: #FFFFFF;
    border: 1px solid var(--brand-primary);
}

.btn-accent:hover {
    background: var(--brand-primary-dark);
    border-color: var(--brand-primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    background: #F8FAFC;
    border: 1px solid #CBD5E1;
    color: #0F172A;
}

.btn-secondary:hover {
    background: #E2E8F0;
    border-color: #94A3B8;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: #059669;
    color: #FFFFFF;
    border: 1px solid #059669;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-whatsapp:hover {
    background: #047857;
    border-color: #047857;
    transform: translateY(-2px);
}

/* SaaS Hero Visual Mockup Frame */
.hero-visual-wrapper {
    position: relative;
}

.saas-window-frame {
    background: #0F172A;
    border: 1px solid #1E293B;
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.saas-window-header {
    background: #090D16;
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    border-bottom: 1px solid #1E293B;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    display: inline-block;
}

.dot.red { background-color: #EF4444; }
.dot.yellow { background-color: #F59E0B; }
.dot.green { background-color: #10B981; }

.floating-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* ======================
   SaaS Metrics Counter Bar
   ====================== */
.saas-metrics-bar {
    background-color: var(--brand-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding: 2.5rem 0;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    text-align: center;
}

@media (min-width: 768px) {
    .metrics-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.metric-number {
    font-size: 2rem;
    font-weight: 800;
    color: #FFFFFF;
    font-family: var(--font-display);
    letter-spacing: -0.03em;
}

.metric-label {
    font-size: 0.875rem;
    color: #CCFBF1;
    font-weight: 500;
}

/* ======================
   About Section
   ====================== */
.about-section {
    padding: var(--section-padding);
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6rem;
    align-items: center;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
    line-height: 1.2;
    text-align: center;
}

.about-content .section-title {
    text-align: center;
    font-size: 2rem;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.8;
    font-weight: 400;
    font-family: var(--font-sans);
    text-align: justify;
    text-justify: inter-word;
}

.about-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    text-align: justify;
    text-justify: inter-word;
    margin: 0;
}

.about-visual {
    position: relative;
    height: auto;
    min-height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-visual::before {
    content: '';
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(20, 184, 166, 0.08) 0%, rgba(20, 184, 166, 0) 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-image {
    width: 100%;
    max-width: 700px;
    height: auto;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 20px 40px rgba(20, 184, 166, 0.15));
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
    display: block;
}

.about-image:hover {
    filter: drop-shadow(0 30px 50px rgba(20, 184, 166, 0.25));
}

/* ======================
   Services Section
   ====================== */
.services-section {
    padding: var(--section-padding);
    background-color: var(--slate-50);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-description {
    color: var(--text-secondary);
    font-size: 1.0625rem;
    max-width: 42rem;
    margin: 0 auto;
    line-height: 1.8;
    font-weight: 400;
    font-family: var(--font-sans);
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
    width: 100%;
    max-width: 100%;
}

@media (max-width: 768px) {
    .services-grid {
        gap: 1.25rem;
    }
}

.service-card {
    padding: 2rem;
    border-radius: 1.5rem;
    background-color: white;
    border: 2px solid var(--slate-200);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    color: var(--text-primary);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    display: block;
    text-decoration: none;
    cursor: pointer;
}

@media (max-width: 768px) {
    .service-card {
        padding: 1.5rem;
    }
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 184, 166, 0.03) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.service-card:hover::before {
    opacity: 1;
}

.service-blue {
    background-color: var(--service-blue);
}

.service-pink {
    background-color: var(--service-pink);
}

.service-purple {
    background-color: var(--service-purple);
}

.service-cyan {
    background-color: var(--service-cyan);
}

.service-green {
    background-color: var(--service-teal);
}

.service-orange {
    background-color: var(--service-emerald);
}

.service-icon {
    width: 3.5rem;
    height: 3.5rem;
    margin-bottom: 1.5rem;
    background-color: var(--slate-50);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    height: 2rem;
    width: 2rem;
    color: var(--brand-primary);
}

.service-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
    font-family: var(--font-display);
    color: var(--text-primary);
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
    line-height: 1.75;
    font-weight: 400;
    font-family: var(--font-sans);
    text-align: justify;
    text-justify: inter-word;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    font-size: 0.875rem;
    transition: transform 0.3s;
    font-family: var(--font-display);
    color: var(--brand-primary);
}

.service-link:hover {
    transform: translateX(0.25rem);
}

.service-link span {
    margin-left: 0.5rem;
}

.services-cta {
    text-align: center;
}

/* ======================
   Testimonials Section
   ====================== */
.testimonials-section {
    padding: var(--section-padding);
    background-color: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 72rem;
    margin: 0 auto;
}

.testimonial-card {
    background: linear-gradient(to bottom right, var(--slate-50), white);
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--slate-100);
    transition: box-shadow 0.3s;
}

.testimonial-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, .2);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin-right: 1rem;
}

.avatar-green {
    background: linear-gradient(to bottom right, var(--brand-primary), var(--brand-primary-dark));
}

.avatar-purple {
    background: linear-gradient(to bottom right, #a855f7, #7e22ce);
}

.avatar-blue {
    background: linear-gradient(to bottom right, #3b82f6, #1d4ed8);
}

.testimonial-name {
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    font-family: var(--font-sans);
}

.testimonial-rating {
    display: flex;
    margin-bottom: 1rem;
}

.star {
    color: #facc15;
    font-size: 1.25rem;
}

.testimonial-text {
    color: var(--text-secondary);
    line-height: 1.8;
    font-family: var(--font-sans);
    text-align: justify;
    text-justify: inter-word;
}

/* ======================
   CTA Section
   ====================== */
.cta-section {
    width: 100%;
    background-color: var(--brand-primary);
    color: white;
    padding: 3.5rem 0;
    position: relative;
}

.cta-bg-shapes {
    position: absolute;
    inset: 0;
    opacity: 0.1;
}

.shape {
    position: absolute;
    border-radius: 50%;
    background-color: white;
    filter: blur(64px);
}

.shape-1 {
    top: 0;
    left: 0;
    width: 24rem;
    height: 24rem;
}

.shape-2 {
    bottom: 0;
    right: 0;
    width: 24rem;
    height: 24rem;
    background-color: var(--brand-accent);
}

.cta-content {
    width: 100%;
    position: relative;
    z-index: 10;
    text-align: center;
}

.cta-title {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
    letter-spacing: -0.02em;
    font-family: var(--font-display);
    text-align: center;
}

.cta-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 42rem;
    margin: 0 auto 2.5rem;
    line-height: 1.8;
    font-weight: 400;
    font-family: var(--font-sans);
    text-align: center;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 56rem;
    margin: 0 auto;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--brand-accent);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-family: var(--font-sans);
}

/* ======================
   Footer - Clean Professional Design
   ====================== */
.footer {
    background: #0f172a;
    color: #e2e8f0;
    position: relative;
}

.footer-main {
    padding: 4rem 0 2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-main .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

/* Brand Column */
.footer-col-brand {
    max-width: 100%;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1.25rem;
    transition: opacity 0.3s ease;
}

.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo img {
    height: 2.5rem;
    width: auto;
}

.footer-tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #94a3b8;
    margin-bottom: 1.5rem;
    max-width: 320px;
    font-family: var(--font-sans);
    text-align: justify;
    text-justify: inter-word;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.5rem;
    color: #cbd5e1;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--brand-primary);
    color: white;
    transform: translateY(-2px);
}

.social-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

/* Footer Columns */
.footer-col {
    min-width: 0;
}

.footer-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1.25rem;
    min-height: 1.25rem;
    display: block;
    font-family: var(--font-display);
}

/* Footer Lists */
.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-list a {
    font-size: 0.9375rem;
    color: #94a3b8;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-list a:hover {
    color: var(--brand-mint);
    transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.5;
}

.footer-contact-list svg {
    width: 1.25rem;
    height: 1.25rem;
    flex-shrink: 0;
    color: var(--brand-green);
    margin-top: 0.125rem;
}

.footer-contact-list a {
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-contact-list a:hover {
    color: var(--brand-mint);
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.2);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #64748b;
}

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-legal-links a {
    font-size: 0.875rem;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.footer-legal-links a:hover {
    color: var(--brand-mint);
}

/* ======================
   Responsive Design
   ====================== */

/* Tablet */
@media (min-width: 768px) {
    .hero-section {
        padding: 3rem 0 4rem;
        min-height: 40vh;
        padding-top: 5rem;
    }

    .hero-title {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.0625rem;
        margin-bottom: 2.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        gap: 1.25rem;
    }

    .hero-buttons .btn {
        min-width: 180px;
        padding: 1rem 2rem;
        font-size: 0.9375rem;
    }

    .section-title {
        font-size: 2.75rem;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.75rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
        gap: 2rem;
    }

    .footer-col-brand {
        grid-column: span 1;
    }

    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .cta-title {
        font-size: 2.75rem;
    }

    .cta-description {
        font-size: 1.1875rem;
    }

    .cta-buttons {
        flex-direction: row;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .nav-menu {
        display: flex;
    }

    .cta-desktop {
        display: block;
    }

    .mobile-menu-btn {
        display: none;
    }

    .hero-section {
        padding: 3rem 0 4rem;
        min-height: 45vh;
        padding-top: 6rem;
    }

    .hero-title {
        font-size: 4.25rem;
        margin-bottom: 1.75rem;
    }

    .hero-description {
        font-size: 1.125rem;
        margin-bottom: 3rem;
    }

    .hero-badge {
        padding: 0.5rem 1.25rem;
        margin-bottom: 2rem;
    }

    .hero-badge span {
        font-size: 0.8125rem;
    }

    .hero-buttons .btn {
        min-width: 190px;
        padding: 1.125rem 2.25rem;
        font-size: 1rem;
    }

    .about-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 4rem;
    }

    .about-content .section-title {
        font-size: 2.75rem;
        text-align: left;
    }

    .about-visual {
        height: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-content {
        grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
        gap: 3rem;
    }

    .cta-title {
        font-size: 3.5rem;
    }
}

/* Mobile Hero Optimization */
@media (max-width: 768px) {
    .hero-section {
        background-attachment: scroll;
        padding: 2rem 0 3rem;
        min-height: 50vh;
        padding-top: 5rem;
        display: flex;
        align-items: center;
    }

    .hero-badge {
        padding: 0.5rem 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-badge span {
        font-size: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1.25rem;
        line-height: 1.2;
    }

    .hero-description {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        line-height: 1.65;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 100%;
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
    }

    .service-card {
        padding: 1.75rem;
    }

    .about-grid {
        gap: 5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem 0;
    }

    .footer-main {
        padding: 3rem 0 1.5rem;
    }
}

/* Small Mobile Devices */
@media (max-width: 480px) {
    .hero-section {
        padding: 2rem 0 3rem;
        padding-top: 4.5rem;
        min-height: 45vh;
    }

    .hero-badge {
        padding: 0.4rem 0.875rem;
        margin-bottom: 1.25rem;
    }

    .hero-badge span {
        font-size: 0.6875rem;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.75rem;
    }

    .hero-buttons .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .container {
        padding: 0 1rem;
    }
}

/* Large Desktop */
@media (min-width: 1280px) {
    .section-title {
        font-size: 3.25rem;
    }

    .hero-title {
        font-size: 4.5rem;
    }
}

/* ======================
   Hero Section 2-Column Updates
   ====================== */
.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

@media (min-width: 992px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

.hero-content.left-align {
    text-align: left;
    margin: 0;
    max-width: 100%;
}

.hero-content.left-align .hero-description {
    margin-left: 0;
    margin-right: auto;
}

.hero-buttons.left-align-buttons {
    justify-content: flex-start;
}

.hero-image {
    position: relative;
    z-index: 10;
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 1rem;
}

.floating-img {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}


/* ======================
   Hero Grid Overrides (Fix Alignment & Size)
   ====================== */
.hero-grid-layout .hero-title {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
    text-align: left !important;
    margin-bottom: 1.25rem !important;
}

@media (min-width: 768px) {
    .hero-grid-layout .hero-title {
        font-size: 2.85rem !important;
    }
}

@media (min-width: 1024px) {
    .hero-grid-layout .hero-title {
        font-size: 3.5rem !important; 
    }
}

.hero-grid-layout .hero-description {
    text-align: left !important;
    font-size: 1.25rem !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

.hero-grid-layout .hero-content {
    text-align: left !important;
    align-items: flex-start !important;
    display: flex;
    flex-direction: column;
}

.hero-grid-layout .hero-buttons {
    justify-content: flex-start !important;
    width: 100%;
}

@media (max-width: 768px) {
    .hero-grid-layout .hero-buttons {
        align-items: flex-start !important;
    }
}

.hero-grid-layout .hero-image img {
    max-width: 100%;
    max-height: 500px;
    object-fit: contain;
    margin: 0 auto;
    display: block;
}


/* ======================
   Hero Full Width & Alignment Fixes
   ====================== */
.hero-full-width {
    width: 100%;
    max-width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    min-height: 70vh;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

@media (min-width: 992px) {
    .hero-grid-layout {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}

.hero-content.left-align {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Vertically center the text within its column */
    align-items: flex-start !important;
    text-align: left !important;
    height: 100%;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.hero-image img {
    width: 100%;
    max-width: 600px; /* Let it grow up to 600px */
    height: auto;
    object-fit: contain;
}

/* ======================
   Premium Testimonials Overrides
   ====================== */
.testimonials-section {
    background-color: var(--slate-50);
    padding: 6rem 0;
}

.testimonial-card {
    background: white;
    border: 1px solid var(--slate-100);
    border-radius: 1.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.01);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    border-color: rgba(20, 184, 166, 0.3);
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -1rem;
    right: 1.5rem;
    font-size: 10rem;
    color: rgba(20, 184, 166, 0.04);
    font-family: serif;
    line-height: 1;
    z-index: -1;
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: white;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.testimonial-info h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.125rem;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-role {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-rating {
    margin-bottom: 1.25rem;
    color: #F59E0B; /* amber-500 */
    font-size: 1.125rem;
    letter-spacing: 0.1em;
}

.testimonial-text {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
    font-style: italic;
    margin: 0;
}

/* ======================
   Regional SEO Hub & Mobile Responsiveness
   ====================== */
.seo-hub-section {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.95) 0%, rgba(11, 17, 32, 0.98) 100%);
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 5;
}

.seo-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.seo-hub-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(12px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.seo-hub-card:hover {
    transform: translateY(-4px);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 12px 30px -10px rgba(16, 185, 129, 0.15);
}

.seo-hub-card h3 {
    color: #38bdf8;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.seo-hub-card p {
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 1.25rem;
    color: #cbd5e1;
}

.seo-hub-link {
    color: #10b981;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s ease, color 0.2s ease;
}

.seo-hub-link:hover {
    gap: 0.6rem;
    color: #34d399;
}

.seo-tag-matrix {
    background: rgba(15, 23, 42, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 1rem;
    padding: 2rem;
}

.seo-tag-matrix h4 {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.seo-tag-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.seo-tag-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.4rem 0.85rem;
    border-radius: 8px;
    color: #cbd5e1;
    font-size: 0.85rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.seo-tag-chip:hover {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    color: #34d399;
}

/* Mobile Responsive Adjustments */
@media (max-width: 768px) {
    .seo-hub-section {
        padding: 3.5rem 0;
    }
    
    .seo-hub-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .seo-hub-card {
        padding: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        gap: 0.875rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .floating-contact-bar {
        bottom: 15px;
        right: 15px;
        gap: 8px;
    }

    .floating-action-btn span {
        display: none; /* Icon-only on mobile screens for sleek look */
    }

    .floating-action-btn {
        padding: 12px;
        border-radius: 50%;
        width: 52px;
        height: 52px;
        justify-content: center;
    }
}

/* ======================
   Floating Call & WhatsApp Widgets + CTA Buttons
   ====================== */
.floating-contact-bar {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
    pointer-events: auto;
}

.floating-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.925rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease;
    cursor: pointer;
}

.floating-action-btn svg {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    fill: currentColor;
}

.floating-action-btn.whatsapp-float {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-action-btn.call-float {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.floating-action-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.45);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%) !important;
    color: #ffffff !important;
    border: none !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #22c35e 0%, #0e7467 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4) !important;
}

/* ====================================================
   Hide Scrollbar globally but keep scrolling active
   ==================================================== */
body::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}
body {
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
}

.dropdown-category {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-category-title {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--slate-400);
    letter-spacing: 0.05em;
    padding: 0.5rem 1rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-sans);
}
