/* ==========================================================
   IVF ORIGEN AGENCY — LANDING PAGE
   Premium & Modern Design System
   ========================================================== */

/* ----------------------------------------------------------
   CSS CUSTOM PROPERTIES
   ---------------------------------------------------------- */
:root {
    --lp-teal:          #153132;
    --lp-teal-dark:     #0f2324;
    --lp-teal-light:    #1e4748;
    --lp-gold:          #c39d12;
    --lp-gold-light:    #d0b01f;
    --lp-gold-pale:     #f5edcc;
    --lp-white:         #ffffff;
    --lp-off-white:     #f8f7f4;
    --lp-light-gray:    #f2f1ee;
    --lp-border:        rgba(21, 49, 50, 0.1);
    --lp-text-dark:     #1a1a1a;
    --lp-text-body:     #4a5555;
    --lp-text-muted:    #7a8888;
    --lp-shadow-sm:     0 2px 8px rgba(21, 49, 50, 0.06);
    --lp-shadow-md:     0 8px 30px rgba(21, 49, 50, 0.10);
    --lp-shadow-lg:     0 16px 48px rgba(21, 49, 50, 0.14);
    --lp-radius-sm:     8px;
    --lp-radius-md:     14px;
    --lp-radius-lg:     24px;
    --lp-font:          'comma-font', 'Playfair Display', Georgia, serif;
    --lp-font-sans:     'Century Gothic', 'CenturyGothic', 'AppleGothic', Arial, sans-serif;
    --lp-transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --lp-max-width:     1200px;
}

/* ----------------------------------------------------------
   RESET & BASE
   ---------------------------------------------------------- */
.landing-page-body,
#landing-page-wrap {
    margin: 0;
    padding: 0;
    background: var(--lp-white);
    color: var(--lp-text-dark);
    font-family: var(--lp-font);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* Override Flatsome globals on landing page */
.landing-page-body #main,
.landing-page-body .page-wrapper,
.landing-page-body #wrapper {
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
}

.landing-page-body .header-wrapper,
.landing-page-body #header,
.landing-page-body footer.footer-wrapper,
.landing-page-body #footer {
    display: none !important;
}

/* ----------------------------------------------------------
   CONTAINER
   ---------------------------------------------------------- */
.lp-container {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ----------------------------------------------------------
   TYPOGRAPHY UTILITIES
   ---------------------------------------------------------- */
.lp-overline {
    display: inline-block;
    font-family: var(--lp-font-sans);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--lp-gold);
    margin-bottom: 12px;
}

.lp-overline--light {
    color: rgba(255, 255, 255, 0.7);
}

.lp-section-title {
    font-family: var(--lp-font);
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--lp-teal);
    margin: 0 0 16px;
}

.lp-section-title--light {
    color: var(--lp-white);
}

.lp-section-subtitle {
    font-family: var(--lp-font-sans);
    font-size: 1.05rem;
    color: var(--lp-text-body);
    max-width: 600px;
    line-height: 1.7;
    margin: 0 auto;
}

.lp-section-subtitle--light {
    color: rgba(255, 255, 255, 0.75);
}

.lp-section-body {
    font-family: var(--lp-font-sans);
    font-size: 1rem;
    color: var(--lp-text-body);
    line-height: 1.75;
    margin: 0 0 24px;
}

.lp-section-body--light {
    color: rgba(255, 255, 255, 0.8);
}

.lp-section-header {
    text-align: center;
    margin-bottom: 56px;
}

.lp-section-header--light .lp-section-title,
.lp-section-header--light .lp-section-subtitle {
    color: var(--lp-white);
}

.lp-section-header--light .lp-section-subtitle {
    opacity: 0.8;
}

/* ----------------------------------------------------------
   BUTTONS
   ---------------------------------------------------------- */
.lp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lp-font-sans);
    font-weight: 600;
    text-decoration: none !important;
    border-radius: 50px;
    transition: all var(--lp-transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
    letter-spacing: 0.3px;
}

.lp-btn--primary {
    background: var(--lp-teal);
    color: var(--lp-white) !important;
    border-color: var(--lp-teal);
}

.lp-btn--primary:hover {
    background: var(--lp-gold);
    border-color: var(--lp-gold);
    color: var(--lp-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(195, 157, 18, 0.35);
}

.lp-btn--outline {
    background: transparent;
    color: var(--lp-white) !important;
    border-color: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}

.lp-btn--outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--lp-white);
    transform: translateY(-2px);
}

.lp-btn--sm {
    padding: 10px 22px;
    font-size: 0.85rem;
}

