/*
Theme Name: Elsa Vistanet
Author: Antigravity
Description: Theme per Landing Page Digital Signage
Version: 1.0
*/

/* ===== ROOT VARIABLES ===== */
:root {
    --color-bg-dark: #070B19;
    /* Very dark blue from mood */
    --color-bg-light: #ffffff;
    --color-primary: #00e5ff;
    /* Cyan highlight */
    --color-secondary: #0055ff;
    /* Blue gradient end */
    --color-text-light: #f8fafc;
    --color-text-dark: #0f172a;
    --color-text-muted: #64748b;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;

    --border-radius-lg: 24px;
    --border-radius-md: 16px;
    --border-radius-sm: 8px;

    --transition: all 0.3s ease;
}

/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-dark);
    background-color: var(--color-bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.text-white {
    color: var(--color-text-light);
}

.text-light {
    color: rgba(255, 255, 255, 0.8);
}

.mt-5 {
    margin-top: 3rem;
}

.highlight {
    color: var(--color-primary);
}

.highlight-blue {
    background: linear-gradient(90deg, var(--color-secondary), var(--color-primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.rounded-image {
    border-radius: var(--border-radius-lg);
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.shadow-lg {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.shadow-md {
    box-shadow: 0 10px 30px rgba(0, 85, 255, 0.1);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: white;
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(0, 229, 255, 0.4);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 18px 48px;
    font-size: 1.1rem;
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    background-color: #000e3c;
    background-image: radial-gradient(circle at top right, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    color: var(--color-text-light);
    padding: 120px 0;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image img {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 60px;
    align-items: center;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    margin-bottom: 30px;
    letter-spacing: -1px;
}

.main-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 90%;
}

/* ===== INFO SECTION ===== */
.info-section {
    position: relative;
    padding: 120px 0;
    background-color: var(--color-bg-light);
    overflow: hidden;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 120px 0;
    background-color: #f8fafc;
}

.bg-shape-top-left {
    position: absolute;
    top: 0;
    left: 0;
    width: 300px;
    height: 300px;
    z-index: 0;
}

.info-container {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: var(--color-text-dark);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    margin-bottom: 50px;
}

.intro-grid-layout {
    display: grid;
    grid-template-columns: 4fr 6fr;
    gap: 60px;
    align-items: center;
}

.intro-left .section-title {
    text-align: left;
    margin-bottom: 20px;
    color: #001240;
}

.intro-left .lead-text {
    font-size: 1.3rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.highlight-box {
    background: linear-gradient(135deg, #002753 0%, #000e3c 100%);
    color: white;
    padding: 30px 40px;
    border-radius: var(--border-radius-lg);
    font-weight: 700;
    font-size: 1.5rem !important;
    margin-bottom: 0;
    box-shadow: 0 15px 30px rgba(0, 39, 83, 0.15);
}

.intro-description p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

/* ===== HOW IT WORKS SECTION ===== */
.how-it-works {
    padding: 120px 0;
    background-color: #f8fafc;
}

/* ===== GRID LAYOUTS ===== */
.how-it-works-grid {
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

@media (min-width: 993px) {
    .how-list .feature-item span {
        white-space: nowrap;
    }
}

.how-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    color: #0057ff;
}

.how-text p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    text-align: left;
}

.check-icon-svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    stroke: #055805;
    stroke-width: 3px;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin: 0;
}

.feature-item {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-dark);
    padding: 20px 30px;
    background: white;
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 15px;
}

/* ===== GRADIENT TEXT ===== */
.highlight-gradient {
    background: linear-gradient(90deg, #00e5ff, #0055ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.difference-section {
    padding: 120px 0;
    background-color: white;
}

.diff-grid-layout {
    display: grid;
    grid-template-columns: 6fr 4fr;
    gap: 60px;
    align-items: center;
    margin: 0;
}

.diff-text .section-title {
    text-align: left;
    margin-bottom: 30px;
    color: #0057ff;
}

.diff-text p {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
    text-align: left;
}

.highlight-points p {
    font-weight: 700;
    font-size: 1.25rem;
    color: #000e3c;
    margin-bottom: 0;
}

.diff-img-standalone {
    max-height: 540px;
    width: auto;
    display: block;
    margin: 0 auto;
    border-radius: var(--border-radius-lg);
}

/* ===== INCLUDES SECTION ===== */
.includes-section {
    padding: 120px 0;
    background-color: #f8fafc;
}

.includes-grid-layout {
    display: grid;
    grid-template-columns: 5fr 5fr;
    gap: 60px;
    align-items: center;
}

.includes-section .how-text .section-title {
    text-align: left;
}

.includes-section .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-bottom: 40px;
}

.section-price-title {
    font-size: 3rem;
    margin-bottom: 30px;
    color: white !important;
}

.section-price-promo-title {
    display: block;
    color: #ef4444 !important;
}

.section-price-subtitle {
    font-size: 1.50rem;
    margin-bottom: 30px;
    color: #81929d !important;
}

.info-text p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

.info-text .bold-text {
    font-weight: 600;
    color: var(--color-text-dark);
    font-size: 1.3rem;
    margin-top: 30px;
    border-left: 4px solid var(--color-primary);
    padding-left: 20px;
}



/* ===== PRICING SECTION ===== */
.pricing-section {
    position: relative;
    padding: 120px 0;
    background-color: #000e3c;
    background-image: radial-gradient(circle at top right, rgba(0, 229, 255, 0.15) 0%, transparent 60%);
    color: white;
    overflow: hidden;
}

.badge {
    display: inline-block;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.pricing-section .section-title {
    position: relative;
    z-index: 1;
}

.pricing-section .section-subtitle {
    position: relative;
    z-index: 1;
    margin-bottom: 60px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius-lg);
    padding: 50px 40px;
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.card-outline {
    background-color: #002753;
}

.card-outline:hover {
    border-color: rgba(0, 229, 255, 0.5);
}

.card-popular {
    background: rgba(255, 255, 255, 1);
    color: var(--color-text-dark);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.card-popular:hover {
    border-color: #ffcc00;
}

.card-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-secondary));
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    text-align: center;
}

.card-header p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    text-align: center;
}

.card-outline .card-header p {
    color: rgba(255, 255, 255, 0.6);
}

.card-price {
    margin: 30px 0 10px;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 700;
}

.amount {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
}

.vat {
    font-size: 1rem;
    color: var(--color-text-muted);
}

.card-outline .vat {
    color: rgba(255, 255, 255, 0.5);
}

.card-old-price {
    font-size: 1rem;
    text-decoration: line-through;
    color: #ef4444;
    margin-bottom: 20px;
    text-align: center;
}

.card-body {
    flex-grow: 1;
    margin: 30px 0;
}

.card-body ul {
    list-style: none;
}

.card-body ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 1.05rem;
}

.card-outline .card-body ul li {
    color: rgba(255, 255, 255, 0.8);
}

.card-body ul li svg {
    width: 24px;
    height: 24px;
    color: var(--color-primary);
    flex-shrink: 0;
}

.card-highlight-text {
    font-weight: 800;
    font-size: 1.4rem;
    color: #ef4444;
    padding-top: 20px;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
    padding: 120px 0;
    background-color: #f8fafc;
}

.contact-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 50px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--color-text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e2e8f0;
    border-radius: var(--border-radius-sm);
    font-size: 1rem;
    transition: var(--transition);
    font-family: inherit;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0, 85, 255, 0.1);
}

.form-group-checkbox {
    margin-bottom: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--color-text-muted);
    cursor: pointer;
    margin-bottom: 0;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    flex-shrink: 0;
    accent-color: var(--color-secondary);
    cursor: pointer;
}

