.elementor-3241 .elementor-element.elementor-element-ff34e2f{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}/* Start custom CSS for html, class: .elementor-element-0b55691 *//* ================================================
   OnTheGrow Leadership™ - Premium Website Styles
   ================================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
    /* Brand Colors */
    --primary-teal: #39989E;
    --highlight-teal: #75CBC4;
    --purple-accent: #6B52E9;
    --deep-purple: #36294F;
    --blush-bg: #F9EFF6;
    --lime-accent: #8DB844;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --off-white: #FAFAFA;
    
    /* Typography */
    --font-primary: 'Work Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Spacing */
    --section-padding: 120px;
    --section-padding-mobile: 80px;
    --container-max: 1280px;
    --container-padding: 24px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-medium: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ---- Reset & Base Styles ---- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

ul {
    list-style: none;
}

/* ---- Container ---- */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
}

h4 {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
}

p {
    font-size: 1.125rem;
    color: var(--text-light);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 32px;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition-medium);
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--primary-teal);
    color: var(--white);
    border-color: var(--primary-teal);
}

.btn-primary:hover {
    background: var(--highlight-teal);
    border-color: var(--highlight-teal);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.btn-secondary:hover {
    background: var(--text-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ai {
    background: var(--purple-accent);
    color: var(--white);
    border-color: var(--purple-accent);
}

.btn-ai:hover {
    background: #5a42d4;
    border-color: #5a42d4;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(107, 82, 233, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 1.125rem;
}

/* ---- Section Headers ---- */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-teal);
    margin-bottom: 16px;
}

.section-title {
    color: var(--text-color);
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.section-header-light .section-label {
    color: var(--highlight-teal);
}

.section-header-light .section-title,
.section-header-light .section-subtitle {
    color: var(--white);
}

/* ================================================
   NAVIGATION
   ================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    transition: color var(--transition-medium);
}

.logo-suffix {
    font-size: 1rem;
    font-weight: 500;
    color: var(--highlight-teal);
}

.navbar.scrolled .logo-text {
    color: var(--text-color);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-menu a {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--highlight-teal);
    transition: width var(--transition-medium);
}

.nav-menu a:hover {
    color: var(--white);
}

.nav-menu a:hover::after {
    width: 100%;
}

.navbar.scrolled .nav-menu a {
    color: var(--text-light);
}

.navbar.scrolled .nav-menu a:hover {
    color: var(--text-color);
}

.nav-cta {
    background: var(--primary-teal) !important;
    color: var(--white) !important;
    padding: 12px 24px !important;
    border-radius: 50px !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-cta:hover {
    background: var(--highlight-teal) !important;
    transform: translateY(-2px);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: all var(--transition-medium);
}

.navbar.scrolled .mobile-menu-btn span {
    background: var(--text-color);
}

/* ================================================
   HERO SECTION
   ================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(54, 41, 79, 0.85) 0%,
        rgba(57, 152, 158, 0.75) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    text-align: center;
    padding: 140px var(--container-padding) 100px;
}

.hero-tagline {
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--highlight-teal);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.2s forwards;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.4s forwards;
}

.hero-subheadline {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.6s forwards;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease 0.8s forwards;
}

.hero .btn-secondary {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero .btn-secondary:hover {
    background: var(--white);
    color: var(--text-color);
    border-color: var(--white);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    opacity: 0;
    animation: fadeIn 0.8s ease 1.2s forwards;
}

.scroll-indicator i {
    animation: bounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(8px); }
    60% { transform: translateY(4px); }
}

/* ================================================
   TRUST BAR
   ================================================ */
.trust-bar {
    background: var(--off-white);
    padding: 40px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--text-light);
    font-size: 0.9375rem;
    font-weight: 500;
}

.trust-item i {
    color: var(--primary-teal);
    font-size: 1.25rem;
}

.trust-divider {
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.15);
}

/* ================================================
   SERVICES SECTION
   ================================================ */
.services {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.service-item {
    text-align: center;
    padding: 40px 30px;
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.service-item:hover {
    transform: translateY(-8px);
}

.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    color: var(--primary-teal);
    transition: all var(--transition-medium);
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-item:hover .service-icon {
    transform: scale(1.1);
    color: var(--highlight-teal);
}

.service-icon-ai {
    color: var(--purple-accent);
}

.service-item:hover .service-icon-ai {
    color: var(--purple-accent);
}

.service-item-highlight {
    background: linear-gradient(135deg, rgba(107, 82, 233, 0.05) 0%, rgba(117, 203, 196, 0.05) 100%);
    border: 1px solid rgba(107, 82, 233, 0.1);
}

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-color);
}