.lp-btn--lg {
    padding: 16px 36px;
    font-size: 1rem;
}

/* ----------------------------------------------------------
   NAVIGATION
   ---------------------------------------------------------- */
.lp-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(21, 49, 50, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background var(--lp-transition);
}

.lp-nav.scrolled {
    background: rgba(21, 49, 50, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.lp-nav__inner {
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 0 24px;
    height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.lp-nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.lp-nav__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.lp-nav__logo-text {
    font-family: var(--lp-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-white);
    letter-spacing: 0.5px;
}

.lp-nav__cta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lp-nav__phone {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.85) !important;
    text-decoration: none !important;
    font-family: var(--lp-font-sans);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--lp-transition);
}

.lp-nav__phone:hover {
    color: var(--lp-gold) !important;
}

/* ----------------------------------------------------------
   HERO
   ---------------------------------------------------------- */
.lp-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 68px;
}

.lp-hero__bg-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(21, 49, 50, 0.88) 0%,
        rgba(21, 49, 50, 0.65) 50%,
        rgba(21, 49, 50, 0.75) 100%
    );
    z-index: 2;
}

.lp-hero__video-wrap {
    position: absolute;
    inset: 0;
    z-index: 1;
    overflow: hidden;
}

.lp-hero__video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Fallback background if video fails */
.lp-hero__video-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--lp-teal) 0%, #2a6b6c 100%);
    z-index: -1;
}

.lp-hero__content {
    position: relative;
    z-index: 3;
    max-width: var(--lp-max-width);
    margin: 0 auto;
    padding: 80px 24px 100px;
    width: 100%;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(195, 157, 18, 0.2);
    border: 1px solid rgba(195, 157, 18, 0.4);
    color: var(--lp-gold-light);
    padding: 6px 16px;
    border-radius: 50px;
    font-family: var(--lp-font-sans);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
    margin-bottom: 24px;
}

.lp-hero__badge {
    margin-bottom: 8px;
}

.lp-hero__headline {
    font-family: var(--lp-font);
    font-size: clamp(2.4rem, 5.5vw, 4.2rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--lp-white);
    margin: 0 0 24px;
    max-width: 750px;
    letter-spacing: -0.5px;
}

.lp-hero__headline em {
    font-style: normal;
    color: var(--lp-gold-light);
    display: block;
}

.lp-hero__subheadline {
    font-family: var(--lp-font-sans);
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    max-width: 580px;
    line-height: 1.7;
    margin: 0 0 40px;
}

.lp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.lp-hero__trust-bar {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.lp-trust-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.lp-trust-item strong {
    font-family: var(--lp-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--lp-gold-light);
    line-height: 1;
}

.lp-trust-item span {
    font-family: var(--lp-font-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lp-trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
}

/* ----------------------------------------------------------
   POSITIONING SECTION
   ---------------------------------------------------------- */
.lp-positioning {
    padding: 96px 0;
    background: var(--lp-off-white);
}

.lp-positioning__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.lp-positioning__text .lp-section-title {
    margin-bottom: 20px;
}

.lp-positioning__cta {
    margin-top: 8px;
    display: inline-flex;
}

.lp-stat-card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--lp-white);
    border-radius: var(--lp-radius-md);
    padding: 20px 24px;
    box-shadow: var(--lp-shadow-sm);
    border: 1px solid var(--lp-border);
    transition: all var(--lp-transition);
}

.lp-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-md);
    border-color: rgba(21, 49, 50, 0.2);
}

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

.lp-stat-card__icon {
    width: 52px;
    height: 52px;
    background: var(--lp-gold-pale);
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--lp-teal);
}

.lp-stat-card__content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.lp-stat-card__content strong {
    font-family: var(--lp-font);
    font-size: 1rem;
    font-weight: 700;
    color: var(--lp-teal);
    display: block;
}

.lp-stat-card__content span {
    font-family: var(--lp-font-sans);
    font-size: 0.82rem;
    color: var(--lp-text-muted);
    line-height: 1.4;
}

/* ----------------------------------------------------------
   WHY SECTION
   ---------------------------------------------------------- */
.lp-why {
    padding: 96px 0 96px;
    background: var(--lp-white);
    overflow: hidden;
}

/* ----------------------------------------------------------
   DONOR PHOTO MARQUEE
   ---------------------------------------------------------- */
.lp-marquee {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 48px 0 56px;
    /* Fade edges into the section background */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}

.lp-marquee__track {
    display: flex;
    gap: 16px;
    width: max-content;
    animation: lp-marquee-scroll 32s linear infinite;
}

