@import url('https://fonts.googleapis.com/css2?family=LXGW+WenKai+Mono+TC&display=swap');

:root {
    /* --- GLOBAL BRAND PALETTE (BLENDED SYSTEM) --- */

    /* Primary Brand (Warm Energy) */
    --primary-orange: #FD802E;
    /* Main Accent */
    --charcoal-blue: #233D4C;
    /* Secondary Accent */
    --premium-dark: #312B1E;
    /* Dark Text / Footer */
    --soft-cream: #E2CEAE;
    /* Warm Support */
    --warm-neutral: #7C6B51;
    /* Muted Text */

    /* Secondary Support (Teal/Cool Elegance) */
    --sky-blue: #90C2E7;
    /* Light blue blend */
    --deep-teal: #22819A;
    /* Teal accents */
    --cool-grey: #CDD4DD;
    /* Neutral cool */
    --soft-white: #FEF7F8;
    /* Base Background */

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #233D4C 0%, #FD802E 100%);
    /* Dark Blue -> Orange */
    --gradient-teal: linear-gradient(135deg, #90C2E7 0%, #22819A 100%);
    /* Sky -> Teal */
    --gradient-dark: linear-gradient(135deg, #233D4C 0%, #312B1E 100%);
    /* Footer */

    /* Global Glow (Multi-layer) */
    --bg-global:
        radial-gradient(circle at top left, rgba(253, 128, 46, 0.14), transparent 40%),
        radial-gradient(circle at top right, rgba(144, 194, 231, 0.16), transparent 40%),
        radial-gradient(circle at bottom left, rgba(35, 61, 76, 0.10), transparent 40%),
        radial-gradient(circle at bottom right, rgba(34, 129, 154, 0.14), transparent 40%),
        var(--soft-white);
    /* Base */

    /* Typography Colors */
    --text-heading: #111111;
    --text-body: #333333;
    --text-muted: var(--warm-neutral);

    /* Shadows */
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(0, 0, 0, 0.08);

    --font-heading: 'Inter', sans-serif;
    --font-body: 'Inter', sans-serif;

    --navbar-height: 80px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    background: var(--bg-global);
    background-attachment: fixed;
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.content-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    /* Premium feel */
    margin-bottom: 40px;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-body);
}

.text-gradient {
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 24px);
        left: 0;
        right: 0;
        margin: 12px auto;
        top: 0;
        /* Margin takes care of spacing */
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 14px 16px;
        height: auto;
        /* Allow content to fit */
    }

    /* Adjust overlay to account for floating navbar spacing */
    /* Navbar effective visual height approx 80-90px. top margin 12px. */
    /* 12px (top) + ~88px (height) = ~100px bottom. */
    .mobile-menu-overlay {
        top: 105px;
        height: calc(100vh - 105px);
        background: rgba(0, 0, 0, 0.6);
        /* Darker blur */
        backdrop-filter: blur(12px);
    }

    .mobile-menu-container {
        top: 105px;
        height: calc(100vh - 105px);
    }
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    height: var(--navbar-height);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 999px;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.navbar.scrolled {
    top: 10px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.95);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1;
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.nav-links li {
    list-style: none;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-body);
    font-size: 0.95rem;
    position: relative;
    padding: 8px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--charcoal-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 24px;
}

.nav-socials {
    display: flex;
    gap: 10px;
}

.nav-cta {
    padding: 12px 24px;
    font-size: 0.9rem;
}

/* Mobile Menu - Hidden on Desktop */
.mobile-menu-overlay,
.mobile-menu-container {
    display: none;
}

/* Hamburger - Hidden on Desktop */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    padding: 8px;
}

.hamburger svg {
    display: block;
    width: 28px;
    height: 28px;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 0 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .nav-cta {
        display: none;
        /* Hide CTA on tablet to save space */
    }
}

@media (max-width: 768px) {
    .navbar {
        width: calc(100% - 24px);
        left: 0;
        right: 0;
        margin: 12px auto;
        top: 0;
        border-radius: 999px;
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.6);
        padding: 14px 16px;
        height: auto;
    }

    .logo img {
        height: 32px;
    }

    .logo-text {
        font-size: 1.1rem;
    }

    .logo-tagline {
        display: none;
    }

    .nav-links,
    .nav-right {
        display: none;
    }

    /* Show Hamburger on Mobile */
    .hamburger {
        display: block;
    }

    .mobile-menu-overlay {
        top: 105px;
        height: calc(100vh - 105px);
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(12px);
    }

    .mobile-menu-container {
        top: 105px;
        height: calc(100vh - 105px);
    }
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-pill);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn:active {
    transform: translateY(1px);
}

/* Primary CTA: Dark Blue -> Orange Gradient */
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 15px rgba(253, 128, 46, 0.3);
    /* Orange shadow */
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 128, 46, 0.5);
    opacity: 0.95;
    color: white;
}

/* Secondary CTA: White + Teal Accent */
.btn-secondary {
    background: white;
    border: 2px solid var(--deep-teal);
    /* Teal Border */
    color: var(--deep-teal);
    box-shadow: 0 4px 10px rgba(34, 129, 154, 0.1);
}

.btn-secondary:hover {
    background: white;
    box-shadow: 0 0 15px rgba(34, 129, 154, 0.3);
    /* Teal Glow */
    transform: translateY(-2px);
    color: var(--charcoal-blue);
    border-color: var(--charcoal-blue);
}


.btn-lg {
    padding: 16px 32px;
    font-size: 1.125rem;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navbar - Floating Style like Welix */
/* --- NAVBAR (Global Pill) --- */
/* --- NAVBAR (Premium White Glass Capsule) --- */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1280px;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 999px;
    padding: 12px 32px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 10010;
    /* Highest priority */
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    top: 16px;
    /* Slight movement on scroll */
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 10002;
    /* Ensure above mobile menu */
}

/* Logo Block */
/* Logo Block */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    z-index: 2;
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    line-height: 1.1;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--text-heading);
    /* Dark text for white navbar */
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-size: 0.75rem;
    color: var(--text-muted);
    /* Dark grey text */
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Nav Links */
/* Centered Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 32px;
    margin: 0;
    padding: 0;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-links li {
    display: inline-block;
}

.nav-links a {
    text-decoration: none;
    font-weight: 500;
    color: var(--text-body);
    /* Dark text */
    font-size: 0.95rem;
    position: relative;
    transition: all 0.2s ease;
    padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary-blue);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-socials {
    display: flex;
    gap: 8px;
    align-items: center;
}

/* Social Icons (Light Mode Style) */
.social-icon-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    /* Light grey bg */
    color: var(--text-muted);
    /* Dark grey icon */
    transition: all 0.2s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.social-icon-nav:hover {
    background: white;
    color: var(--primary-orange);
    transform: translateY(-2px);
    border-color: rgba(255, 122, 26, 0.3);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    /* Add soft shadow on hover */
}

.nav-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Mobile Responsive */
.hamburger {
    display: none;
    cursor: pointer;
    padding: 8px;
    color: var(--text-dark);
    /* Icon styling handled by SVG attributes/CSS if needed */
}

@media (max-width: 1024px) {

    .nav-links,
    .nav-right {
        display: none;
    }

    .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        width: 44px;
        height: 44px;
        background: rgba(0, 0, 0, 0.05);
        /* Light grey bg */
        border-radius: 50%;
        color: var(--text-heading);
        /* Dark icon */
        z-index: 1002;
    }

    .hamburger svg {
        stroke: var(--text-heading);
        /* Force dark stroke */
    }

    .navbar {
        width: calc(100% - 24px);
        /* Floating width */
        top: 14px;
        left: 50%;
        transform: translateX(-50%);
        max-width: none;
        border-radius: 999px;
        /* Capsule shape */
        padding: 14px 20px;
        /* Slight increase for premium feel */
        min-height: 72px;
        /* Spacious premium feel */
        height: auto;
        display: flex;
        justify-content: space-between;
        align-items: center;
        z-index: 9999;
        /* Premium White Glass Theme */
        background: rgba(255, 255, 255, 0.90);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0px 12px 40px rgba(0, 0, 0, 0.08);
        /* Soft premium shadow */
        overflow: hidden;
        /* Ensure rounded corners clip content */
    }

    .navbar.menu-open {
        border-radius: 0 0 24px 24px;
    }

    .logo-text-group {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        margin-left: 0;
        /* Removed margin, controlled by gap in .logo */
    }

    .logo-text {
        font-size: 18px;
        /* Prominent brand name */
        line-height: 1.15;
        font-weight: 800;
        /* Extra bold */
        color: var(--text-heading);
        margin-bottom: 4px;
        /* Increased spacing */
    }

    .logo-tagline {
        display: block;
        font-size: 10px;
        /* Reduced for full visibility */
        color: var(--text-muted);
        opacity: 0.8;
        letter-spacing: 0.1px;
        font-weight: 500;
        line-height: 1.1;

        /* Single Line Logic */
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 250px;
        /* Increased to allow full text */
    }

    .logo {
        min-width: auto;
        display: flex;
        align-items: center;
        flex: 1;
        gap: 8px;
        /* Tighter gap */
        max-width: 85%;
        /* Ensure space for hamburger */
    }
}

@media (max-width: 480px) {
    .navbar {
        padding: 10px 16px;
    }

    .logo-tagline {
        font-size: 11px;
        /* Ensure visibility on small screens */
    }
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10001;
    /* Just below navbar */
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Drawer */
.mobile-menu-container {
    position: fixed;
    top: 92px;
    /* Fixed spacing below navbar capsule */
    left: 50%;
    transform: translate(-50%, -20px);
    width: 92%;
    max-width: 420px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border-radius: 28px;
    z-index: 10002;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid rgba(255, 255, 255, 0.6);
}

.mobile-menu-container.active {
    transform: translate(-50%, 0);
    opacity: 1;
    visibility: visible;
}

/* Header inside Menu */
.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-heading);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    opacity: 0.6;
}

.mobile-menu-close {
    background: rgba(0, 0, 0, 0.05);
    border: none;
    cursor: pointer;
    color: var(--text-heading);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Nav Interaction */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 100%;
    margin-bottom: 24px;
}

.mobile-nav-links a {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 12px 16px;
    border-radius: 12px;
    color: var(--text-heading);
    transition: all 0.2s ease;
    background: transparent;
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
    background: rgba(253, 128, 46, 0.08);
    /* Soft Brand Orange */
    color: var(--primary-orange);
    transform: translateX(5px);
}

/* Bottom Section */
.mobile-menu-bottom {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* WhatsApp CTA */
.whatsapp-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 16px;
    background: var(--gradient-primary);
    /* HashG Brand Gradient */
    color: white !important;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 8px 20px rgba(253, 128, 46, 0.25);
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(253, 128, 46, 0.4);
}

.whatsapp-btn i {
    font-size: 1.2rem;
}

