/* ==================== CSS Reset & Base Styles ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --color-impact: #004a9f;
    --color-plus: #00a0a8;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-dark: #1a1a1a;
    --color-gray: #666666;
    --color-light-gray: #f5f5f5;
    --color-border: #e0e0e0;
    --color-hero-bg: linear-gradient(135deg, #0056b3 0%, #006bb3 100%);
    --color-footer-bg: #1a1a1a;

    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --max-width: 1200px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
}

html {
    /* Removed overflow-x: hidden as it breaks position: sticky */
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--color-dark);
    background-color: var(--color-white);
    /* Removed overflow-x: hidden as it breaks position: sticky */
    max-width: 100vw;
}

/* ==================== Typography ==================== */
.brand-impact {
    color: var(--color-impact);
}

.brand-plus {
    color: var(--color-plus);
}

/* ==================== Navigation ==================== */
.navbar {
    background-color: var(--color-white);
    padding: 0.75rem 2rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-brand .logo {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    margin-left: auto;
    margin-right: 1.5rem;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 0.813rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-menu a:hover {
    color: var(--color-impact);
}

/* Active Menu Item */
.nav-menu > li > a.active {
    color: var(--color-plus);
    font-weight: 600;
}

.nav-dropdown.active > a {
    color: var(--color-plus);
    font-weight: 600;
}

.nav-menu a i {
    font-size: 0.65rem;
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

/* Create invisible bridge between menu and dropdown to prevent closing */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 20px;
    background: transparent;
    display: none;
    z-index: 999;
}

.nav-dropdown:hover::before {
    display: block;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background-color: var(--color-white);
    min-width: 280px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 0;
    list-style: none;
    z-index: 1000;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
    pointer-events: none;
}

.dropdown-menu li {
    margin: 0;
}

.dropdown-menu a {
    padding: 0.75rem 1.25rem;
    display: block;
    color: var(--color-dark);
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 0.5rem;
}

.dropdown-menu a:hover {
    background-color: #f0f5f7;
    color: var(--color-impact);
}

/* Show dropdown on hover for desktop */
.nav-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Keep dropdown open while hovering over dropdown itself */
.dropdown-menu:hover {
    display: block;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--color-impact);
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.mobile-menu-toggle:hover {
    color: var(--color-plus);
}

.mobile-menu-toggle i {
    pointer-events: none;
}

.nav-icons {
    display: none; /* Hidden for now */
    gap: 1rem;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.25rem;
    color: var(--color-dark);
    transition: color 0.3s ease;
    padding: 0.25rem;
}

.icon-btn:hover {
    color: var(--color-impact);
}

/* ==================== Hero Section ==================== */
.hero-section {
    background: linear-gradient(135deg, #006b9f 0%, #008ba8 100%);
    color: var(--color-white);
    padding: 4rem 2rem 3.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Decorative Star Elements */
.hero-star {
    position: absolute;
    opacity: 0.15;
    z-index: 0;
}

.hero-star img {
    width: 100%;
    height: 100%;
    filter: brightness(0) invert(1);
}

.hero-star-1 {
    top: 10%;
    left: 5%;
    width: 180px;
    height: 180px;
}

.hero-star-2 {
    top: 50%;
    left: 8%;
    width: 120px;
    height: 120px;
}

.hero-star-3 {
    bottom: 15%;
    right: 10%;
    width: 200px;
    height: 200px;
    opacity: 0.1;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Glassmorphism Card Effect - Only for Title */
.hero-glass-card {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    padding: 3rem 2rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.2);
    margin-bottom: 2.5rem;
    width: fit-content;
    max-width: 95%;
    margin-left: auto;
    margin-right: auto;
}

.hero-title {
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 0;
    letter-spacing: -0.5px;
    color: var(--color-white);
    text-align: center;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
    font-weight: 400;
    color: var(--color-white);
}

.hero-badges {
    display: flex;
    gap: 1.75rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    font-size: 1rem;
}

.hero-badge {
    color: var(--color-white);
    opacity: 0.95;
    font-weight: 400;
}

.hero-divider {
    color: var(--color-white);
    opacity: 0.6;
    font-weight: 300;
}

/* ==================== Buttons ==================== */
.btn {
    padding: 0.75rem 1.75rem;
    border: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-family);
    min-height: 48px;
    min-width: 120px;
}

.btn-white {
    background-color: var(--color-white);
    color: var(--color-impact);
}

.btn-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.btn-outline:hover {
    background-color: var(--color-white);
    color: var(--color-impact);
    transform: translateY(-2px);
}

.btn-primary {
    background-color: var(--color-impact);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 74, 159, 0.3);
}

.btn-secondary {
    background-color: var(--color-light-gray);
    color: var(--color-dark);
}

.btn-subscribe {
    background-color: var(--color-white);
    color: var(--color-dark);
    padding: 0.75rem 2rem;
}

.btn-cta {
    background-color: var(--color-impact);
    color: var(--color-white);
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

/* ==================== Content Container ==================== */
.content-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* ==================== Glance Section ==================== */
.glance-section {
    padding: 4.5rem 2rem 3rem;
    background-color: #f8f9fa;
    text-align: left;
}

.section-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 1.75rem;
    color: var(--color-dark);
}

.section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 1100px;
}

/* ==================== Solutions Section ==================== */
.solutions-section {
    padding: 3.5rem 2rem 5rem;
    background-color: #f8f9fa;
}

.solutions-section .section-title {
    text-align: left;
    margin-bottom: 3.5rem;
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1400px;
}

.solution-card {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    box-shadow: none;
    transition: all 0.3s ease;
    position: relative;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.solution-card:hover {
    transform: translateY(-3px);
}

.solution-card:hover .solution-title {
    color: var(--color-impact);
}

.solution-card:hover .solution-number {
    color: rgba(0, 160, 168, 0.12);
}

.solution-number {
    transition: color 0.3s ease;
}

.solution-title {
    transition: color 0.3s ease;
}

/* Faded Number at Top Right */
.solution-number {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.05);
    line-height: 1;
    pointer-events: none;
}

.solution-title {
    font-size: 1.625rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    margin-top: 0;
    color: var(--color-dark);
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.title-growth {
    color: var(--color-impact);
    font-weight: 700;
}

.title-architect {
    color: var(--color-plus);
    font-weight: 700;
}

.title-mind {
    color: var(--color-plus);
    font-weight: 700;
}

.title-advisory {
    color: var(--color-plus);
    font-weight: 700;
}

.title-academy {
    color: var(--color-plus);
    font-weight: 700;
}

.solution-description {
    font-size: 0.9375rem;
    line-height: 1.65;
    color: var(--color-dark);
    margin-bottom: 2rem;
    min-height: 75px;
    flex-grow: 1;
}

.solution-link {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    color: var(--color-impact);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8125rem;
    letter-spacing: 0.8px;
    transition: gap 0.3s ease;
    text-transform: uppercase;
}

.solution-link:hover {
    gap: 0.875rem;
}

.solution-link i {
    font-size: 0.625rem;
    background-color: var(--color-impact);
    color: var(--color-white);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.solution-link:hover i {
    transform: translateX(3px);
}

/* ==================== Verticals Section ==================== */
.verticals-section {
    padding: 5rem 2rem;
    background-color: var(--color-white);
}

.verticals-title {
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-impact);
    margin-bottom: 4rem;
    text-align: left;
}

.vertical-item {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.vertical-item:last-child {
    margin-bottom: 0;
}

.vertical-content {
    max-width: 550px;
}

.vertical-tag {
    display: inline-block;
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--color-white);
    background-color: #f0f0f0;
    padding: 0.375rem 0.875rem;
    border-radius: 20px;
    margin-bottom: 1.25rem;
}

.vertical-tag-architect {
    background-color: var(--color-impact);
    color: var(--color-white);
}

.vertical-tag-mind {
    background-color: var(--color-plus);
    color: var(--color-white);
}

.vertical-tag-advisory {
    background-color: var(--color-impact);
    color: var(--color-white);
}

.vertical-tag-academy {
    background-color: var(--color-plus);
    color: var(--color-white);
}

.vertical-heading {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    color: var(--color-dark);
    line-height: 1.3;
}

.vertical-text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 2rem;
}

.vertical-footnote {
    font-size: 0.813rem;
    color: var(--color-gray);
    margin-top: 1rem;
    line-height: 1.5;
}

.btn-vertical {
    background-color: var(--color-impact);
    color: var(--color-white);
    padding: 0.75rem 1.75rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
}

.btn-vertical:hover {
    background-color: #003780;
    text-decoration: none;
}

.vertical-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-left: auto;
}

