/* Give Consulting Group - Modern Color Scheme */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@400;500;600&display=swap');

:root {
    /* Brand Colors */
    --brand-primary: #00ADB1;
    --brand-secondary: #8FC868;
    --brand-accent: #FCD306;
    --brand-yellow: #FCD306;
    --brand-teal: #00ADB1;
    --brand-green: #8FC868;
    --brand-dark: #000000;
    --brand-dark-black: #000000;
    --brand-light: #111111;
    --brand-neutral: #CCCCCC;

    /* Neutral Colors */
    --white: #FFFFFF;
    --light-gray: #E5E7EB;
    --medium-gray: #9CA3AF;
    --dark-gray: #374151;

    /* Status Colors */
    --success: #10B981;
    --error: #EF4444;
    --warning: #F59E0B;
    --info: #3B82F6;

    /* Typography */
    --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-6: 24px;
    --space-8: 32px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    --space-24: 96px;

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 60px rgba(30, 58, 95, 0.15);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);

    /* Transitions */
    --transition-fast: 200ms ease;
    --transition-normal: 300ms ease;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #F9FAFB 0%, #F0F4F8 100%);
    --gradient-brand: linear-gradient(135deg, #FCD306 0%, #8FC868 50%, #00ADB1 100%);
    --gradient-cta: linear-gradient(135deg, #333333 0%, #2D3748 100%);

    /* Text on dark backgrounds */
    --text-white-85: rgba(255, 255, 255, 0.85);
    --text-white-70: rgba(255, 255, 255, 0.7);
    --text-white-50: rgba(255, 255, 255, 0.5);
    --border-white-10: rgba(255, 255, 255, 0.1);
    --bg-white-10: rgba(255, 255, 255, 0.1);

    /* Header */
    --header-height: 80px;
    --header-bg-scrolled: rgba(255, 255, 255, 0.85);
}

/* Base Styles */
* {
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    margin: 0;
    padding: 0;
    padding-top: var(--header-height);
    color: var(--dark-gray);
}

body.home-template {
    padding-top: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--brand-primary);
    margin-top: 0;
}

.g-logo {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--brand-primary);
}

.g-logo-img {
    height: 70px;
    width: auto;
    display: block;
}

.g-logo-img-sm {
    height: 60px;
    width: auto;
    display: block;
}

.g-desktop-nav {
    display: block;
}

.g-mobile-menu {
    position: fixed;
    inset-y: 0;
    left: 0;
    width: 100%;
    max-width: 320px;
    background-color: var(--white);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
    transform: translateX(-100%);
    transition: transform 300ms ease-in-out;
    z-index: 1001;
}

.g-mobile-menu.open {
    transform: translateX(0);
}

.g-nav-link {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    padding: 24px 16px;
    transition: color 200ms ease;
    display: inline-block;
}

.g-nav-link:hover {
    color: var(--brand-secondary);
}

.g-nav-link.active {
    color: var(--brand-secondary) !important;
    font-weight: 600;
}

.g-mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 500;
    color: var(--brand-dark);
    text-decoration: none;
    padding: 12px 0;
    display: block;
    transition: color 200ms ease;
}

.g-mobile-nav-link:hover {
    color: var(--brand-secondary);
}

/* Display utilities */
.g-desktop-only {
    display: none;
}

.lg\:hidden {
    display: block;
}

@media (min-width: 1024px) {
    .g-desktop-only {
        display: inline-block !important;
    }

    .lg\:hidden {
        display: none !important;
    }

    .g-desktop-nav {
        display: block !important;
    }
}

@media (max-width: 1023px) {
    .g-desktop-nav {
        display: none !important;
    }

    .g-desktop-only {
        display: none !important;
    }
}

a {
    text-decoration: none;
    transition: all 200ms ease;
}

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

/* Utility Classes */
.g-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.g-section {
    padding: var(--space-24) var(--space-8);
}

.g-section-light {
    background-color: var(--brand-light);
}

.g-section-dark {
    background-color: var(--brand-dark);
    color: var(--white);
}

.g-section-dark h1,
.g-section-dark h2,
.g-section-dark h3,
.g-section-dark h4,
.g-section-dark h5,
.g-section-dark h6 {
    color: var(--white);
}

.g-section-dark p,
.g-section-dark span,
.g-section-dark li {
    color: rgba(255, 255, 255, 0.9);
}