.lp-marquee:hover .lp-marquee__track {
    animation-play-state: paused;
}

@keyframes lp-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(calc(-100% / 3)); }
}

.lp-marquee__item {
    flex-shrink: 0;
    width: 220px;
    height: 300px;
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    box-shadow: var(--lp-shadow-md);
    border: 2px solid rgba(21, 49, 50, 0.06);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.lp-marquee__item:hover {
    transform: scale(1.04) translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

.lp-marquee__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    display: block;
    transition: transform 0.5s ease;
}

.lp-marquee__item:hover img {
    transform: scale(1.06);
}

/* Reduce speed on mobile */
@media (max-width: 768px) {
    .lp-marquee__track {
        animation-duration: 22s;
    }
    .lp-marquee__item {
        width: 160px;
        height: 220px;
    }
}

.lp-why__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.lp-feature-card {
    background: var(--lp-off-white);
    border-radius: var(--lp-radius-md);
    padding: 32px 28px;
    border: 1px solid var(--lp-border);
    transition: all var(--lp-transition);
    position: relative;
    overflow: hidden;
}

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

.lp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--lp-shadow-lg);
    background: var(--lp-white);
    border-color: rgba(21, 49, 50, 0.15);
}

.lp-feature-card:hover::before {
    opacity: 1;
}

.lp-feature-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--lp-teal), var(--lp-teal-light));
    border-radius: var(--lp-radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-white);
    margin-bottom: 20px;
    transition: transform var(--lp-transition);
}

.lp-feature-card:hover .lp-feature-card__icon {
    transform: scale(1.08) rotate(-3deg);
}

.lp-feature-card h3 {
    font-family: var(--lp-font);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--lp-teal);
    margin: 0 0 12px;
    line-height: 1.3;
}

.lp-feature-card p {
    font-family: var(--lp-font-sans);
    font-size: 0.9rem;
    color: var(--lp-text-body);
    line-height: 1.7;
    margin: 0;
}

/* ----------------------------------------------------------
   PROCESS SECTION
   ---------------------------------------------------------- */
.lp-process {
    padding: 96px 0;
    background: var(--lp-teal);
    position: relative;
    overflow: hidden;
}

.lp-process::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(195, 157, 18, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.lp-process__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    position: relative;
}

.lp-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
}

.lp-step__number {
    width: 64px;
    height: 64px;
    background: var(--lp-gold);
    color: var(--lp-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--lp-font);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 16px rgba(195, 157, 18, 0.4);
}

.lp-step__content h3 {
    font-family: var(--lp-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-white);
    margin: 0 0 10px;
    line-height: 1.3;
}

.lp-step__content p {
    font-family: var(--lp-font-sans);
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.65;
    margin: 0;
}

.lp-step__connector {
    flex-shrink: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--lp-gold), rgba(195, 157, 18, 0.3));
    margin-top: 31px;
    position: relative;
}

.lp-step__connector::after {
    content: '';
    position: absolute;
    right: -5px;
    top: -4px;
    width: 10px;
    height: 10px;
    background: var(--lp-gold);
    border-radius: 50%;
    opacity: 0.5;
}

/* ----------------------------------------------------------
   VIDEO TESTIMONIALS (YouTube embeds)
   ---------------------------------------------------------- */
.lp-gallery {
    padding: 96px 0;
    background: var(--lp-off-white);
}

/* Base grid — overridden by modifiers below */
.lp-yt-grid {
    display: grid;
    gap: 24px;
    margin-bottom: 24px;
}

.lp-yt-grid:last-child {
    margin-bottom: 0;
}

/* Row 1: 3 columns */
.lp-yt-grid--3 {
    grid-template-columns: repeat(3, 1fr);
}

/* Row 2: 2 columns, centered within the 3-col width */
.lp-yt-grid--2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: calc(66.666% + 8px); /* matches 2 of 3 columns + gap */
    margin-left: auto;
    margin-right: auto;
}

.lp-yt-item {
    border-radius: var(--lp-radius-md);
    overflow: hidden;
    box-shadow: var(--lp-shadow-md);
    transition: transform var(--lp-transition), box-shadow var(--lp-transition);
    background: #000;
}

.lp-yt-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--lp-shadow-lg);
}

