/* ===== CSS Variables - Carion Consulting ===== */
:root {
    --primary: #3b82f6;
    --primary-dark: #2563eb;
    --primary-light: #eff6ff;
    --secondary: #0f172a;
    --secondary-light: #1e293b;
    --accent: #38bdf8;
    --accent-dark: #0ea5e9;
    --accent-light: #f0f9ff;
    --dark: #0c1629;
    --dark-light: #1a2744;
    --dark-card: #162033;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --text-on-dark: #ffffff;
    --text-on-dark-muted: rgba(255, 255, 255, 0.8);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px rgba(59, 130, 246, 0.2);
    --shadow-glow-accent: 0 0 40px rgba(56, 189, 248, 0.15);
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    --transition-fast: 150ms ease;
    --transition: 200ms ease;
    --transition-slow: 300ms ease;
    --transition-bounce: 300ms cubic-bezier(0.34, 1.56, 0.64, 1);
    --section-padding: 100px;
    --section-padding-sm: 60px;
}

/* ===== Base ===== */
html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

h1 { font-size: clamp(2.5rem, 5vw, 3.75rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

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

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

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

/* ===== Custom Buttons (scoped to avoid Bootstrap conflicts) ===== */
.cc-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: var(--radius);
    cursor: pointer;
    transition: all var(--transition-slow);
    border: none;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
}

.cc-btn-lg {
    padding: 18px 36px;
    font-size: 16px;
    border-radius: var(--radius-md);
}

.cc-btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(59, 130, 246, 0.25);
}

.cc-btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.4);
}

.cc-btn-accent {
    background: var(--accent);
    color: var(--white);
    box-shadow: 0 2px 4px rgba(56, 189, 248, 0.25);
}

.cc-btn-accent:hover {
    background: var(--accent-dark);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(56, 189, 248, 0.4);
}

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

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

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

.cc-btn-outline-primary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.cc-btn-outline-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.25);
}

.cc-btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    color: var(--white);
    transform: translateY(-2px);
}

/* ===== Badge / Tag ===== */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-light);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 14px;
}