/* Primary Color */
.g-bg-primary {
    background-color: var(--brand-primary) !important;
}
.g-text-primary {
    color: var(--brand-primary) !important;
}
.g-border-primary {
    border-color: var(--brand-primary) !important;
}

/* Secondary Color */
.g-bg-secondary {
    background-color: var(--brand-secondary) !important;
}
.g-text-secondary {
    color: var(--brand-secondary) !important;
}
.g-border-secondary {
    border-color: var(--brand-secondary) !important;
}

/* Accent Color */
.g-bg-accent {
    background-color: var(--brand-accent) !important;
}
.g-text-accent {
    color: var(--brand-accent) !important;
}
.g-border-accent {
    border-color: var(--brand-accent) !important;
}

/* Dark Color */
.g-bg-dark {
    background-color: var(--brand-dark) !important;
}
.g-text-dark {
    color: var(--brand-dark) !important;
}
.g-border-dark {
    border-color: var(--brand-dark) !important;
}

/* Light Color */
.g-bg-light {
    background-color: var(--brand-light) !important;
}
.g-text-light {
    color: var(--brand-light) !important;
}
.g-border-light {
    border-color: var(--brand-light) !important;
}

/* Typography Classes */
.g-h1 {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--brand-primary);
}

.g-h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--brand-primary);
}

.g-h3 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 16px;
    color: var(--brand-primary);
}

.g-h4 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--brand-primary);
}

.g-h5 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 8px;
    color: var(--brand-primary);
}

.g-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    margin-bottom: 16px;
}

.g-body-lg {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
}

/* Buttons */
.g-btn {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition: all 250ms ease;
    display: inline-block;
    border: none;
}

.g-cta-btn {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 250ms ease;
    display: inline-block;
    border: none;
    background-color: var(--brand-secondary);
    color: var(--white);
}

.g-cta-btn:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(224, 122, 95, 0.3);
}

.g-btn-primary {
    background-color: var(--brand-secondary);
    color: var(--white);
}

.g-btn-primary:hover {
    background-color: var(--brand-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(224, 122, 95, 0.3);
}

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

.g-btn-outline:hover {
    background-color: var(--white);
    color: var(--brand-primary);
}

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

.g-btn-outline-dark:hover {
    background-color: var(--brand-primary);
    color: var(--white);
}

.g-btn-lg {
    padding: 18px 40px;
    font-size: 18px;
}

.g-btn-sm {
    padding: 10px 24px;
    font-size: 14px;
}

/* Cards */
.g-card {
    border-radius: 16px;
    padding: 32px;
    transition: all 300ms ease;
    background: var(--white);
    border: 1px solid var(--light-gray);
}

.g-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-secondary);
}

.g-card-title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--brand-primary);
    margin-bottom: 16px;
}

.g-card-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--brand-neutral);
    margin-top: 16px;
}

.g-hero-image {
    position: relative;
    z-index: 1;
}

.g-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.15);
}

/* Form Elements */
.g-form-control {
    display: block;
    width: 100%;
    height: 52px;
    padding: 12px 16px;
    font-size: 16px;
    font-family: var(--font-body);
    color: var(--dark-gray);
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    transition: all 200ms ease;
    box-sizing: border-box;
}

.g-form-control:hover {
    border-color: var(--brand-neutral);
}

.g-form-control:focus {
    border-color: var(--brand-secondary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

.g-form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--brand-primary);
}

.g-form-textarea {
    width: 100%;
    min-height: 140px;
    padding: 16px;
    font-size: 16px;
    font-family: var(--font-body);
    border: 2px solid var(--light-gray);
    border-radius: 8px;
    resize: vertical;
    transition: all 200ms ease;
    box-sizing: border-box;
}

.g-form-textarea:hover {
    border-color: var(--brand-neutral);
}

.g-form-textarea:focus {
    border-color: var(--brand-secondary);
    outline: none;
    box-shadow: 0 0 0 4px rgba(224, 122, 95, 0.1);
}

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

.g-hero-content {
    position: relative;
    z-index: 10;
}

.g-hero-title {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--brand-primary);
}

.g-hero-subtitle {
    font-size: 24px;
    line-height: 1.5;
    color: var(--brand-neutral);
    margin-bottom: 32px;
    max-width: 700px;
}

/* Stats Grid */
.g-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 40px;
    border-radius: 16px;
    background: var(--white);
    border: 1px solid var(--light-gray);
    transition: all 300ms ease;
}