/* 16:9 responsive wrapper */
.lp-yt-wrap {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.lp-yt-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ----------------------------------------------------------
   GOOGLE REVIEWS SECTION
   ---------------------------------------------------------- */
.lp-reviews-section {
    padding: 96px 0;
    background: var(--lp-off-white);
}

.lp-reviews-widget {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    padding: 40px 40px 32px;
    box-shadow: var(--lp-shadow-md);
    border: 1px solid var(--lp-border);
    overflow: hidden;
}

/* Ensure Trustindex widget fills the container cleanly */
.lp-reviews-widget .trustindex-widget,
.lp-reviews-widget > div {
    margin: 0 !important;
}

@media (max-width: 768px) {
    .lp-reviews-section {
        padding: 64px 0;
    }

    .lp-reviews-widget {
        padding: 24px 16px 20px;
        border-radius: var(--lp-radius-md);
    }
}

/* ----------------------------------------------------------
   FORM SECTION
   ---------------------------------------------------------- */
.lp-form-section {
    padding: 96px 0;
    background: linear-gradient(135deg, var(--lp-teal) 0%, var(--lp-teal-dark) 60%, #0a1a1b 100%);
    position: relative;
    overflow: hidden;
}

.lp-form-section::before {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(195, 157, 18, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.lp-form-wrap {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: start;
}

.lp-form-benefits {
    list-style: none;
    margin: 0 0 32px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.lp-form-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--lp-font-sans);
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
}

.lp-form-benefits li svg {
    color: var(--lp-gold);
    flex-shrink: 0;
}

.lp-form-contact {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.lp-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--lp-font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--lp-gold-light) !important;
    text-decoration: none !important;
    transition: color var(--lp-transition);
}

.lp-contact-link:hover {
    color: var(--lp-white) !important;
}

.lp-contact-link--wa {
    color: #25d366 !important;
}

.lp-contact-link--wa:hover {
    color: #1ebe5d !important;
}

.lp-form-contact__sep {
    font-family: var(--lp-font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.lp-form-card {
    background: var(--lp-white);
    border-radius: var(--lp-radius-lg);
    overflow: hidden;
    box-shadow: var(--lp-shadow-lg);
}

.lp-form-card__header {
    background: var(--lp-off-white);
    padding: 28px 32px 24px;
    border-bottom: 1px solid var(--lp-border);
}

.lp-form-card__header h3 {
    font-family: var(--lp-font);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--lp-teal);
    margin: 0 0 6px;
}

.lp-form-card__header p {
    font-family: var(--lp-font-sans);
    font-size: 0.85rem;
    color: var(--lp-text-muted);
    margin: 0;
}

.lp-form-card__body {
    padding: 32px;
}

/* Gravity Forms overrides within landing page */
.lp-form-card__body .gform_wrapper {
    margin: 0 !important;
}

.lp-form-card__body .gform_wrapper input[type="text"],
.lp-form-card__body .gform_wrapper input[type="email"],
.lp-form-card__body .gform_wrapper input[type="tel"],
.lp-form-card__body .gform_wrapper input[type="number"],
.lp-form-card__body .gform_wrapper select,
.lp-form-card__body .gform_wrapper textarea {
    border: 1.5px solid var(--lp-border) !important;
    border-radius: var(--lp-radius-sm) !important;
    padding: 12px 16px !important;
    font-family: var(--lp-font-sans) !important;
    font-size: 0.9rem !important;
    color: var(--lp-text-dark) !important;
    background: var(--lp-off-white) !important;
    transition: border-color var(--lp-transition), box-shadow var(--lp-transition) !important;
    width: 100% !important;
    box-sizing: border-box !important;
    height: auto !important;
}

.lp-form-card__body .gform_wrapper input:focus,
.lp-form-card__body .gform_wrapper select:focus,
.lp-form-card__body .gform_wrapper textarea:focus {
    outline: none !important;
    border-color: var(--lp-teal) !important;
    box-shadow: 0 0 0 3px rgba(21, 49, 50, 0.1) !important;
    background: var(--lp-white) !important;
}

.lp-form-card__body .gform_wrapper .gfield_label {
    font-family: var(--lp-font-sans) !important;
    font-size: 0.82rem !important;
    font-weight: 600 !important;
    color: var(--lp-text-dark) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 6px !important;
}

.lp-form-card__body .gform_wrapper .gfield {
    margin-bottom: 20px !important;
}

.lp-form-card__body .gform_wrapper .gform_footer input[type="submit"],
.lp-form-card__body .gform_wrapper .gform_footer button[type="submit"] {
    background: var(--lp-teal) !important;
    color: var(--lp-white) !important;
    border: none !important;
    border-radius: 50px !important;
    padding: 14px 36px !important;
    font-family: var(--lp-font-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    transition: all var(--lp-transition) !important;
    width: 100% !important;
    text-transform: uppercase !important;
}

.lp-form-card__body .gform_wrapper .gform_footer input[type="submit"]:hover,
.lp-form-card__body .gform_wrapper .gform_footer button[type="submit"]:hover {
    background: var(--lp-gold) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(195, 157, 18, 0.35) !important;
}

.lp-form-card__body .gform_confirmation_message {
    font-family: var(--lp-font-sans);
    font-size: 1rem;
    color: var(--lp-teal);
    text-align: center;
    padding: 24px;
    background: rgba(21, 49, 50, 0.05);
    border-radius: var(--lp-radius-sm);
    border-left: 4px solid var(--lp-teal);
}

/* ----------------------------------------------------------
   FOOTER
   ---------------------------------------------------------- */
.lp-footer {
    background: var(--lp-teal-dark);
    padding: 48px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.lp-footer__inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.lp-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.lp-footer__name {
    font-family: var(--lp-font);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--lp-white);
    margin: 0;
}

.lp-footer__address {
    font-family: var(--lp-font-sans);
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.lp-footer__phone {
    font-family: var(--lp-font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--lp-gold-light) !important;
    text-decoration: none !important;
    transition: color var(--lp-transition);
}

.lp-footer__phone:hover {
    color: var(--lp-white) !important;
}

.lp-footer__links {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
    align-items: center;
}

.lp-footer__links a {
    font-family: var(--lp-font-sans);
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: color var(--lp-transition);
}

.lp-footer__links a:hover {
    color: var(--lp-gold-light) !important;
}

.lp-footer__bottom {
    text-align: center;
}

.lp-footer__bottom p {
    font-family: var(--lp-font-sans);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ----------------------------------------------------------
   SCROLL REVEAL ANIMATIONS
   ---------------------------------------------------------- */
.lp-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.lp-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.lp-reveal--delay-1 { transition-delay: 0.1s; }
.lp-reveal--delay-2 { transition-delay: 0.2s; }
.lp-reveal--delay-3 { transition-delay: 0.3s; }
.lp-reveal--delay-4 { transition-delay: 0.4s; }
.lp-reveal--delay-5 { transition-delay: 0.5s; }

/* ----------------------------------------------------------
   RESPONSIVE — TABLET (≤ 1024px)
   ---------------------------------------------------------- */
@media (max-width: 1024px) {
    .lp-positioning__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .lp-yt-grid--2 {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

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

    .lp-process__steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .lp-step {
        flex-direction: row;
        text-align: left;
        padding: 0 0 40px;
        gap: 24px;
        align-items: flex-start;
    }

    .lp-step__number {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .lp-step__connector {
        width: 2px;
        height: 40px;
        margin: 0 0 0 31px;
        background: linear-gradient(180deg, var(--lp-gold), rgba(195, 157, 18, 0.3));
    }

    .lp-step__connector::after {
        right: -4px;
        top: auto;
        bottom: -5px;
    }

    .lp-form-wrap {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE — MOBILE (≤ 768px)
   ---------------------------------------------------------- */
@media (max-width: 768px) {
    .lp-nav__phone {
        display: none;
    }

    .lp-nav__inner {
        height: 60px;
    }

    .lp-hero {
        padding-top: 60px;
    }

    .lp-hero__content {
        padding: 60px 20px 80px;
    }

    .lp-hero__actions {
        flex-direction: column;
        gap: 12px;
    }

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

    .lp-hero__trust-bar {
        gap: 20px;
    }

    .lp-trust-divider {
        display: none;
    }

    .lp-positioning {
        padding: 64px 0;
    }

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

    .lp-why {
        padding: 64px 0;
    }

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

    .lp-process {
        padding: 64px 0;
    }

    .lp-gallery {
        padding: 64px 0;
    }

    .lp-yt-grid--3,
    .lp-yt-grid--2 {
        grid-template-columns: 1fr;
        max-width: 100%;
    }

    .lp-form-section {
        padding: 64px 0;
    }

    .lp-form-card__body {
        padding: 24px 20px;
    }

    .lp-footer__inner {
        flex-direction: column;
        gap: 24px;
    }

    .lp-footer__links {
        gap: 16px;
    }
}

/* ----------------------------------------------------------
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ---------------------------------------------------------- */
@media (max-width: 480px) {
    .lp-container {
        padding: 0 16px;
    }

    .lp-hero__headline {
        font-size: 2rem;
    }

    .lp-section-title {
        font-size: 1.6rem;
    }

    .lp-trust__number {
        font-size: 3rem;
    }

    .lp-form-contact {
        flex-direction: column;
        align-items: flex-start;
    }
}
