/*
Theme Name:        Lion Frog Theme
Theme URI:         https://lionfrog.io
Description:       Child theme Hello Elementor — Lion Frog Suite. Tropical Tech Design System.
Author:            Blue Oktopus — Nicolas Geslain
Author URI:        https://blueoktopus.com
Template:          hello-elementor
Version:           1.0.0
Text Domain:       lion-frog-theme
Tags:              elementor, woocommerce, child-theme
*/

/* ==========================================================================
   LION FROG — DESIGN SYSTEM TOKENS
   "Tropical Tech" Identity
   ========================================================================== */

:root {
    /* --- BRAND COLORS --- */
    --lf-orange:        #F97316;
    --lf-green:         #10B981;
    --lf-teal:          #1d6d7f;
    --lf-teal-dark:     #155a6a;
    --lf-teal-light:    #e8f4f6;
    --lf-gold:          #F59E0B;

    /* --- UI COLORS --- */
    --lf-bg:            #F8FAFC;
    --lf-bg-dark:       #0F172A;
    --lf-card:          #FFFFFF;
    --lf-text:          #0F172A;
    --lf-text-muted:    #64748B;
    --lf-border:        #E2E8F0;

    /* --- SHAPES & SHADOWS --- */
    --lf-radius:        16px;
    --lf-radius-sm:     8px;
    --lf-radius-pill:   50px;
    --lf-shadow:        0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.04);
    --lf-shadow-md:     0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -2px rgba(0,0,0,0.04);
    --lf-shadow-lg:     0 20px 40px -8px rgba(29,109,127,0.15);

    /* --- TYPOGRAPHY --- */
    --lf-font-display:  'Syne', sans-serif;
    --lf-font-body:     'DM Sans', sans-serif;

    /* --- TRANSITIONS --- */
    --lf-transition:    all 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--lf-font-body);
    color: var(--lf-text);
    background-color: var(--lf-bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6,
.elementor-heading-title {
    font-family: var(--lf-font-display);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--lf-teal);
}

h1, .lf-h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--lf-teal);
}

h2, .lf-h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3, .lf-h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
}

p {
    font-family: var(--lf-font-body);
    line-height: 1.7;
    color: var(--lf-text-muted);
}

.lf-label {
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--lf-text-muted);
}

/* ==========================================================================
   HEADER & NAVIGATION
   ========================================================================== */

.site-header,
header.elementor-location-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--lf-border);
    transition: var(--lf-transition);
}

/* Logo */
.lf-site-logo img {
    height: 44px;
    width: auto;
}

/* Nav links */
.elementor-nav-menu a {
    font-family: var(--lf-font-body);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--lf-text) !important;
    text-decoration: none;
    transition: var(--lf-transition);
    padding: 6px 14px;
    border-radius: var(--lf-radius-sm);
}

.elementor-nav-menu a:hover {
    color: var(--lf-teal) !important;
    background: var(--lf-teal-light);
}

.elementor-nav-menu .current-menu-item > a {
    color: var(--lf-teal) !important;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

/* Primary — Green */
.lf-btn-primary,
.elementor-button.lf-btn-primary,
a.lf-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--lf-green);
    color: #fff !important;
    font-family: var(--lf-font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--lf-radius-pill);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: var(--lf-transition);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.35);
}

.lf-btn-primary:hover {
    background: #0da271;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16, 185, 129, 0.45);
    color: #fff !important;
}

/* Secondary — Orange outline */
.lf-btn-secondary,
.elementor-button.lf-btn-secondary,
a.lf-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--lf-orange) !important;
    font-family: var(--lf-font-body);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 12px 28px;
    border-radius: var(--lf-radius-pill);
    border: 2px solid var(--lf-orange);
    cursor: pointer;
    text-decoration: none;
    transition: var(--lf-transition);
}

.lf-btn-secondary:hover {
    background: #FFF7ED;
    transform: translateY(-2px);
    color: var(--lf-orange) !important;
}