.g-stats-grid:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--brand-secondary);
}

.g-stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--brand-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

.g-stat-label {
    font-size: 16px;
    color: var(--brand-neutral);
    font-weight: 500;
}

.g-stat-number {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--brand-secondary);
    line-height: 1;
    margin-bottom: 8px;
}

/* Services Grid */
.g-services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.g-service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    transition: all 300ms ease;
    border: 1px solid var(--light-gray);
    position: relative;
    overflow: hidden;
}

.g-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
    opacity: 0;
    transition: opacity 300ms ease;
}

.g-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.g-service-card:hover::before {
    opacity: 1;
}

.g-service-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.g-service-icon svg {
    width: 32px;
    height: 32px;
    color: var(--white);
}

/* Testimonial Card */
.g-testimonial {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    position: relative;
}

.g-testimonial-quote {
    font-size: 48px;
    color: var(--brand-secondary);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 16px;
    font-family: Georgia, serif;
}

.g-testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 24px;
    font-style: italic;
}

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

.g-testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 20px;
}

.g-testimonial-name {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 16px;
    color: var(--brand-primary);
}

.g-testimonial-title {
    font-size: 14px;
    color: var(--brand-neutral);
}

/* Gradient Text */
.g-gradient-text {
    background: linear-gradient(135deg, var(--brand-secondary), var(--brand-accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Divider */
.g-divider {
    height: 1px;
    background: var(--light-gray);
    margin: 40px 0;
}

.g-divider-accent {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
    width: 80px;
    border-radius: 2px;
    margin: 0 auto;
}

/* Flexbox Helpers */
.g-flex {
    display: flex;
}

.g-flex-col {
    display: flex;
    flex-direction: column;
}

.g-items-center {
    align-items: center;
}

.g-justify-between {
    justify-content: space-between;
}

.g-justify-center {
    justify-content: center;
}

.g-gap-4 {
    gap: 16px;
}

.g-gap-6 {
    gap: 24px;
}

.g-gap-8 {
    gap: 32px;
}

/* Grid Helpers */
.g-grid {
    display: grid;
}

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

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

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

/* Text Helpers */
.g-text-center {
    text-align: center;
}

.g-text-left {
    text-align: left;
}

.g-text-right {
    text-align: right;
}

.g-text-white {
    color: var(--white);
}

.g-text-gray {
    color: var(--brand-neutral);
}

.g-text-muted {
    color: var(--medium-gray);
}

.g-text-secondary {
    color: var(--brand-secondary) !important;
}

.g-text-primary {
    color: var(--brand-primary) !important;
}

/* Margin Helpers */
.g-mb-4 {
    margin-bottom: 16px;
}

.g-mb-6 {
    margin-bottom: 24px;
}

.g-mb-8 {
    margin-bottom: 32px;
}

.g-mb-12 {
    margin-bottom: 48px;
}

.g-mt-4 {
    margin-top: 16px;
}

.g-mt-6 {
    margin-top: 24px;
}

.g-mt-8 {
    margin-top: 32px;
}

.g-mt-12 {
    margin-top: 48px;
}

/* Padding Helpers */
.g-py-12 {
    padding-top: 48px;
    padding-bottom: 48px;
}

.g-py-16 {
    padding-top: 64px;
    padding-bottom: 64px;
}

.g-py-20 {
    padding-top: 80px;
    padding-bottom: 80px;
}

/* Section Gradients */
.g-hero-gradient {
    background: linear-gradient(135deg, #F7F9FB 0%, #E8EEF2 100%);
    padding-top: calc(var(--header-height) + 40px);
    padding-bottom: var(--space-20);
}

.g-cta-gradient {
    background: linear-gradient(135deg, #1E3A5F 0%, #0A1F33 100%);
}

/* Image Styling */
.g-img-rounded {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
}

.g-img-rounded-light {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(30, 58, 95, 0.1);
}

.g-img-rounded-dark {
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

/* Max Width & Centering */
.g-max-w-md {
    max-width: 600px;
}

.g-max-w-lg {
    max-width: 700px;
}

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

/* Additional Gap Sizes */
.g-gap-12 {
    gap: 12px;
}

.g-gap-32 {
    gap: 32px;
}

.g-gap-60 {
    gap: 60px;
}

.g-gap-80 {
    gap: 80px;
}

/* List Reset */
.g-list-none {
    list-style: none;
    padding: 0;
}

/* Stat Number Variant */
.g-stat-number-primary {
    font-family: var(--font-heading);
    font-size: 56px;
    font-weight: 700;
    color: var(--brand-primary);
    line-height: 1;
    margin-bottom: 8px;
}

/* Divider Variants */
.g-divider-accent-left {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
    width: 80px;
    border-radius: 2px;
    margin: 0;
}

.g-divider-accent-center {
    height: 4px;
    background: linear-gradient(90deg, var(--brand-secondary), var(--brand-accent));
    width: 80px;
    border-radius: 2px;
    margin: 0 auto;
}

/* Footer Styles */
.g-footer {
    padding-top: 60px;
    padding-bottom: 32px;
}

footer .g-footer-heading {
    color: #FFFFFF;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
}

footer .g-footer-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
    line-height: 1.7;
    max-width: 400px;
}

.g-footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

footer .g-footer-contact-link {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: color 200ms ease;
}

footer .g-footer-contact-link:hover {
    color: var(--brand-secondary);
}

footer .g-footer-contact-link.g-footer-cta {
    color: var(--brand-secondary);
}

.g-footer-divider {
    border-top: 1px solid var(--border-white-10);
    padding-top: 32px;
    margin-bottom: 32px;
}

footer .g-footer-nav-heading {
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.g-footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer .g-footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 200ms ease;
}

footer .g-footer-link:hover {
    color: var(--brand-secondary);
}

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

footer .g-footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    transition: all 200ms ease;
}

footer .g-footer-social-link:hover {
    background: var(--brand-secondary);
    color: #FFFFFF;
    transform: translateY(-2px);
}

footer .g-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

footer .g-footer-copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .g-hero-title {
        font-size: 48px;
    }

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

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

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

/* Mobile header adjustments */
@media (max-width: 768px) {
    body:not(.home-template) {
        padding-top: 64px;
    }
}

@media (max-width: 768px) {
    .g-h1 {
        font-size: 36px;
        line-height: 1.2;
    }

    .g-h2 {
        font-size: 30px;
        line-height: 1.2;
    }

    .g-h3 {
        font-size: 24px;
        line-height: 1.3;
    }

    .g-hero-title {
        font-size: 36px;
    }

    .g-hero-subtitle {
        font-size: 18px;
    }

    .g-hero {
        padding-top: 100px;
        padding-bottom: 60px;
        min-height: auto;
    }

    .g-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .g-services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .g-grid-2,
    .g-grid-3,
    .g-grid-4 {
        grid-template-columns: 1fr;
    }

    .g-section {
        padding: var(--space-12) var(--space-6);
    }

    .g-card {
        padding: 24px;
    }

    .g-btn {
        width: 100%;
        text-align: center;
    }

    .g-btn-lg {
        padding: 14px 24px;
        font-size: 16px;
    }

    .g-hero {
        min-height: auto;
    }

    .g-grid.g-grid-2 {
        gap: 32px;
    }
}

/* Footer responsive */
@media (max-width: 640px) {
    footer .g-grid-4 {
        grid-template-columns: 1fr;
    }

    footer .g-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .g-h1 {
        font-size: 28px;
    }

    .g-h2 {
        font-size: 24px;
    }

    .g-hero-title {
        font-size: 32px;
    }
}


/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--brand-light);
}

::-webkit-scrollbar-thumb {
    background: var(--brand-neutral);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--brand-secondary);
}

/* Global CTA Section */
.gcg-cta-section {
    background: linear-gradient(135deg, var(--brand-teal), #007B7F);
    position: relative;
    overflow: hidden;
}

.gcg-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.gcg-cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

/* Global CTA Buttons */
.gcg-hero-btn-light {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 16px 36px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 300ms ease;
    display: inline-block;
    border: none;
    background: #FFFFFF;
    color: var(--brand-dark);
}

.gcg-hero-btn-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.gcg-hero-btn-ghost {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    padding: 14px 36px;
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    transition: all 300ms ease;
    display: inline-block;
    border: 2px solid rgba(255,255,255,0.4);
    background: transparent;
    color: #FFFFFF;
}

.gcg-hero-btn-ghost:hover {
    border-color: #FFFFFF;
    background: rgba(255,255,255,0.1);
    transform: translateY(-3px);
}

.gcg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 9999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.18);
    color: var(--brand-accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 28px;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}