/**
 * YG Landing Page Widget - Styles
 *
 * @package YG_Advanced_Custom_Forms
 */

/* ===== Base ===== */
.yg-lp-wrapper {
    font-family: 'Heebo', sans-serif;
    direction: rtl;
    color: #0f172a;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.yg-lp-wrapper h1,
.yg-lp-wrapper h2,
.yg-lp-wrapper h3,
.yg-lp-wrapper h4,
.yg-lp-wrapper h5,
.yg-lp-wrapper h6,
.yg-lp-wrapper p,
.yg-lp-wrapper span,
.yg-lp-wrapper a,
.yg-lp-wrapper li,
.yg-lp-wrapper label,
.yg-lp-wrapper div,
.yg-lp-wrapper button {
    font-family: 'Heebo', sans-serif;
}

.yg-lp-wrapper *,
.yg-lp-wrapper *::before,
.yg-lp-wrapper *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.yg-lp-wrapper img {
    max-width: 100%;
    height: auto;
    display: block;
    content-visibility: auto;
}

/* Screen reader only text - accessible but visually hidden */
.yg-lp-wrapper .screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===== Professional Navbar ===== */
.yg-lp-navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.yg-lp-navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
}

.yg-lp-navbar-inner {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 4.5rem;
}

/* Logo - Modern Design */
.yg-lp-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.yg-lp-logo:hover {
    transform: scale(1.02);
}

.yg-lp-logo-icon {
    font-size: 2rem;
    color: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1) 0%, rgba(220, 38, 38, 0.05) 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.yg-lp-logo:hover .yg-lp-logo-icon {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.15) 0%, rgba(220, 38, 38, 0.08) 100%);
    transform: rotate(-5deg);
}

.yg-lp-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.yg-lp-logo-title {
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.yg-lp-logo-sub {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 0.125rem;
}

/* Contact Group */
.yg-lp-contact-group {
    display: flex;
    align-items: center;
    gap: 1rem;
    pointer-events: auto;
}

/* Phone Box - Card Style */
.yg-lp-phone-box {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(241, 245, 249, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: 12px;
    border: 1px solid rgba(226, 232, 240, 0.6);
    transition: all 0.3s ease;
}

.yg-lp-phone-box:hover {
    background: linear-gradient(135deg, rgba(241, 245, 249, 1) 0%, rgba(255, 255, 255, 1) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-1px);
}

.yg-lp-phone-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-radius: 10px;
    color: white;
}

.yg-lp-phone-icon svg {
    width: 1.125rem;
    height: 1.125rem;
}

.yg-lp-phone-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.yg-lp-phone-label {
    font-size: 0.6875rem;
    color: #64748b;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
}

.yg-lp-phone-number {
    font-weight: 700;
    font-size: 1rem;
    color: #0f172a;
    letter-spacing: -0.01em;
}

/* WhatsApp Button - Premium Style */
.yg-lp-whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    pointer-events: auto;
    position: relative;
    z-index: 10;
}

.yg-lp-whatsapp-btn:hover {
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.45);
    color: #fff;
}

.yg-lp-whatsapp-btn:active {
    transform: translateY(0) scale(0.98);
}

.yg-lp-whatsapp-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.yg-lp-whatsapp-icon svg {
    width: 1.25rem;
    height: 1.25rem;
}

.yg-lp-whatsapp-text {
    display: inline;
}

/* Mobile Call Button (hidden on desktop) */
.yg-lp-call-btn-mobile {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    border-radius: 50%;
    color: white;
    box-shadow: 0 4px 14px rgba(34, 197, 94, 0.35);
    transition: all 0.3s ease;
}

.yg-lp-call-btn-mobile svg {
    width: 1.25rem;
    height: 1.25rem;
}

.yg-lp-call-btn-mobile:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.5);
    color: white;
}

/* Responsive Navbar */
@media (max-width: 768px) {
    .yg-lp-navbar-inner {
        padding: 0 1rem;
        height: 4rem;
    }
    
    .yg-lp-logo-title {
        font-size: 1.125rem;
    }
    
    .yg-lp-logo-sub {
        font-size: 0.6875rem;
    }
    
    .yg-lp-logo-icon {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1.625rem;
    }
    
    .yg-lp-phone-box {
        display: none;
    }
    
    .yg-lp-whatsapp-btn {
        width: 2.75rem;
        height: 2.75rem;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
    }
    
    .yg-lp-whatsapp-text {
        display: none;
    }
    
    .yg-lp-call-btn-mobile {
        display: flex;
    }
}