/* Ghost */
.lf-btn-ghost {
    background: transparent;
    color: var(--lf-text-muted) !important;
    border: 1.5px solid var(--lf-border);
    padding: 11px 26px;
    border-radius: var(--lf-radius-pill);
    font-weight: 600;
    transition: var(--lf-transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.lf-btn-ghost:hover {
    border-color: var(--lf-teal);
    color: var(--lf-teal) !important;
}

/* Elementor button override global */
.elementor-button {
    border-radius: var(--lf-radius-pill) !important;
    font-family: var(--lf-font-body) !important;
    font-weight: 700 !important;
    transition: var(--lf-transition) !important;
}

/* ==========================================================================
   CARDS
   ========================================================================== */

.lf-card {
    background: var(--lf-card);
    border-radius: var(--lf-radius);
    border: 1px solid var(--lf-border);
    padding: 32px;
    box-shadow: var(--lf-shadow);
    transition: var(--lf-transition);
}

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

.lf-card-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--lf-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.lf-card-icon.teal  { background: var(--lf-teal-light); color: var(--lf-teal); }
.lf-card-icon.green { background: rgba(16,185,129,0.12); color: var(--lf-green); }
.lf-card-icon.orange{ background: rgba(249,115,22,0.12); color: var(--lf-orange); }
.lf-card-icon.gold  { background: rgba(245,158,11,0.12); color: var(--lf-gold); }

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.lf-hero {
    background: linear-gradient(135deg, #0c3d47 0%, var(--lf-teal) 50%, #1a8599 100%);
    position: relative;
    overflow: hidden;
    padding: 100px 0 120px;
    color: #fff;
}

.lf-hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(249,115,22,0.18) 0%, transparent 65%);
    pointer-events: none;
}

.lf-hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16,185,129,0.15) 0%, transparent 65%);
    pointer-events: none;
}

.lf-hero h1,
.lf-hero .elementor-heading-title {
    color: #fff;
    font-size: clamp(2.5rem, 6vw, 4rem);
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.lf-hero p {
    color: rgba(255,255,255,0.82);
    font-size: 1.15rem;
    max-width: 580px;
}

/* Badge hero */
.lf-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    color: #fff;
    font-size: 0.78rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: var(--lf-radius-pill);
    border: 1px solid rgba(255,255,255,0.25);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

.lf-badge-dot {
    width: 6px;
    height: 6px;
    background: var(--lf-green);
    border-radius: 50%;
    animation: lf-pulse 2s infinite;
}

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

/* ==========================================================================
   SECTION LAYOUT
   ========================================================================== */

.lf-section {
    padding: 90px 0;
}

.lf-section-alt {
    background: var(--lf-bg);
    padding: 90px 0;
}

.lf-section-dark {
    background: var(--lf-bg-dark);
    padding: 90px 0;
    color: #fff;
}

.lf-section-dark h1,
.lf-section-dark h2,
.lf-section-dark h3 {
    color: #fff;
}

.lf-section-dark p {
    color: rgba(255,255,255,0.65);
}

/* Container */
.lf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Section header */
.lf-section-header {
    text-align: center;
    margin-bottom: 64px;
}

.lf-section-header .lf-label {
    display: block;
    margin-bottom: 12px;
    color: var(--lf-orange);
}

.lf-section-header h2 {
    margin-bottom: 16px;
}

.lf-section-header p {
    max-width: 560px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ==========================================================================
   PLUGIN GRID (Home)
   ========================================================================== */

.lf-plugin-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
}

.lf-plugin-card {
    background: var(--lf-card);
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-radius);
    padding: 28px;
    transition: var(--lf-transition);
    position: relative;
    overflow: hidden;
}

.lf-plugin-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--lf-teal), var(--lf-green));
    opacity: 0;
    transition: var(--lf-transition);
}

.lf-plugin-card:hover {
    box-shadow: var(--lf-shadow-lg);
    transform: translateY(-5px);
    border-color: transparent;
}

.lf-plugin-card:hover::before {
    opacity: 1;
}

/* Badge PRO / LITE sur les cards */
.lf-pill {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 3px 10px;
    border-radius: var(--lf-radius-pill);
}

.lf-pill-pro   { background: rgba(245,158,11,0.15); color: var(--lf-gold); }
.lf-pill-lite  { background: var(--lf-teal-light);  color: var(--lf-teal); }
.lf-pill-free  { background: rgba(16,185,129,0.12); color: var(--lf-green); }

/* ==========================================================================
   STATS / NUMBERS (Home)
   ========================================================================== */

.lf-stats-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 32px;
    padding: 48px;
    background: var(--lf-card);
    border-radius: var(--lf-radius);
    box-shadow: var(--lf-shadow-md);
    border: 1px solid var(--lf-border);
}

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

.lf-stat-number {
    font-family: var(--lf-font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--lf-teal);
    line-height: 1;
    margin-bottom: 6px;
}

.lf-stat-label {
    font-size: 0.82rem;
    color: var(--lf-text-muted);
    font-weight: 500;
}

/* ==========================================================================
   PRICING / UPGRADE BANNER
   ========================================================================== */

