/* ==========================================
   PROFESSIONAL COACHING & CONSULTING WEBSITE
   High-Converting, Serious, Business-Focused
   ========================================== */

:root {
    --primary: #0066CC;
    --primary-dark: #004C99;
    --secondary: #00A86B;
    --accent: #FF6B35;
    --dark: #1A1A1A;
    --dark-light: #2D2D2D;
    --gray: #4A4A4A;
    --gray-light: #757575;
    --gray-lighter: #E5E5E5;
    --white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-lighter: #FAFBFC;
    
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    color: var(--dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

iframe {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==========================================
   NAVIGATION
   ========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
}

.logo svg {
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

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

.btn-nav {
    background: var(--primary) !important;
    color: var(--white) !important;
    padding: 0.7rem 1.5rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
}

.btn-nav:hover {
    background: var(--primary-dark) !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 3px;
    transition: var(--transition);
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

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

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
    position: relative;
    overflow: hidden;
    height: 100vh;
}

.hero::before {
    content: none;
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right top;
    z-index: 1;
}

.hero-slide {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
    z-index: 2;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 70%;
    padding: 2rem;
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 102, 204, 0.45) 100%);
    color: var(--white);
    box-shadow: inset -80px 0 120px rgba(0,0,0,0.2), 0 20px 50px rgba(0,0,0,0.25);
    backdrop-filter: blur(4px);
    z-index: 3;
    margin-left: 5%;
    overflow-y: auto;
    border-radius: 16px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 1px;
    padding: 0.5rem 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(8px);
}

.badge-icon {
    font-size: 1rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1rem;
    color: var(--white);
}

.highlight {
    color: #66B3FF;
    position: relative;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-bottom: 1.5rem;
    padding: 1rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #66B3FF;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-top: 0.5rem;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.trust-logos {
    margin-top: 2rem;
}

.trust-logos p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

.logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.logo-placeholder {
    padding: 0.8rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 600;
}

.client-logo {
    height: 40px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    transition: var(--transition);
}

.client-logo:hover {
    opacity: 1;
}

.hero-image {
    position: relative;
}

.image-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 102, 204, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.8);
    background: var(--white);
}

.image-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.hero-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   LEAD MAGNET SECTION
   ========================================== */
.leadmagnet {
    padding: 80px 0;
    background: var(--primary);
    color: var(--white);
}

.leadmagnet-card {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 60px;
    backdrop-filter: blur(10px);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.leadmagnet-icon {
    margin-bottom: 2rem;
}

.leadmagnet-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.leadmagnet-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.leadmagnet-benefits {
    list-style: none;
    margin-bottom: 2rem;
}

.leadmagnet-benefits li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    opacity: 0.95;
}

.leadmagnet-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    width: 100%;
}

.leadmagnet-form h3 {
    color: var(--dark);
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: var(--gray);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    max-width: 100%;
    padding: 1rem;
    border: 2px solid var(--gray-lighter);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.form-privacy {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

/* ==========================================
   SECTION COMMON
   ========================================== */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 102, 204, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--dark);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services {
    background: var(--bg-light);
}

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

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.service-card.featured {
    border: 2px solid var(--primary);
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.service-card p {
    color: var(--gray);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--gray);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

/* ==========================================
   METHOD SECTION
   ========================================== */
.method {
    background: var(--white);
}

.method-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.method-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.method-step:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 39px;
    top: 80px;
    width: 2px;
    height: calc(100% + 3rem);
    background: var(--gray-lighter);
}

.step-number {
    width: 80px;
    height: 80px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: var(--shadow-md);
}

.step-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark);
}

.step-content p {
    color: var(--gray);
    line-height: 1.7;
}

/* ==========================================
   CASE STUDIES SLIDER
   ========================================== */
.case-studies {
    background: var(--bg-light);
}

.slider-wrapper {
    position: relative;
}

