/* Modern Agency Website - Bold & Creative */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Updated to match UI illustrations */
    --primary-black: #0A0A0A;
    --primary-white: #FFFFFF;
    --accent-green: #4CAF50;
    --accent-purple: #764ba2;
    --accent-blue: #667eea;
    
    /* Modern UI colors from illustrations */
    --ui-pink: #f093fb;
    --ui-orange: #FFB347;
    --ui-coral: #FF6B6B;
    --ui-gradient-green: linear-gradient(135deg, #4CAF50, #66BB6A);
    --ui-gradient-purple: linear-gradient(135deg, #667eea, #764ba2);
    --ui-gradient-pink: linear-gradient(135deg, #f093fb, #ff9a9e);
    --ui-gradient-orange: linear-gradient(135deg, #FFB347, #ffcc70);
    
    --dark-grey: #1A1A1A;
    --light-grey: #F5F5F5;
    --medium-grey: #666666;
    --border-grey: #E0E0E0;
    
    /* Subtle section backgrounds */
    --bg-warm-tint: #FEFCF9;      /* Very light warm beige */
    --bg-cool-tint: #F8FAFC;      /* Very light cool blue */
    --bg-green-tint: #F7FDF9;     /* Very light mint green */
    --bg-purple-tint: #FAFAFF;    /* Very light lavender */
    --bg-neutral-tint: #FCFCFC;   /* Off-white neutral */
    
    /* Typography */
    --font-primary: 'Space Grotesk', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', 'Courier New', monospace;
    
    /* Spacing */
    --section-padding: 120px 0;
    --container-padding: 0 40px;
    
    /* Border Radius */
    --radius-small: 8px;
    --radius-medium: 16px;
    --radius-large: 24px;
    
    /* Shadows */
    --shadow-light: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-medium: 0 8px 40px rgba(0, 0, 0, 0.12);
    --shadow-strong: 0 20px 60px rgba(0, 0, 0, 0.15);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--primary-white);
    color: var(--primary-black);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-grey);
    transition: all 0.3s ease;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    width: 32px;
    height: 32px;
}

.logo-text {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-link {
    color: var(--primary-black);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--accent-purple);
}

.nav-cta {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 12px 24px;
    border-radius: var(--radius-small);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--dark-grey);
    transform: translateY(-2px);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--primary-black);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    background: var(--primary-white);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--container-padding);
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 750px;
}

.hero-title {
    font-size: clamp(3.5rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 0.95;
    margin-bottom: 30px;
    color: var(--primary-black);
    letter-spacing: -0.04em;
    font-family: var(--font-primary);
}

.highlight {
    background: rgba(240, 147, 251, 0.3);
    color: var(--primary-black);
    padding: 2px 4px;
    border-radius: 4px;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--medium-grey);
    line-height: 1.5;
    margin-bottom: 40px;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 20px 40px;
    border-radius: var(--radius-medium);
    text-decoration: none;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    font-size: 14px;
    font-family: var(--font-mono);
}

.btn-primary:hover {
    background: var(--dark-grey);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.cta-note {
    font-size: 14px;
    color: var(--medium-grey);
    line-height: 1.4;
    align-self: center;
}

.hero-guarantee {
    margin-top: 12px;
}

.guarantee-badge {
    font-size: 13px;
    color: #22c55e;
    font-weight: 500;
    background: rgba(34, 197, 94, 0.1);
    padding: 6px 12px;
    border-radius: 20px;
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 600px;
    overflow: visible;
}

.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-height: 500px;
    overflow: visible;
}

.hero-image {
    max-width: 100%;
    height: auto;
    max-height: 500px;
    z-index: 1;
    position: relative;
    border-radius: var(--radius-large);
}

/* UI Elements Around Hero Image */
.ui-element {
    position: absolute;
    z-index: 10;
    pointer-events: none;
    font-family: var(--font-primary);
}

/* Dashboard Cards */
.dashboard-card-1, .dashboard-card-2 {
    background: white;
    border-radius: 16px;
    padding: 16px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.dashboard-card-1 {
    top: 20px;
    left: 20px;
    min-width: 160px;
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
    color: white;
}

.dashboard-card-2 {
    top: 60px;
    right: 20px;
    min-width: 140px;
    color: #4CAF50;
}


.card-header {
    font-size: 12px;
    font-weight: 500;
    opacity: 0.9;
    margin-bottom: 4px;
}

.card-metric {
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 4px;
}

.card-trend {
    font-size: 11px;
    opacity: 0.8;
}

.card-arrow {
    font-size: 16px;
    color: #4CAF50;
}

.progress-circle {
    flex-shrink: 0;
}

/* Chat Bubble */
.chat-bubble-1 {
    background: #667eea;
    color: white;
    border-radius: 20px;
    padding: 12px 16px;
    max-width: 180px;
    bottom: 80px;
    left: 20px;
}

.chat-bubble-1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #667eea;
}