/* Mobile Socials */
.mobile-socials {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.mobile-social-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #f8fafc;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-social-icon:hover {
    background: white;
    color: var(--primary-orange);
    border-color: var(--primary-orange);
    transform: translateY(-3px);
}

.social-wrapper {
    position: relative;
    display: inline-block;
}

.mobile-social-icon.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.badge-coming-soon {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.6rem;
    background: var(--primary-orange);
    color: white;
    padding: 2px 6px;
    border-radius: 4px;
    white-space: nowrap;
    font-weight: 800;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

/* End of Mobile Menu Section */


/* Hero Section */


.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 8px 16px;
    background-color: #f0f7ff;
    /* Very light blue */
    color: var(--primary-blue);
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.8rem;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.03em;
}

.sub-headline {
    font-size: 1.15rem;
    margin-bottom: 40px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
}

/* Hero Image & Floating Badges */
.hero-image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 32px;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.1);
}

.img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 32px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Internal Mockup Graphics */
.mock-chart-container {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    height: 150px;
    opacity: 0.8;
}

.mock-bar {
    width: 30px;
    background: var(--gradient-brand);
    border-radius: 4px 4px 0 0;
}

.b1 {
    height: 40%;
    opacity: 0.4;
}

.b2 {
    height: 60%;
    opacity: 0.6;
}

.b3 {
    height: 50%;
    opacity: 0.5;
}

.b4 {
    height: 90%;
}

.mock-line-trend {
    position: absolute;
    width: 200px;
    height: 100px;
    border-top: 3px solid var(--primary-orange);
    border-radius: 50%;
    top: 40%;
    left: 20%;
    transform: rotate(-10deg);
}

/* Floating Stat Badges */
.stat-badge {
    position: absolute;
    background: white;
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    min-width: 180px;
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    100% {
        transform: translateY(0px);
    }
}

.badge-top-right {
    top: 40px;
    right: -30px;
}

.badge-bottom-left {
    bottom: 60px;
    left: -40px;
    animation-delay: 2s;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: rgba(253, 128, 46, 0.1);
    /* Soft Orange */
    color: var(--primary-orange);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(253, 128, 46, 0.15);
}

.badge-icon svg {
    width: 24px;
    height: 24px;
    stroke-width: 2.5;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 600;
}

.badge-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
}

.mock-node {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    position: absolute;
    z-index: 2;
}

.n1 {
    top: 10%;
    left: 10%;
    border: 2px solid var(--primary-blue);
}

.n2 {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary-orange);
}

.n3 {
    bottom: 20%;
    right: 10%;
    border: 2px solid var(--secondary-blue);
}

.mock-line {
    position: absolute;
    background: #ddd;
    z-index: 1;
}

.l1 {
    top: 30%;
    left: 30%;
    width: 100px;
    height: 2px;
    transform: rotate(45deg);
}

.l2 {
    bottom: 40%;
    right: 30%;
    width: 80px;
    height: 2px;
    transform: rotate(-30deg);
}

.mock-chart {
    position: absolute;
    bottom: 0;
    left: 20%;
    width: 60%;
    height: 40px;
    background: linear-gradient(to top, rgba(0, 86, 179, 0.1), transparent);
    border-top: 2px solid var(--primary-blue);
}

/* Trust Strip */
.trust-strip {
    background-color: var(--bg-off-white);
    padding: 60px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    flex-wrap: wrap;
    gap: 24px;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--primary-blue);
}

.trust-item p {
    font-size: 0.9rem;
    margin: 0;
    color: var(--text-muted);
}

.trust-divider {
    width: 1px;
    height: 60px;
    background-color: #ddd;
    display: none;
}

@media (min-width: 768px) {
    .trust-divider {
        display: block;
    }
}

@media (max-width: 768px) {
    .trust-grid {
        flex-direction: column;
        gap: 40px;
        padding: 0 20px;
    }

    .trust-item {
        width: 100%;
    }

    .trust-item h3 {
        font-size: 1.75rem;
    }
}

/* Sections General */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

/* Growth Pillars */
/* Growth Pillars */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.pillar-card {
    background: white;
    padding: 32px 24px;
    /* Balanced padding */
    border-radius: 24px;
    /* 22px-26px range */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid #eaeaea;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    /* Icon top-left */
    text-align: left;
}

.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: transparent;
}

.pillar-icon {
    width: 40px;
    height: 40px;
    color: var(--primary-blue);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon svg {
    width: 100%;
    height: 100%;
}

.pillar-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--text-dark);
}

.pillar-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 1024px) {
    .pillars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .pillars-grid {
        grid-template-columns: 1fr;
    }

    .pillar-card {
        padding: 24px;
    }
}

/* Process Section */
.process-section {
    background-color: transparent;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    position: relative;
}

.step-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    z-index: 1;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 24px;
    box-shadow: var(--shadow-md);
}

.step-card h3 {
    margin-bottom: 12px;
}

/* Proof / Impact */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.impact-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.card-header {
    background-color: var(--bg-off-white);
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}

.card-header h4 {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.card-body {
    padding: 24px;
}

.card-body h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    margin-top: 16px;
}

.card-body h5:first-child {
    margin-top: 0;
}

.result {
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-brand);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 8px;
}

.result-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    font-weight: 500;
}

/* Final CTA (Global) & Framework CTA */
.final-cta,
.fw-final-cta {
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    /* Warm Gradient: Dark Charcoal -> Orange Accent */
    background: linear-gradient(135deg, var(--premium-dark) 0%, #4a2c18 100%);
    position: relative;
    z-index: 1;
}

.final-cta::before,
.fw-final-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* Reduced overlay for visibility */
    background: radial-gradient(circle at center, rgba(253, 128, 46, 0.08) 0%, transparent 80%);
    pointer-events: none;
    z-index: -1;
}

/* Framework Specific CTA Overrides for Text Visibility */
.fw-final-cta h2,
.final-cta h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #FFFFFF;
    /* Pure White */
    font-weight: 800;
    opacity: 1;
    text-shadow: 0px 4px 18px rgba(0, 0, 0, 0.35);
    /* Text Shadow Fix */
    line-height: 1.1;
    position: relative;
    z-index: 2;
}

.fw-final-cta p,
.final-cta p {
    font-size: 1.125rem;
    /* 18px */
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.85);
    /* High Visibility */
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.fw-cta-btns {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    /* Specific gap */
    position: relative;
    z-index: 2;
}

/* Secondary Button Custom Style for CTA */
.fw-final-cta .btn-secondary,
.final-cta .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
    background: transparent;
    transition: all 0.3s ease;
}

.fw-final-cta .btn-secondary:hover,
.final-cta .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #FFFFFF;
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fw-cta-btns {
        flex-direction: column;
        gap: 16px;
        width: 100%;
        padding: 0 24px;
    }

    .fw-cta-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .fw-final-cta h2 {
        font-size: 2.25rem;
    }
}

.cta-content {
    max-width: 900px;
    /* Slightly wider */
    margin: 0 auto;
    position: relative;
    z-index: 1;
    /* White Card Design */
    background: #FFFFFF;
    border-radius: 24px;
    padding: 80px 40px;
    /* Generous padding */
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
    /* Deep shadow */
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* Subtle border */
}

/* Responsive CTA Card */
@media (max-width: 768px) {
    .cta-content {
        width: 92%;
        padding: 60px 24px;
    }
}

.cta-content h2 {
    font-size: 3rem;
    margin-bottom: 24px;
    color: #0B0F1A;
    /* Pure Dark */
    font-weight: 800;
    line-height: 1.1;
}

.cta-content p {
    font-size: 1.35rem;
    /* Larger for readability */
    margin-bottom: 48px;
    color: #2B2B2B;
    /* High contrast grey */
    opacity: 1;
    /* No fading */
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn-primary {
    font-size: 1.1rem;
    padding: 18px 40px;
    box-shadow: 0 10px 20px rgba(253, 128, 46, 0.25);
    font-weight: 700;
    color: #FFFFFF;
}

/* --- FOOTER (Global) --- */
.footer {
    background: var(--gradient-dark);
    color: white;
    padding: 80px 0 40px;
    margin-top: auto;
    position: relative;
}

/* Cool Teal Glow Transition for Footer */
.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--deep-teal), transparent);
    box-shadow: 0 0 20px 2px rgba(34, 129, 154, 0.3);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo img {
    height: 40px;
    filter: brightness(0) invert(1);
    /* White logo for dark footer */
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 24px;
    font-weight: 600;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    transition: all 0.2s;
}

.footer-col ul li a:hover {
    color: var(--primary-orange);
    padding-left: 4px;
    /* Slide effect */
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px);
}

.footer-copy {
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.9rem;
    padding-top: 20px;
}

/* Mobile Responsive */
/* Brand Variables Update */
/* Brand Variables Update - Refined */
:root {
    /* Re-declaring for consistency if needed, or we can just remove this block if it was redundant. 
       But looking at the file history, it seemed to be a redefine for "Mobile Responsive" section? 
       No, it was just a redefine in general. Let's make sure it matches our new theme. */

    --primary-orange: #FD802E;
    --charcoal-blue: #233D4C;
    --cream-beige: #E2CEAE;
    --dark-charcoal: #312B1E;

    --primary-blue: var(--charcoal-blue);
    /* Fallback */

    --bg-light: #ffffff;
    --bg-off-white: #fcfbf9;

    --text-dark: #312B1E;
    --text-muted: #5d5648;
    --border-color: #e5e5e5;

    --gradient-brand: linear-gradient(135deg, var(--primary-orange) 0%, #ff9e5e 100%);

    --shadow-sm: 0 4px 6px -1px rgba(49, 43, 30, 0.05), 0 2px 4px -1px rgba(49, 43, 30, 0.03);
    --shadow-md: 0 10px 15px -3px rgba(49, 43, 30, 0.08), 0 4px 6px -2px rgba(49, 43, 30, 0.04);
    --shadow-lg: 0 20px 25px -5px rgba(49, 43, 30, 0.1), 0 10px 10px -5px rgba(49, 43, 30, 0.04);

    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-pill: 9999px;

    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Button Refinements */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    /* Slightly larger vertical padding */
    border-radius: var(--radius-pill);
    /* Pill shape like reference */
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary-blue);
    /* Solid blue mostly, or gradient if preferred */
    background: var(--gradient-brand);
    color: white;
}

.btn-primary:hover {
    box-shadow: 0 10px 20px -10px rgba(0, 86, 179, 0.4);
    transform: translateY(-2px);
    opacity: 1;
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--border-color);
    /* Subtle border initially */
    color: var(--text-dark);
}

.btn-secondary:hover {
    background-color: transparent;
    color: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Hero Section Refinements */
.hero {
    padding: 180px 0 140px;
    /* More whitespace */
    text-align: center;
    /* Warm Orange Glow for Hero */
    background: radial-gradient(circle at 50% 30%, rgba(253, 128, 46, 0.08) 0%, transparent 60%);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Remove old gradients for clean look but keep the new warm glow */
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 128, 46, 0.03) 0%, transparent 50%);
    z-index: -1;
    animation: pulseWarm 10s infinite alternate;
}