/* ===== Hero ===== */
.yg-lp-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 10rem 1rem 8rem;
    margin-top: 0;
    min-height: 600px;
    contain: layout style;
}

.yg-lp-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
}

.yg-lp-hero-content {
    position: relative;
    z-index: 10;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.yg-lp-hero h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0,0,0,.3);
}

.yg-lp-hero h2 {
    font-size: 1.35rem;
    color: #e2e8f0;
    font-weight: 500;
    margin-bottom: 2.5rem;
    text-shadow: 0 1px 4px rgba(0,0,0,.2);
}

/* ===== Forms ===== */
.yg-lp-form-box {
    background: rgba(0,0,0,.6);
    backdrop-filter: blur(12px);
    padding: 1.5rem;
    border-bottom: 4px solid #dc2626;
}

.yg-lp-form-box p {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    text-align: center;
}

/* Form Grid Layout */
.yg-lp-form {
    display: flex;
    flex-direction: column;
    gap: .75rem;
    max-width: 56rem;
    margin: 0 auto;
}

.yg-lp-form-field {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.yg-lp-form input[type="text"],
.yg-lp-form input[type="tel"],
.yg-lp-form textarea,
.yg-lp-select {
    width: 100%;
    padding: .85rem 1rem;
    color: #0f172a;
    border: none;
    outline: none;
    font-family: 'Heebo', sans-serif;
    font-size: 1rem;
    background: #fff;
    border-radius: .25rem;
}

.yg-lp-form input[type="text"],
.yg-lp-form input[type="tel"],
.yg-lp-select {
    height: 48px;
}

.yg-lp-form textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.5;
}

.yg-lp-form input[type="tel"] {
    text-align: right;
    direction: ltr;
}

.yg-lp-form input[type="tel"]::placeholder {
    text-align: right;
    direction: rtl;
}

.yg-lp-form input:focus,
.yg-lp-form textarea:focus,
.yg-lp-select:focus {
    box-shadow: 0 0 0 2px #dc2626;
}

.yg-lp-select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%230f172a' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 1rem;
}

/* Consent Checkbox */
.yg-lp-consent-field {
    margin: .25rem 0;
}

.yg-lp-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: .5rem;
    cursor: pointer;
    color: #e2e8f0;
    font-size: .875rem;
    text-align: right;
    line-height: 1.5;
}

.yg-lp-checkbox {
    width: 1.25rem;
    height: 1.25rem;
    min-width: 1.25rem;
    margin: 0;
    margin-top: .1rem;
    cursor: pointer;
    accent-color: #dc2626;
}

.yg-lp-checkbox-text {
    display: inline;
}

.yg-lp-privacy-link {
    color: #4ade80;
    text-decoration: underline;
    font-weight: 600;
    margin-right: .25rem;
}

.yg-lp-privacy-link:hover {
    color: #22c55e;
}

/* CTA Button */
.yg-lp-cta-red {
    background: #dc2626;
    color: #fff;
    border: none;
    cursor: pointer;
    font-family: 'Heebo', sans-serif;
    font-weight: 700;
    padding: .85rem 2rem;
    font-size: 1.125rem;
    transition: all .3s ease;
    border-radius: .25rem;
    width: 100%;
    height: 48px;
}

.yg-lp-cta-red:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(220,38,38,.4);
}

.yg-lp-form-success {
    display: none;
    color: #4ade80;
    font-weight: 700;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-size: 1.125rem;
    text-align: center;
}

.yg-lp-form-success svg {
    flex-shrink: 0;
}

.yg-lp-form-error {
    display: none;
    color: #f87171;
    font-weight: 700;
    margin-top: .5rem;
    font-size: .95rem;
    text-align: center;
}

/* Bottom Form adjustments */
.yg-lp-bottom-form-box .yg-lp-checkbox-label {
    color: #cbd5e1;
}

/* ===== Trust Strip ===== */
.yg-lp-trust {
    background: #fff;
    padding: 2rem 1rem;
    border-bottom: 1px solid #e2e8f0;
    contain: layout style;
}

.yg-lp-trust-title {
    text-align: center;
    font-weight: 700;
    color: #1e293b;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.yg-lp-trust-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 64rem;
    margin: 0 auto;
    text-align: center;
}