.chat-message {
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
}

.chat-dots {
    display: flex;
    gap: 3px;
}

.chat-dots span {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 50%;
    animation: chatPulse 1.5s infinite;
}

.chat-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.chat-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes chatPulse {
    0%, 80%, 100% { opacity: 0.3; }
    40% { opacity: 1; }
}

/* HR Badges */
.hr-badge {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: white;
}

.badge-collaboration {
    background: #764ba2;
    top: 150px;
    right: 30px;
}

.badge-leadership {
    background: #f093fb;
    bottom: 140px;
    right: 40px;
}

.badge-wellbeing {
    background: #4CAF50;
    bottom: 120px;
    left: 30px;
}

.badge-performance {
    background: #FFB347;
    top: 120px;
    left: 40px;
    color: #333;
}

/* Profile Stack */
.profile-stack {
    display: flex;
    align-items: center;
    top: 200px;
    right: 60px;
}

.profile-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -8px;
}

.avatar-1 {
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
}

.avatar-2 {
    background: linear-gradient(135deg, #4CAF50, #66BB6A);
}

.avatar-3 {
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.profile-count {
    background: #333;
    color: white;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 12px;
    margin-left: 8px;
}

/* Rating Card */
.rating-card {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    bottom: 40px;
    right: 80px;
    text-align: center;
}

.rating-stars {
    color: #FFD700;
    font-size: 14px;
    margin-bottom: 4px;
}

.rating-text {
    font-size: 11px;
    color: #666;
    font-weight: 500;
}

/* Use Cases Section - Icon + Description Rows */
.use-cases {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.use-cases-container {
    max-width: 90%;
    margin: 0 auto;
    background: #f8f7fb;
    border-radius: var(--radius-large);
    padding: 80px 60px;
    border: 1px solid rgba(235, 230, 245, 0.4);
}

.use-cases .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.use-cases-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.use-case-item {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: var(--primary-white);
    border-radius: var(--radius-large);
    border: 1px solid var(--border-grey);
    box-shadow: var(--shadow-light);
}

.use-case-icon {
    width: 80px;
    height: 80px;
    background: #f093fb;
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-white);
    flex-shrink: 0;
}

.use-case-content {
    flex: 1;
}

.use-case-content h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.use-case-content p {
    font-size: 16px;
    color: var(--medium-grey);
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.services .container {
    max-width: 90%;
    background: #faf9f7;
    border-radius: var(--radius-large);
    padding: 80px 60px;
    margin: 0 auto;
    border: 1px solid rgba(240, 235, 230, 0.4);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 20px;
    color: var(--medium-grey);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    background: var(--primary-white);
    padding: 50px 40px;
    border-radius: var(--radius-large);
    border: 1px solid var(--border-grey);
}


.service-icon {
    width: 60px;
    height: 60px;
    background: var(--ui-gradient-green);
    border-radius: var(--radius-medium);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    color: var(--primary-white);
}

.service-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--medium-grey);
    font-size: 16px;
    line-height: 1.6;
}

/* Problem Statement Section */
.problem-statement {
    padding: var(--section-padding);
    background: var(--primary-white);
    color: var(--primary-black);
}

.problem-statement .container {
    max-width: 90%;
    background: var(--primary-black);
    border-radius: var(--radius-large);
    padding: 80px 60px;
    margin: 0 auto;
    color: var(--primary-white);
}

.problem-statement .section-title {
    color: var(--primary-white);
}

.problem-statement .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 80px;
}

.problem-card {
    background: var(--dark-grey);
    border-radius: var(--radius-large);
    padding: 50px 40px;
    border: 1px solid #333;
    text-align: center;
}


.problem-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    color: var(--ui-pink);
}

.problem-icon svg {
    width: 48px;
    height: 48px;
}

.problem-card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-white);
    letter-spacing: -0.02em;
}

.problem-card p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    line-height: 1.6;
}

/* Expertise Section */
.expertise {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.expertise .container {
    max-width: 90%;
    background: var(--ui-gradient-purple);
    border-radius: var(--radius-large);
    padding: 80px 60px;
    margin: 0 auto;
    color: var(--primary-white);
}

.expertise-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    align-items: start;
}