@keyframes pulseWarm {
    0% {
        opacity: 0.5;
        transform: scale(1);
    }

    100% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero::after {
    display: none;
}

.hero-content {
    max-width: 960px;
    /* Slightly wider */
    margin: 0 auto;
}

.badge {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primary-blue);
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 32px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 86, 179, 0.15);
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.08);
    backdrop-filter: blur(4px);
    white-space: nowrap;
    /* Prevent wrapping generally */
}

@media (max-width: 600px) {
    .badge {
        font-size: 0.7rem;
        /* Smaller font on mobile */
        padding: 8px 16px;
        /* Tighter padding */
        letter-spacing: 0.02em;
        /* Tighter spacing */
        max-width: 100%;
        overflow: hidden;
        text-overflow: ellipsis;
        /* Fallback if still too long */
    }
}

.hero h1 {
    font-size: 3.5rem;
    /* Larger */
    letter-spacing: -0.03em;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
    line-height: 1.1;
}

.sub-headline {
    font-size: 1.25rem;
    max-width: 760px;
    margin: 0 auto 48px;
    line-height: 1.6;
    color: var(--text-muted);
    font-weight: 400;
}

.hero-ctas {
    gap: 20px;
}

/* Mobile Responsive */
/* Floating UI (Global) */
.floating-ui-right {
    position: fixed;
    right: 20px;
    bottom: 50%;
    transform: translateY(50%);
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

/* Pills Container */
.fw-pills-container {
    display: flex;
    flex-wrap: nowrap;
    /* Force single row */
    justify-content: flex-start;
    /* Start align */
    gap: 12px;
    width: 100%;
    overflow-x: auto;
    /* Allow scroll if needed on smaller desktops */
    padding-bottom: 10px;
    /* Space for scrollbar if visible/needed */
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.fw-pills-container::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

/* Compact Pill Style */
.fw-pill-compact {
    height: 48px;
    /* Slightly taller for better touch */
    padding: 0 20px;
    background: white;
    border: 1px solid #e6e6e6;
    border-radius: 999px;
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    white-space: nowrap;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.float-icon {
    width: 48px;
    height: 48px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    color: var(--primary-blue);
    transition: all 0.2s ease;
}

.float-icon:hover {
    transform: scale(1.1);
}

.float-whatsapp {
    color: #25D366;
}

.float-call {
    color: var(--primary-blue);
}

.float-chat-bubble {
    position: fixed;
    left: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: 28px 28px 28px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 4px 12px rgba(0, 86, 179, 0.3);
    z-index: 900;
    transition: all 0.2s ease;
}

.float-chat-bubble:hover {
    transform: translateY(-3px);
}

/* Hero Trust Strip */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    justify-content: flex-start;
}

.avatar-group {
    display: flex;
    align-items: center;
}

.avatar {
    width: 32px;
    height: 32px;
    background: #ddd;
    border: 2px solid white;
    border-radius: 50%;
    margin-left: -10px;
    background-size: cover;
    background-position: center;
}

.avatar:first-child {
    margin-left: 0;
    background-color: #ffccbc;
}

.avatar:nth-child(2) {
    background-color: #bbdefb;
}

.avatar:nth-child(3) {
    background-color: #c8e6c9;
}

.avatar-count {
    width: 32px;
    height: 32px;
    background: #111;
    color: white;
    border: 2px solid white;
    border-radius: 50%;
    margin-left: -10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
}

.trust-text {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin: 0;
    text-align: left;
}

/* Mobile Responsive */
/* Mobile Responsive block removed as it was duplicate/incorrect */

@media (max-width: 768px) {

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .nav-right {
        display: none;
    }

    /* Hero Mobile */
    .hero {
        padding-top: 120px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.15;
    }

    .sub-headline {
        margin: 0 auto 32px;
        font-size: 1rem;
        max-width: 100%;
    }

    /* Buttons in one row on mobile */
    .hero-ctas {
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 12px;
        flex-wrap: wrap;
        /* Wrap on very small screens if needed */
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        width: auto;
    }

    /* Trust Strip Mobile */
    .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
    }

    /* Floating Badges Mobile */
    .badge-top-right {
        top: 20px;
        right: -10px;
        transform: scale(0.9);
    }

    .badge-bottom-left {
        bottom: 30px;
        left: 0;
        transform: scale(0.9);
    }

    /* Hide desktop floaters on mobile if needed, or keep them */
    .floating-ui-right {
        display: none;
    }

    .float-chat-bubble {
        bottom: 20px;
        left: 20px;
    }
}



/* =========================================
   SERVICES PAGE STYLES (Strict Welix Clone)
   ========================================= */

/* Services Hero */
/* =========================================
   SERVICES PAGE STYLES (Strict Welix Clone)
   ========================================= */

/* Services Hero */
/* Services Hero */
.srv-hero {
    padding: 180px 0 100px;
    background: var(--gradient-dark-accent);
    /* Keep base gradient but ensure visibility */
    color: var(--text-dark);
    /* Switch to Dark Text for contrast */
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Dark Overlay to tone down brightness */
.srv-hero::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.05);
    /* Increased to 0.05 for better contrast */
    z-index: 0;
    pointer-events: none;
}

.srv-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Reduced blur intensity by 30% */
    background: radial-gradient(circle at 50% 50%, rgba(0, 86, 179, 0.08), transparent 70%);
    z-index: 0;
    filter: blur(40px);
    /* Reduced from likely higher value */
}

/* Ensure content is above overlay */
.srv-hero .container,
.srv-hero-content {
    position: relative;
    z-index: 1;
}

.srv-hero .badge {
    /* "WHAT WE DO" Label - fixed visibility */
    background-color: transparent;
    color: #0B0F1A;
    border: 1px solid rgba(11, 15, 26, 0.2);
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.7;
    margin-bottom: 24px;
}

.srv-hero h1 {
    font-size: 3.5rem;
    color: #0B0F1A;
    /* Pure Dark */
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    font-weight: 800;
}