.vertical-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

/* ==================== Why Section ==================== */
.why-section {
    padding: 5rem 2rem;
    background-color: #e8f0f2;
}

.why-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.why-image-container {
    width: 100%;
}

.why-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.why-content {
    max-width: 600px;
}

.why-title {
    font-size: 2.25rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--color-dark);
}

.why-list {
    list-style: none;
    margin-bottom: 2.5rem;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.why-item:last-child {
    margin-bottom: 0;
}

.why-item i {
    color: var(--color-dark);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.1rem;
}

.why-item span {
    font-size: 1.063rem;
    line-height: 1.6;
    color: var(--color-dark);
}

.btn-why {
    background-color: var(--color-impact);
    color: var(--color-white);
    padding: 0.875rem 2.25rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
}

.btn-why:hover {
    background-color: #003780;
    text-decoration: none;
}

/* ==================== CTA Section ==================== */
.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #e8f4f5 0%, #f0f8f9 100%);
}

.cta-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

.cta-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.cta-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-impact);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text p {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-dark);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
}

.btn-cta-primary {
    background-color: var(--color-impact);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-cta-primary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 159, 0.3);
}

.btn-cta-secondary {
    background-color: var(--color-impact);
    color: white;
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
}

.btn-cta-secondary:hover {
    background-color: #003780;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 74, 159, 0.3);
}

