/* ================================
   AB Performance - Keynote Speaker Landing Page CSS
   Brand Colours: Red #e1303a, Black #1a1a1a, Gold #E9A329
   Vibrant, dynamic design for inspirational speaker
   ================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

@media (max-width: 767px) {
    html {
        scroll-padding-top: 70px;
    }
}

/* ================================
   Sticky Header - White with Red Border
   ================================ */
.ab-performance-lp-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #E6E5E3;
    padding: 12px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    border-bottom: 3px solid #e1303a;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.ab-performance-lp-header-logo img {
    height: 55px;
    width: auto;
}

@media (min-width: 768px) {
    .ab-performance-lp-header-logo img {
        height: 65px;
    }
}

.ab-performance-lp-header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e1303a;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.ab-performance-lp-header-cta:hover {
    background: #c72730;
    transform: translateY(-2px);
}

.ab-performance-lp-header-tel {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 14px;
    margin-right: 20px;
    display: none;
}

@media (min-width: 768px) {
    .ab-performance-lp-header-tel {
        display: inline;
    }
}

/* ================================
   Hero Section - Bold & Commanding
   ================================ */
.ab-performance-lp-hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    display: flex;
    align-items: center;
    padding: 120px 20px 80px;
    position: relative;
    overflow: hidden;
}

.ab-performance-lp-hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 70%;
    height: 140%;
    background: linear-gradient(135deg, #e1303a 0%, rgba(233, 163, 41, 0.8) 100%);
    transform: skewX(-15deg);
    opacity: 0.12;
    pointer-events: none;
}

.ab-performance-lp-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to top, #1a1a1a 0%, transparent 100%);
    pointer-events: none;
}

.ab-performance-lp-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 1;
}

@media (min-width: 968px) {
    .ab-performance-lp-hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.ab-performance-lp-hero-content {
    text-align: center;
}

@media (min-width: 968px) {
    .ab-performance-lp-hero-content {
        text-align: left;
    }
}

.ab-performance-lp-hero-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    color: #ffffff;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(233, 163, 41, 0.4);
}

.ab-performance-lp-hero-label i {
    font-size: 12px;
}

.ab-performance-lp-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1.15;
    margin-bottom: 25px;
    letter-spacing: -0.5px;
}

@media (min-width: 768px) {
    .ab-performance-lp-hero h1 {
        font-size: 56px;
    }
}

.ab-performance-lp-hero h1 span {
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ab-performance-lp-hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 40px;
    line-height: 1.7;
}

.ab-performance-lp-hero-cta-group {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

@media (min-width: 480px) {
    .ab-performance-lp-hero-cta-group {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 968px) {
    .ab-performance-lp-hero-cta-group {
        justify-content: flex-start;
    }
}

.ab-performance-lp-hero-btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #e1303a 0%, #c72730 100%);
    color: #ffffff;
    padding: 18px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 700;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(225, 48, 58, 0.4);
}

.ab-performance-lp-hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(225, 48, 58, 0.5);
}

.ab-performance-lp-hero-btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 18px 38px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.ab-performance-lp-hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.ab-performance-lp-hero-image {
    display: flex;
    justify-content: center;
    position: relative;
}

.ab-performance-lp-hero-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.ab-performance-lp-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* ================================
   Stats Strip - Bold Numbers
   ================================ */
.ab-performance-lp-stats {
    background: linear-gradient(135deg, #e1303a 0%, #c72730 100%);
    padding: 60px 20px;
    position: relative;
    overflow: hidden;
}

.ab-performance-lp-stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.ab-performance-lp-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    position: relative;
    z-index: 1;
}

@media (min-width: 768px) {
    .ab-performance-lp-stats-container {
        grid-template-columns: repeat(4, 1fr);
    }
}

.ab-performance-lp-stat {
    text-align: center;
}

.ab-performance-lp-stat-icon {
    font-size: 28px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 15px;
}

.ab-performance-lp-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.ab-performance-lp-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ================================
   Section Label (Shared)
   ================================ */
.ab-performance-lp-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(233, 163, 41, 0.15) 0%, rgba(225, 48, 58, 0.15) 100%);
    color: #E9A329;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
    border: 1px solid rgba(233, 163, 41, 0.3);
}

.ab-performance-lp-section-label i {
    font-size: 12px;
}

/* ================================
   Story Section - Overlapping Design
   ================================ */
.ab-performance-lp-story {
    background: #faf9f7;
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.ab-performance-lp-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 8px;
    height: 100%;
    background: linear-gradient(180deg, #E9A329 0%, #e1303a 100%);
}

.ab-performance-lp-story-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    align-items: center;
}