.service-description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--primary-teal);
    transition: all var(--transition-fast);
}

.service-link i {
    transition: transform var(--transition-fast);
}

.service-link:hover {
    color: var(--highlight-teal);
}

.service-link:hover i {
    transform: translateX(4px);
}

.service-item-highlight .service-link {
    color: var(--purple-accent);
}

/* ================================================
   GROWTH MODEL SECTION
   ================================================ */
.growth-model {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--deep-purple) 0%, #4a3968 100%);
    position: relative;
    overflow: hidden;
}

.growth-model::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(117, 203, 196, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.growth-diagram {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-bottom: 60px;
    position: relative;
}

.growth-step {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 20px;
    min-width: 160px;
    max-width: 180px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.6s ease forwards;
}

.growth-step:nth-child(1) { animation-delay: 0.1s; }
.growth-step:nth-child(2) { animation-delay: 0.2s; }
.growth-step:nth-child(3) { animation-delay: 0.3s; }
.growth-step:nth-child(4) { animation-delay: 0.4s; }
.growth-step:nth-child(5) { animation-delay: 0.5s; }
.growth-step:nth-child(6) { animation-delay: 0.6s; }

.growth-letter {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--highlight-teal) 100%);
    border-radius: 50%;
    margin-bottom: 20px;
    box-shadow: 0 8px 30px rgba(57, 152, 158, 0.3);
    transition: all var(--transition-medium);
}

.growth-step:hover .growth-letter {
    transform: scale(1.1);
    box-shadow: 0 12px 40px rgba(57, 152, 158, 0.4);
}

.growth-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.growth-content p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.growth-connector {
    position: absolute;
    top: 60px;
    right: -30px;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--highlight-teal), transparent);
}

.growth-step:last-child .growth-connector {
    display: none;
}

.growth-cta {
    text-align: center;
}

/* ================================================
   VALUES SECTION
   ================================================ */
.values {
    padding: var(--section-padding) 0;
    background: var(--blush-bg);
}

.values-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.values-quote {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    line-height: 1.4;
    color: var(--text-color);
    position: relative;
}

.quote-mark {
    font-size: 4rem;
    color: var(--primary-teal);
    opacity: 0.3;
    line-height: 0;
    vertical-align: top;
}

.quote-mark-end {
    vertical-align: bottom;
}

.values-attribution {
    margin-top: 32px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-teal);
}

/* ================================================
   AI SECTION
   ================================================ */
.ai-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
    overflow: hidden;
}

.ai-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 82, 233, 0.03) 0%, rgba(117, 203, 196, 0.03) 100%);
    pointer-events: none;
}

.ai-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.ai-label {
    color: var(--purple-accent) !important;
}

.ai-text .section-title {
    margin-bottom: 24px;
}

.ai-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.8;
}

.ai-features {
    margin-bottom: 40px;
}

.ai-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-color);
    padding: 10px 0;
}

.ai-features i {
    color: var(--lime-accent);
    font-size: 1.125rem;
}

.ai-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
}

.ai-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(107, 82, 233, 0.2);
    animation: pulse 4s ease-in-out infinite;
}

.ai-circle-outer {
    width: 350px;
    height: 350px;
    animation-delay: 0s;
}

.ai-circle-middle {
    width: 260px;
    height: 260px;
    animation-delay: 0.5s;
}

.ai-circle-inner {
    width: 170px;
    height: 170px;
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.05); opacity: 1; }
}

.ai-icon {
    position: relative;
    z-index: 2;
    width: 100px;
    height: 100px;
    color: var(--purple-accent);
    animation: float 6s ease-in-out infinite;
}

.ai-icon svg {
    width: 100%;
    height: 100%;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}

.ai-particles span {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--purple-accent);
    border-radius: 50%;
    opacity: 0.4;
}

.ai-particles span:nth-child(1) { top: 20%; left: 15%; animation: particle 8s ease-in-out infinite; }
.ai-particles span:nth-child(2) { top: 30%; right: 20%; animation: particle 6s ease-in-out infinite 1s; }
.ai-particles span:nth-child(3) { bottom: 25%; left: 25%; animation: particle 7s ease-in-out infinite 2s; }
.ai-particles span:nth-child(4) { bottom: 20%; right: 15%; animation: particle 9s ease-in-out infinite 0.5s; }
.ai-particles span:nth-child(5) { top: 50%; left: 10%; animation: particle 5s ease-in-out infinite 1.5s; }
.ai-particles span:nth-child(6) { top: 40%; right: 10%; animation: particle 8s ease-in-out infinite 2.5s; }

