/* ===== PREMIUM LANDING PAGE STYLES ===== */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap");

:root {
    /* ========================================
       PRIMARY COLORS (Keep these - they pass)
       ======================================== */
    --primary: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #60a5fa;
    --secondary: #7c3aed;
    --accent: #10b981;
    --accent-2: #f59e0b;
    
    /* ========================================
       DARK COLORS (Keep these)
       ======================================== */
    --dark: #0f172a;      /* 16.7:1 on white ✅ */
    --dark-2: #1e293b;    /* 14.3:1 on white ✅ */
    
    /* ========================================
       GRAY COLORS - FIXED FOR ACCESSIBILITY
       ======================================== */
    --gray: #475569;      /* WAS: #64748b - NOW 5.2:1 on white ✅ */
    --gray-light: #64748b; /* WAS: #94a3b8 - NOW 4.1:1 on white ⚠️ */
    --gray-bg: #f8fafc;   /* Background only - DO NOT use for text */
    --white: #ffffff;
    
    /* ========================================
       ADD THESE SEMANTIC VARIABLES (RECOMMENDED)
       ======================================== */
    --text-primary: var(--dark);        /* #0f172a - 16.7:1 ✅ */
    --text-secondary: var(--dark-2);    /* #1e293b - 14.3:1 ✅ */
    --text-muted: var(--gray);          /* #475569 - 5.2:1 ✅ */
    --text-muted-light: var(--gray-light); /* #64748b - 4.1:1 ⚠️ */
    --text-on-primary: var(--white);    /* #ffffff - 4.6:1 ✅ */
    --text-on-dark: var(--white);       /* #ffffff - 16.7:1 ✅ */
    
    /* ========================================
       SHADOWS (Keep as is)
       ======================================== */
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 30px 80px rgba(0, 0, 0, 0.12);
    
    /* ========================================
       RADIUS (Keep as is)
       ======================================== */
    --radius: 20px;
    --radius-sm: 12px;
    
    /* ========================================
       TRANSITIONS (Keep as is)
       ======================================== */
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ===== GLOBAL RESET & BASE ===== */
.lp-wrapper {
    font-family: "Inter", sans-serif;
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

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

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

/* ===== SECTION PADDING ===== */
.lp-section {
    padding: 80px 0;
}

.lp-section-sm {
    padding: 60px 0;
}

.lp-section-lg {
    padding: 100px 0;
}

@media (max-width: 768px) {
    .lp-section {
        padding: 60px 0;
    }
    .lp-section-lg {
        padding: 70px 0;
    }
}

@media (max-width: 480px) {
    .lp-section {
        padding: 40px 0;
    }
    .lp-section-lg {
        padding: 50px 0;
    }
}

/* ===== SECTION HEADERS ===== */
.lp-section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 48px;
}

.lp-section-header .tag {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 50px;
    background: var(--gray-bg);
    color: var(--dark);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.lp-section-header h2 {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 12px;
    color: var(--dark);
}

.lp-section-header h2 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-section-header p {
    font-size: 17px;
    color: var(--gray);
    line-height: 1.7;
}

.lp-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
    margin: 16px auto 0;
}

@media (max-width: 768px) {
    .lp-section-header h2 {
        font-size: 30px;
    }
    .lp-section-header p {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .lp-section-header h2 {
        font-size: 24px;
    }
}

/* ===== BUTTONS ===== */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    font-family: "Inter", sans-serif;
}

.lp-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.25);
}

.lp-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.35);
}

.lp-btn-secondary {
    background: var(--white);
    color: var(--dark);
    border: 2px solid #e2e8f0;
}

.lp-btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
}

.lp-btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.lp-btn-outline:hover {
    border-color: var(--white);
    transform: translateY(-3px);
}

.lp-btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

@media (max-width: 480px) {
    .lp-btn {
        padding: 12px 24px;
        font-size: 14px;
        width: 100%;
        justify-content: center;
    }
    .lp-btn-large {
        padding: 14px 28px;
        font-size: 15px;
    }
}

/* ===== HERO SECTION ===== */
.lp-hero {
    padding: 120px 0 80px;
    background: linear-gradient(180deg, #f0f4ff 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.lp-hero::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
    pointer-events: none;
}

.lp-hero::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.05), transparent 70%);
    pointer-events: none;
}