@media (min-width: 968px) {
    .ab-performance-lp-story-container {
        grid-template-columns: 1fr 1fr;
    }
}

.ab-performance-lp-story-image {
    position: relative;
}

.ab-performance-lp-story-image::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: -20px;
    bottom: -20px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-radius: 16px;
    z-index: 0;
}

.ab-performance-lp-story-image img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.ab-performance-lp-story-content h2 {
    font-size: 36px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .ab-performance-lp-story-content h2 {
        font-size: 42px;
    }
}

.ab-performance-lp-story-text {
    font-size: 17px;
    color: #444444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.ab-performance-lp-story-highlight {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    color: #ffffff;
    padding: 30px 35px;
    border-radius: 12px;
    margin-top: 30px;
    position: relative;
    border-left: 4px solid #E9A329;
}

.ab-performance-lp-story-highlight i {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 40px;
    color: rgba(233, 163, 41, 0.2);
}

.ab-performance-lp-story-highlight p {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin: 0;
}

.ab-performance-lp-story-highlight cite {
    display: block;
    margin-top: 15px;
    font-size: 14px;
    font-style: normal;
    color: #E9A329;
    font-weight: 600;
}

/* ================================
   Topics Section - Vibrant Cards
   ================================ */
.ab-performance-lp-topics {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 120px 20px;
    position: relative;
}

.ab-performance-lp-topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 300px;
    background: linear-gradient(180deg, rgba(233, 163, 41, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

.ab-performance-lp-topics-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ab-performance-lp-topics-header {
    text-align: center;
    margin-bottom: 70px;
}

.ab-performance-lp-topics h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.ab-performance-lp-topics-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

.ab-performance-lp-topics-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
}

@media (min-width: 768px) {
    .ab-performance-lp-topics-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .ab-performance-lp-topics-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ab-performance-lp-topic-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 35px;
    border-radius: 16px;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    overflow: hidden;
}

.ab-performance-lp-topic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #E9A329 0%, #e1303a 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.ab-performance-lp-topic-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    border-color: rgba(233, 163, 41, 0.3);
}

.ab-performance-lp-topic-card:hover::before {
    transform: scaleX(1);
}

.ab-performance-lp-topic-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(233, 163, 41, 0.3);
}

.ab-performance-lp-topic-icon i {
    font-size: 28px;
    color: #ffffff;
}

.ab-performance-lp-topic-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.ab-performance-lp-topic-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ================================
   Gallery Section - Dynamic Grid
   ================================ */
.ab-performance-lp-gallery {
    background: #ffffff;
    padding: 120px 20px;
    position: relative;
}

.ab-performance-lp-gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ab-performance-lp-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-performance-lp-gallery h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ab-performance-lp-gallery-intro {
    font-size: 18px;
    color: #666666;
}

.ab-performance-lp-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 768px) {
    .ab-performance-lp-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ab-performance-lp-gallery-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.ab-performance-lp-gallery-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(26, 26, 26, 0.8) 100%);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.ab-performance-lp-gallery-image:hover::before {
    opacity: 1;
}

.ab-performance-lp-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ab-performance-lp-gallery-image:hover img {
    transform: scale(1.08);
}

/* ================================
   Testimonials Section - Sleek Design
   ================================ */