/* Highlight word "Growth Systems" */
.srv-hero h1 .text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    /* Fix lint */
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.srv-hero .sub-headline {
    color: #1C2433;
    /* High contrast dark grey */
    opacity: 0.9;
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

/* Services Hero Buttons */
.srv-hero .btn-secondary {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.srv-hero .btn-secondary:hover {
    background: white;
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* Service Cards Section */
.srv-section {
    padding: 100px 0;
    background: transparent;
    /* Transparent to show global body gradient */
}

.srv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.srv-card {
    background: white;
    border: 1px solid rgba(234, 234, 234, 0.8);
    border-radius: 20px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* Gradient Blob for Services */
.srv-card::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.srv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.06);
    border-color: rgba(0, 86, 179, 0.25);
}

.srv-card-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #e6f0ff 0%, #f1f8ff 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

/* Icon colors rotation */
.srv-card:nth-child(2) .srv-card-icon {
    color: var(--primary-orange);
    background: linear-gradient(135deg, #fff0e6 0%, #fff8f5 100%);
}

.srv-card:nth-child(3) .srv-card-icon {
    color: var(--secondary-blue);
    background: linear-gradient(135deg, #e6f7ff 0%, #f0fbff 100%);
}

.srv-card:nth-child(4) .srv-card-icon {
    color: var(--secondary-orange);
    background: linear-gradient(135deg, #fff5e6 0%, #fffbf2 100%);
}


.srv-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.srv-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.srv-bullets {
    list-style: none;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.srv-bullets li {
    font-size: 0.85rem;
    color: var(--text-dark);
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.srv-bullets li::before {
    content: "•";
    color: var(--primary-blue);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.srv-outcome {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    padding-top: 16px;
    border-top: 1px solid #f0f0f0;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.srv-link {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    position: relative;
    z-index: 1;
    transition: gap 0.2s ease;
}

.srv-link:hover {
    gap: 10px;
}

/* Capabilities Section */
.cap-section {
    padding: 80px 0 100px;
    background: transparent;
}

.cap-header {
    margin-bottom: 40px;
    text-align: center;
}

.cap-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.cap-card {
    background: white;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid #eaeaea;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.cap-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.cap-card p {
    font-size: 0.85rem;
    margin-bottom: 12px;
}

.cap-outcome {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary-orange);
}

/* Mid CTA Strip */
.srv-cta-strip {
    background: var(--bg-off-white);
    padding: 100px 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

.srv-cta-strip h2 {
    font-size: 3rem;
    color: var(--premium-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.srv-cta-strip p {
    color: var(--warm-neutral);
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 40px;
    font-weight: 500;
}

/* =========================================
   SERVICE SUB-PAGE STYLES
   ========================================= */

/* Sub-page Specific Layouts */

/* Outcomes Section */
.outcomes-section {
    padding: 80px 0;
    background: transparent;
    border-bottom: 1px solid var(--border-color);
}

.outcomes-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.outcome-item {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.outcome-icon {
    width: 40px;
    height: 40px;
    background: rgba(0, 86, 179, 0.08);
    color: var(--primary-blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* Execution Steps (How We Execute) */
.execution-section {
    padding: 100px 0;
    background: transparent;
}

.execution-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

/* Connector Line (Desktop) */
.execution-steps::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: #e0e0e0;
    z-index: 0;
}

.execution-step-card {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number-badge {
    width: 50px;
    height: 50px;
    background: var(--gradient-brand);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.25rem;
    margin: 0 auto 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.execution-step-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.execution-step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Responsive Services */
@media (max-width: 1024px) {

    .srv-grid,
    .cap-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {

    .srv-grid,
    .cap-grid {
        grid-template-columns: 1fr;
    }

    .srv-hero h1 {
        font-size: 2.5rem;
    }

    /* Strict Mobile Center Alignment */
    .srv-hero {
        text-align: center;
        padding-top: 140px;
    }

    .srv-hero .hero-ctas {
        justify-content: center;
    }
}


/* Restoring Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.slide-up {
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
}

/* 2-Column Split Layout */
.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.split-content h3 {
    font-size: 2rem;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* Diff Cards */
/* =========================================
   NEW "WHAT WE DO" SECTION STYLES
   ========================================= */

.wwd-section {
    padding: 100px 0;
    background-color: transparent;
}

/* Header Row */
.wwd-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
    flex-wrap: wrap;
    gap: 32px;
}

.wwd-text {
    max-width: 600px;
}

.wwd-label,
.section-label {
    display: inline-block;
    padding: 10px 24px;
    background-color: rgba(0, 86, 179, 0.08);
    color: var(--primary-blue);
    border-radius: 999px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-bottom: 24px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid rgba(0, 86, 179, 0.15);
    box-shadow: 0 6px 16px rgba(0, 86, 179, 0.08);
    backdrop-filter: blur(4px);
}

.wwd-text h2 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.wwd-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 0;
}

.wwd-action {
    display: flex;
    align-items: center;
}

.btn-outline-rounded {
    border: 1px solid #ddd;
    border-radius: 999px;
    padding: 14px 32px;
    background: transparent;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-rounded:hover {
    border-color: var(--primary-blue);
    background-color: #f0f7ff;
    transform: translateY(-2px);
}


/* Cards Grid */
.wwd-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    width: 100%;
}

/* Card Styling */
.wwd-card {
    background: #ffffff;
    border: 1px solid #eaeaea;
    border-radius: 24px;
    padding: 32px 24px 24px;
    position: relative;
    overflow: hidden;
    /* For the pseudo-element curve */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 380px;
}

/* Pastel Corner Curve */
.wwd-card::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(230, 240, 255, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
    filter: blur(20px);
}

.wwd-card:nth-child(even)::before {
    background: radial-gradient(circle, rgba(255, 240, 230, 0.8) 0%, rgba(255, 255, 255, 0) 70%);
}

.wwd-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Card Content Z-Index */
.wwd-card>* {
    position: relative;
    z-index: 1;
}

/* Icon Box */
.wwd-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f4f8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-blue);
}

/* Gradient overrides for card icons */
.wwd-card:nth-child(2) .wwd-icon-box {
    background: linear-gradient(135deg, #fff0e6 0%, #f8f4f0 100%);
    color: var(--primary-orange);
}

.wwd-card:nth-child(3) .wwd-icon-box {
    background: linear-gradient(135deg, #e6f0ff 0%, #f0f4f8 100%);
    color: var(--secondary-blue);
}

.wwd-card:nth-child(4) .wwd-icon-box {
    background: linear-gradient(135deg, #fff0e6 0%, #f8f4f0 100%);
    color: var(--secondary-orange);
}


.wwd-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.wwd-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 40px;
}

/* Card Footer */
.wwd-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.wwd-learn {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-dark);
}

.wwd-arrow-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-dark);
    transition: all 0.2s ease;
    background: white;
}

.wwd-card:hover .wwd-arrow-btn {
    background: var(--text-dark);
    color: white;
    border-color: var(--text-dark);
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
    .wwd-header {
        flex-direction: column;
        align-items: center;
        /* Center align header items */
        text-align: center;
        /* Center align text */
        gap: 32px;
    }

    .wwd-text {
        max-width: 100%;
        margin: 0 auto;
    }

    .wwd-text h2 {
        font-size: 2.75rem;
        /* Slightly smaller for tablet/mobile */
        margin-left: auto;
        margin-right: auto;
    }

    .wwd-text p {
        margin-left: auto;
        margin-right: auto;
    }

    .wwd-action {
        width: 100%;
        justify-content: center;
    }

    .wwd-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    /* Mobile specific stack */
    .wwd-grid {
        grid-template-columns: 1fr;
        /* Stack cards on mobile (tablet portrait) */
    }

    .wwd-section {
        padding: 60px 0;
        /* Adjust padding */
    }

    .wwd-text h2 {
        font-size: 2.25rem;
    }
}

@media (max-width: 600px) {

    /* Kept for extra small overrides if any */
    .wwd-text h2 {
        font-size: 2rem;
    }
}

/* Services Page Styles */
.service-list-card {
    text-align: left;
    padding: 40px;
}

.service-list-card ul {
    list-style: none;
    margin-top: 20px;
}

.service-list-card li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 24px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.service-list-card li::before {
    content: '•';
    color: var(--primary-orange);
    position: absolute;
    left: 0;
    font-weight: bold;
}

/* Values Grid (About) */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

/* Statement Section (Quote) */
.statement-section {
    position: relative;
    background-color: #051020;
    /* Darker blue/black base */
    color: white;
    /* Ensure white text */
    text-align: center;
    padding: 140px 0;
    overflow: hidden;
    background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.75));
    /* Dark Overlay */
}

.statement-section h2 {
    font-size: 3rem;
    /* 48px Desktop */
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.25;
    font-weight: 800;
    /* Bold */
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
    color: #ffffff;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* Mobile Optimization for Statement */
@media (max-width: 768px) {
    .statement-section {
        padding: 100px 20px;
        /* Add side padding */
    }

    .statement-section h2 {
        font-size: 1.875rem;
        /* ~30px Mobile */
        line-height: 1.3;
    }
}



/* Contact / Diagnostic Page */
.contact-hero {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
}

.contact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 24px;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-dark);
}

.form-control {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 1rem;
    background-color: var(--bg-off-white);
    transition: border-color 0.2s;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-blue);
    background-color: white;
}

/* =========================================
   NEW GLOBAL STYLES (Footer, Nav, Services)
   ========================================= */

/* Services Anchor Strip */
.srv-anchor-strip {
    background: white;
    border-bottom: 1px solid #eaeaea;
    position: relative;
    padding: 12px 0;
    overflow-x: auto;
    white-space: nowrap;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.srv-anchor-container {
    display: flex;
    gap: 24px;
    align-items: center;
    justify-content: flex-start;
}

.srv-anchor {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all 0.2s ease;
    padding: 6px 12px;
    border-radius: 20px;
}

.srv-anchor:hover {
    color: var(--primary-blue);
    background: rgba(0, 86, 179, 0.05);
}

/* Breadcrumbs */
.breadcrumbs-container {
    padding: 16px 0;
    background: #f8f9fa;
    border-bottom: 1px solid #eaeaea;
    font-size: 0.9rem;
}

.breadcrumbs-container .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.breadcrumbs-container a {
    color: var(--text-muted);
    font-weight: 500;
}

.breadcrumbs-container .current {
    color: var(--text-dark);
    font-weight: 600;
}

.breadcrumbs-container .separator {
    margin: 0 8px;
    color: #ccc;
}

.back-link {
    color: var(--primary-blue) !important;
}

/* Related Services */
.related-services {
    padding: 80px 0;
    background: white;
    border-top: 1px solid #eaeaea;
}

.related-services h3 {
    font-size: 1.5rem;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.related-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid transparent;
    transition: all 0.2s;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
}

.related-card:hover {
    background: white;
    border-color: var(--border-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transform: translateY(-2px);
    color: var(--primary-blue);
}

/* Footer Grid Layout */
.footer-content {
    display: flex;
    flex-direction: column;
}

.footer-brand {
    margin-bottom: 40px;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #cbd5e1;
    font-size: 0.9rem;
    transition: color 0.2s ease;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: white;
}

@media (max-width: 768px) {
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .breadcrumbs-container .container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}

/* --- REFINED FRAMEWORK STYLES (Welix Match) --- */

/* Hero Refinements */
.fw-hero {
    padding: 140px 0 60px;
    /* Reduced bottom padding */
    background: var(--gradient-hero-bg);
    position: relative;
    overflow: hidden;
}

.fw-hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.fw-hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.fw-hero-visual {
    display: none;
}

.fw-hero-container {
    flex-direction: column;
    text-align: center;
}

.fw-hero-img-container {
    margin-top: 50px;
    transform: perspective(1000px) rotateX(10deg);
    display: none;
}

/* Intro Section - Split Grid */
.fw-intro-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    text-align: left;
}

.fw-intro-text {
    position: sticky;
    top: 120px;
}

.fw-intro-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

/* --- GLOBAL CARD SYSTEM --- */
.fw-card-premium,
.wwd-card,
.pillar-card,
.content-card {
    background: var(--soft-white);
    /* Updated Base */
    border-radius: var(--radius-card);
    padding: 32px 24px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(255, 255, 255, 0.5);
    /* Settle border */
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    z-index: 1;
}

/* Global Corner Blob (Teal Ambient) */
.fw-card-premium::before,
.wwd-card::before,
.pillar-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(34, 129, 154, 0.15) 0%, transparent 70%);
    /* Teal Blob */
    border-radius: 50%;
    z-index: 0;
    transition: transform 0.5s ease;
    filter: blur(20px);
}

.fw-card-premium:hover,
.wwd-card:hover,
.pillar-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(253, 128, 46, 0.15);
    /* Orange Glow Shadow */
    border-color: rgba(253, 128, 46, 0.3);
    background: white;
}

.fw-card-premium:hover::before,
.wwd-card:hover::before,
.pillar-card:hover::before {
    transform: scale(1.5);
    background: radial-gradient(circle, rgba(253, 128, 46, 0.1) 0%, transparent 70%);
    /* Morphs to Orange on hover */
}

/* Icons in cards */
.premium-icon,
.pillar-icon,
.wwd-icon-box {
    position: relative;
    z-index: 1;
    width: 54px;
    height: 54px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    /* Light Sky */
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--deep-teal);
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 1px solid rgba(144, 194, 231, 0.3);
}

.fw-card-premium:hover .premium-icon,
.wwd-card:hover .wwd-icon-box {
    background: var(--gradient-primary);
    /* Orange Blend */
    color: white;
    border-color: transparent;
    transform: scale(1.1) rotate(3deg);
    box-shadow: 0 10px 20px rgba(253, 128, 46, 0.2);
}

.fw-card-premium h3,
.wwd-card h3,
.pillar-card h3 {
    position: relative;
    z-index: 1;
    color: var(--text-heading);
    margin-bottom: 12px;
}

.fw-card-premium p,
.wwd-card p,
.pillar-card p {
    position: relative;
    z-index: 1;
    color: var(--text-muted);
}


/* Typography Overrides */
.single-line-left {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-bottom: 8px;
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Mobile Responsiveness for New Layout */
@media (max-width: 1024px) {
    .fw-intro-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fw-intro-text {
        position: static;
        margin-bottom: 40px;
    }

    .single-line-left {
        white-space: normal;
        text-align: center;
    }

    .fw-intro-cards {
        max-width: 600px;
        margin: 0 auto;
    }
}

@media (max-width: 600px) {
    .fw-hero-title {
        font-size: 2.2rem;
    }

    .fw-intro-cards {
        grid-template-columns: 1fr;
    }
}

/* --- PROBLEM SECTION STYLES (Refined) --- */

.fw-problem-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    padding-top: 40px;
    /* Slight top padding for breathing room */
}

.fw-problem-text-col {
    padding-right: 20px;
}

.fw-problem-desc {
    font-size: 1.25rem;
    color: var(--text-dark);
    margin-top: 24px;
    line-height: 1.6;
}

.fw-problem-card-col {
    position: relative;
}

/* Premium Checklist Card */
.fw-checklist-card {
    background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.fw-checklist-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.fw-checklist-card::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 107, 0, 0.1) 0%, transparent 70%);
    /* Orange glow */
    border-radius: 50%;
    z-index: 0;
}

.fw-chk-list {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.fw-chk-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
    font-size: 1.05rem;
    color: var(--text-dark);
    font-weight: 500;
}

.chk-icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    color: var(--primary-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 86, 179, 0.1);
    border-radius: 50%;
}

.fw-chk-footer {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.5;
    position: relative;
    z-index: 1;
}

/* Mobile Responsive Problem Section */
@media (max-width: 900px) {
    .fw-problem-container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .fw-problem-text-col {
        padding-right: 0;
    }

    .fw-checklist-card {
        padding: 30px 24px;
        text-align: left;
        /* Keep list left aligned */
    }

    /* Services Hero Mobile Fix */
    .srv-hero {
        padding-top: 140px;
    }

    .srv-hero h1 {
        font-size: 2.5rem;
    }

    .srv-hero::before {
        opacity: 0.6;
        /* Reduce glow brightness */
    }
}

/* --- MIDDLE SECTIONS REFINEMENT (Growth System, Breakdown, Phases) --- */

/* Block 5: System Flow */
.fw-system {
    padding: 100px 0;
    background: #0f172a;
    /* Dark Navy */
    color: white;
    text-align: center;
}

.dark-label {
    background: rgba(255, 255, 255, 0.1);
    color: #94a3b8;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.text-white-muted {
    color: #cbd5e1;
}

.fw-flow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.fw-flow-step {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 24px;
    border-radius: 99px;
    color: white;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.fw-flow-step:hover {
    background: var(--primary-blue);
    border-color: var(--primary-blue);
    transform: translateY(-3px);
}

.fw-flow-line {
    width: 40px;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

/* Block 6: Breakdown (8 Steps) */
.fw-breakdown {
    padding: 0 0 100px 0;
    background: var(--bg-warm-tint);
    /* Cream/Warm Tint */
}

.fw-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    /* 4 columns on large screens */
    gap: 24px;
    margin-top: 60px;
}

.fw-step-card {
    background: white;
    border-radius: 20px;
    padding: 30px 24px;
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fw-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(59, 130, 246, 0.3);
}

.step-num {
    font-size: 3rem;
    font-weight: 800;
    color: rgba(0, 0, 0, 0.04);
    line-height: 1;
    margin-bottom: 0px;
    position: absolute;
    top: 20px;
    right: 20px;
}

.fw-step-card {
    position: relative;
    overflow: hidden;
}

.fw-step-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

.fw-step-card p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.5;
    flex-grow: 1;
    position: relative;
    z-index: 1;
    margin-bottom: 20px;
}

.step-output {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary-blue);
    background: #f0f7ff;
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
    align-self: flex-start;
    position: relative;
    z-index: 1;
}