.lp-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.lp-hero-left {
    animation: fadeUp 0.8s ease forwards;
}

.lp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.1);
    border: 1px solid rgba(37, 99, 235, 0.15);
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 20px;
}

.lp-hero-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
    animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.3;
        transform: scale(0.6);
    }
}

.lp-hero h1 {
    font-size: 52px;
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 20px;
    color: var(--dark);
}

.lp-hero h1 .highlight {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-hero p {
    font-size: 18px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 28px;
}

.lp-hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.lp-hero-trust {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--gray);
}

.lp-hero-trust span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-hero-trust i {
    color: var(--accent);
    font-size: 16px;
}

/* Hero Visual */
.lp-hero-right {
    position: relative;
    animation: fadeUp 0.8s ease 0.2s forwards;
    opacity: 0;
}

.lp-hero-visual {
    position: relative;
}

.lp-growth-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow);
    border: 1px solid #eef2f6;
    position: relative;
}

.lp-growth-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.lp-growth-label {
    font-weight: 600;
    font-size: 14px;
    color: var(--gray);
}

.lp-growth-badge {
    background: linear-gradient(135deg, var(--accent), #059669);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
}

.lp-growth-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 160px;
    padding-top: 10px;
}

.lp-growth-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: linear-gradient(180deg, var(--primary-light), var(--primary));
    height: 0;
    transition: height 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    min-height: 10px;
}

.lp-growth-bar.lp-growth-highlight {
    background: linear-gradient(180deg, #8b5cf6, var(--secondary));
}

.lp-growth-bar span {
    position: absolute;
    bottom: -24px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 10px;
    color: var(--gray-light);
    font-weight: 500;
}

.lp-floating-stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid #eef2f6;
    animation: float 6s ease-in-out infinite;
}

.lp-floating-stat i {
    font-size: 20px;
    color: var(--primary);
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-floating-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.lp-floating-stat span {
    font-size: 12px;
    color: var(--gray);
}

.lp-stat-1 {
    top: -20px;
    right: -20px;
    animation-delay: 0s;
}

.lp-stat-2 {
    bottom: -20px;
    left: -20px;
    animation-delay: -3s;
}

.lp-hero-outcomes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 16px;
}

.lp-outcome-card {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 14px 16px;
    border: 1px solid #eef2f6;
    text-align: center;
    transition: var(--transition);
}

.lp-outcome-card:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.lp-outcome-card strong {
    display: block;
    font-size: 20px;
    font-weight: 800;
    color: var(--dark);
}