.section-tag-dark {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

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

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

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

/* ===== Navigation ===== */
.cc-navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: rgba(10, 22, 40, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 0;
    transition: all var(--transition-slow);
}

.cc-navbar.scrolled {
    background: rgba(10, 22, 40, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    padding: 10px 0;
}

.cc-navbar .navbar-brand {
    padding: 0;
}

.cc-navbar .logo-img {
    height: 38px;
    width: auto;
}

.cc-navbar .nav-link {
    color: rgba(255, 255, 255, 0.75) !important;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 18px !important;
    border-radius: var(--radius);
    transition: var(--transition);
}

.cc-navbar .nav-link:hover,
.cc-navbar .nav-link.active {
    color: var(--white) !important;
    background: rgba(255, 255, 255, 0.08);
}

.cc-navbar .cc-nav-cta {
    background: var(--white);
    color: var(--dark);
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: var(--radius);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
}

.cc-navbar .cc-nav-cta:hover {
    background: var(--gray-100);
    color: var(--dark);
}

.cc-navbar .navbar-toggler {
    border: none;
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
}

.cc-navbar .navbar-toggler:focus {
    box-shadow: none;
}

.cc-navbar .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

@media (max-width: 991.98px) {
    .cc-navbar .logo-img {
        height: 32px;
    }

    .cc-navbar .navbar-collapse {
        background: rgba(10, 22, 40, 0.98);
        margin-top: 16px;
        padding: 16px;
        border-radius: var(--radius-md);
        border: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cc-navbar .navbar-nav {
        gap: 4px;
    }

    .cc-navbar .cc-nav-cta {
        margin-top: 16px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* ===== Hero Section ===== */
.cc-hero {
    position: relative;
    padding: 180px 0 120px;
    background: var(--dark);
    overflow: hidden;
}

.cc-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background:
        radial-gradient(ellipse 600px 600px at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 500px 500px at 80% 30%, rgba(56, 189, 248, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 800px 400px at 50% 100%, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    pointer-events: none;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

@keyframes heroGlow {
    0% { opacity: 1; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.05); }
}

.cc-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(56, 189, 248, 0.3), transparent);
}

.cc-hero .hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

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

.cc-hero .hero-content h1 {
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 800;
}

.cc-hero .hero-content h1 .highlight {
    background: linear-gradient(135deg, var(--accent), #60a5fa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cc-hero .hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    max-width: 580px;
    line-height: 1.7;
}

.cc-hero .hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

/* Trust indicators */
.cc-hero .hero-trust {
    display: flex;
    align-items: center;
    gap: 32px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.cc-hero .trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 500;
}

.cc-hero .trust-item i {
    color: var(--accent);
    font-size: 18px;
}

/* Floating decorative orb */
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 380px;
}

.hero-orb {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(59, 130, 246, 0.2), rgba(56, 189, 248, 0.1) 50%, transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    animation: orbFloat 6s ease-in-out infinite;
}

.hero-orb::before {
    content: '';
    position: absolute;
    inset: 30px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    animation: orbFloat 6s ease-in-out infinite reverse;
}

.hero-orb::after {
    content: '';
    position: absolute;
    inset: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15), transparent 70%);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.orb-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 48px;
    color: rgba(255, 255, 255, 0.12);
}

.float-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8125rem;
    font-weight: 600;
    white-space: nowrap;
    animation: badgeFloat 5s ease-in-out infinite;
}

.float-badge i {
    font-size: 18px;
}

.float-badge:nth-child(2) {
    top: 10%;
    right: -20px;
    animation-delay: -1s;
}

.float-badge:nth-child(2) i { color: var(--accent); }

.float-badge:nth-child(3) {
    bottom: 20%;
    right: -40px;
    animation-delay: -2.5s;
}

.float-badge:nth-child(3) i { color: #7dd3fc; }

.float-badge:nth-child(4) {
    bottom: 5%;
    left: -20px;
    animation-delay: -4s;
}

.float-badge:nth-child(4) i { color: #67e8f9; }

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

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

/* ===== Stats Bar ===== */
.cc-stats {
    background: var(--dark-light);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    padding: 48px 0;
    position: relative;
}

.cc-stats .stat-item {
    text-align: center;
    padding: 8px 16px;
}

.cc-stats .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--white), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.cc-stats .stat-label {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.8125rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ===== Page Header (group, contact) ===== */
.cc-page-header {
    padding: 180px 0 80px;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cc-page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 600px 400px at 30% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 70% 80%, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cc-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), rgba(56, 189, 248, 0.3), transparent);
}

.cc-page-header h1 {
    color: var(--white);
    margin-bottom: 16px;
    font-weight: 800;
    position: relative;
}

.cc-page-header .lead {
    color: var(--text-on-dark-muted);
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    font-size: 1.2rem;
}

.cc-page-header .section-tag {
    background: rgba(255, 255, 255, 0.06);
    color: var(--accent);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

/* ===== Services Section ===== */
.cc-services {
    padding: var(--section-padding) 0;
    position: relative;
    background: var(--white);
}

.cc-services .service-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px;
    height: 100%;
    transition: all var(--transition-slow);
    position: relative;
    overflow: hidden;
}

.cc-services .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.cc-services .service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.cc-services .service-card:hover::before {
    transform: scaleX(1);
}

.cc-services .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-light));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all var(--transition-slow);
}

.cc-services .service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.05);
}

.cc-services .service-icon i {
    font-size: 26px;
    color: var(--primary);
    transition: color var(--transition-slow);
}

.cc-services .service-card:hover .service-icon i {
    color: var(--white);
}

.cc-services .service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cc-services .service-card p {
    color: var(--text-secondary);
    margin-bottom: 0;
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== Approach Section ===== */
.cc-approach {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
    position: relative;
}

.cc-approach .approach-step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    height: 100%;
    transition: all var(--transition-slow);
}

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

.cc-approach .step-number {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--white);
}

.cc-approach .step-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.cc-approach .step-content p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
}

/* ===== Why Choose Us (Dark) ===== */
.cc-why {
    padding: var(--section-padding) 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cc-why::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 500px 400px at 20% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 400px 400px at 80% 20%, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cc-why .section-header h2 {
    color: var(--white);
}

.cc-why .section-header p {
    color: var(--text-on-dark-muted);
}

.cc-why .why-card {
    text-align: center;
    padding: 40px 24px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-xl);
    transition: all var(--transition-slow);
    position: relative;
    height: 100%;
}

.cc-why .why-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.cc-why .why-icon {
    width: 72px;
    height: 72px;
    background: rgba(59, 130, 246, 0.12);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: all var(--transition-slow);
}

.cc-why .why-card:hover .why-icon {
    background: rgba(59, 130, 246, 0.2);
    border-color: rgba(59, 130, 246, 0.35);
    transform: scale(1.05);
}

