/* ============================================================
   SHARED LANDING PAGE STYLES
   Used by all service/specialist landing pages
   ============================================================ */

/* === Variables === */
:root {
    --lp-bg: #070b14;
    --lp-bg-alt: #0c1222;
    --lp-card: rgba(255,255,255,0.035);
    --lp-card-hover: rgba(255,255,255,0.06);
    --lp-white: #f0f2f5;
    --lp-text: rgba(255,255,255,0.65);
    --lp-muted: rgba(255,255,255,0.4);
    --lp-border: rgba(255,255,255,0.08);
    --lp-gold: #fdbb2d;
    --lp-green: #10B981;
    --lp-accent: var(--lp-gold); /* Override per-page */
    --lp-accent-2: #f59e0b;
    --lp-radius: 20px;
    --lp-radius-sm: 14px;
}

/* === Utility === */
.lp-container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

/* === Hero === */
.lp-hero {
    min-height: 60vh;
    display: flex;
    align-items: center;
    padding: 140px 0 80px;
    background: var(--lp-bg);
    position: relative;
    overflow: hidden;
}
.lp-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -15%;
    width: 550px;
    height: 550px;
    background: radial-gradient(circle, rgba(253,187,45,0.07) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(16,185,129,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.lp-hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.lp-hero-text { max-width: 580px; }
.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(253,187,45,0.1);
    border: 1px solid rgba(253,187,45,0.2);
    border-radius: 50px;
    color: var(--lp-accent);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.3px;
}
.lp-hero h1 {
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 20px;
    color: var(--lp-white);
}
.lp-hero h1 span {
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.lp-hero-sub {
    font-size: 1.1rem;
    color: var(--lp-text);
    line-height: 1.75;
    margin-bottom: 32px;
}

/* Hero Stats */
.lp-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-top: 40px;
}
.lp-stat {
    text-align: center;
    padding: 18px 10px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
}
.lp-stat-num {
    font-size: 1.6rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}
.lp-stat-label {
    color: var(--lp-muted);
    font-size: 0.78rem;
    margin-top: 4px;
    display: block;
}

/* Hero Image */
.lp-hero-img {
    display: flex;
    justify-content: center;
    align-items: center;
}
.lp-hero-img img {
    width: 100%;
    max-width: 380px;
    border-radius: var(--lp-radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* === Buttons === */
.lp-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.lp-btn-primary {
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    color: #000;
}
.lp-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(253,187,45,0.3);
}
.lp-btn-outline {
    background: transparent;
    border: 1.5px solid var(--lp-border);
    color: var(--lp-white);
}
.lp-btn-outline:hover {
    border-color: var(--lp-accent);
    background: rgba(253,187,45,0.05);
}

/* === Sections === */
.lp-section {
    padding: 100px 0;
}
.lp-bg-dark { background: var(--lp-bg); }
.lp-bg-alt { background: var(--lp-bg-alt); }
.lp-header {
    text-align: center;
    margin-bottom: 56px;
}
.lp-header h2 {
    font-size: clamp(1.8rem, 3vw, 2.3rem);
    color: var(--lp-white);
    font-weight: 700;
    margin-bottom: 12px;
}
.lp-header p {
    color: var(--lp-text);
    font-size: 1.02rem;
    max-width: 580px;
    margin: 0 auto;
}

/* === Service Cards Grid === */
.lp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
}
.lp-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 32px 28px;
    transition: all 0.3s ease;
}
.lp-card:hover {
    border-color: rgba(253,187,45,0.3);
    background: var(--lp-card-hover);
    transform: translateY(-4px);
}
.lp-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    background: rgba(253,187,45,0.1);
    margin-bottom: 20px;
    flex-shrink: 0;
}
.lp-card h3 {
    color: var(--lp-white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.lp-card p {
    color: var(--lp-text);
    font-size: 0.92rem;
    line-height: 1.65;
    margin: 0;
}

/* === Tech/Platform Cards === */
.lp-tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 16px;
}
.lp-tech {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 24px;
    transition: all 0.3s ease;
}
.lp-tech:hover {
    border-color: rgba(253,187,45,0.25);
    transform: translateY(-3px);
}
.lp-tech h4 {
    color: var(--lp-white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 8px;
}
.lp-tech p {
    color: var(--lp-text);
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}
.lp-tech-tag {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.72rem;
    padding: 3px 12px;
    border-radius: 20px;
    background: rgba(16,185,129,0.1);
    color: var(--lp-green);
    font-weight: 600;
}

/* === Pricing Section === */
.lp-pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.lp-price-card {
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    padding: 36px 28px;
    position: relative;
    transition: all 0.35s ease;
}
.lp-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.lp-price-card.popular {
    border-color: var(--lp-accent);
    background: linear-gradient(180deg, rgba(253,187,45,0.05) 0%, var(--lp-card) 40%);
}
.lp-price-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 18px;
    border-radius: 0 0 10px 10px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}
.lp-price-card h3 {
    color: var(--lp-white);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 4px;
}
.lp-price-sub {
    color: var(--lp-muted);
    font-size: 0.82rem;
    margin-bottom: 20px;
}
.lp-price-amount {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lp-white);
    line-height: 1.1;
    margin-bottom: 4px;
}
.lp-price-amount span {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--lp-muted);
}
.lp-price-note {
    color: var(--lp-muted);
    font-size: 0.8rem;
    margin-bottom: 24px;
}
.lp-price-divider {
    border: none;
    border-top: 1px solid var(--lp-border);
    margin: 0 0 20px;
}
.lp-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.lp-price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 7px 0;
    color: var(--lp-text);
    font-size: 0.9rem;
    line-height: 1.45;
}
.lp-price-features li i {
    color: var(--lp-green);
    font-size: 0.7rem;
    margin-top: 5px;
    flex-shrink: 0;
}
.lp-price-cta {
    display: block;
    text-align: center;
    padding: 13px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.lp-price-cta.primary {
    background: linear-gradient(135deg, var(--lp-accent), var(--lp-accent-2));
    color: #000;
}
.lp-price-cta.primary:hover {
    box-shadow: 0 8px 28px rgba(253,187,45,0.35);
    transform: translateY(-2px);
}
.lp-price-cta.outline {
    background: transparent;
    border: 1.5px solid var(--lp-border);
    color: var(--lp-white);
}
.lp-price-cta.outline:hover {
    border-color: var(--lp-accent);
    background: rgba(253,187,45,0.04);
}

/* === FAQ === */
.lp-faq-list { max-width: 780px; margin: 0 auto; }
.lp-faq { border-bottom: 1px solid var(--lp-border); }
.lp-faq:last-child { border-bottom: none; }
.lp-faq-q {
    width: 100%;
    padding: 20px 0;
    background: none;
    border: none;
    text-align: left;
    color: var(--lp-white);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.5;
}
.lp-faq-q i {
    color: var(--lp-muted);
    font-size: 0.75rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}
.lp-faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.lp-faq-a p {
    padding: 0 0 20px;
    color: var(--lp-text);
    line-height: 1.75;
    margin: 0;
    font-size: 0.93rem;
}

/* === CTA Section === */
.lp-cta {
    padding: 100px 0;
    background: var(--lp-bg-alt);
    position: relative;
    overflow: hidden;
}
.lp-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(253,187,45,0.06), rgba(16,185,129,0.06));
    pointer-events: none;
}
.lp-cta-inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 560px;
    margin: 0 auto;
}
.lp-cta h2 {
    color: var(--lp-white);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 14px;
}
.lp-cta p {
    color: var(--lp-text);
    font-size: 1.05rem;
    margin-bottom: 32px;
    line-height: 1.6;
}
.lp-cta-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Cross-Links === */
.lp-related {
    padding: 50px 0;
    background: var(--lp-bg);
}
.lp-related h3 {
    text-align: center;
    color: var(--lp-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 24px;
}
.lp-related-links {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}
.lp-related-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: 50px;
    color: var(--lp-white);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.lp-related-link:hover {
    border-color: rgba(253,187,45,0.3);
    background: rgba(253,187,45,0.05);
}
.lp-related-link i { color: var(--lp-accent); font-size: 0.9rem; }

/* === Certification Cards === */
.lp-cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 14px;
}
.lp-cert {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--lp-card);
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius-sm);
    padding: 20px;
    transition: all 0.3s ease;
}
.lp-cert:hover {
    border-color: rgba(253,187,45,0.25);
    transform: translateY(-2px);
}
.lp-cert-icon {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    background: rgba(253,187,45,0.1);
    flex-shrink: 0;
}
.lp-cert h4 {
    color: var(--lp-white);
    font-size: 0.95rem;
    font-weight: 600;
    margin: 0 0 3px;
}
.lp-cert p {
    color: var(--lp-muted);
    font-size: 0.8rem;
    margin: 0;
}