.checkbox-label a {
    color: var(--color-secondary);
    font-weight: 600;
    text-decoration: underline;
}

.checkbox-label a:hover {
    color: var(--color-primary);
}

/* ===== FOOTER ===== */
.footer {
    background-color: #000e3c;
    color: rgba(255, 255, 255, 0.6);
    padding: 80px 0 40px;
}

.footer-title {
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.footer-brands {
    font-size: 1.6rem;
    color: white;
    margin-bottom: 25px;
}

.footer-brands .br-mobile {
    display: none;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: var(--transition);
}

.footer-logo:hover {
    opacity: 1;
    transform: scale(1.05);
}

.footer-description {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.95rem;
}

.footer-legal {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-legal p {
    margin-bottom: 6px;
}

.footer-legal strong {
    color: white;
}

.footer-policy-links {
    margin-top: 16px;
    margin-bottom: 0;
}

.footer-policy-separator {
    margin: 0 10px;
    color: rgba(255, 255, 255, 0.35);
}

.footer-policy-links a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: 600;
}

.footer-policy-links a:hover {
    color: white;
}

.footer-legal-only {
    padding: 40px 0 0;
    background: transparent;
}

.footer-legal-only .footer-legal {
    margin-bottom: 0;
}

.footer-description p {
    margin-bottom: 10px;
}

.footer-description strong {
    color: white;
}

.copyright {
    font-size: 0.85rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.footer a,
.footer a:visited,
.footer a:hover,
.footer a:active {
    color: white;
    text-decoration: none;
    font-weight: 600;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {

    .hero {
        padding: 60px 0;
    }

    .hero-content,
    .info-container {
        grid-template-columns: 1fr;
    }

    .info-image {
        text-align: center;
    }

    .info-text,
    .info-text .section-title,
    .info-text p {
        text-align: left;
    }

    .hero-text {
        order: 2;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .description {
        margin: 0 auto 40px;
    }

    .hero-image {
        order: 1;
        margin-bottom: 30px;
    }

    .main-title {
        font-size: 2.8rem;
    }

    .pricing-cards,
    .how-it-works-grid,
    .intro-grid-layout,
    .diff-grid-layout,
    .includes-grid-layout {
        grid-template-columns: 1fr !important;
        max-width: 500px;
        gap: 40px;
    }

    .how-it-works-grid {
        margin-bottom: 40px;
    }

    .how-text .section-title,
    .how-text p,
    .includes-section .how-text .section-title,
    .includes-section .section-subtitle,
    .diff-text .section-title,
    .diff-text p,
    .diff-text .highlight-points p {
        text-align: left;
    }

    .intro-left .section-title,
    .intro-left .lead-text,
    .intro-description p {
        text-align: left;
    }

    .card-popular {
        transform: scale(1);
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: 100svh;
        min-height: 100dvh;
        padding: 0 0 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .feature-item {
        font-size: 1rem;
        padding: 16px 20px;
        gap: 12px;
    }

    body.admin-bar .hero {
        min-height: calc(100svh - 46px);
        min-height: calc(100dvh - 46px);
    }

    .hero .container.hero-content {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .hero-image {
        display: none;
    }

    .hero-text {
        order: 0;
        width: 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .hero-text .brand {
        justify-content: center;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .features-grid,
    .difference-grid,
    .includes-grid {
        grid-template-columns: 1fr;
    }

    .intro-content p {
        font-size: 1.1rem;
    }

    .diff-img-standalone {
        display: none;
    }

    .highlight-box {
        font-size: 1.2rem !important;
        padding: 25px;
    }

    .section-title {
        font-size: 2.0rem;
    }

    .amount {
        font-size: 3rem;
    }

    .card-highlight-text {
        font-size: 1.2rem;
    }

    .footer-brands .br-mobile {
        display: block;
    }

    .footer-description {
        text-align: left;
    }

    .section-subtitle {
        margin-bottom: 30px;
    }

    .intro-section,
    .info-section,
    .how-it-works,
    .difference-section,
    .includes-section,
    .pricing-section,
    .contact-section {
        padding: 60px 0 !important;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }
}