.cta-note {
    font-size: 0.9375rem;
    color: var(--color-dark);
    margin-top: 1rem;
    font-style: italic;
}

@media (max-width: 1024px) {
    .cta-content {
        grid-template-columns: 1fr;
    }

    .cta-text h2 {
        font-size: 2rem;
    }
}

/* Old CTA Card Styles - kept for backward compatibility */
.cta-card {
    background: linear-gradient(135deg, var(--color-impact) 0%, #003780 100%);
    border-radius: 20px;
    padding: 3.5rem 3rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 74, 159, 0.2);
    max-width: 900px;
    margin: 0 auto;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.btn-cta {
    background-color: var(--color-plus);
    color: var(--color-white);
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 30px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background-color: #008c92;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 160, 168, 0.3);
    text-decoration: none;
}

/* ==================== Team Section ==================== */
.team-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
}

/* Decorative Stars */
.team-star {
    position: absolute;
    opacity: 0.12;
    z-index: 0;
}

.team-star img {
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(47%) sepia(94%) saturate(450%) hue-rotate(158deg) brightness(95%) contrast(91%);
}

.team-star-1 {
    top: 8%;
    left: 8%;
    width: 140px;
    height: 140px;
}

.team-star-2 {
    top: 20%;
    left: 15%;
    width: 80px;
    height: 80px;
}

.team-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 4rem;
    align-items: start;
    position: relative;
    z-index: 1;
}

.team-header {
    text-align: left;
}

.team-title {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-impact);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.team-subtitle {
    font-size: 2.25rem;
    font-weight: 600;
    color: var(--color-impact);
    margin: 0;
    line-height: 1.2;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.team-card {
    text-align: left;
}

.team-image-wrapper {
    width: 100%;
    max-width: 320px;
    aspect-ratio: 1;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--color-impact);
}

.team-role {
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.team-bio {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--color-dark);
    max-width: 100%;
}

/* ==================== Footer ==================== */
.footer-section {
    background-color: #000000;
    color: var(--color-white);
    padding: 4rem 2rem 2rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Footer Header: Logo and Social Icons */
.footer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 55px;
    width: auto;
}