/* Block 7: Phases (Implementation) */
.fw-phases {
    padding: 100px 0;
    background: var(--bg-off-white);
}

.fw-phases-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.fw-phase-card {
    background: #fafafa;
    border-radius: 24px;
    padding: 40px 32px;
    border: 1px solid #f0f0f0;
    position: relative;
    transition: all 0.3s ease;
}

.fw-phase-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
    transform: scale(1.02);
}

.phase-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.phase-tag {
    background: var(--text-dark);
    color: white;
    padding: 6px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.phase-time {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
}

.fw-phase-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
}

.phase-list {
    list-style: none;
    margin-top: 24px;
    padding: 0;
}

.phase-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: #475569;
}

.phase-check {
    color: var(--primary-blue);
    margin-top: 4px;
    min-width: 16px;
}

/* Responsive Middle Sections */
@media (max-width: 1200px) {
    .fw-steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .fw-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fw-phases-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .fw-flow-container {
        flex-direction: column;
        gap: 0;
    }

    .fw-flow-line {
        width: 2px;
        height: 24px;
    }

    .fw-steps-grid,
    .fw-phases-grid {
        grid-template-columns: 1fr;
    }
}

/* Mobile Alignment Optimization */
@media (max-width: 768px) {

    .fw-problem-container,
    .fw-breakdown .container,
    .fw-phases .container,
    .fw-deliverables .container,
    .fw-who .container {
        text-align: center;
    }

    .section-label {
        margin-left: auto;
        margin-right: auto;
    }

    .section-title,
    .section-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
}

/* Block 9: Who This Is For */
.fw-who {
    padding: 100px 0;
    background: #f8fafc;
}

.fw-who-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.fw-who-list {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.who-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: white;
    padding: 20px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.who-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-blue);
}

.who-icon {
    background: #eff6ff;
    color: var(--primary-blue);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
}

.who-item h4 {
    margin-bottom: 4px;
    font-size: 1.05rem;
    font-weight: 700;
}

.who-item p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.who-card-visual {
    position: relative;
    /* height: 400px; Remove fixed height, let it grow */
    min-height: 400px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 20px;
}

.visual-card {
    position: relative;
    /* Change from absolute */
    background: white;
    padding: 14px 28px;
    /* Slightly smaller for density */
    border-radius: 99px;
    /* Capsule shape */
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.95rem;
    /* Adjustable size */
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    cursor: default;
    user-select: none;
}

.visual-card:hover {
    transform: translateY(-5px) scale(1.05) !important;
    z-index: 10;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-blue);
    color: var(--primary-blue);
}

/* Scattered Effect using nth-child rotation */
.visual-card:nth-child(2n) {
    transform: rotate(2deg);
}

.visual-card:nth-child(2n+1) {
    transform: rotate(-1deg);
}

.visual-card:nth-child(3n) {
    transform: rotate(-3deg);
}

.visual-card:nth-child(3n+1) {
    transform: rotate(3deg);
}

.visual-card:nth-child(4n) {
    transform: rotate(1deg);
}

.visual-card:nth-child(5n) {
    transform: rotate(-2deg);
}

.visual-card:nth-child(7n) {
    transform: translateY(-10px) rotate(2deg);
}

.visual-card:nth-child(5n+2) {
    transform: translateY(10px) rotate(-2deg);
}


/* Mobile Who Section */
@media (max-width: 900px) {
    .fw-who-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .fw-who-visual {
        display: none;
    }

    .who-item {
        text-align: left;
    }
}

/* Mobile Visual Card Optimization */
@media (max-width: 768px) {
    .who-card-visual {
        padding: 10px;
        gap: 12px;
        min-height: auto;
    }

    .visual-card {
        padding: 10px 20px;
        font-size: 0.85rem;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
        /* Remove rotation for clean grid */
        transform: rotate(0deg) !important;
        margin: 0 !important;
    }

    /* Override all nth-child rotations on mobile */
    .visual-card:nth-child(n) {
        transform: none !important;
    }
}

/* =========================================
   FRAMEWORK PAGE HERO PILL UPDATE
   ========================================= */
.fw-hero-pill {
    white-space: nowrap !important;
    overflow: hidden;
    text-overflow: ellipsis;
    display: inline-block;
    max-width: 100%;
}

@media (max-width: 480px) {
    .fw-hero-pill {
        font-size: 0.75rem !important;
        /* Slightly smaller for mobile */
        padding: 8px 16px !important;
        /* Adjust padding for capsule look */
        line-height: 1.2;
    }
}

/* =========================================
   PREMIUM SECONDARY BUTTON (SERVICES PAGE)
   ========================================= */
.btn-premium-secondary {
    background: #FEF7F8;
    /* Soft White/Cream */
    border: 1.5px solid var(--primary-orange);
    color: var(--charcoal-blue);
    box-shadow: 0 4px 15px rgba(253, 128, 46, 0.15);
    /* Soft Orange Shadow */
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.btn-premium-secondary:hover {
    background: rgba(253, 128, 46, 0.08);
    /* Subtle Orange Tint */
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 128, 46, 0.25);
}

/* =========================================
   PREMIUM SERVICE CARDS (5 PILLARS)
   ========================================= */

.srv-premium-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

/* 2nd Row Centering Wrapper */
.srv-premium-row-2 {
    display: flex;
    justify-content: center;
    gap: 24px;
    width: 100%;
}

.srv-premium-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.srv-premium-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    background: rgba(255, 255, 255, 0.85);
    border-color: var(--primary-orange);
}

.srv-premium-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-heading);
    letter-spacing: -0.02em;
}

.srv-premium-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Tags / Includes */
.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.srv-tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 700;
    color: var(--primary-orange);
    background: rgba(253, 128, 46, 0.08);
    padding: 6px 12px;
    border-radius: 99px;
}

/* Outcome List */
.srv-outcome-list {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.srv-outcome-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-body);
    margin-bottom: 8px;
    font-weight: 500;
}

.srv-outcome-item svg {
    color: var(--deep-teal);
    width: 16px;
    height: 16px;
}

/* Premium Add-On Strip */
.srv-premium-strip {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 99px;
    padding: 24px 40px;
    text-align: center;
    max-width: 900px;
    margin: 60px auto 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.04);
}

.srv-strip-main {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--charcoal-blue);
    display: block;
    margin-bottom: 8px;
}

.srv-strip-sub {
    font-size: 1rem;
    color: var(--text-muted);
    font-weight: 500;
}

/* Mobile Responsiveness */
@media (max-width: 900px) {
    .srv-premium-grid {
        grid-template-columns: 1fr;
        /* Stack all cards */
        width: 100%;
    }

    .srv-premium-row-2 {
        flex-direction: column;
        /* Stack bottom 2 cards */
        width: 100%;
    }

    .srv-premium-card {
        width: 100%;
    }

    .srv-premium-strip {
        border-radius: 24px;
        padding: 24px;
        width: 100%;
    }
}

/* =========================================
   ABOUT PAGE HERO (PREMIUM 2-COL)
   ========================================= */

.about-hero {
    position: relative;
    min-height: 85vh;
    /* Large Hero Feeling */
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    /* Space for fixed navbar */
    overflow: hidden;
    background: transparent;
    /* Global body gradient handles base, or we add overlay */
}

/* Ensure padding-top accounts for navbar on mobile */
@media (max-width: 900px) {
    .about-hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 60px;
    }
}

.about-hero-container {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    /* Text left, Cards right */
    gap: 80px;
    align-items: center;
    width: 100%;
    position: relative;
    z-index: 2;
}

/* Left Column: Text */
.about-hero-text {
    text-align: left;
}

.about-hero-text h1 {
    font-size: 4rem;
    /* Big Premium Heading */
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
    letter-spacing: -0.03em;
}

.about-hero-text .sub-headline {
    font-size: 1.35rem;
    color: var(--text-muted);
    font-weight: 400;
    max-width: 100%;
    text-align: left;
    margin-bottom: 0;
}

/* Right Column: Premium Cards */
.about-hero-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