.lf-upgrade-banner {
    background: linear-gradient(135deg, var(--lf-gold) 0%, var(--lf-orange) 100%);
    border-radius: var(--lf-radius);
    padding: 48px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.lf-upgrade-banner::before {
    content: '👑';
    position: absolute;
    font-size: 8rem;
    opacity: 0.08;
    top: -20px;
    right: 20px;
}

.lf-upgrade-banner h2,
.lf-upgrade-banner h3 {
    color: #fff;
    margin-bottom: 12px;
}

.lf-upgrade-banner p {
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
}

/* ==========================================================================
   PAGE: DOWNLOAD (accès restreint)
   ========================================================================== */

.lf-download-page {
    padding: 80px 0;
}

.lf-download-card {
    background: var(--lf-card);
    border-radius: var(--lf-radius);
    border: 1px solid var(--lf-border);
    padding: 36px;
    box-shadow: var(--lf-shadow);
    display: flex;
    align-items: center;
    gap: 24px;
    transition: var(--lf-transition);
    margin-bottom: 16px;
}

.lf-download-card:hover {
    box-shadow: var(--lf-shadow-md);
    border-color: var(--lf-teal);
}

.lf-download-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: var(--lf-teal-light);
    border-radius: var(--lf-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lf-teal);
    font-size: 1.5rem;
}

.lf-download-meta {
    flex: 1;
}

.lf-download-meta h3 {
    margin: 0 0 4px;
    font-size: 1rem;
    color: var(--lf-text);
}

.lf-download-meta .version {
    font-size: 0.78rem;
    color: var(--lf-text-muted);
}

/* Login required notice */
.lf-login-required {
    background: linear-gradient(135deg, var(--lf-teal-light) 0%, rgba(16,185,129,0.06) 100%);
    border: 1.5px solid rgba(29,109,127,0.2);
    border-radius: var(--lf-radius);
    padding: 48px;
    text-align: center;
    margin: 40px 0;
}

.lf-login-required .lf-lock-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.lf-login-required h3 {
    color: var(--lf-teal);
    margin-bottom: 12px;
}

.lf-login-required p {
    max-width: 400px;
    margin: 0 auto 28px;
}

/* ==========================================================================
   PAGE: MY ACCOUNT (WooCommerce override)
   ========================================================================== */

.woocommerce-account .woocommerce-MyAccount-navigation {
    background: var(--lf-card);
    border-radius: var(--lf-radius);
    border: 1px solid var(--lf-border);
    padding: 20px;
    box-shadow: var(--lf-shadow);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li {
    border-bottom: 1px solid var(--lf-border);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li:last-child {
    border-bottom: none;
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a {
    display: block;
    padding: 12px 16px;
    color: var(--lf-text-muted);
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    border-radius: var(--lf-radius-sm);
    transition: var(--lf-transition);
}

.woocommerce-account .woocommerce-MyAccount-navigation ul li a:hover,
.woocommerce-account .woocommerce-MyAccount-navigation ul li.is-active a {
    color: var(--lf-teal);
    background: var(--lf-teal-light);
}

.woocommerce-account .woocommerce-MyAccount-content {
    background: var(--lf-card);
    border-radius: var(--lf-radius);
    border: 1px solid var(--lf-border);
    padding: 36px;
    box-shadow: var(--lf-shadow);
}

/* WooCommerce buttons override */
.woocommerce button.button,
.woocommerce a.button,
.woocommerce input[type="submit"] {
    background: var(--lf-green) !important;
    color: #fff !important;
    border-radius: var(--lf-radius-pill) !important;
    font-family: var(--lf-font-body) !important;
    font-weight: 700 !important;
    padding: 10px 24px !important;
    transition: var(--lf-transition) !important;
    border: none !important;
    box-shadow: 0 4px 12px rgba(16,185,129,0.3) !important;
}

.woocommerce button.button:hover,
.woocommerce a.button:hover {
    background: #0da271 !important;
    transform: translateY(-2px) !important;
}

/* WooCommerce forms */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row textarea,
.woocommerce form .form-row select {
    border-radius: var(--lf-radius-sm) !important;
    border: 1.5px solid var(--lf-border) !important;
    padding: 10px 14px !important;
    font-family: var(--lf-font-body) !important;
    transition: var(--lf-transition) !important;
}

.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row textarea:focus {
    border-color: var(--lf-teal) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(29,109,127,0.12) !important;
}

/* ==========================================================================
   PAGE: CONTACT
   ========================================================================== */

.lf-contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: start;
}

@media (max-width: 768px) {
    .lf-contact-wrap {
        grid-template-columns: 1fr;
    }
}

.lf-contact-info h3 {
    margin-bottom: 8px;
}

.lf-contact-info p {
    margin-bottom: 32px;
}

.lf-contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--lf-border);
    color: var(--lf-text-muted);
    font-size: 0.9rem;
}

.lf-contact-item:last-child {
    border-bottom: none;
}

.lf-contact-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: var(--lf-teal-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lf-teal);
    font-size: 1rem;
}

/* Contact Form 7 / Elementor Form override */
.lf-contact-form-wrap input[type="text"],
.lf-contact-form-wrap input[type="email"],
.lf-contact-form-wrap textarea,
.elementor-form input,
.elementor-form textarea,
.wpcf7-form input,
.wpcf7-form textarea {
    width: 100%;
    border-radius: var(--lf-radius-sm) !important;
    border: 1.5px solid var(--lf-border) !important;
    padding: 12px 16px !important;
    font-family: var(--lf-font-body) !important;
    font-size: 0.9rem !important;
    transition: var(--lf-transition) !important;
    background: var(--lf-bg) !important;
}