.slider-container {
    overflow: hidden;
    border-radius: 20px;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    position: relative;
}

.case-slide {
    display: none;
    position: relative;
    height: min(75vh, 620px);
    min-height: 380px;
    overflow: hidden;
}

.case-slide.active {
    display: block;
}

/* Slide Animation States */
.case-slide.slide-out-left .case-content {
    animation: slideOutLeftContent 0.6s ease-in-out forwards;
}

.case-slide.slide-out-left .case-image {
    animation: slideOutRight 0.6s ease-in-out forwards;
}

.case-slide.slide-in-right .case-content {
    animation: slideInLeftContent 0.6s ease-in-out forwards;
}

.case-slide.slide-in-right .case-image {
    animation: slideInRight 0.6s ease-in-out forwards;
}

/* Keyframe Animations */
@keyframes slideOutLeft {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutLeftContent {
    from {
        transform: translate(-0%, -50%);
        opacity: 1;
    }
    to {
        transform: translate(-100%, -50%);
        opacity: 0;
    }
}

@keyframes slideInLeftContent {
    from {
        transform: translate(-100%, -50%);
        opacity: 0;
    }
    to {
        transform: translate(0, -50%);
        opacity: 1;
    }
}

.case-content {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 75%;
    height: 100%;
    max-width: 880px;
    max-height: 580px;
    padding: 1.35rem 1.35rem 1.1rem 1.35rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0.7rem;
    background: linear-gradient(90deg, rgba(0, 51, 102, 0.85) 0%, rgba(0, 102, 204, 0.45) 100%);
    color: var(--white);
    box-shadow: inset -80px 0 120px rgba(0,0,0,0.2);
    backdrop-filter: blur(4px);
    z-index: 2;
}

.case-category {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    pointer-events: auto;
}

.case-content h3 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.1rem;
    color: var(--white);
    line-height: 1.3;
}

.case-metrics {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 0.95rem;
    padding: 1.2rem 0;
    border-top: 1px solid var(--gray-lighter);
    border-bottom: 1px solid var(--gray-lighter);
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    color: var(--white);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.case-description {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.4rem;
    font-style: italic;
}

.case-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.3rem;
}