.expertise-text h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--primary-white);
}

.expertise-text p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    opacity: 0.9;
}

.expertise-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.expertise-stat {
    text-align: center;
}

.expertise-stat .stat-number {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--ui-orange);
    line-height: 1;
    margin-bottom: 8px;
}

.expertise-stat .stat-label {
    font-size: 14px;
    opacity: 0.8;
    font-weight: 500;
}

.expertise-areas h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--primary-white);
}

.areas-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.area-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: var(--radius-small);
    font-weight: 600;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.area-item:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--ui-orange);
    transform: translateX(5px);
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.process .container {
    max-width: 90%;
    background: #f7f9fb;
    border-radius: var(--radius-large);
    padding: 80px 60px;
    margin: 0 auto;
    border: 1px solid rgba(225, 235, 245, 0.4);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-top: 60px;
    position: relative;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-header {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}


.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    background: var(--ui-gradient-green);
    border-radius: 50%;
    font-size: 24px;
    font-weight: 900;
    color: var(--primary-white);
    position: relative;
    z-index: 2;
}

.timeline-connector {
    position: absolute;
    top: 40px;
    left: calc(50% + 40px);
    width: calc(100% + 20px);
    height: 4px;
    background: linear-gradient(90deg, #4CAF50 0%, #66BB6A 100%);
    z-index: 1;
}

.process-step:last-child .timeline-connector {
    display: none;
}

.step-content h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-black);
    letter-spacing: -0.02em;
}

.step-duration {
    font-size: 14px;
    font-weight: 600;
    color: #4CAF50;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.duration-bar {
    width: 100%;
    height: 8px;
    background: rgba(76, 175, 80, 0.2);
    border-radius: 4px;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.duration-progress {
    height: 100%;
    background: linear-gradient(90deg, #4CAF50, #66BB6A);
    border-radius: 4px;
    transition: width 0.3s ease;
    position: absolute;
    top: 0;
}

.step-details {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    max-width: 280px;
    margin: 0 auto;
}

.step-details li {
    color: var(--medium-grey);
    font-size: 15px;
    line-height: 1.5;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.step-details li:before {
    content: "•";
    color: #4CAF50;
    position: absolute;
    left: 0;
    top: 0;
    font-weight: bold;
    font-size: 16px;
}

/* Contact Section */
.contact {
    padding: var(--section-padding);
    background: var(--primary-white);
}

.contact .container {
    max-width: 90%;
    background: #f7faf8;
    border-radius: var(--radius-large);
    padding: 80px 60px;
    margin: 0 auto;
    border: 1px solid rgba(225, 245, 235, 0.4);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.0;
    color: var(--primary-black);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.contact-info p {
    font-size: 20px;
    color: var(--medium-grey);
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-grey);
}

.contact-label {
    font-weight: 600;
    color: var(--primary-black);
}

.contact-value {
    color: var(--medium-grey);
}

.contact-form {
    background: var(--primary-white);
    padding: 50px;
    border-radius: var(--radius-large);
    box-shadow: var(--shadow-light);
}

.booking-cta {
    text-align: center;
    padding: 20px 0;
    position: relative;
}


.booking-cta h3 {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-black);
    margin-bottom: 15px;
    letter-spacing: -0.02em;
}

.booking-cta p {
    font-size: 18px;
    color: var(--medium-grey);
    margin-bottom: 20px;
    line-height: 1.5;
}


.enhanced-cta {
    font-size: 18px !important;
    padding: 22px 45px !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    margin-bottom: 35px;
}

.enhanced-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.booking-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin: 40px 0;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
}

.booking-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: var(--light-grey);
    border-radius: var(--radius-small);
    text-align: left;
}

.feature-icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.success-icon {
    background: #4CAF50;
    color: white;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
}

.booking-feature span:last-child {
    font-weight: 500;
    color: var(--primary-black);
    line-height: 1.5;
    flex: 1;
}

.risk-reversal {
    margin: 25px 0 15px 0;
}

.risk-text {
    font-size: 14px;
    color: var(--medium-grey);
    font-weight: 500;
}

.trial-guarantee {
    margin: 15px 0;
}

.guarantee-text {
    font-size: 14px;
    color: var(--medium-grey);
    font-weight: 500;
}

.urgency-text {
    background: rgba(240, 147, 251, 0.1);
    padding: 12px 20px;
    border-radius: var(--radius-small);
    font-weight: 600;
    color: var(--primary-black) !important;
    border: 1px solid rgba(240, 147, 251, 0.2);
}