/* === Responsive === */
@media (max-width: 1024px) {
    .lp-hero-inner { grid-template-columns: 1fr; text-align: center; }
    .lp-hero-text { max-width: 100%; }
    .lp-btns { justify-content: center; }
    .lp-hero-img { order: -1; }
    .lp-hero-img img { max-width: 280px; }
    .lp-pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
@media (max-width: 768px) {
    .lp-hero { padding: 120px 0 60px; min-height: auto; }
    .lp-section { padding: 70px 0; }
    .lp-stats { grid-template-columns: repeat(2, 1fr); }
    .lp-grid { grid-template-columns: 1fr; max-width: 450px; margin-left: auto; margin-right: auto; }
    .lp-tech-grid { grid-template-columns: 1fr 1fr; }
    .lp-cta { padding: 70px 0; }
    .lp-cta h2 { font-size: 1.6rem; }
}
@media (max-width: 480px) {
    .lp-stats { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .lp-tech-grid { grid-template-columns: 1fr; }
    .lp-cert-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
    .lp-container { padding: 0 14px; }
    .lp-hero { padding: 108px 0 54px; }
    .lp-hero h1 { font-size: clamp(1.85rem, 8vw, 2.35rem); }
    .lp-hero-sub { font-size: 1rem; line-height: 1.65; }
    .lp-btns { width: 100%; }
    .lp-btn { width: 100%; justify-content: center; }
    .lp-price-card { padding: 28px 20px; }
    .lp-related-link { width: 100%; justify-content: center; }
}

@media (max-width: 380px) {
    .lp-stats { grid-template-columns: 1fr; }
    .lp-stat { padding: 14px 10px; }
    .lp-card,
    .lp-tech,
    .lp-cert { padding: 18px; }
}