.author-image {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-name {
    font-weight: 700;
    color: var(--white);
}

.author-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.case-image {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 2rem;
    z-index: 1;
}

.case-placeholder {
    width: 100%;
    height: 100%;
}

.case-image-content {
    height: 90%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    object-position: right center;
    display: block;
}

.case-bg-1 {
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
}

.case-bg-2 {
    background: linear-gradient(135deg, #F093FB 0%, #F5576C 100%);
}

.case-bg-3 {
    background: linear-gradient(135deg, #4FACFE 0%, #00F2FE 100%);
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 2px solid var(--gray-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}

.slider-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.slider-btn:hover svg {
    stroke: var(--white);
}

.slider-dots {
    display: flex;
    gap: 0.8rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    background: var(--gray-lighter);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 6px;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 16px;
    border-left: 4px solid var(--primary);
}

.stars {
    color: #FFB800;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.testimonial-author span {
    color: var(--gray-light);
    font-size: 0.9rem;
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about {
    background: var(--bg-light);
}

.about-grid {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: stretch;
    margin-top: 3rem;
}

.about-image {
    position: relative;
    display: flex;
    flex-direction: column;
}

.about-placeholder {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 16px;
}

.about-image-content {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 16px;
    display: block;
}

.about-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.about-badge .badge-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.about-badge .badge-text {
    font-size: 0.9rem;
    color: var(--gray-light);
    margin-top: 0.5rem;
}

.about-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-top: 2.5rem;
}

.credential-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
}

.credential-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.credential-item svg {
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.credential-item strong {
    display: block;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.credential-item span {
    color: var(--gray-light);
    font-size: 0.85rem;
}

/* ==========================================
   CTA / BOOKING SECTION
   ========================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--white);
    padding: 80px 0;
}

.cta-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.cta-content p {
    font-size: 1.15rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.05rem;
}

.benefit-item svg {
    flex-shrink: 0;
}

.benefit-item svg path {
    stroke: var(--white);
}

.booking-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.booking-form h3 {
    color: var(--dark);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--gray-light);
    margin-top: 1rem;
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-column p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.footer-column h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

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

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-column ul li a:hover {
    color: var(--white);
}

.contact-info {
    list-style: none;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
    stroke: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.contact-item:hover svg {
    stroke: var(--white);
}

.contact-item span {
    flex: 1;
}

.contact-item small {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 0.2rem;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 255, 255, 0.6);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

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

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-grid,
    .leadmagnet-card,
    .about-grid,
    .cta-card {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-grid {
        margin-top: 2rem;
    }
    
    .credentials-grid {
        grid-template-columns: 1fr;
    }
    
    .slider-container {
        min-height: auto;
    }
    
    .case-slide {
        height: min(75vh, 560px);
        min-height: 360px;
    }
    
    .case-image {
        min-height: 100%;
    }
    
    .case-placeholder,
    .case-image-content {
        min-height: 100%;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s ease;
        align-items: flex-start;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        position: relative;
        padding: 90px 0 40px;
        min-height: auto;
        height: auto;
        background: var(--dark);
    }
    
    .hero::before {
        display: block;
        background-position: center;
        opacity: 0.55;
    }
    
    .hero::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.42) 0%, rgba(0, 0, 0, 0.48) 55%, rgba(0, 0, 0, 0.56) 100%);
        z-index: 1;
        pointer-events: none;
    }
    
    .hero .container {
        max-width: 100%;
        padding: 0 20px;
        height: auto;
        min-height: auto;
    }
    
    .hero-slide {
        height: auto;
        min-height: 0;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    /* Content stacked, no inner scroll */
    .hero-content {
        position: relative;
        top: auto;
        left: auto;
        transform: none;
        width: 100%;
        height: auto;
        margin: 0;
        padding: 18px 18px 22px;
        /*
		background: linear-gradient(180deg, rgba(0, 0, 0, 0.65) 0%, rgba(0, 0, 0, 0.6) 100%);
		*/
        color: var(--white);
        box-shadow: none;
        overflow: visible;
        z-index: 2;
    }
    
    .trust-badge {
        background: rgba(0, 168, 107, 0.18);
        color: var(--white);
        padding: 0.4rem 0.9rem;
        font-size: 0.85rem;
        margin-bottom: 0.7rem;
        backdrop-filter: blur(4px);
        align-self: flex-start;
    }
    
    .hero h1 {
        font-size: 2.05rem;
        color: var(--white);
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 1.02rem;
        color: rgba(255, 255, 255, 0.9);
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        flex-direction: row;
        justify-content: space-between;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
        padding: 1rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.2);
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        align-items: center;
    }
    
    .stat-item {
        text-align: center;
        flex: 1;
        min-width: 0;
    }
    
    .stat-number {
        font-size: 1.95rem;
        color: #66B3FF;
    }
    
    .stat-label {
        font-size: 0.82rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        gap: 0.8rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 0.9rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-cta .btn-secondary {
        background: rgba(255, 255, 255, 0.15);
        color: var(--white);
        border-color: rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(4px);
    }
    
    .trust-logos {
        margin-top: 1rem;
    }
    
    .trust-logos p {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }
    
    .logos {
        display: flex;
        gap: 1.5rem;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    
    .client-logo {
        height: 32px;
        filter: brightness(0) invert(1);
        opacity: 0.7;
    }

    /* SLIDER MOBILE OPTIMIZATION - Option 5 */
    .case-slide {
        height: auto;
        min-height: 600px;
        max-height: none;
    }

    .case-image,
    .case-image-content,
    .case-placeholder {
        min-height: 100%;
    }

    .leadmagnet-card {
        padding: 24px;
        gap: 24px;
        grid-template-columns: 1fr;
    }
    
    .leadmagnet-form-wrapper {
        padding: 1.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 1rem;
    }

    .method-step {
        grid-template-columns: 60px 1fr;
        gap: 1.5rem;
    }
    
    .step-number {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    /* OPTIMIZED CASE CONTENT MOBILE */
    .case-content {
        position: absolute;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: auto;
        min-height: 600px;
        max-width: none;
        max-height: none;
        padding: 1.25rem 1.15rem 1.15rem;
        background: linear-gradient(180deg, rgba(0, 51, 102, 0.92) 0%, rgba(0, 51, 102, 0.88) 50%, rgba(0, 0, 0, 0.75) 100%);
        backdrop-filter: blur(6px);
        gap: 0.75rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    
    .case-category {
        padding: 0.35rem 0.9rem;
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        align-self: flex-start;
    }
    
    .case-content h3 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.55rem;
    }

    .case-metrics {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.85rem;
        padding: 0.8rem 0;
        margin-bottom: 0.7rem;
        justify-content: flex-start;
    }

    .metric {
        flex: 0 1 auto;
        min-width: 70px;
        text-align: left;
    }
    
    .metric-value {
        font-size: 1.5rem;
        line-height: 1.1;
    }
    
    .metric-label {
        font-size: 0.75rem;
        margin-top: 0.3rem;
        white-space: nowrap;
    }
    
    .case-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .case-author {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 0.9rem;
    }
    
    .author-image {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .author-name {
        font-size: 0.95rem;
        line-height: 1.3;
    }
    
    .author-role {
        font-size: 0.82rem;
        line-height: 1.3;
    }
    
    .case-content .btn-primary {
        padding: 0.9rem 1.4rem;
        font-size: 0.92rem;
        width: 100%;
        justify-content: center;
        margin-top: auto;
    }
    
    .case-content .btn-primary span {
        white-space: nowrap;
    }
    
    .case-content .btn-primary svg {
        width: 18px;
        height: 18px;
    }
    
    /* Animation Adjustments for Mobile */
    @keyframes slideOutLeftContent {
        from {
            transform: translate(0, 0);
            opacity: 1;
        }
        to {
            transform: translate(-100%, 0);
            opacity: 0;
        }
    }
    
    @keyframes slideInLeftContent {
        from {
            transform: translate(-100%, 0);
            opacity: 0;
        }
        to {
            transform: translate(0, 0);
            opacity: 1;
        }
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .leadmagnet-card {
        padding: 18px;
        gap: 16px;
    }

    .leadmagnet-content h2 {
        font-size: 1.6rem;
    }

    .leadmagnet-content p,
    .leadmagnet-benefits li {
        font-size: 1rem;
    }

    .leadmagnet-form-wrapper {
        padding: 1.25rem;
    }

    .hero h1 {
        font-size: 2.1rem;
    }

    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    /* HERO 480px OPTIMIZATION */
    .hero .container {
        min-height: auto;
    }
    
    .hero-content {
        padding: 85px 16px 25px;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-stats {
        padding: 1rem 0;
        margin-bottom: 1.2rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .hero-cta {
        gap: 0.7rem;
        margin-bottom: 1.2rem;
    }
    
    .hero-cta .btn {
        padding: 0.85rem 1.3rem;
        font-size: 0.9rem;
    }
    
    .badge-1 {
        top: 75px;
    }
    
    .badge-2 {
        top: 142px;
    }
    
    .floating-badge {
        padding: 0.7rem 0.9rem;
    }
    
    .floating-badge .badge-icon {
        font-size: 1.3rem;
    }
    
    .badge-title {
        font-size: 1.1rem;
    }
    
    .badge-subtitle {
        font-size: 0.7rem;
    }
    
    .trust-logos p {
        font-size: 0.8rem;
    }
    
    .client-logo {
        height: 28px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .section-header p {
        font-size: 1.05rem;
    }
    
    /* SLIDER 480px OPTIMIZATION */
    .case-slide {
        min-height: 580px;
    }
    
    .case-content {
        min-height: 580px;
        padding: 1.1rem 1rem 1rem;
        gap: 0.65rem;
    }
    
    .case-category {
        padding: 0.3rem 0.8rem;
        font-size: 0.75rem;
        margin-bottom: 0.7rem;
    }
    
    .case-content h3 {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.55rem;
    }
    
    .case-metrics {
        gap: 0.85rem;
        padding: 0.8rem 0;
        margin-bottom: 0.7rem;
    }
    
    .metric {
        min-width: 70px;
    }
    
    .metric-value {
        font-size: 1.5rem;
    }
    
    .metric-label {
        font-size: 0.75rem;
        margin-top: 0.3rem;
    }
    
    .case-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.75rem;
        -webkit-line-clamp: 4;
    }
    
    .case-author {
        gap: 0.7rem;
        margin-bottom: 0.8rem;
    }
    
    .author-image {
        width: 38px;
        height: 38px;
        font-size: 0.95rem;
    }
    
    .author-name {
        font-size: 0.9rem;
    }
    
    .author-role {
        font-size: 0.78rem;
    }
    
    .case-content .btn-primary {
        padding: 0.85rem 1.2rem;
        font-size: 0.88rem;
    }
}

/* Extra Small Mobile - 380px */
@media (max-width: 380px) {
    /* HERO 380px OPTIMIZATION */
    .hero .container {
        min-height: auto;
    }
    
    .hero-content {
        padding: 40px 14px 22px;
    }
    
    .trust-badge {
        padding: 0.35rem 0.85rem;
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 0.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .hero-stats {
        padding: 0.9rem 0;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }
    
    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
    }
    
    .hero-cta {
        gap: 0.65rem;
        margin-bottom: 1rem;
    }
    
    .hero-cta .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.88rem;
    }
    
    .badge-1 {
        top: 72px;
        right: 10px;
    }
    
    .badge-2 {
        top: 135px;
        right: 10px;
    }
    
    .floating-badge {
        padding: 0.65rem 0.85rem;
        gap: 6px;
    }
    
    .floating-badge .badge-icon {
        font-size: 1.2rem;
    }
    
    .badge-title {
        font-size: 1rem;
    }
    
    .badge-subtitle {
        font-size: 0.68rem;
    }
    
    .trust-logos p {
        font-size: 0.75rem;
        margin-bottom: 0.7rem;
    }
    
    .logos {
        gap: 1.2rem;
    }
    
    .client-logo {
        height: 26px;
    }
    
    /* SLIDER 380px OPTIMIZATION */
    .case-slide {
        min-height: 560px;
    }
    
    .case-content {
        min-height: 560px;
        padding: 1rem 0.9rem 0.95rem;
        gap: 0.6rem;
    }
    
    .case-content h3 {
        font-size: 1.4rem;
        margin-bottom: 0.5rem;
    }
    
    .case-metrics {
        gap: 0.75rem;
        padding: 0.75rem 0;
        margin-bottom: 0.65rem;
    }
    
    .metric {
        min-width: 65px;
    }
    
    .metric-value {
        font-size: 1.4rem;
    }
    
    .metric-label {
        font-size: 0.72rem;
    }
    
    .case-description {
        font-size: 0.88rem;
        line-height: 1.48;
        -webkit-line-clamp: 3;
    }
    
    .case-author {
        gap: 0.65rem;
        margin-bottom: 0.75rem;
    }
    
    .author-image {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }
    
    .author-name {
        font-size: 0.88rem;
    }
    
    .author-role {
        font-size: 0.75rem;
    }
    
    .case-content .btn-primary {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .case-content .btn-primary svg {
        width: 16px;
        height: 16px;
    }
}