@media (max-width: 768px) {
    .booking-cta h3 {
        font-size: 28px;
    }
    
    .booking-features {
        gap: 15px;
    }
    
    .booking-feature {
        padding: 12px 15px;
    }
}

.form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 18px 20px;
    border: 1px solid var(--border-grey);
    border-radius: var(--radius-small);
    font-size: 16px;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease;
    background: var(--primary-white);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-purple);
}

.form-note {
    font-size: 14px;
    color: var(--medium-grey);
    text-align: center;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--primary-black);
    color: var(--primary-white);
    padding: 60px 0 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-logo .logo-text {
    color: var(--primary-white);
}

.footer-contact a {
    color: var(--primary-white);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-contact a:hover {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #333;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 992px) {
    :root {
        --container-padding: 0 30px;
    }
    
    .services .container,
    .problem-statement .container,
    .expertise .container,
    .process .container,
    .contact .container {
        padding: 60px 40px;
    }
    
    .use-cases-container {
        padding: 60px 40px;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .timeline-connector {
        display: none;
    }
    
    
    .expertise-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
}

@media (max-width: 768px) {
    .services-grid,
    .problem-grid {
        grid-template-columns: 1fr;
    }
    
    .use-case-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px;
    }
    
    .use-case-icon {
        align-self: center;
    }
    
    /* Make hero elements smaller and better positioned on mobile */
    .dashboard-card-1, .dashboard-card-2 {
        padding: 10px 12px;
        min-width: 100px;
    }
    
    .dashboard-card-1 {
        top: 5px;
        left: 5px;
    }
    
    .dashboard-card-2 {
        top: 5px;
        right: 5px;
    }
    
    .card-header {
        font-size: 10px;
        margin-bottom: 2px;
    }
    
    .card-metric {
        font-size: 18px;
        margin-bottom: 2px;
    }
    
    .card-trend {
        font-size: 9px;
    }
    
    /* Smaller HR badges */
    .hr-badge {
        padding: 4px 8px;
        font-size: 10px;
        font-weight: 500;
    }
    
    .badge-collaboration {
        top: 100px;
        right: 15px;
    }
    
    .badge-leadership {
        bottom: 80px;
        right: 20px;
    }
    
    .badge-wellbeing {
        bottom: 60px;
        left: 15px;
    }
    
    .badge-performance {
        top: 120px;
        left: 20px;
    }
    
    /* Smaller rating card */
    .rating-card {
        padding: 8px 12px;
        bottom: 15px;
        right: 50%;
        transform: translateX(50%);
    }
    
    .rating-stars {
        font-size: 12px;
        margin-bottom: 2px;
    }
    
    .rating-text {
        font-size: 9px;
    }
    
    /* Make hero visual more mobile-friendly */
    .hero-visual {
        height: 400px;
    }
    
    .hero-image-container {
        min-height: 350px;
    }
    
    .hero-image {
        max-height: 300px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background: var(--primary-white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: right 0.3s ease;
        box-shadow: var(--shadow-strong);
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    :root {
        --container-padding: 0 20px;
        --section-padding: 80px 0;
    }
    
    .services .container,
    .problem-statement .container,
    .expertise .container,
    .process .container,
    .contact .container {
        padding: 60px 30px;
    }
    
    .use-cases-container {
        padding: 60px 30px;
    }
    
    .nav-container {
        padding: 15px 20px;
    }
    
    .service-card,
    .contact-form {
        padding: 40px 30px;
    }
    
    .problem-card {
        padding: 40px 30px;
    }
    
    .expertise-stats {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .services .container,
    .problem-statement .container,
    .expertise .container,
    .process .container,
    .contact .container {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .use-cases-container {
        padding: 40px 20px;
        margin: 0 20px;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        max-width: 280px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
}

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

/* Gentle Animation Keyframes */
@keyframes gentleFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.service-card,
.case-study-card,
.process-step {
    animation: fadeInUp 0.6s ease-out;
}

/* Scroll Animations */
@media (prefers-reduced-motion: no-preference) {
    .service-card,
    .case-study-card,
    .process-step {
        opacity: 0;
        animation: fadeInUp 0.6s ease-out forwards;
    }
    
    .service-card:nth-child(1) { animation-delay: 0.1s; }
    .service-card:nth-child(2) { animation-delay: 0.2s; }
    .service-card:nth-child(3) { animation-delay: 0.3s; }
    
    .process-step:nth-child(1) { animation-delay: 0.1s; }
    .process-step:nth-child(2) { animation-delay: 0.2s; }
    .process-step:nth-child(3) { animation-delay: 0.3s; }
}