.lp-outcome-card span {
    font-size: 12px;
    color: var(--gray);
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

@media (max-width: 1024px) {
    .lp-hero {
        padding: 100px 0 60px;
    }
    .lp-hero h1 {
        font-size: 40px;
    }
    .lp-hero-grid {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .lp-hero {
        padding: 90px 0 50px;
        min-height: auto;
    }
    .lp-hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .lp-hero h1 {
        font-size: 32px;
    }
    .lp-hero p {
        font-size: 16px;
    }
    .lp-hero-right {
        order: -1;
    }
    .lp-growth-chart {
        height: 120px;
        gap: 6px;
    }
    .lp-floating-stat {
        padding: 10px 14px;
    }
    .lp-floating-stat strong {
        font-size: 14px;
    }
    .lp-floating-stat i {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    .lp-stat-1 {
        top: -10px;
        right: -10px;
    }
    .lp-stat-2 {
        bottom: -10px;
        left: -10px;
    }
    .lp-hero-outcomes {
        grid-template-columns: 1fr 1fr;
    }
    .lp-outcome-card strong {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .lp-hero {
        padding: 80px 0 40px;
    }
    .lp-hero h1 {
        font-size: 26px;
    }
    .lp-hero-actions {
        flex-direction: column;
    }
    .lp-hero-trust {
        gap: 12px;
        font-size: 12px;
        flex-wrap: wrap;
    }
    .lp-hero-trust span {
        font-size: 12px;
    }
    .lp-growth-chart {
        height: 100px;
        gap: 4px;
    }
    .lp-growth-bar span {
        font-size: 8px;
        bottom: -20px;
    }
    .lp-hero-outcomes {
        grid-template-columns: 1fr 1fr;
        gap: 6px;
    }
    .lp-outcome-card {
        padding: 10px;
    }
    .lp-outcome-card strong {
        font-size: 14px;
    }
    .lp-floating-stat {
        display: none;
    }
}

/* ===== SERVICES CARDS ===== */
.lp-services-cards {
    background: var(--gray-bg);
    padding: 80px 0;
}

.lp-services-wrap {
    position: relative;
    overflow: hidden;
}

.lp-services-track {
    display: flex;
    gap: 18px;
    overflow-x: auto;
    padding: 8px 4px 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.lp-services-track::-webkit-scrollbar {
    display: none;
}

.lp-service-card {
    flex: 0 0 280px;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid #eef2f6;
    scroll-snap-align: start;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 200px;
}

.lp-service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.lp-service-card .icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.lp-service-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--dark);
}

.lp-service-card p {
    font-size: 13.5px;
    color: var(--gray);
    line-height: 1.6;
}

.lp-services-controls {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 12px;
}

.lp-services-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    background: var(--primary);
    color: var(--white);
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-services-btn:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

@media (max-width: 768px) {
    .lp-services-cards {
        padding: 60px 0;
    }
    .lp-service-card {
        flex: 0 0 240px;
        padding: 20px;
        min-height: 170px;
    }
}

@media (max-width: 480px) {
    .lp-services-cards {
        padding: 40px 0;
    }
    .lp-service-card {
        flex: 0 0 200px;
        padding: 16px;
        min-height: 150px;
    }
    .lp-service-card .icon {
        font-size: 22px;
    }
    .lp-service-card h3 {
        font-size: 14px;
    }
    .lp-service-card p {
        font-size: 12px;
    }
}

/* ===== SERVICE ROWS ===== */
.lp-service-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
    border-bottom: 1px solid #eef2f6;
}

.lp-service-row:last-child {
    border-bottom: none;
}

.lp-service-row.lp-row-reverse .lp-service-info {
    order: 2;
}

.lp-service-row.lp-row-reverse .lp-service-visual {
    order: 1;
}

.lp-service-label {
    display: inline-block;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.lp-label-blue {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}
.lp-label-green {
    background: rgba(16, 185, 129, 0.1);
    color: var(--accent);
}
.lp-label-amber {
    background: rgba(245, 158, 11, 0.1);
    color: var(--accent-2);
}
.lp-label-pink {
    background: rgba(236, 72, 153, 0.1);
    color: #ec4899;
}
.lp-label-purple {
    background: rgba(124, 58, 237, 0.1);
    color: var(--secondary);
}
.lp-label-teal {
    background: rgba(20, 184, 166, 0.1);
    color: #14b8a6;
}

.lp-service-info h3 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 12px;
    color: var(--dark);
}

.lp-service-info > p {
    font-size: 16px;
    color: var(--gray);
    line-height: 1.7;
    max-width: 440px;
    margin-bottom: 20px;
}

.lp-service-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.lp-sb-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.lp-sb-item i {
    font-size: 16px;
    color: var(--primary);
    margin-top: 2px;
    width: 20px;
}

.lp-sb-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark);
}

.lp-sb-item span {
    font-size: 13.5px;
    color: var(--gray);
}

.service-detail-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--primary);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.service-detail-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Service Visuals */
.lp-service-visual {
    position: relative;
}

.lp-mockup-dashboard {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow);
}

.lp-mockup-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.lp-mockup-dots {
    display: flex;
    gap: 6px;
}

.lp-mockup-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}

.lp-mockup-dots span:first-child {
    background: #ef4444;
}
.lp-mockup-dots span:nth-child(2) {
    background: #f59e0b;
}
.lp-mockup-dots span:last-child {
    background: #10b981;
}

.lp-mockup-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray);
}

.lp-mockup-metric {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
}

.lp-mockup-metric:last-child {
    border-bottom: none;
}

.lp-mm-label {
    font-size: 13px;
    color: var(--gray);
}

.lp-mm-value {
    font-weight: 700;
    font-size: 14px;
}

.lp-mm-good {
    color: var(--accent);
}

.lp-mockup-sparkline {
    margin: 12px 0;
    height: 40px;
}