/* Premium Card Style */
.ab-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    /* Rounded Corners */
    padding: 32px 40px;
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.ab-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 24px;
    padding: 1px;
    background: linear-gradient(135deg, rgba(42, 127, 255, 0.2), rgba(255, 122, 24, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0.5;
}

.ab-card:hover {
    transform: translateY(-5px) scale(1.01);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px -10px rgba(0, 0, 0, 0.1);
}

.ab-card:hover::before {
    opacity: 1;
    background: linear-gradient(135deg, #2A7FFF, #FF7A18);
}

/* Card Header Layout */
.ab-card-header {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 24px;
}

/* Icon Badge */
.ab-icon-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e0f7fa, #e1bee7);
    /* Default fallback */
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    border: 1px solid rgba(0, 0, 0, 0.06);
    /* Subtle border */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    position: relative;
    flex-shrink: 0;
}

.ab-icon-badge svg {
    width: 36px;
    height: 36px;
}

/* Vision Card Gradient (Blue) */
.ab-card.vision .ab-icon-badge {
    background: linear-gradient(135deg, #e3f2fd, #ffffff);
    color: var(--primary-blue);
}

/* Mission Card Gradient (Orange) */
.ab-card.mission .ab-icon-badge {
    background: linear-gradient(135deg, #fff1e6, #ffe0cc);
    color: #ff6a00;
    box-shadow: 0 10px 25px rgba(255, 106, 0, 0.25);
}

.ab-card.mission .ab-icon-badge svg {
    filter: drop-shadow(0 4px 6px rgba(255, 106, 0, 0.3));
}

.ab-icon-badge::after {
    display: none;
    /* Remove old border effect to clean up */
}

/* Card Typography */
.ab-card-title h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 6px;
    color: var(--text-dark);
}

.ab-pill {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.5px;
    background: rgba(0, 0, 0, 0.03);
    padding: 4px 12px;
    border-radius: 99px;
}

.ab-card p {
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 0;
}

/* Responsive Stacking */
@media (max-width: 1100px) {
    .about-hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .about-hero-text {
        text-align: center;
        max-width: 800px;
        margin: 0 auto;
    }

    .about-hero-text .sub-headline {
        text-align: center;
        margin: 0 auto;
    }

    .ab-card-header {
        justify-content: flex-start;
        /* Keep cards aligned nicely inside */
    }
}

@media (max-width: 600px) {
    .about-hero-text h1 {
        font-size: 2.75rem;
    }

    .ab-card {
        padding: 24px;
    }

    .ab-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

/* --- New About Page Sections --- */

/* Section Layouts */
.about-section {
    padding: 100px 0;
    position: relative;
}

.about-section.bg-light {
    background: rgba(0, 0, 0, 0.02);
}

/* Our Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.ab-principle-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.ab-principle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    border-color: rgba(253, 128, 46, 0.2);
}

.ab-principle-card h4 {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-dark);
}

/* What Makes Us Different Block */
.diff-block {
    background: #ffffff;
    border-radius: 32px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0 40px;
}

.diff-item {
    padding: 24px;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 16px;
}

.diff-item strong {
    display: block;
    font-size: 1.2rem;
    color: var(--primary-orange);
    margin-bottom: 8px;
}

/* How We Work (3 Phases) */
.how-work-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 50px;
}

.how-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.phase-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    color: var(--primary-orange);
    margin-bottom: 12px;
}

.how-card h4 {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.deliverables-list {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.deliverables-list strong {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.deliverables-list p {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-blue);
}

/* Our Promise Card */
.promise-card {
    background: linear-gradient(135deg, white, #fff1e6);
    border-radius: 32px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(253, 128, 46, 0.1);
    box-shadow: 0 20px 50px rgba(253, 128, 46, 0.05);
    max-width: 900px;
    margin: 60px auto 0;
}

.promise-card h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

/* Founder Note Wrapper */
.founder-note-wrapper {
    max-width: 800px;
}

.founder-note-wrapper h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.founder-note-content {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.founder-note-content p {
    margin-bottom: 24px;
}

/* Section Header Adjustments */
.about-section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
}

/* Mobile Responsiveness for new sections */
@media (max-width: 992px) {

    .principles-grid,
    .how-work-row {
        grid-template-columns: 1fr;
    }

    .diff-grid {
        grid-template-columns: 1fr;
    }

    .diff-block {
        padding: 50px 30px;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section-header h2 {
        font-size: 2rem;
    }

    .diff-block h2 {
        font-size: 1.75rem;
    }
}

/* =========================================
   WHO WE ARE HERO (NEW PREMIUM)
   ========================================= */
/* =========================================
   WHO WE ARE HERO (NEW PREMIUM)
   ========================================= */
.who-hero {
    position: relative;
    min-height: 70vh;
    /* Premium Hero Height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 140px 0 80px;
    /* Exact requested padding */
    background: transparent;
    overflow: hidden;
    /* Ensure glow doesn't spill */
}

/* Subtle Gradient Glow Background */
.who-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(253, 128, 46, 0.15) 0%, rgba(144, 194, 231, 0.1) 50%, transparent 70%);
    filter: blur(60px);
    z-index: 1;
    pointer-events: none;
    opacity: 0;
    animation: glowFadeIn 1.5s ease-out forwards;
}

@keyframes glowFadeIn {
    to {
        opacity: 1;
    }
}

.who-hero-content {
    max-width: 1100px;
    /* Constrained container */
    margin: 0 auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Premium Badge/Pill Style */
/* Premium Badge/Pill Style */
.who-hero .badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-dark);
    background: linear-gradient(white, white) padding-box,
        var(--gradient-brand) border-box;
    border: 2px solid transparent;
    padding: 10px 24px;
    border-radius: 99px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(253, 128, 46, 0.15);
    animation: pulseGlow 2.5s infinite ease-in-out;
    white-space: nowrap;
    text-overflow: ellipsis;
    max-width: 90vw;
    /* Ensure it doesn't overflow screen width */
}

/* Mobile Badge Optimization */
@media (max-width: 480px) {
    .who-hero .badge {
        font-size: 0.7rem;
        /* Smaller font */
        padding: 8px 16px;
        /* Reduced padding */
        letter-spacing: 1px;
    }
}

/* Shimmer Effect */
.who-hero .badge::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right,
            transparent,
            rgba(255, 255, 255, 0.8),
            transparent);
    transform: skewX(-25deg);
    animation: shimmerSweep 3s infinite;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 0 0 rgba(253, 128, 46, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(253, 128, 46, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(253, 128, 46, 0);
    }
}

@keyframes shimmerSweep {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 200%;
    }
}

.who-hero h1 {
    font-size: 64px;
    /* Desktop Premium Size */
    font-weight: 800;
    line-height: 1.05;
    margin: 0 auto 40px;
    /* Increased spacing to paragraph */
    color: var(--text-dark);
    letter-spacing: -0.04em;
    width: 100%;
    max-width: 1100px;
    word-break: normal;
    overflow-wrap: break-word;
    white-space: normal;
    /* Allow wrapping */
}

/* Gradient Text for 'Not Campaigns' */
.who-hero h1 .text-gradient {
    background: var(--gradient-brand);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.who-hero .sub-headline {
    font-size: 1.5rem;
    max-width: 700px;
    /* Constrained width */
    margin: 0 auto;
    color: var(--text-muted);
}

/* Vision & Mission (Second Section) Styles */
.about-vm-section {
    padding: 80px 0 120px;
    position: relative;
}

.about-vm-section .about-hero-container {
    align-items: flex-start;
    /* Align top for clean look */
}

.about-vm-section h2 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 24px;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .who-hero h1 {
        font-size: 48px;
        /* Tablet Size */
    }
}

@media (max-width: 768px) {
    .who-hero {
        min-height: auto;
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .who-hero h1 {
        font-size: 34px;
        /* Mobile Size */
    }
}

/* Page Animations */
.fade-in {
    opacity: 0;
    animation: fadeIn 1s ease-out forwards;
}

.slide-up {
    opacity: 0;
    transform: translateY(30px);
    animation: slideUp 0.8s ease-out forwards;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =========================================
   DELIVERABLES CAPSULE GRID (PREMIUM SAAS STYLE)
   ========================================= */

.fw-deliverables {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: transparent;
}

/* Subtle background glow for section */
.fw-deliverables::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 129, 154, 0.08) 0%, rgba(253, 128, 46, 0.05) 50%, transparent 70%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.fw-del-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 50px auto 0;
    position: relative;
    z-index: 1;
}

/* Premium Capsule Style */
.fw-capsule {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    border-radius: 999px;
    padding: 14px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.fw-capsule:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: rgba(34, 129, 154, 0.3);
    /* Teal hint on hover */
    background: white;
}

/* Hover Glow Overlay */
.fw-capsule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(34, 129, 154, 0.05), rgba(253, 128, 46, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 999px;
    pointer-events: none;
}

.fw-capsule:hover::before {
    opacity: 1;
}

/* Capsule Icon */
.capsule-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 50%;
    background: rgba(34, 129, 154, 0.1);
    /* Light Teal BG */
    color: var(--deep-teal);
    /* Teal Icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* =========================================
   MORE CAPABILITIES SECTION (PREMIUM)
   ========================================= */

.cap-premium-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.cap-premium-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 32px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.cap-premium-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(253, 128, 46, 0.3);
}

.cap-premium-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--text-heading);
    letter-spacing: -0.01em;
}

.cap-premium-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
    /* Pushes outcome to bottom if needed */
}

.cap-premium-outcome {
    font-size: 0.85rem;
    font-weight: 700;
    color: #FD802E;
    /* Specific Orange requested */
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .cap-premium-grid {
        grid-template-columns: 1fr;
    }
}

.fw-capsule:hover .capsule-icon {
    background: var(--deep-teal);
    color: white;
    transform: scale(1.1);
}

.fw-capsule span {
    font-size: 1rem;
    font-weight: 600;
    color: #1f1f1f;
    /* Dark Text */
    line-height: 1.4;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .fw-del-grid {
        grid-template-columns: 1fr;
        /* Stack vertically */
        gap: 16px;
        max-width: 100%;
        padding: 0 16px;
    }

    .fw-capsule {
        padding: 14px 20px;
    }
}

/* =========================================
   VISION & MISSION MOBILE FIX (User Request)
   ========================================= */

@media (max-width: 768px) {

    /* 1. Mobile Card Layout Fix */
    .about-vm-section .ab-card {
        text-align: center !important;
        padding: 26px 18px !important;
        border-radius: 22px !important;
        margin-bottom: 18px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .about-vm-section .ab-card:last-child {
        margin-bottom: 0 !important;
    }

    /* 6. Prevent Left-Alignment Inheritance */
    .about-vm-section .ab-card-header {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 14px !important;
        width: 100% !important;
        margin-bottom: 20px !important;
    }

    /* 2. Icon Position Fix */
    .about-vm-section .ab-icon-badge {
        margin: 0 auto !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 58px !important;
        height: 58px !important;
        border-radius: 50% !important;
        background: rgba(255, 255, 255, 0.65) !important;
        border: 1px solid rgba(0, 0, 0, 0.08) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06) !important;
    }

    /* 3. Heading Alignment Fix */
    .about-vm-section .ab-card-title {
        width: 100% !important;
        text-align: center !important;
    }

    .about-vm-section .ab-card-title h3 {
        font-size: 24px !important;
        font-weight: 800 !important;
        text-align: center !important;
        margin-bottom: 8px !important;
        width: 100% !important;
    }

    /* 4. Capsule Label Center Fix */
    .about-vm-section .ab-pill {
        display: inline-block !important;
        margin: 0 auto !important;
    }

    /* Paragraph Fix */
    .about-vm-section .ab-card p {
        text-align: center !important;
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
        color: #555 !important;
        width: 100% !important;
    }
}