.ab-performance-lp-testimonials {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.ab-performance-lp-testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at top right, rgba(233, 163, 41, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.ab-performance-lp-testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ab-performance-lp-testimonials-header {
    text-align: center;
    margin-bottom: 70px;
}

.ab-performance-lp-testimonials h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.ab-performance-lp-testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .ab-performance-lp-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ab-performance-lp-testimonial-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 40px;
    border-radius: 20px;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

.ab-performance-lp-testimonial-card:hover {
    transform: translateY(-5px);
    border-color: rgba(233, 163, 41, 0.3);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.ab-performance-lp-testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 40px;
    right: 40px;
    height: 3px;
    background: linear-gradient(90deg, #E9A329 0%, #e1303a 100%);
    border-radius: 0 0 3px 3px;
}

.ab-performance-lp-testimonial-quote {
    position: absolute;
    top: 25px;
    right: 35px;
    font-size: 60px;
    color: rgba(233, 163, 41, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.ab-performance-lp-testimonial-stars {
    color: #E9A329;
    font-size: 16px;
    margin-bottom: 25px;
    display: flex;
    gap: 4px;
}

.ab-performance-lp-testimonial-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.ab-performance-lp-testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.ab-performance-lp-testimonial-avatar {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(233, 163, 41, 0.3);
}

.ab-performance-lp-testimonial-name {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
}

.ab-performance-lp-testimonial-role {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 3px 0 0 0;
}

/* ================================
   Process Section - Stepped Design
   ================================ */
.ab-performance-lp-process {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 120px 20px;
    position: relative;
    overflow: hidden;
}

.ab-performance-lp-process::before {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(225, 48, 58, 0.05) 100%);
    pointer-events: none;
}

.ab-performance-lp-process-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.ab-performance-lp-process-header {
    text-align: center;
    margin-bottom: 70px;
}

.ab-performance-lp-process h2 {
    font-size: 40px;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
}

.ab-performance-lp-process-intro {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
}

.ab-performance-lp-process-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
}

.ab-performance-lp-process-steps::before {
    content: '';
    position: absolute;
    left: 34px;
    top: 35px;
    bottom: 35px;
    width: 2px;
    background: linear-gradient(180deg, #E9A329 0%, #e1303a 100%);
}

@media (max-width: 767px) {
    .ab-performance-lp-process-steps::before {
        left: 24px;
    }
}

.ab-performance-lp-process-step {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    padding: 25px 0;
    position: relative;
}

.ab-performance-lp-process-number {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(233, 163, 41, 0.4);
    position: relative;
    z-index: 1;
}

@media (max-width: 767px) {
    .ab-performance-lp-process-number {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

.ab-performance-lp-process-step-content {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.ab-performance-lp-process-step-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.ab-performance-lp-process-step-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

/* ================================
   Contact Section - Split Layout
   ================================ */
.ab-performance-lp-contact {
    background: linear-gradient(135deg, #faf9f7 0%, #f5f4f2 100%);
    padding: 120px 20px;
    position: relative;
}

.ab-performance-lp-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, #E9A329 0%, #e1303a 100%);
}

.ab-performance-lp-contact-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ab-performance-lp-contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.ab-performance-lp-contact h2 {
    font-size: 40px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.ab-performance-lp-contact-intro {
    font-size: 18px;
    color: #555555;
    max-width: 600px;
    margin: 0 auto;
}

.ab-performance-lp-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 768px) {
    .ab-performance-lp-contact-grid {
        grid-template-columns: 1fr 1.3fr;
        gap: 60px;
    }
}

.ab-performance-lp-contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.ab-performance-lp-contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #ffffff;
    padding: 25px;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.ab-performance-lp-contact-method:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.ab-performance-lp-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E9A329 0%, #e1303a 100%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(233, 163, 41, 0.3);
}

.ab-performance-lp-contact-icon i {
    font-size: 24px;
    color: #ffffff;
}

.ab-performance-lp-contact-method h3 {
    font-size: 14px;
    font-weight: 600;
    color: #888888;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ab-performance-lp-contact-method a {
    font-size: 17px;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.ab-performance-lp-contact-method a:hover {
    color: #e1303a;
}

.ab-performance-lp-contact-response {
    font-size: 14px;
    color: #888888;
    margin: 10px 0 0 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ab-performance-lp-contact-response i {
    color: #E9A329;
}

.ab-performance-lp-form {
    background: #ffffff;
    padding: 45px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.08);
}

.ab-performance-lp-form-group {
    margin-bottom: 25px;
}

.ab-performance-lp-form-group label {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.ab-performance-lp-form-group input,
.ab-performance-lp-form-group textarea {
    width: 100%;
    padding: 16px 20px;
    font-size: 16px;
    font-family: 'Gantari', sans-serif;
    border: 2px solid #eaeaea;
    border-radius: 12px;
    background: #faf9f7;
    transition: all 0.3s ease;
}

.ab-performance-lp-form-group input:focus,
.ab-performance-lp-form-group textarea:focus {
    outline: none;
    border-color: #E9A329;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(233, 163, 41, 0.1);
}

.ab-performance-lp-form-group textarea {
    resize: none;
    min-height: 180px;
}

.ab-performance-lp-form-btn {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #e1303a 0%, #c72730 100%);
    color: #ffffff;
    padding: 20px 40px;
    border: none;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 700;
    font-family: 'Gantari', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 48, 58, 0.3);
}

.ab-performance-lp-form-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(225, 48, 58, 0.4);
}

.ab-performance-lp-form-btn i {
    transition: transform 0.3s ease;
}

.ab-performance-lp-form-btn:hover i {
    transform: translateX(4px);
}

/* ================================
   Footer
   ================================ */
.ab-performance-lp-footer {
    background: #0d0d0d;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
}

.ab-performance-lp-footer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.ab-performance-lp-footer p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.ab-performance-lp-footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ab-performance-lp-footer a:hover {
    color: #E9A329;
}

.ab-performance-lp-footer-links {
    margin-top: 20px;
}

.ab-performance-lp-footer-links a {
    font-size: 14px;
}

/* ================================
   Mobile Responsive Fixes
   ================================ */

/* Ensure header stays visible on all devices */
@media (max-width: 767px) {
    .ab-performance-lp-header {
        padding: 10px 15px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
    }
    
    .ab-performance-lp-header-logo img {
        height: 45px;
    }
    
    .ab-performance-lp-header-cta {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .ab-performance-lp-header-cta i {
        display: none;
    }
    
    /* Hero mobile */
    .ab-performance-lp-hero {
        padding: 100px 15px 60px;
        min-height: auto;
    }
    
    .ab-performance-lp-hero h1 {
        font-size: 32px;
        margin-bottom: 20px;
    }
    
    .ab-performance-lp-hero-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }
    
    .ab-performance-lp-hero-label {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .ab-performance-lp-hero-btn-primary,
    .ab-performance-lp-hero-btn-secondary {
        padding: 14px 24px;
        font-size: 14px;
        width: 100%;
    }
    
    .ab-performance-lp-hero-container {
        gap: 40px;
    }
    
    /* Stats mobile */
    .ab-performance-lp-stats {
        padding: 40px 15px;
    }
    
    .ab-performance-lp-stats-container {
        gap: 25px;
    }
    
    .ab-performance-lp-stat-number {
        font-size: 32px;
    }
    
    .ab-performance-lp-stat-label {
        font-size: 11px;
    }
    
    .ab-performance-lp-stat-icon {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    /* Section labels mobile */
    .ab-performance-lp-section-label {
        padding: 8px 16px;
        font-size: 11px;
        letter-spacing: 1px;
    }
    
    /* Story mobile */
    .ab-performance-lp-story {
        padding: 60px 15px;
    }
    
    .ab-performance-lp-story::before {
        width: 4px;
    }
    
    .ab-performance-lp-story-container {
        gap: 40px;
    }
    
    .ab-performance-lp-story-image::before {
        top: 10px;
        left: 10px;
        right: -10px;
        bottom: -10px;
    }
    
    .ab-performance-lp-story-content h2 {
        font-size: 28px;
    }
    
    .ab-performance-lp-story-text {
        font-size: 15px;
    }
    
    .ab-performance-lp-story-highlight {
        padding: 20px;
    }
    
    .ab-performance-lp-story-highlight p {
        font-size: 16px;
    }
    
    .ab-performance-lp-story-highlight i {
        font-size: 30px;
        top: 15px;
        right: 15px;
    }
    
    /* Topics mobile */
    .ab-performance-lp-topics {
        padding: 60px 15px;
    }
    
    .ab-performance-lp-topics-header {
        margin-bottom: 40px;
    }
    
    .ab-performance-lp-topics h2 {
        font-size: 28px;
    }
    
    .ab-performance-lp-topics-intro {
        font-size: 15px;
    }
    
    .ab-performance-lp-topic-card {
        padding: 25px 20px;
    }
    
    .ab-performance-lp-topic-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 18px;
    }
    
    .ab-performance-lp-topic-icon i {
        font-size: 22px;
    }
    
    .ab-performance-lp-topic-card h3 {
        font-size: 18px;
    }
    
    .ab-performance-lp-topic-card p {
        font-size: 14px;
    }
    
    /* Gallery mobile */
    .ab-performance-lp-gallery {
        padding: 60px 15px;
    }
    
    .ab-performance-lp-gallery-header {
        margin-bottom: 40px;
    }
    
    .ab-performance-lp-gallery h2 {
        font-size: 28px;
    }
    
    .ab-performance-lp-gallery-intro {
        font-size: 15px;
    }
    
    .ab-performance-lp-gallery-grid {
        gap: 15px;
    }
    
    /* Testimonials mobile */
    .ab-performance-lp-testimonials {
        padding: 60px 15px;
    }
    
    .ab-performance-lp-testimonials-header {
        margin-bottom: 40px;
    }
    
    .ab-performance-lp-testimonials h2 {
        font-size: 28px;
    }
    
    .ab-performance-lp-testimonial-card {
        padding: 25px 20px;
    }
    
    .ab-performance-lp-testimonial-quote {
        font-size: 40px;
        top: 15px;
        right: 20px;
    }
    
    .ab-performance-lp-testimonial-text {
        font-size: 15px;
    }
    
    .ab-performance-lp-testimonial-avatar {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
    
    .ab-performance-lp-testimonial-name {
        font-size: 15px;
    }
    
    /* Process mobile */
    .ab-performance-lp-process {
        padding: 60px 15px;
    }
    
    .ab-performance-lp-process-header {
        margin-bottom: 40px;
    }
    
    .ab-performance-lp-process h2 {
        font-size: 28px;
    }
    
    .ab-performance-lp-process-intro {
        font-size: 15px;
    }
    
    .ab-performance-lp-process-step {
        gap: 15px;
        padding: 15px 0;
    }
    
    .ab-performance-lp-process-step-content {
        padding: 20px 15px;
    }
    
    .ab-performance-lp-process-step-content h3 {
        font-size: 17px;
    }
    
    .ab-performance-lp-process-step-content h3 i {
        display: none;
    }
    
    .ab-performance-lp-process-step-content p {
        font-size: 14px;
    }
    
    /* Contact mobile */
    .ab-performance-lp-contact {
        padding: 60px 15px;
    }
    
    .ab-performance-lp-contact-header {
        margin-bottom: 40px;
    }
    
    .ab-performance-lp-contact h2 {
        font-size: 28px;
    }
    
    .ab-performance-lp-contact-intro {
        font-size: 15px;
    }
    
    .ab-performance-lp-contact-grid {
        gap: 35px;
    }
    
    .ab-performance-lp-contact-method {
        padding: 18px 15px;
        gap: 15px;
    }
    
    .ab-performance-lp-contact-icon {
        width: 50px;
        height: 50px;
    }
    
    .ab-performance-lp-contact-icon i {
        font-size: 20px;
    }
    
    .ab-performance-lp-contact-method a {
        font-size: 14px;
        word-break: break-all;
    }
    
    .ab-performance-lp-form {
        padding: 25px 20px;
    }
    
    .ab-performance-lp-form-group {
        margin-bottom: 20px;
    }
    
    .ab-performance-lp-form-group input,
    .ab-performance-lp-form-group textarea {
        padding: 14px 15px;
        font-size: 16px;
    }
    
    .ab-performance-lp-form-btn {
        padding: 16px 30px;
        font-size: 15px;
    }
    
    /* Footer mobile */
    .ab-performance-lp-footer {
        padding: 35px 15px;
    }
    
    .ab-performance-lp-footer p {
        font-size: 13px;
    }
}

/* Tablet adjustments */
@media (min-width: 768px) and (max-width: 967px) {
    .ab-performance-lp-hero {
        padding: 120px 30px 80px;
    }
    
    .ab-performance-lp-hero h1 {
        font-size: 42px;
    }
    
    .ab-performance-lp-stats,
    .ab-performance-lp-story,
    .ab-performance-lp-topics,
    .ab-performance-lp-gallery,
    .ab-performance-lp-testimonials,
    .ab-performance-lp-process,
    .ab-performance-lp-contact {
        padding-left: 30px;
        padding-right: 30px;
    }
    
    .ab-performance-lp-story-content h2,
    .ab-performance-lp-topics h2,
    .ab-performance-lp-gallery h2,
    .ab-performance-lp-testimonials h2,
    .ab-performance-lp-process h2,
    .ab-performance-lp-contact h2 {
        font-size: 34px;
    }
}

/* Prevent horizontal overflow */
html, body {
    overflow-x: hidden;
}

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

/* Small mobile specific fixes */
@media (max-width: 400px) {
    .ab-performance-lp-header {
        padding: 8px 10px;
    }
    
    .ab-performance-lp-header-logo img {
        height: 40px;
    }
    
    .ab-performance-lp-header-cta {
        padding: 8px 12px;
        font-size: 12px;
    }
    
    .ab-performance-lp-hero {
        padding: 90px 12px 50px;
    }
    
    .ab-performance-lp-hero h1 {
        font-size: 26px;
    }
    
    .ab-performance-lp-hero-subtitle {
        font-size: 14px;
    }
    
    .ab-performance-lp-stat-number {
        font-size: 26px;
    }
    
    .ab-performance-lp-stat-label {
        font-size: 10px;
    }
    
    .ab-performance-lp-story-content h2,
    .ab-performance-lp-topics h2,
    .ab-performance-lp-gallery h2,
    .ab-performance-lp-testimonials h2,
    .ab-performance-lp-process h2,
    .ab-performance-lp-contact h2 {
        font-size: 24px;
    }
    
    .ab-performance-lp-topic-card,
    .ab-performance-lp-testimonial-card {
        padding: 20px 15px;
    }
    
    .ab-performance-lp-process-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    
    .ab-performance-lp-process-steps::before {
        left: 19px;
    }
    
    .ab-performance-lp-contact-method {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .ab-performance-lp-form {
        padding: 20px 15px;
    }
}