.lp-mockup-sparkline svg {
    width: 100%;
    height: 100%;
}

.lp-mockup-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 50px;
    background: rgba(37, 99, 235, 0.08);
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

/* Google Visual */
.lp-google-visual {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow);
}

.lp-gv-searchbar {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 50px;
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 14px;
}

.lp-gv-searchbar i {
    color: var(--primary);
}

.lp-gv-results {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-gv-result {
    padding: 10px 14px;
    border-radius: 8px;
    border: 1px solid #f1f5f9;
    position: relative;
    transition: var(--transition);
}

.lp-gv-result:hover {
    border-color: var(--primary);
    background: rgba(37, 99, 235, 0.02);
}

.lp-gv-result.lp-gv-fade {
    opacity: 0.5;
}

.lp-gv-url {
    font-size: 11px;
    color: var(--gray-light);
    margin-bottom: 2px;
}

.lp-gv-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
}

.lp-gv-meta {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

.lp-gv-rank {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    font-weight: 900;
    color: var(--accent-2);
}

.lp-gv-growth {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 12px 16px;
    background: rgba(16, 185, 129, 0.06);
    border-radius: 8px;
}

.lp-gv-arrow {
    color: var(--accent);
    font-size: 24px;
}

.lp-gv-stat strong {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: var(--dark);
}

.lp-gv-stat span {
    font-size: 13px;
    color: var(--gray);
}

/* Ads Visual */
.lp-ads-dashboard {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow);
    text-align: center;
}

.lp-ads-header {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.lp-ads-donut {
    width: 120px;
    height: 120px;
    margin: 0 auto 16px;
    position: relative;
}

.lp-ads-donut svg {
    width: 100%;
    height: 100%;
}

.lp-ads-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
    margin-top: 12px;
}

.lp-ads-metrics div {
    padding: 10px;
    background: var(--gray-bg);
    border-radius: 8px;
}

.lp-ads-metrics span {
    display: block;
    font-size: 11px;
    color: var(--gray);
}

.lp-ads-metrics strong {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.lp-ads-profit {
    color: var(--accent) !important;
}

.lp-ads-trend {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 12px;
    padding: 8px 16px;
    background: rgba(245, 158, 11, 0.06);
    border-radius: 8px;
    justify-content: center;
}

.lp-ads-trend svg {
    height: 30px;
    width: 120px;
}

.lp-ads-trend span {
    font-weight: 600;
    font-size: 13px;
    color: var(--accent-2);
}

/* AI Visual */
.lp-ai-visual {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow);
}

.lp-ai-chat {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
    max-height: 240px;
    overflow-y: auto;
}

.lp-ai-message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.lp-ai-message.lp-ai-user {
    justify-content: flex-end;
}

.lp-ai-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.lp-ai-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 12px;
    background: var(--gray-bg);
    font-size: 13px;
    line-height: 1.5;
}

.lp-ai-bubble p {
    margin: 0;
}

.lp-ai-bubble span {
    font-size: 10px;
    color: var(--gray-light);
    margin-top: 4px;
    display: block;
}

.lp-ai-user-bubble {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
}

.lp-ai-user-bubble span {
    color: rgba(255, 255, 255, 0.6);
}

.lp-ai-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 8px;
}

.lp-ai-stat {
    text-align: center;
    padding: 10px;
    background: var(--gray-bg);
    border-radius: 8px;
}

.lp-ai-stat i {
    display: block;
    font-size: 16px;
    color: var(--primary);
    margin-bottom: 4px;
}

.lp-ai-stat strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.lp-ai-stat span {
    font-size: 11px;
    color: var(--gray);
}

/* Code Visual */
.lp-code-visual {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 20px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow);
}

.lp-cv-before,
.lp-cv-after {
    padding: 8px 0;
}

.lp-cv-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.lp-cv-box {
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    line-height: 1.8;
}