.yg-lp-trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yg-lp-trust-icon {
    font-size: 2.25rem;
    color: #dc2626;
    margin-bottom: .5rem;
}

.yg-lp-trust-label {
    font-weight: 700;
    color: #334155;
}

/* ===== Chart Section ===== */
.yg-lp-chart-section {
    padding: 4rem 1rem;
    background: #f8fafc;
}

.yg-lp-chart-section .yg-lp-section-title {
    text-align: center;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: .5rem;
}

.yg-lp-chart-section .yg-lp-section-subtitle {
    text-align: center;
    color: #64748b;
    margin-bottom: 2.5rem;
}

.yg-lp-chart-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: .75rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    border: 1px solid #f1f5f9;
    max-width: 48rem;
    margin: 0 auto;
}

.yg-lp-chart-container {
    position: relative;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    height: 300px;
    max-height: 400px;
}

/* Mobile chart optimizations */
@media (max-width: 640px) {
    .yg-lp-chart-container {
        height: 220px;
        max-height: 260px;
    }
    
    .yg-lp-chart-card {
        padding: 1rem 0.75rem;
    }
    
    .yg-lp-chart-section {
        padding: 2.5rem 1rem;
    }
    
    .yg-lp-chart-section .yg-lp-section-title {
        font-size: 1.5rem;
    }
    
    .yg-lp-chart-section .yg-lp-section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
}

/* ===== Chart Highlight - Elegant Psychological Focus ===== */
.yg-lp-chart-highlight-bar {
    background: linear-gradient(180deg, rgba(34, 197, 94, 0.15) 0%, rgba(34, 197, 94, 0.05) 100%);
    border-radius: 8px 8px 0 0;
    box-shadow: inset 0 2px 4px rgba(34, 197, 94, 0.1);
}

.yg-lp-chart-highlight-label {
    position: relative;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.08) 0%, rgba(220, 38, 38, 0.02) 100%);
    border-radius: 6px;
    padding: 2px 8px;
}

.yg-lp-chart-highlight-label::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 4px solid rgba(220, 38, 38, 0.3);
}

/* Subtle pulse animation for the winning option */
@keyframes elegantPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.2);
    }
    50% { 
        box-shadow: 0 0 0 8px rgba(34, 197, 94, 0);
    }
}

.yg-lp-chart-column-highlight {
    animation: elegantPulse 3s ease-in-out infinite;
}

/* ===== Content Blocks (Z-Pattern) ===== */
.yg-lp-block {
    padding: 4rem 1rem;
    contain: layout style;
}

.yg-lp-block--white { background: #fff; border-top: 1px solid #e2e8f0; }
.yg-lp-block--gray  { background: #f1f5f9; }

.yg-lp-block-inner {
    max-width: 80rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.yg-lp-block-img img,
.yg-lp-block-img video {
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    width: 100%;
    height: 400px;
    object-fit: cover;
    aspect-ratio: 567 / 400;
}

.yg-lp-block-text h3 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1rem;
    display: inline-block;
    padding-bottom: .25rem;
    border-bottom: 4px solid #ef4444;
}

.yg-lp-block-text p {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.75;
}

.yg-lp-block-list {
    list-style: none;
    margin-bottom: 2rem;
    padding: 0;
}

.yg-lp-block-list li {
    font-weight: 600;
    color: #334155;
    margin-bottom: .5rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.yg-lp-block-list li svg {
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.yg-lp-cta-red-rounded {
    display: inline-block;
    background: #dc2626;
    color: #fff;
    padding: .75rem 2rem;
    border-radius: 9999px;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    font-family: 'Heebo', sans-serif;
}

.yg-lp-cta-red-rounded:hover {
    background: #b91c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(220,38,38,.4);
    color: #fff;
}

/* ===== Circle Use Cases ===== */
.yg-lp-circles {
    padding: 4rem 1rem;
    background: #fff;
    text-align: center;
    contain: layout style;
}

.yg-lp-circles .yg-lp-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 3rem;
}

.yg-lp-circles-grid {
    max-width: 72rem;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.yg-lp-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.yg-lp-circle-img {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f1f5f9;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,.08);
    transition: transform .5s ease;
}

.yg-lp-circle-img:hover {
    transform: scale(1.05);
}

.yg-lp-circle-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.yg-lp-circle-item h4 {
    font-weight: 700;
    font-size: 1.25rem;
    margin-bottom: .5rem;
}

.yg-lp-circle-item p {
    color: #64748b;
    font-size: .875rem;
    width: 75%;
    margin: 0 auto;
}

/* ===== Reviews ===== */
.yg-lp-reviews {
    padding: 4rem 1rem;
    background: #f1f5f9;
    border-top: 1px solid #e2e8f0;
    text-align: center;
    contain: layout style;
}

.yg-lp-reviews .yg-lp-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
}

.yg-lp-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

.yg-lp-review-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: .5rem;
    box-shadow: 0 1px 3px rgba(0,0,0,.06);
    width: 100%;
    max-width: 20rem;
    text-align: center;
    border-top: 4px solid #1e293b;
}

.yg-lp-review-avatar {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin: 0 auto 1rem;
}

.yg-lp-review-card h4 {
    font-weight: 700;
    font-size: 1.125rem;
    margin-bottom: .25rem;
}

.yg-lp-review-stars {
    color: #facc15;
    line-height: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.125rem;
}

.yg-lp-review-stars svg {
    flex-shrink: 0;
}

.yg-lp-review-stars-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .35rem;
    margin-bottom: 1rem;
    height: 1.25rem;
}