.footer-social {
    display: none;
    gap: 1rem;
}

.social-icon {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 1rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icon:hover {
    border-color: var(--color-white);
    background-color: rgba(255, 255, 255, 0.1);
}

/* Footer Links Section */
.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 3rem;
}

.footer-column {
    text-align: left;
}

.footer-heading {
    font-size: 1.063rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--color-white);
}

.footer-list {
    list-style: none;
}

.footer-list li {
    margin-bottom: 0.875rem;
}

.footer-list a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.938rem;
    transition: color 0.3s ease;
}

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

/* Newsletter and CTA Section */
.footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 2rem;
}

.footer-newsletter {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.newsletter-input {
    padding: 0.875rem 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 6px;
    background-color: transparent;
    color: var(--color-white);
    font-size: 0.938rem;
    font-family: var(--font-family);
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-white);
}

.newsletter-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.consent-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.consent-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
}

.btn-subscribe {
    align-self: flex-start;
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 0.75rem 2rem;
    font-size: 0.938rem;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-subscribe:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.footer-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: flex-start;
}

.btn-cta-footer {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
    padding: 0.875rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-footer:hover {
    background-color: var(--color-white);
    color: var(--color-dark);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.938rem;
    margin: 0;
}

/* Footer Bottom */
.footer-bottom {
    text-align: left;
}

.copyright {
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
}

.registered-office {
    font-size: 0.813rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    max-width: 100%;
}

/* ==================== Responsive Design ==================== */
@media (max-width: 1024px) {
    .vertical-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-actions {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 768px) {
    /* Navigation - Mobile Menu */
    .navbar {
        padding: 0.75rem 1.5rem;
    }

    .mobile-menu-toggle {
        display: block;
        order: 3;
    }

    /* Disable invisible bridge on mobile */
    .nav-dropdown::before {
        display: none !important;
    }

    .nav-menu {
        position: fixed;
        top: 66px;
        right: -100%;
        width: 300px;
        max-width: 80%;
        height: calc(100vh - 66px);
        background-color: var(--color-white);
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        gap: 0;
        margin: 0;
        padding: 2rem 0;
        transition: right 0.3s ease-in-out;
        overflow-y: auto;
        z-index: 999;
    }

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

    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }

    .nav-menu > li > a {
        padding: 1rem 1.5rem;
        font-size: 0.938rem;
        width: 100%;
        justify-content: space-between;
    }

    .nav-menu a i.fa-chevron-down {
        transition: transform 0.3s ease;
    }

    .nav-dropdown.active > a i.fa-chevron-down {
        transform: rotate(180deg);
    }

    /* Dropdown styling for mobile */
    .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        background-color: #f8f9fa;
        padding: 0;
        margin: 0;
        border-radius: 0;
        min-width: auto;
        opacity: 1;
        transform: none;
        transition: none;
        pointer-events: auto;
    }

    .nav-dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu li {
        border-bottom: none;
    }

    .dropdown-menu a {
        padding: 0.75rem 1.5rem 0.75rem 2.5rem;
        font-size: 0.875rem;
        margin: 0;
        border-radius: 0;
    }

    .dropdown-menu a:hover {
        background-color: #e9ecef;
    }

    /* Mobile Menu Overlay */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 66px;
        left: 0;
        width: 100%;
        height: calc(100vh - 66px);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 998;
        transition: opacity 0.3s ease;
    }

    .mobile-menu-overlay.active {
        display: block;
    }

    /* Hero Section */
    .hero-title {
        font-size: 2rem;
    }

    .hero-glass-card {
        padding: 2rem 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-badges {
        gap: 1rem;
        font-size: 0.938rem;
    }

    /* Solutions Grid */
    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .solution-number {
        font-size: 3rem;
    }

    /* Hero Buttons */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

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

    /* Footer */
    .footer-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Team Section */
    .team-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .team-title,
    .team-subtitle {
        font-size: 1.875rem;
    }

    /* General Text Alignment */
    .glance-section,
    .solutions-section .section-title {
        text-align: left;
    }

    /* Section Padding */
    .hero-section,
    .glance-section,
    .solutions-section,
    .verticals-section,
    .why-section,
    .team-section {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

@media (max-width: 480px) {
    /* Navigation */
    .navbar {
        padding: 0.75rem 1rem;
    }

    .nav-brand .logo {
        height: 40px;
    }

    .nav-menu {
        width: 100%;
        max-width: 100%;
    }

    /* Hero Section */
    .hero-section {
        padding: 3rem 1rem 2.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-glass-card {
        padding: 1.5rem 1rem;
    }

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

    .hero-badges {
        flex-direction: column;
        gap: 0.5rem;
    }

    .hero-divider {
        display: none;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.625rem;
    }

    .vertical-title,
    .why-title {
        font-size: 1.625rem;
    }

    .team-title,
    .team-subtitle {
        font-size: 1.75rem;
    }

    .verticals-title {
        font-size: 1.625rem;
    }

    /* Solution Cards */
    .solution-title {
        font-size: 1.375rem;
    }

    .solution-description {
        font-size: 0.875rem;
        min-height: auto;
    }

    .solution-number {
        font-size: 2.5rem;
    }

    /* Buttons - Ensure full accessibility on small screens */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
        min-height: 48px;
        width: 100%;
    }

    .btn-vertical,
    .btn-why,
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        min-height: 48px;
    }

    /* CTA Section */
    .cta-text h2 {
        font-size: 1.75rem;
    }

    .cta-text p {
        font-size: 1rem;
    }

    .cta-buttons {
        width: 100%;
    }

    .cta-note {
        font-size: 0.875rem;
    }

    /* Footer */
    .footer-section {
        padding: 3rem 1rem 1.5rem;
    }

    .footer-logo {
        height: 45px;
    }

    .footer-actions {
        gap: 2rem;
    }

    /* Section Padding - Aggressive reduction for small screens */
    .glance-section {
        padding: 3rem 1rem 2rem;
    }

    .solutions-section {
        padding: 2.5rem 1rem 3.5rem;
    }

    .verticals-section {
        padding: 3.5rem 1rem;
    }

    .why-section {
        padding: 3.5rem 1rem;
    }

    .team-section {
        padding: 3.5rem 1rem;
    }

    .cta-section {
        padding: 3.5rem 1rem;
    }

    /* Vertical Items */
    .vertical-heading {
        font-size: 1.5rem;
    }

    .vertical-text {
        font-size: 0.875rem;
    }

    /* Why Section */
    .why-item span {
        font-size: 0.9375rem;
    }

    /* Team Section */
    .team-image-wrapper {
        max-width: 280px;
        margin: 0 auto 1.5rem;
    }

    .team-name {
        font-size: 1.375rem;
    }

    .team-bio {
        font-size: 0.875rem;
    }
}

@media (max-width: 375px) {
    /* Extra small devices (iPhone SE, small Android phones) */

    /* Navigation */
    .nav-brand .logo {
        height: 36px;
    }

    /* Hero Section */
    .hero-section {
        padding: 2.5rem 1rem 2rem;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .hero-glass-card {
        padding: 1.25rem 0.875rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
    }

    /* Section Titles */
    .section-title {
        font-size: 1.5rem;
    }

    .vertical-title,
    .why-title,
    .team-title,
    .team-subtitle,
    .verticals-title {
        font-size: 1.5rem;
    }

    /* Section Padding - Very tight for very small screens */
    .glance-section {
        padding: 2.5rem 1rem 1.5rem;
    }

    .solutions-section {
        padding: 2rem 1rem 3rem;
    }

    .verticals-section,
    .why-section,
    .team-section,
    .cta-section {
        padding: 3rem 1rem;
    }

    /* Solution Cards */
    .solution-title {
        font-size: 1.25rem;
    }

    .solution-description {
        font-size: 0.8125rem;
    }

    .solutions-grid {
        gap: 1.5rem;
    }

    /* Vertical Items */
    .vertical-heading {
        font-size: 1.375rem;
    }

    .vertical-text {
        font-size: 0.8125rem;
    }

    .vertical-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.75rem;
    }

    /* Why Section */
    .why-item span {
        font-size: 0.875rem;
    }

    .why-item i {
        font-size: 1.25rem;
    }

    /* Team Section */
    .team-image-wrapper {
        max-width: 240px;
    }

    .team-name {
        font-size: 1.25rem;
    }

    .team-bio {
        font-size: 0.8125rem;
    }

    /* CTA Section */
    .cta-text h2 {
        font-size: 1.5rem;
    }

    .cta-text p {
        font-size: 0.9375rem;
    }

    /* Footer */
    .footer-logo {
        height: 40px;
    }

    .footer-heading {
        font-size: 0.9375rem;
    }

    .footer-list a {
        font-size: 0.875rem;
    }
}

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

.solution-card,
.vertical-item,
.team-card,
.why-wrapper {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.solution-card.animate-in,
.vertical-item.animate-in,
.team-card.animate-in,
.why-wrapper.animate-in {
    animation: fadeInUp 0.8s ease forwards;
}

/* Ripple Effect for Buttons */
.btn {
    position: relative;
    overflow: hidden;
}

.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: scale(0);
    animation: ripple-animation 0.6s ease-out;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Active Navigation Link */
.nav-menu a.active {
    color: var(--color-impact);
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--color-impact);
}

/* ==================== Scroll to Top Button ==================== */
#scrollToTopBtn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 74, 159, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

#scrollToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 160, 168, 0.4);
}