/* =========================================
   NEW SERVICES PAGE RESTRUCTURE
   ========================================= */

/* Section Headers */
.sec-header {
    margin-bottom: 60px;
    max-width: 800px;
}

.sec-header.centered {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

.pill-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-orange);
    margin-bottom: 16px;
    background: rgba(253, 128, 46, 0.1);
    padding: 6px 16px;
    border-radius: 99px;
}

.sec-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.sec-header p {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Core Pillars Row (4 Cards) */
.srv-core-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 40px;
}

.srv-core-row .srv-card {
    height: 100%;
    margin-bottom: 0;
}

/* Accordion Capabilities */
.cap-accordion {
    max-width: 900px;
    margin: 40px auto 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.cap-item {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.3s ease;
}

.cap-item:hover {
    box-shadow: var(--shadow-hover);
    border-color: rgba(253, 128, 46, 0.2);
}

.cap-item[open] {
    background: #fff;
    border-color: rgba(253, 128, 46, 0.2);
}

.cap-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 32px;
    cursor: pointer;
    list-style: none;
    user-select: none;
}

.cap-item summary::-webkit-details-marker {
    display: none;
}

.cap-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-heading);
}

.cap-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.cap-item[open] .cap-icon {
    transform: rotate(45deg);
}

.cap-content {
    padding: 0 32px 32px;
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 1100px) {
    .srv-core-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sec-header h2 {
        font-size: 2rem;
    }

    .srv-core-row {
        grid-template-columns: 1fr;
    }

    .cap-item summary {
        padding: 20px 24px;
    }

    .cap-content {
        padding: 0 24px 24px;
    }
}

/* Services Anchor Strip Navigation */
.srv-anchor-strip {
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    padding: 16px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.srv-anchor-container {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.srv-anchor {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 99px;
    background: rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.srv-anchor:hover,
.srv-anchor.active {
    background: rgba(253, 128, 46, 0.1);
    color: var(--primary-orange);
}

/* Mobile Responsiveness for Nav Strip */
@media (max-width: 768px) {
    .srv-anchor-strip {
        padding: 12px 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    .srv-anchor-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding: 0 16px;
        width: max-content;
        /* Ensure container expands for scrolling */
    }

    .srv-anchor {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    /* Hide scrollbar */
    .srv-anchor-strip::-webkit-scrollbar {
        display: none;
    }

    .srv-anchor-strip {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
}

/* =========================================
   CONTACT PAGE THEME ALIGNMENT (HG STYLE)
   ========================================= */

/* Contact Hero Adjustments */
.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: transparent;
}

/* Main Contact Section */
.contact-main-section {
    padding: 0 0 100px;
    position: relative;
    background: linear-gradient(120deg, #fff6f0, #fdfdfd);
    /* Precise HG background gradient */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Left Card: Send us a Message */
.contact-form-card {
    background: #ffffff;
    border-radius: 32px;
    padding: 60px;
    box-shadow: 0 25px 60px rgba(255, 122, 26, 0.1);
    border: 1px solid rgba(255, 122, 26, 0.25);
    /* HG Precise Card Border */
    position: relative;
}

.contact-form-card h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 40px;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.card-arrow {
    position: absolute;
    top: 40px;
    right: 40px;
    color: #ff7a1a;
    opacity: 1;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.form-full-width {
    grid-column: span 2;
}

.form-input-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.form-input-group label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #6b4f3b;
    /* HG Secondary Accent (Brown/Gold) */
}

.form-field {
    width: 100%;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #ffffff;
    font-size: 1rem;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.form-field:focus {
    outline: none;
    border-color: #ff7a1a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 122, 26, 0.15);
    /* Orange focus glow */
}

/* HG Orange Submit Button (Premium Capsule) */
.btn-submit-gradient {
    background: linear-gradient(135deg, #ff7a1a 0%, #ff9d5c 100%);
    color: white;
    padding: 22px;
    border-radius: 99px;
    font-size: 1.15rem;
    font-weight: 800;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 10px;
    box-shadow: 0 12px 30px rgba(255, 122, 26, 0.3);
}

.btn-submit-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 18px 40px rgba(255, 122, 26, 0.4);
}

/* Right Card: Dark Brown-Black Info card */
.contact-info-card {
    background: linear-gradient(135deg, #1f1b16 0%, #2b1f18 100%);
    color: white;
    padding: 60px 50px;
    border-radius: 32px;
    box-shadow: 0 25px 60px rgba(31, 27, 22, 0.3);
    position: relative;
    overflow: hidden;
}

/* Subtle orange gradient for HG Dark Card */
.contact-info-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.contact-info-card h2 {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    color: white;
}

.contact-info-card h2::after {
    content: '';
    flex-grow: 1;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 122, 26, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff7a1a;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.1);
}

.info-text h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.5);
}

.info-text p {
    font-size: 1.15rem;
    line-height: 1.6;
    color: white;
    font-weight: 500;
}

.wa-link {
    color: #22c55e;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

/* Social Media Icons */
.social-links-section {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-links-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.5);
}

.social-row {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.social-icon-btn {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ff7a1a;
    transform: translateY(-5px);
    border-color: rgba(255, 122, 26, 0.3);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.social-icon-btn svg {
    width: 20px;
    height: 20px;
}

/* Floating Actions - Theme Consistent */
.floating-actions {
    position: fixed;
    bottom: 40px;
    right: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 999;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 99px;
    background: white;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    font-weight: 800;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    border: 1px solid transparent;
}

.float-btn:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(255, 122, 26, 0.2);
}

.float-btn.whatsapp {
    color: #25d366;
    border-color: rgba(255, 122, 26, 0.25);
}

.float-btn.call {
    color: #ff7a1a;
    border-color: rgba(255, 122, 26, 0.35);
}

.float-icon {
    width: 24px;
    height: 24px;
}

.chat-bubble {
    position: fixed;
    bottom: 40px;
    left: 40px;
    padding: 16px 28px;
    background: #ffffff;
    border-radius: 24px 24px 24px 4px;
    box-shadow: 0 15px 40px rgba(255, 122, 26, 0.2);
    font-weight: 800;
    color: #1a1a1a;
    z-index: 999;
    border: 1px solid rgba(255, 122, 26, 0.25);
}

/* Theme Mobile Scaling */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .contact-form-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-full-width {
        grid-column: span 1;
    }

    .floating-actions,
    .chat-bubble {
        bottom: 24px;
    }

    .floating-actions {
        right: 24px;
    }

    .chat-bubble {
        left: 24px;
        display: none;
    }

    .contact-info-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .contact-main-section {
        padding-bottom: 80px;
        text-align: center;
        /* Ensure general centering */
    }

    .contact-form-card {
        padding: 40px 24px;
        border-radius: 24px;
        text-align: left;
        /* Keep form fields left-aligned */
    }

    .contact-form-card h2 {
        text-align: center;
        /* Center form heading */
    }

    .contact-info-card {
        padding: 40px 24px;
        border-radius: 24px;
        text-align: center;
        /* Center info card content */
    }

    .info-item {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }

    .info-text {
        text-align: center;
    }

    .social-list-item {
        justify-content: center;
        /* Center content of social buttons */
    }
}

/* =========================================
   HOME PAGE SERVICE GRID (5-Card Layout)
   ========================================= */
.srv-premium-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    width: 100%;
    margin-top: 40px;
}

.srv-premium-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: calc((100% - 48px) / 3);
    /* 3 cards per row */
    text-decoration: none;
    min-height: 400px;
    /* Ensure visual balance */
}

/* Hover Effects */
.srv-premium-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(255, 122, 26, 0.12);
    /* Orange glow */
    border-color: rgba(255, 122, 26, 0.3);
}

/* Typography & Inner Elements */
.srv-premium-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text-heading);
    margin-bottom: 12px;
    line-height: 1.3;
}

.srv-premium-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.srv-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.srv-tag {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 99px;
    color: var(--text-dark);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.srv-outcome-list {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.srv-outcome-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

.srv-outcome-item svg {
    width: 18px;
    height: 18px;
    color: #FD802E;
    /* Primary Orange */
    flex-shrink: 0;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .srv-premium-card {
        width: calc((100% - 24px) / 2);
        /* 2 per row on tablet */
    }
}

@media (max-width: 768px) {
    .srv-premium-grid {
        flex-direction: column;
    }

    .srv-premium-card {
        width: 100%;
        /* Stacked on mobile */
        min-height: auto;
    }
}

/* Service Card Icons */
.srv-icon-box {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    position: relative;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.srv-icon-box svg {
    width: 28px;
    height: 28px;
    color: white;
    z-index: 3;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Glow Effect */
.srv-icon-box::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 16px;
    filter: blur(12px);
    opacity: 0.4;
    z-index: -1;
    transition: all 0.4s ease;
}

/* =========================================
   CONTACT PAGE: VERTICAL SOCIAL LIST
   ========================================= */
.social-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.social-list-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.social-list-item:hover {
    transform: translateX(5px) translateY(-2px);
    background: white;
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.12);
    border-color: rgba(255, 122, 26, 0.3);
}

.social-list-item i {
    font-size: 20px;
    color: #FF7A1A;
    /* Primary Orange */
    width: 28px;
    text-align: center;
    transition: transform 0.3s ease;
}

.social-list-item:hover i {
    transform: scale(1.1);
}

.social-list-item span {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
}

/* Disabled state for YouTube */
.social-list-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.03);
    border-color: transparent;
    box-shadow: none;
}

.social-list-item.disabled i {
    color: #9ca3af;
}

.social-list-item.disabled span {
    color: #6b7280;
}

.social-list-item.disabled .coming-soon-badge {
    margin-left: auto;
    font-size: 0.7rem;
    text-transform: uppercase;
    background: #e5e7eb;
    color: #6b7280;
    padding: 4px 8px;
    border-radius: 6px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* Restored Hover Animation */
.srv-premium-card:hover .srv-icon-box {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.1);
}

.srv-premium-card:hover .srv-icon-box::after {
    opacity: 0.6;
    filter: blur(16px);
}

/* Gradients */
.gradient-brand {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
}