.yg-lp-review-google {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 1.25rem;
    cursor: help;
}

.yg-lp-review-google svg {
    display: block;
    transition: transform .2s ease;
}

.yg-lp-review-google:hover svg {
    transform: scale(1.15);
}

.yg-lp-google-tooltip {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #1e293b;
    color: #fff;
    font-size: .75rem;
    font-weight: 500;
    padding: .4rem .75rem;
    border-radius: .375rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .2s ease, visibility .2s ease;
    margin-bottom: .5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,.15);
}

.yg-lp-google-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #1e293b;
}

.yg-lp-review-google:hover .yg-lp-google-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== Bottom Form ===== */
.yg-lp-bottom-form-section {
    padding: 4rem 1rem;
    background: #0f172a;
    color: #fff;
    text-align: center;
    border-bottom: 8px solid #dc2626;
}

.yg-lp-bottom-form-section .yg-lp-section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.yg-lp-bottom-form-section .yg-lp-section-subtitle {
    color: #94a3b8;
    margin-bottom: 2rem;
}

.yg-lp-bottom-form-box {
    background: rgba(255,255,255,.1);
    padding: 1.5rem;
    border-radius: .25rem;
    border: 1px solid rgba(255,255,255,.2);
    max-width: 56rem;
    margin: 0 auto;
}

/* ===== Footer ===== */
.yg-lp-footer {
    background: #000;
    color: #64748b;
    padding: 1.5rem 1rem;
    text-align: center;
    font-size: .875rem;
}

/* ===== Responsive ===== */
@media (min-width: 768px) {
    .yg-lp-hero h1   { font-size: 4.5rem; }
    .yg-lp-hero h2   { font-size: 1.75rem; }

    .yg-lp-form {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        grid-template-rows: auto auto;
        gap: .75rem;
        align-items: end;
    }

    .yg-lp-form-field--text {
        grid-column: 1;
        grid-row: 1;
    }

    .yg-lp-form-field--tel {
        grid-column: 2;
        grid-row: 1;
    }

    .yg-lp-form-field--select {
        grid-column: 3;
        grid-row: 1;
    }

    .yg-lp-form-field--submit {
        grid-column: 4;
        grid-row: 1;
    }

    .yg-lp-form .yg-lp-cta-red {
        width: 100%;
        margin: 0;
    }

    .yg-lp-consent-field {
        grid-column: 1 / -1;
        grid-row: 2;
        justify-self: center;
        margin: .5rem 0;
    }

    .yg-lp-block-inner {
        grid-template-columns: 1fr 1fr;
    }

    .yg-lp-block--reversed .yg-lp-block-img  { order: 2; }
    .yg-lp-block--reversed .yg-lp-block-text { order: 1; }

    .yg-lp-circles-grid {
        grid-template-columns: repeat(var(--circles-per-row, 3), 1fr);
    }

    .yg-lp-trust-items {
        justify-content: space-between;
    }

    .yg-lp-trust-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 767px) {
    .yg-lp-hero {
        padding: 7rem 1rem 5rem;
    }

    .yg-lp-block-img img,
    .yg-lp-block-img video {
        height: 280px;
        aspect-ratio: auto;
    }
}