.lp-cv-bad {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.lp-cv-good {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.lp-cv-line {
    display: flex;
    align-items: center;
    gap: 8px;
}

.lp-cv-line i {
    width: 16px;
    font-size: 12px;
}

.lp-cv-arrow-down {
    text-align: center;
    padding: 8px 0;
    color: var(--gray-light);
    font-size: 20px;
}

/* IT Visual */
.lp-it-visual {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 24px;
    border: 1px solid #eef2f6;
    box-shadow: var(--shadow);
    text-align: center;
}

.lp-it-shield {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 20px;
}

.lp-it-ring {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(20, 184, 166, 0.15);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    animation: ring-pulse 4s ease-in-out infinite;
}

.lp-it-ring-1 {
    animation-delay: 0s;
}
.lp-it-ring-2 {
    animation-delay: -1.3s;
    transform: scale(1.08);
}
.lp-it-ring-3 {
    animation-delay: -2.6s;
    transform: scale(1.16);
}

@keyframes ring-pulse {
    0%,
    100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.lp-it-icon {
    position: absolute;
    inset: 10%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    color: var(--white);
}

.lp-it-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: -8px;
}

.lp-it-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse-dot 2s ease-in-out infinite;
}

.lp-it-metrics {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
    margin-top: 16px;
}

.lp-it-metric {
    text-align: center;
}

.lp-it-circle {
    position: relative;
    width: 64px;
    height: 64px;
    margin: 0 auto 4px;
}

.lp-it-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.lp-it-circle span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 800;
    color: var(--dark);
}

.lp-it-metric label {
    font-size: 11px;
    color: var(--gray);
    display: block;
}

/* Float Stats */
.lp-float-stat {
    position: absolute;
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #eef2f6;
    animation: float 6s ease-in-out infinite;
}

.lp-float-stat i {
    font-size: 18px;
    color: var(--primary);
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(37, 99, 235, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.lp-float-stat strong {
    display: block;
    font-size: 16px;
    font-weight: 800;
    color: var(--dark);
}

.lp-float-stat span {
    font-size: 11px;
    color: var(--gray);
}

.lp-fs-1 {
    top: -12px;
    right: -12px;
    animation-delay: 0s;
}
.lp-fs-2 {
    bottom: -12px;
    left: -12px;
    animation-delay: -2s;
}
.lp-fs-3 {
    top: -12px;
    right: -12px;
    animation-delay: -1s;
}
.lp-fs-4 {
    bottom: -12px;
    left: -12px;
    animation-delay: -3s;
}
.lp-fs-5 {
    top: -12px;
    right: -12px;
    animation-delay: -0.5s;
}
.lp-fs-6 {
    bottom: -12px;
    left: -12px;
    animation-delay: -2.5s;
}

@media (max-width: 1024px) {
    .lp-service-row {
        gap: 40px;
    }
    .lp-service-info h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .lp-service-row {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 0;
    }
    .lp-service-row.lp-row-reverse .lp-service-info {
        order: 1;
    }
    .lp-service-row.lp-row-reverse .lp-service-visual {
        order: 2;
    }
    .lp-service-info h3 {
        font-size: 22px;
    }
    .lp-service-info > p {
        max-width: 100%;
    }
    .lp-float-stat {
        display: none;
    }
    .lp-ads-metrics {
        grid-template-columns: 1fr;
    }
    .lp-ai-stats {
        grid-template-columns: 1fr;
    }
    .lp-it-metrics {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    .lp-it-circle {
        width: 50px;
        height: 50px;
    }
    .lp-it-circle span {
        font-size: 11px;
    }
}

@media (max-width: 480px) {
    .lp-service-row {
        padding: 20px 0;
        gap: 20px;
    }
    .lp-service-info h3 {
        font-size: 18px;
    }
    .lp-sb-item strong {
        font-size: 13px;
    }
    .lp-sb-item span {
        font-size: 12px;
    }
    .lp-gv-result.lp-gv-fade {
        display: none;
    }
    .lp-gv-rank {
        font-size: 16px;
    }
    .lp-ads-donut {
        width: 80px;
        height: 80px;
    }
    .lp-mockup-dashboard {
        padding: 14px;
    }
    .lp-google-visual {
        padding: 14px;
    }
    .lp-ai-visual {
        padding: 14px;
    }
    .lp-code-visual {
        padding: 14px;
    }
    .lp-it-visual {
        padding: 16px;
    }
}

/* ===== ENQUIRY SECTION ===== */
.lp-enquiry-section {
    background: linear-gradient(135deg, #f8fafc 0%, rgba(37, 99, 235, 0.04) 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.lp-enquiry-section::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.lp-enquiry-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* ===== AUDIT BADGE ===== */
.lp-audit-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, rgba(59, 130, 246, 0.1), rgba(37, 99, 235, 0.05));
    color: var(--primary);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(37, 99, 235, 0.15);
}

.lp-audit-badge i {
    font-size: 14px;
}

.lp-enquiry-left h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--dark);
    line-height: 1.2;
}

.lp-enquiry-left > p {
    font-size: 17px;
    color: #475569;
    margin-bottom: 28px;
    line-height: 1.6;
}

.lp-enquiry-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.lp-enquiry-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 14px;
    font-size: 14px;
    color: #1e293b;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: all var(--transition);
}