.cc-why .why-icon i {
    font-size: 28px;
    color: var(--accent);
}

.cc-why .why-card h4 {
    color: var(--white);
    margin-bottom: 12px;
    font-weight: 700;
}

.cc-why .why-card p {
    color: var(--text-on-dark-muted);
    font-size: 0.9375rem;
    margin-bottom: 0;
}

/* ===== Group Preview on Index ===== */
.cc-group-preview {
    padding: var(--section-padding) 0;
    background: var(--gray-50);
}

.cc-group-preview .group-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 36px;
    transition: all var(--transition-slow);
    height: 100%;
}

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

.cc-group-preview .group-card-icon {
    width: 80px;
    height: 80px;
    min-width: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-group-preview .group-card-icon i {
    font-size: 32px;
    color: var(--white);
}

.cc-group-preview .group-card-content h3 {
    font-size: 1.375rem;
    margin-bottom: 4px;
}

.cc-group-preview .group-card-content .subtitle {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.cc-group-preview .group-card-content p:last-child {
    margin-bottom: 0;
    font-size: 0.9375rem;
}

/* ===== CTA Section ===== */
.cc-cta {
    padding: var(--section-padding) 0;
    background: var(--dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cc-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 600px 300px at 50% 50%, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cc-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
    position: relative;
    font-weight: 800;
}

.cc-cta p {
    color: var(--text-on-dark-muted);
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto 36px;
    position: relative;
}

.cc-cta .cc-btn,
.cc-cta .section-tag {
    position: relative;
}

/* ===== Group Page ===== */
.cc-group-section {
    padding: var(--section-padding) 0;
}

.cc-group-section .group-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.cc-group-section .group-intro p {
    font-size: 1.125rem;
    color: var(--text-secondary);
}

.cc-group-section .company-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-2xl);
    height: 100%;
    transition: all var(--transition-slow);
    overflow: hidden;
}

.cc-group-section .company-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-2xl);
    border-color: transparent;
}

.cc-group-section .company-card-header {
    background: var(--dark);
    padding: 48px 40px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cc-group-section .company-card-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 400px 200px at 50% 0%, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cc-group-section .company-logo-placeholder {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
}

.cc-group-section .company-logo-placeholder i {
    font-size: 30px;
    color: var(--white);
}

.cc-group-section .company-card-header h3 {
    color: var(--white);
    font-size: 1.375rem;
    margin-bottom: 6px;
    position: relative;
}

.cc-group-section .company-card-header .company-subtitle {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0;
    position: relative;
}

.cc-group-section .company-card-body {
    padding: 36px 40px 44px;
}

.cc-group-section .company-card-body p {
    color: var(--text-secondary);
    margin-bottom: 28px;
    font-size: 0.9375rem;
    line-height: 1.7;
}

.cc-group-section .company-details {
    background: var(--gray-50);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    list-style: none;
    margin: 0;
    padding-left: 24px;
}

.cc-group-section .company-details li {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    border-bottom: 1px solid var(--gray-200);
    list-style: none;
}

.cc-group-section .company-details li:last-child {
    border-bottom: none;
}

.cc-group-section .company-details li i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    width: 20px;
    text-align: center;
}

/* Group map/connection section */
.cc-group-map {
    padding: 80px 0;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}

.cc-group-map::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 300px 300px at 25% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 300px 300px at 75% 50%, rgba(56, 189, 248, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cc-group-map .map-content {
    text-align: center;
    position: relative;
}

.cc-group-map .map-locations {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.cc-group-map .map-location {
    padding: 32px 48px;
    text-align: center;
}

.cc-group-map .map-location .city {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cc-group-map .map-location .country {
    color: var(--text-on-dark-muted);
    font-size: 0.875rem;
    font-weight: 500;
}

.cc-group-map .map-connector {
    width: 120px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    position: relative;
}

.cc-group-map .map-connector::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: connectorPulse 2s ease-in-out infinite;
}

@keyframes connectorPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(56, 189, 248, 0.4); }
    50% { opacity: 0.8; box-shadow: 0 0 0 8px rgba(56, 189, 248, 0); }
}

.cc-group-map .map-dot {
    width: 12px;
    height: 12px;
    background: var(--accent);
    border-radius: 50%;
    margin: 0 auto 16px;
    position: relative;
    box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.2);
}

/* ===== Contact Page ===== */
.cc-contact {
    padding-top: 40px;
}