.lf-contact-form-wrap input:focus,
.lf-contact-form-wrap textarea:focus,
.elementor-form input:focus,
.elementor-form textarea:focus,
.wpcf7-form input:focus,
.wpcf7-form textarea:focus {
    border-color: var(--lf-teal) !important;
    outline: none !important;
    box-shadow: 0 0 0 3px rgba(29,109,127,0.1) !important;
    background: #fff !important;
}

/* ==========================================================================
   ABOUT PAGE — TEAM
   ========================================================================== */

.lf-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 28px;
}

.lf-team-card {
    background: var(--lf-card);
    border: 1px solid var(--lf-border);
    border-radius: var(--lf-radius);
    padding: 32px 24px;
    text-align: center;
    transition: var(--lf-transition);
}

.lf-team-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lf-shadow-md);
}

.lf-team-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    object-fit: cover;
    border: 3px solid var(--lf-teal-light);
}

.lf-team-avatar-placeholder {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--lf-teal), var(--lf-green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lf-font-display);
    font-size: 1.4rem;
    font-weight: 800;
    color: #fff;
}

.lf-team-role {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--lf-orange);
    margin-bottom: 8px;
}

.lf-team-name {
    font-family: var(--lf-font-display);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lf-text);
    margin-bottom: 8px;
}

.lf-team-desc {
    font-size: 0.82rem;
    color: var(--lf-text-muted);
    line-height: 1.6;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer,
footer.elementor-location-footer {
    background: var(--lf-bg-dark);
    color: rgba(255,255,255,0.6);
    padding: 64px 0 32px;
}

.site-footer h3,
.site-footer h4 {
    color: #fff;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.site-footer a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 0.85rem;
    transition: var(--lf-transition);
}

.site-footer a:hover {
    color: var(--lf-green);
}

.lf-footer-logo {
    filter: brightness(0) invert(1);
    height: 36px;
    width: auto;
    opacity: 0.9;
    margin-bottom: 16px;
}

.lf-footer-tagline {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.4);
    max-width: 240px;
    line-height: 1.6;
}

.lf-footer-divider {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin: 40px 0 24px;
}

.lf-footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.35);
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.lf-text-orange { color: var(--lf-orange) !important; }
.lf-text-green  { color: var(--lf-green) !important; }
.lf-text-teal   { color: var(--lf-teal) !important; }
.lf-text-gold   { color: var(--lf-gold) !important; }
.lf-text-muted  { color: var(--lf-text-muted) !important; }
.lf-text-white  { color: #fff !important; }

.lf-bg-teal     { background-color: var(--lf-teal) !important; }
.lf-bg-orange   { background-color: var(--lf-orange) !important; }
.lf-bg-green    { background-color: var(--lf-green) !important; }
.lf-bg-dark     { background-color: var(--lf-bg-dark) !important; }
.lf-bg-light    { background-color: var(--lf-bg) !important; }

.lf-mb-8  { margin-bottom: 8px !important; }
.lf-mb-16 { margin-bottom: 16px !important; }
.lf-mb-24 { margin-bottom: 24px !important; }
.lf-mb-32 { margin-bottom: 32px !important; }
.lf-mb-48 { margin-bottom: 48px !important; }

.lf-text-center { text-align: center; }
.lf-text-left   { text-align: left; }

/* Decorative separator */
.lf-line-accent {
    display: block;
    width: 48px;
    height: 4px;
    background: linear-gradient(90deg, var(--lf-orange), var(--lf-gold));
    border-radius: 2px;
    margin: 0 auto 24px;
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

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

.lf-animate-fadeup {
    animation: lf-fadeUp 0.55s ease forwards;
}

.lf-delay-1 { animation-delay: 0.1s; }
.lf-delay-2 { animation-delay: 0.2s; }
.lf-delay-3 { animation-delay: 0.35s; }
.lf-delay-4 { animation-delay: 0.5s; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
    .lf-plugin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .lf-hero {
        padding: 72px 0 80px;
    }

    .lf-section,
    .lf-section-alt,
    .lf-section-dark {
        padding: 64px 0;
    }

    .lf-stats-row {
        grid-template-columns: repeat(2, 1fr);
        padding: 28px;
    }

    .lf-plugin-grid {
        grid-template-columns: 1fr;
    }

    .lf-download-card {
        flex-direction: column;
        text-align: center;
    }

    .lf-footer-bottom {
        justify-content: center;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .lf-stats-row {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .lf-upgrade-banner {
        padding: 36px 24px;
    }
}