.lp-enquiry-benefits li:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(37, 99, 235, 0.2);
    transform: translateY(-2px);
}

.lp-enquiry-benefits li i {
    color: var(--primary);
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-enquiry-benefits li strong {
    color: var(--dark);
    font-weight: 700;
    display: block;
    margin-bottom: 2px;
}

/* ===== AUDIT FEATURES BADGES ===== */
.lp-audit-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 24px;
}

.lp-audit-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 14px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(59, 130, 246, 0.08));
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: 8px;
    font-size: 13px;
    color: var(--dark);
    font-weight: 600;
}

.lp-audit-feature i {
    color: var(--primary);
    font-size: 16px;
}

.lp-audit-feature strong {
    display: block;
    color: var(--primary);
    font-weight: 700;
}

/* ===== URGENCY MESSAGE ===== */
.lp-enquiry-urgency {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 18px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.08), rgba(96, 165, 250, 0.05));
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    font-size: 14px;
    color: #475569;
    line-height: 1.5;
}

.lp-enquiry-urgency i {
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.lp-enquiry-urgency strong {
    color: var(--dark);
}

/* ===== AUDIT FORM ===== */
.lp-enquiry-right {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(15, 23, 42, 0.12), 0 0 1px rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(226, 232, 240, 0.6);
    backdrop-filter: blur(10px);
    position: relative;
}

.lp-enquiry-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light), transparent);
    border-radius: 16px 16px 0 0;
}

.lp-form-header {
    margin-bottom: 24px;
    text-align: center;
}

.lp-form-header h4 {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark);
    margin: 0 0 6px;
}

.lp-form-header p {
    font-size: 14px;
    color: #64748b;
    margin: 0;
}

.lp-form-group {
    margin-bottom: 18px;
}

.lp-form-group label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.required {
    color: #ef4444;
}

.lp-form-group-primary {
    margin-bottom: 24px;
}

.lp-form-group-primary label {
    font-size: 14px;
    color: var(--dark);
    text-transform: none;
    letter-spacing: 0;
}

.lp-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.lp-input-wrapper i {
    position: absolute;
    left: 14px;
    color: #94a3b8;
    font-size: 16px;
    pointer-events: none;
    transition: all var(--transition);
}

.lp-enquiry-right input,
.lp-enquiry-right textarea {
    width: 100%;
    padding: 14px 14px 14px 42px;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-size: 14px;
    font-family: "Inter", sans-serif;
    transition: all var(--transition);
    background: var(--white);
    color: var(--dark);
}

.lp-enquiry-right input::placeholder,
.lp-enquiry-right textarea::placeholder {
    color: #cbd5e1;
}

.lp-enquiry-right input:focus,
.lp-enquiry-right textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
    background: rgba(248, 250, 252, 0.5);
}

.lp-enquiry-right input:focus + .lp-input-wrapper i,
.lp-input-wrapper:has(input:focus) i,
.lp-input-wrapper:has(textarea:focus) i {
    color: var(--primary);
}

.lp-error-message {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
}