@keyframes particle {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.4; }
    25% { transform: translate(10px, -10px) scale(1.2); opacity: 0.7; }
    50% { transform: translate(-5px, 15px) scale(0.8); opacity: 0.5; }
    75% { transform: translate(-15px, -5px) scale(1.1); opacity: 0.6; }
}

/* ================================================
   TESTIMONIALS SECTION
   ================================================ */
.testimonials {
    padding: var(--section-padding) 0;
    background: var(--off-white);
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    display: none;
    background: var(--white);
    border-radius: 24px;
    padding: 50px;
    box-shadow: var(--shadow-md);
    opacity: 0;
    transform: translateX(20px);
    transition: all var(--transition-medium);
}

.testimonial-card.active {
    display: block;
    opacity: 1;
    transform: translateX(0);
}

.testimonial-text {
    font-size: 1.375rem;
    font-weight: 500;
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 5rem;
    color: var(--primary-teal);
    opacity: 0.15;
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 32px;
}

.author-info h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 4px;
}

.author-info p {
    font-size: 0.9375rem;
    color: var(--text-light);
}

.testimonial-stats {
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.stat {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-teal);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 40px;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--text-color);
    background: transparent;
    color: var(--text-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: var(--text-color);
    color: var(--white);
}

.carousel-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background: var(--primary-teal);
    transform: scale(1.2);
}

.dot:hover {
    background: var(--highlight-teal);
}

/* ================================================
   CLOSING CTA SECTION
   ================================================ */
.closing-cta {
    padding: var(--section-padding) 0;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--highlight-teal) 100%);
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 20px;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.closing-cta .btn-primary {
    background: var(--white);
    color: var(--primary-teal);
    border-color: var(--white);
}

.closing-cta .btn-primary:hover {
    background: var(--deep-purple);
    color: var(--white);
    border-color: var(--deep-purple);
}

.closing-cta .btn-secondary {
    color: var(--white);
    border-color: var(--white);
}

.closing-cta .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-teal);
}

/* ================================================
   FOOTER
   ================================================ */
.footer {
    background: var(--deep-purple);
    padding: 80px 0 40px;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 60px;
}

.footer-logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 16px;
}

.footer-logo .logo-text {
    color: var(--white);
}

.footer-mission {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.8);
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--primary-teal);
    border-color: var(--primary-teal);
    color: var(--white);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--highlight-teal);
    margin-bottom: 20px;
}

.footer-column ul li {
    margin-bottom: 12px;
}

.footer-column a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition-fast);
}

.footer-column a:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-legal a:hover {
    color: var(--white);
}

/* ================================================
   RESPONSIVE STYLES
   ================================================ */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
    
    .service-item:last-child {
        grid-column: span 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .ai-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .ai-visual {
        order: -1;
        min-height: 300px;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }
    
    /* Mobile Navigation */
    .mobile-menu-btn {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 400px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 20px;
        transition: right var(--transition-medium);
        box-shadow: var(--shadow-xl);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu a {
        color: var(--text-color);
        font-size: 1.125rem;
    }
    
    .nav-menu a::after {
        display: none;
    }
    
    .nav-cta {
        width: 100%;
        text-align: center;
    }
    
    /* Hero */
    .hero-content {
        padding: 120px var(--container-padding) 80px;
    }
    
    .hero-cta-group {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        max-width: 320px;
    }
    
    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-item:last-child {
        grid-column: span 1;
        max-width: none;
    }
    
    /* GROWTH Model */
    .growth-diagram {
        flex-direction: column;
        align-items: center;
    }
    
    .growth-step {
        max-width: 100%;
        width: 100%;
        flex-direction: row;
        text-align: left;
        gap: 20px;
        padding: 20px;
    }
    
    .growth-letter {
        width: 60px;
        height: 60px;
        min-width: 60px;
        font-size: 1.5rem;
        margin-bottom: 0;
    }
    
    .growth-connector {
        display: none;
    }
    
    /* Trust Bar */
    .trust-items {
        flex-direction: column;
        gap: 20px;
    }
    
    .trust-divider {
        display: none;
    }
    
    /* Testimonials */
    .testimonial-card {
        padding: 30px;
    }
    
    .testimonial-text {
        font-size: 1.125rem;
    }
    
    .testimonial-text::before {
        display: none;
    }
    
    /* Footer */
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 60px;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 0.9375rem;
    }
    
    .btn-large {
        padding: 16px 28px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* ================================================
   UTILITY CLASSES
   ================================================ */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth scroll for anchors */
html {
    scroll-padding-top: 100px;
}

/* Focus states for accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--primary-teal);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}/* End custom CSS */