#scrollToTopBtn.show {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

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

@media (max-width: 768px) {
    #scrollToTopBtn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 18px;
    }
}

/* ==================== Floating AI Readiness Button ==================== */
.ai-readiness-fab {
    position: fixed;
    bottom: 95px;
    right: 30px;
    z-index: 999;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.ai-readiness-fab-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

/* Gradient ring */
.ai-readiness-fab-inner::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    z-index: -1;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.ai-fab-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    position: relative;
    z-index: 2;
}

.ai-fab-icon svg {
    width: 34px;
    height: 34px;
}

.ai-fab-text {
    max-width: 0;
    overflow: hidden;
    white-space: nowrap;
    opacity: 0;
    font-size: 15px;
    font-weight: 600;
    color: var(--color-impact);
    padding: 0;
    transition: all 0.4s ease;
    margin-left: 0;
}

/* Desktop hover effect */
@media (min-width: 769px) {
    .ai-readiness-fab:hover .ai-readiness-fab-inner {
        padding-right: 20px;
    }

    .ai-readiness-fab:hover .ai-fab-text {
        max-width: 250px;
        opacity: 1;
        padding-left: 12px;
        padding-right: 8px;
        margin-left: 8px;
    }

    .ai-readiness-fab:hover {
        transform: translateY(-5px);
    }
}

/* Mobile expanded state */
.ai-readiness-fab.expanded .ai-readiness-fab-inner {
    padding-right: 20px;
}

.ai-readiness-fab.expanded .ai-fab-text {
    max-width: 250px;
    opacity: 1;
    padding-left: 12px;
    padding-right: 8px;
    margin-left: 8px;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .ai-readiness-fab {
        bottom: 80px;
        right: 20px;
    }

    .ai-readiness-fab-inner {
        padding: 6px;
    }

    .ai-fab-icon {
        width: 35px;
        height: 35px;
        min-width: 35px;
    }

    .ai-fab-icon svg {
        width: 30px;
        height: 30px;
    }

    .ai-fab-text {
        font-size: 13px;
    }
}

/* Pulse animation - subtle wave effect */
@keyframes pulse-ring {
    0% {
        transform: scale(1);
        opacity: 0.3;
    }
    100% {
        transform: scale(1.08);
        opacity: 0;
    }
}

.ai-readiness-fab-inner::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--color-impact) 0%, var(--color-plus) 100%);
    z-index: -2;
    animation: pulse-ring 3s ease-out infinite;
}