.gradient-brand::after {
    background: linear-gradient(135deg, #0072ff 0%, #00c6ff 100%);
}

.gradient-design {
    background: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
}

.gradient-design::after {
    background: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
}

.gradient-growth {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.gradient-growth::after {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
}

.gradient-creative {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

.gradient-creative::after {
    background: linear-gradient(135deg, #FF416C 0%, #FF4B2B 100%);
}

.gradient-analytics {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
}

.gradient-analytics::after {
    background: linear-gradient(135deg, #f12711 0%, #f5af19 100%);
}

/* Mobile Responsive Icons */
@media (max-width: 768px) {
    .srv-icon-box {
        width: 56px;
        height: 56px;
    }

    .srv-icon-box svg {
        width: 24px;
        height: 24px;
    }
}

/* =========================================
   PREMIUM ENTERPRISE CTA SECTION
   ========================================= */

/* Section Background */
.premium-cta-block {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    background: #0f1115;
    /* Deep Charcoal */
    /* Multi-layer gradient background */
    background-image:
        radial-gradient(circle at 10% 20%, rgba(45, 140, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 80%, rgba(255, 122, 47, 0.06) 0%, transparent 40%),
        url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
}

/* Glassmorphism Card */
.cta-glass-card {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 80px 60px;
    max-width: 960px;
    /* Optimal reading width */
    margin: 0 auto;
    text-align: center;
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.08),
        0 0 0 1px rgba(255, 122, 26, 0.05) inset;
    /* Subtle orange tint border */
    position: relative;
    overflow: hidden;
}

/* Content Wrapper */
.cta-content-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

/* Typography */
.cta-premium-heading {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    color: #1a1a1a !important;
    /* Force dark color */
    letter-spacing: -0.02em;
    margin: 0;
}

.text-gradient-orange {
    background: linear-gradient(135deg, #1a1a1a 30%, #ff7a1a 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.cta-premium-sub {
    font-size: 1.15rem;
    color: #555 !important;
    /* Force dark color */
    line-height: 1.6;
    max-width: 680px;
    margin: 0 auto;
    font-weight: 500;
}

/* Feature Tags */
.cta-feature-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 8px;
}

.cta-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: #333 !important;
    /* Force dark color */
    background: rgba(0, 0, 0, 0.04);
    padding: 8px 16px;
    border-radius: 99px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Button & Action Group */
.cta-action-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
}

.btn-premium-pill {
    background: linear-gradient(135deg, #ff7a1a 0%, #ff9a57 100%);
    color: white;
    font-weight: 700;
    font-size: 1.1rem;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 8px 20px rgba(255, 122, 26, 0.25);
}

.btn-premium-pill svg {
    transition: transform 0.3s ease;
}

.btn-premium-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(255, 122, 26, 0.35);
}

.btn-premium-pill:hover svg {
    transform: translateX(4px);
}

.cta-trust-line {
    font-size: 0.85rem;
    color: #777 !important;
    /* Force dark color */
    font-weight: 500;
    opacity: 0.9;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .premium-cta-block {
        padding: 60px 20px;
    }

    .cta-glass-card {
        padding: 40px 24px;
        border-radius: 24px;
    }

    .cta-premium-heading {
        font-size: 2.2rem;
    }

    .cta-feature-tags {
        gap: 8px;
    }

    .cta-tag {
        font-size: 0.75rem;
        padding: 6px 12px;
    }

    .btn-premium-pill {
        width: 100%;
        /* Full width button on mobile */
        justify-content: center;
        padding: 16px 24px;
        font-size: 1rem;
    }
}

/* =========================================
   CTA ANIMATED BLOBS
   ========================================= */

.cta-glow-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    /* Below content card */
    pointer-events: none;
}

.cta-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
    animation: floatBlob 20s infinite alternate cubic-bezier(0.45, 0.05, 0.55, 0.95);
}

.blob-orange {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.4) 0%, transparent 70%);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.blob-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 140, 255, 0.3) 0%, transparent 70%);
    bottom: -20%;
    right: -10%;
    animation-delay: -5s;
}

.blob-purple {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(127, 0, 255, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 60%;
    animation-delay: -10s;
}

@keyframes floatBlob {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }

    100% {
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.8;
    }
}

/* Ensure card sits above blobs */
.cta-glass-card {
    position: relative;
    z-index: 2;
    /* Content above blobs */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cta-blob {
        filter: blur(60px);
        opacity: 0.4;
    }

    .blob-orange {
        width: 250px;
        height: 250px;
    }

    .blob-blue {
        width: 300px;
        height: 300px;
    }

    .blob-purple {
        width: 200px;
        height: 200px;
    }
}

/* =========================================
   ABOUT PAGE: FOUNDER MANIFESTO SECTION
   ========================================= */

.founder-manifesto-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #fdfbf7 0%, #f4efe9 100%);
    position: relative;
    overflow: hidden;
}

/* Add subtle noise texture & glows */
.founder-manifesto-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

.founder-manifesto-section::after {
    content: "";
    position: absolute;
    top: -20%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 26, 0.08) 0%, transparent 60%);
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

/* Grid Layout */
.founder-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* Left Column Styling */
.founder-text-col {
    max-width: 580px;
}

.premium-pill-tag {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 122, 47, 0.25);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #ff7a1a;
    margin-bottom: 24px;
    text-transform: uppercase;
}

.founder-headline {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 32px;
    letter-spacing: -0.02em;
}

.founder-body p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

/* Signature Block */
.founder-signature-block {
    margin-top: 40px;
    margin-bottom: 32px;
    padding-left: 20px;
    border-left: 3px solid rgba(255, 122, 26, 0.3);
}

.signature-name {
    display: block;
    font-family: 'Caveat', cursive;
    /* Fallback if not loaded, checking fonts */
    font-style: italic;
    font-size: 1.2rem;
    color: #1a1a1a;
    font-weight: 700;
}

.signature-role {
    display: block;
    font-size: 0.85rem;
    color: #718096;
    margin-top: 4px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Minimal CTA */
.minimal-cta-link {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    color: #ff7a1a;
    text-decoration: none;
    font-size: 1.05rem;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.minimal-cta-link:hover {
    border-bottom-color: #ff7a1a;
    transform: translateX(4px);
}

/* Right Column: Belief Card */
.founder-card-col {
    position: relative;
}

.belief-glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 24px;
    padding: 60px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.06),
        0 0 0 1px rgba(255, 122, 26, 0.05) inset;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.founder-manifesto-section:hover .belief-glass-card {
    transform: translateY(0);
}

.belief-title {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 32px;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.belief-title::after {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background: rgba(255, 122, 26, 0.4);
    margin-top: 12px;
    border-radius: 2px;
}

.belief-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.belief-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
}

.belief-list li svg {
    color: #ff7a1a;
    flex-shrink: 0;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .founder-text-col {
        margin: 0 auto;
    }

    .founder-signature-block {
        padding-left: 0;
        border-left: none;
        border-top: 3px solid rgba(255, 122, 26, 0.3);
        padding-top: 20px;
        display: inline-block;
    }

    .belief-title::after {
        margin: 8px auto 0;
    }

    .belief-list {
        align-items: center;
        /* Center list items if preferred, or keep left aligned */
        text-align: left;
    }

    .belief-list li {
        justify-content: flex-start;
    }
}

@media (max-width: 768px) {
    .founder-manifesto-section {
        padding: 80px 0;
    }

    .founder-headline {
        font-size: 2rem;
    }

    .belief-glass-card {
        padding: 40px 24px;
    }
}

/* =========================================
   LEGAL PAGES (Terms & Privacy)
   ========================================= */

.legal-hero {
    padding: 180px 0 80px;
    background: #0f1115;
    color: white;
    text-align: center;
    position: relative;
}

.legal-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(45, 140, 255, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.legal-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.1;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

.legal-body {
    padding: 80px 0;
    background: #fff;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    font-family: 'Inter', sans-serif;
    color: #333;
}

.legal-content h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 48px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.legal-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-top: 32px;
    margin-bottom: 16px;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 24px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 1.05rem;
    color: #4a5568;
    margin-bottom: 12px;
    line-height: 1.6;
    position: relative;
}

.legal-content li::marker {
    color: #ff7a1a;
    /* Orange bullets */
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .legal-hero {
        padding: 140px 0 60px;
    }

    .legal-title {
        font-size: 2.5rem;
    }

    .legal-content {
        padding: 0 20px;
    }
}

/* --- Premium Social Icons --- */

.social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    /* Glass-white */
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.35);
    /* Subtle border */
    color: var(--text-heading);
    /* Dark icon color */
    font-size: 1.1rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    /* Soft premium shadow */
    position: relative;
    overflow: hidden;
}

.social-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, #FF7A1A 0%, #FFB347 100%);
    /* Orange gradient */
    border-color: rgba(255, 255, 255, 0.6);
    color: white;
    /* White icon on hover */
    box-shadow: 0 8px 24px rgba(255, 122, 26, 0.3);
    /* Orange glow */
}

.social-btn:active {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 122, 26, 0.2);
}

/* Disabled State (YouTube) */
.social-btn.disabled {
    opacity: 0.45;
    cursor: not-allowed;
    pointer-events: none;
    /* Prevent clicks */
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    box-shadow: none;
}

/* Tooltip for Disabled Icon */
.social-btn.disabled::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: white;
    font-size: 10px;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    white-space: nowrap;
    transition: opacity 0.2s;
    pointer-events: none;
}

.social-btn.disabled:hover::after {
    opacity: 1;
}

/* Alignment in Navbar */
.nav-socials {
    display: flex;
    gap: 10px;
    /* Consistent spacing */
    align-items: center;
}

/* Alignment in Footer */
.footer-social-links {
    display: flex;
    gap: 12px;
}

/* Alignment in Mobile Menu */
.mobile-socials {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-bottom: 20px;
}

/* =========================================
   CONTACT SUCCESS MODAL
   ========================================= */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 17, 21, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.success-modal {
    background: #ffffff;
    width: 90%;
    max-width: 480px;
    padding: 40px 32px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: translateY(40px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
}

.modal-overlay.active .success-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.success-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF7A1A 0%, #FFB347 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    box-shadow: 0 10px 25px rgba(255, 122, 26, 0.3);
}

.success-icon-wrapper svg {
    width: 40px;
    height: 40px;
    color: white;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.2;
}

.modal-subtitle {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 32px;
}

.modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp-modal {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    font-weight: 700;
    padding: 14px 24px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25);
    font-size: 1rem;
}

.btn-whatsapp-modal:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(37, 211, 102, 0.35);
    color: white;
}

.btn-close-modal {
    background: #f3f4f6;
    color: #4b5563;
    font-weight: 600;
    padding: 14px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-close-modal:hover {
    background: #e5e7eb;
    color: #1f2937;
}

@media (max-width: 480px) {
    .success-modal {
        padding: 32px 24px;
    }

    .modal-title {
        font-size: 1.5rem;
    }
}

/* --- Footer Watermark Signature --- */
.footer {
    position: relative;
    overflow: hidden;
}

.footer-watermark {
    position: absolute;
    bottom: -10px;
    right: 20px;
    font-family: 'LXGW WenKai Mono TC', monospace;
    font-size: 6rem;
    font-weight: 400;
    color: var(--text-heading);
    opacity: 0.12;
    /* Slightly increased opacity as this font might be thinner/lighter */
    pointer-events: none;
    user-select: none;
    z-index: 0;
    line-height: 1;
    transform: rotate(-5deg);
}

@media (max-width: 768px) {
    .footer-watermark {
        font-size: 3.5rem;
        right: 10px;
        bottom: 0;
    }
}