.cc-contact .contact-info-card {
    background: var(--gray-50);
    border-radius: var(--radius-xl);
    padding: 40px;
    border: 1px solid var(--gray-200);
}

.cc-contact .contact-info-card h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.cc-contact .contact-info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
}

.cc-contact .consultation-steps {
    margin-top: 24px;
}

.cc-contact .consultation-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 24px;
}

.cc-contact .consultation-step .step-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--primary-light);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cc-contact .consultation-step .step-icon i {
    color: var(--primary);
    font-size: 18px;
}

.cc-contact .consultation-step .step-content h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.cc-contact .consultation-step .step-content p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 0;
}

.cc-contact .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cc-contact .contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: all var(--transition);
}

.cc-contact .contact-method:hover {
    background: var(--primary-light);
    color: var(--primary);
    border-color: rgba(59, 130, 246, 0.2);
    transform: translateX(4px);
}

.cc-contact .contact-method i {
    color: var(--primary);
    font-size: 18px;
    width: 20px;
    text-align: center;
}

.cc-contact .calendly-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-lg);
}

.cc-contact .calendly-card h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.cc-contact .calendly-card p {
    font-size: 0.9375rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ===== Footer ===== */
.cc-footer {
    background: var(--dark);
    color: var(--text-on-dark-muted);
    position: relative;
    padding: 64px 0 0;
}

.cc-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), rgba(56, 189, 248, 0.2), transparent);
}

.cc-footer .footer-brand p {
    color: var(--text-on-dark-muted);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.cc-footer .footer-logo {
    height: 32px;
    width: auto;
    margin-bottom: 16px;
}

.cc-footer .footer-links h4 {
    color: var(--white);
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 20px;
}

.cc-footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.cc-footer .footer-links ul li a {
    color: var(--text-on-dark-muted);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.cc-footer .footer-links ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

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

.cc-footer .footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    margin-bottom: 0;
}

.cc-footer .footer-social a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.875rem;
    transition: var(--transition);
}

.cc-footer .footer-social a:hover {
    color: var(--white);
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation delays */
.row .col-lg-4:nth-child(2) .animate-on-scroll,
.row .col-lg-3:nth-child(2) .animate-on-scroll,
.row .col-lg-6:nth-child(2) .animate-on-scroll {
    transition-delay: 0.1s;
}

.row .col-lg-4:nth-child(3) .animate-on-scroll,
.row .col-lg-3:nth-child(3) .animate-on-scroll {
    transition-delay: 0.2s;
}

.row .col-lg-4:nth-child(4) .animate-on-scroll,
.row .col-lg-3:nth-child(4) .animate-on-scroll {
    transition-delay: 0.15s;
}

.row .col-lg-4:nth-child(5) .animate-on-scroll {
    transition-delay: 0.1s;
}

.row .col-lg-4:nth-child(6) .animate-on-scroll {
    transition-delay: 0.2s;
}

/* ===== Responsive ===== */
@media (max-width: 991.98px) {
    .cc-hero {
        padding: 150px 0 80px;
    }

    .hero-orb {
        width: 280px;
        height: 280px;
    }

    .float-badge {
        display: none;
    }

    .cc-page-header {
        padding: 150px 0 60px;
    }

    .cc-group-map .map-connector {
        width: 60px;
    }
}

@media (max-width: 767.98px) {
    .cc-hero {
        padding: 130px 0 60px;
        text-align: center;
    }

    .cc-hero .hero-description {
        margin: 0 auto 32px;
    }

    .cc-hero .hero-buttons {
        justify-content: center;
    }

    .cc-hero .hero-trust {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-visual {
        display: none;
    }

    .cc-page-header {
        padding: 130px 0 40px;
    }

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

    .cc-group-section .company-card-body {
        padding: 28px 24px 36px;
    }

    .cc-group-section .company-card-header {
        padding: 36px 24px 32px;
    }

    .cc-services .service-card {
        padding: 32px;
    }

    .cc-contact .contact-info-card {
        padding: 24px;
    }

    .cc-group-preview .group-card {
        flex-direction: column;
        text-align: center;
        padding: 36px;
        gap: 24px;
    }

    .cc-group-map .map-connector {
        display: none;
    }

    .cc-group-map .map-locations {
        flex-direction: column;
        gap: 16px;
    }

    .cc-group-map .map-location {
        padding: 20px;
    }

    .cc-approach .approach-step {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