.lp-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.lp-btn-audit {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
    margin-bottom: 20px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.lp-btn-audit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.lp-btn-audit:hover::before {
    left: 100%;
}

.lp-btn-audit i:first-child {
    font-size: 16px;
}

.lp-form-note {
    text-align: center;
    font-size: 13px;
    color: #64748b;
    margin: 0 0 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lp-form-note i {
    color: #10b981;
    font-size: 14px;
}

.lp-form-privacy {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    background: rgba(16, 185, 129, 0.05);
    border-radius: 8px;
    font-size: 12px;
    color: #047857;
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.lp-form-privacy i {
    color: #10b981;
    font-size: 14px;
    flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .lp-enquiry-section {
        padding: 60px 0;
    }

    .lp-enquiry-section::before {
        width: 300px;
        height: 300px;
        top: -50%;
        right: -20%;
    }

    .lp-enquiry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .lp-enquiry-left h3 {
        font-size: 32px;
    }

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

    .lp-enquiry-benefits {
        grid-template-columns: 1fr;
    }

    .lp-enquiry-right {
        padding: 32px;
    }

    .lp-form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .lp-enquiry-section {
        padding: 40px 0;
    }

    .lp-enquiry-left h3 {
        font-size: 24px;
    }

    .lp-enquiry-left > p {
        font-size: 15px;
    }

    .lp-enquiry-right {
        padding: 20px;
    }

    .lp-enquiry-right input,
    .lp-enquiry-right textarea {
        padding: 12px 12px 12px 36px;
        font-size: 13px;
    }

    .lp-input-wrapper i {
        left: 10px;
        font-size: 14px;
    }

    .lp-form-header h4 {
        font-size: 18px;
    }

    .lp-audit-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .lp-audit-feature {
        padding: 10px 10px;
        font-size: 12px;
    }

    .lp-btn-audit {
        padding: 14px 16px;
        font-size: 13px;
    }
}
}

/* ===== TECH SECTION ===== */
.lp-techs-section {
    background: var(--gray-bg);
    padding: 80px 0;
}

.lp-tech-filters {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tech-filter {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    background: var(--white);
    font-size: 13px;
    font-weight: 500;
    color: var(--gray);
    cursor: pointer;
    transition: var(--transition);
    font-family: "Inter", sans-serif;
}

.tech-filter:hover,
.tech-filter.active {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(37, 99, 235, 0.04);
}

.tech-filter.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.lp-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(80px, 1fr));
    gap: 16px;
}

.tech-item {
    background: var(--white);
    border-radius: var(--radius-sm);
    padding: 16px;
    text-align: center;
    border: 1px solid #eef2f6;
    transition: var(--transition);
    display: grid;
    place-items: center;
    gap: 8px;
}

.tech-item:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: var(--shadow);
}

.tech-item img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.tech-item span {
    font-size: 11px;
    color: var(--gray);
    font-weight: 500;
}

@media (max-width: 768px) {
    .lp-techs-section {
        padding: 60px 0;
    }
    .lp-tech-grid {
        grid-template-columns: repeat(auto-fit, minmax(70px, 1fr));
        gap: 12px;
    }
    .tech-item {
        padding: 12px;
    }
    .tech-item img {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    .lp-techs-section {
        padding: 40px 0;
    }
    .lp-tech-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 8px;
    }
    .tech-item {
        padding: 10px;
    }
    .tech-item img {
        width: 24px;
        height: 24px;
    }
    .tech-item span {
        font-size: 10px;
    }
    .tech-filter {
        padding: 6px 14px;
        font-size: 12px;
    }
}

/* ===== FINAL CTA ===== */
.lp-final-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-2));
    position: relative;
    overflow: hidden;
}

.lp-final-cta::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1), transparent 70%);
    pointer-events: none;
}

.lp-cta-box {
    text-align: center;
    position: relative;
    z-index: 1;
}

.lp-cta-box h3 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 12px;
}

.lp-cta-box p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    max-width: 480px;
    margin: 0 auto 28px;
}

.lp-cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.lp-cta-guarantee {
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-cta-guarantee i {
    color: var(--accent);
    margin-right: 4px;
}

@media (max-width: 768px) {
    .lp-final-cta {
        padding: 60px 0;
    }
    .lp-cta-box h3 {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    .lp-final-cta {
        padding: 40px 0;
    }
    .lp-cta-box h3 {
        font-size: 24px;
    }
    .lp-cta-box p {
        font-size: 15px;
    }
    .lp-cta-buttons {
        flex-direction: column;
    }
    .lp-cta-guarantee {
        flex-direction: column;
        gap: 6px;
        font-size: 12px;
    }
}
