/*
Theme Name: Neve Child
Template: neve
*/

/* PROJECT MEMORY TEST: 2026-02-19 - Verified */

/*
Theme URI:      https://applic.com.ua
Author:         Applic
Author URI:     https://applic.com.ua
Description:    Custom WordPress theme developed by Applic. 
Version:        1.0.0
License:        GNU General Public License v2 or later
License URI:    http://www.gnu.org/licenses/gpl-2.0.html
Text Domain:    neve
Tags: blog, custom-logo, e-commerce, rtl-language-support, post-formats, grid-layout, one-column, two-columns, custom-background, custom-colors, custom-header, custom-menu, featured-image-header, featured-images, flexible-header, full-width-template, sticky-post, theme-options, threaded-comments, translation-ready, accessibility-ready, wide-blocks, block-styles
 */

:root {
    --nv-fallback-ff: sans-serif;

    /* Button variables - non-conflicting */
    --primarybtnborderradius: 8px;
    --secondarybtnborderradius: 8px;
    --secondarybtnborderwidth: 1px;
}

/* Base Body Style & Typography Defaults from raw-html */
body {
    /* Set raw-html values as defaults on body. 
       This allows Neve's :root overrides and Dark Mode classes to work correctly. */
    --bodyfontsize: 16px;
    --bodylineheight: 1.625;
    --h1fontsize: 60px;
    --h1lineheight: 1.1;
    --h1fontweight: 700;
    --h2fontsize: 36px;
    --h2lineheight: 1.2;
    --h2fontweight: 700;
    --h3fontsize: 24px;
    --h3lineheight: 1.2;
    --h3fontweight: 600;
    --h4fontsize: 20px;
    --h4lineheight: 1.2;
    --h4fontweight: 600;
    --h5fontsize: 18px;
    --h5lineheight: 1.2;
    --h5fontweight: 600;
    --h6fontsize: 16px;
    --h6lineheight: 1.2;
    --h6fontweight: 600;

    font-size: var(--bodyfontsize);
    line-height: var(--bodylineheight);
}

/* Responsive Typography Defaults */
@media (max-width: 1024px) {
    body {
        --h1fontsize: 48px;
    }
}

@media (max-width: 640px) {
    body {
        --h1fontsize: 36px;
        --bodyfontsize: 15px;
    }
}

/* Global Button Styles to match raw-html */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--primarybtnborderradius);
    transition: all 0.3s ease;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
}

.btn-primary,
.btn-primary:visited {
    background: var(--primarybtnbg);
    background: linear-gradient(90deg, #ff5000 0%, #ea580c 100%);
    color: var(--primarybtncolor);
    box-shadow: 0 4px 15px rgba(255, 80, 0, 0.4);
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 80, 0, 0.5);
    color: var(--primarybtnhovercolor);
}

.btn-outline {
    background: var(--secondarybtnbg);
    border: var(--secondarybtnborderwidth) solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.btn-outline:hover {
    background: var(--secondarybtnhoverbg);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-lg {
    height: 60px;
    padding: 0 40px;
    font-size: 18px;
    border-radius: 12px;
}

/* =========================================
   Global Form Styles (Inputs & CF7)
   ========================================= */
.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #0f172a;
    margin-bottom: 8px;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 14px;
    padding: 0 16px;
    transition: all 0.2s ease;
    font-family: inherit;
}

.form-field input {
    height: 48px;
}

.form-field textarea {
    padding-top: 12px;
    min-height: 150px;
    resize: none;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #ff5000;
    box-shadow: 0 0 0 2px rgba(255, 80, 0, 0.1);
}

/* Contact Form 7 Specific Overrides */
.wpcf7-form p {
    margin-bottom: 10px !important;
}

.wpcf7-form-control-wrap {
    display: block;
    width: 100%;
}

.wpcf7-form-control {
    margin-bottom: 0 !important;
}

.wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 12px;
    margin-top: 4px;
    display: block;
}

.wpcf7-response-output {
    margin: 20px 0 0 !important;
    padding: 12px 16px !important;
    border-radius: 8px !important;
    font-size: 14px !important;
    border: 1px solid transparent !important;
}

.wpcf7-mail-sent-ok {
    background-color: #f0fdf4 !important;
    border-color: #bbf7d0 !important;
    color: #166534 !important;
}

.wpcf7-validation-errors,
.wpcf7-acceptance-missing {
    background-color: #fef2f2 !important;
    border-color: #fecaca !important;
    color: #991b1b !important;
}

.form-submit-wrapper {
    margin-top: 12px;
}

.form-submit-btn {
    width: 100%;
    height: 56px;
    background: linear-gradient(90deg, #ff5000 0%, #ea580c 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-bottom: 16px;
    box-shadow: 0 10px 20px -5px rgba(255, 80, 0, 0.4);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px -5px rgba(255, 80, 0, 0.5);
    background: linear-gradient(90deg, #ea580c 0%, #c2410c 100%);
}

.form-footer-text {
    margin-top: 12px;
    text-align: center;
    font-size: 14px;
    color: #64748b;
}

/* =========================================
   Scoped Footer Styles (#footer & #copyright)
   ========================================= */

/* Main Footer Section */
#footer {
    background-color: #0f172a !important;
    color: rgba(255, 255, 255, 0.7) !important;
    padding: 80px 0 !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
}

/* Base text color for elements inside footer */
#footer p,
#footer div,
#footer li,
#footer .wp-block-themeisle-blocks-icon-list-item-content {
    color: rgba(255, 255, 255, 0.7) !important;
}

#footer a {
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

#footer a:hover {
    color: #ff5000 !important;
}

/* Headings inside footer */
#footer strong,
#footer p>strong {
    color: #ffffff !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    margin-bottom: 24px !important;
    display: block !important;
}

/* Logo Group Style */
#footer .wp-block-group.is-nowrap.is-layout-flex {
    align-items: center !important;
    gap: 16px !important;
    margin-bottom: 24px !important;
}

#footer .wp-block-image {
    margin: 0 !important;
    margin-bottom: 20px !important;
    max-width: none !important;
}

#footer .logo-text,
#footer .wp-block-group.is-nowrap.is-layout-flex p {
    font-size: 20px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    margin: 0 !important;
}

/* Column Spacings for Mobile */
#footer .wp-block-themeisle-blocks-advanced-column {
    margin-bottom: 32px !important;
}

@media (min-width: 1024px) {
    #footer .wp-block-themeisle-blocks-advanced-column {
        margin-bottom: 0 !important;
    }
}

/* Icon List Styling */
#footer .wp-block-themeisle-blocks-icon-list {
    margin-top: 24px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
}

#footer .wp-block-themeisle-blocks-icon-list-item {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
}

#footer .wp-block-themeisle-blocks-icon-list-item-icon {
    color: #ff5000 !important;
    font-size: 14px !important;
    margin-top: 4px !important;
    width: 20px !important;
    text-align: center !important;
}

/* Navigation Lists Style */
#footer .wp-block-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
}

#footer .wp-block-list li {
    margin: 0 !important;
}

/* Copyright Section Below Footer */
#copyright {
    background-color: #0f172a !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 30px 0 !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

#copyright p {
    margin: 0 !important;
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.7) !important;
}

/* Alignment for partner info in copyright area */
#copyright .wp-block-themeisle-blocks-advanced-column:last-of-type p {
    text-align: right !important;
    font-size: 12px !important;
    opacity: 0.6 !important;
}

@media (max-width: 767px) {
    #copyright .wp-block-themeisle-blocks-advanced-column:last-of-type p {
        text-align: center !important;
        margin-top: 8px !important;
    }
}

/* =========================================
   SHARED COMPONENTS (Moved from home.css)
   ========================================= */

/* Hero Section Styles */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.2;
    background-image: radial-gradient(circle at 2px 2px, rgba(255, 255, 255, 0.15) 1px, transparent 0);
    background-size: 40px 40px;
    z-index: 0;
}

.hero__orb {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(120px);
    z-index: 0;
}

.hero__orb--1 {
    top: 25%;
    left: -128px;
    width: 384px;
    height: 384px;
    background: rgba(255, 80, 0, 0.2);
}

.hero__orb--2 {
    bottom: 25%;
    right: -128px;
    width: 384px;
    height: 384px;
    background: rgba(255, 140, 0, 0.15);
}

.hero__container {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

@media (max-width: 991px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero__description {
        margin-left: auto;
        margin-right: auto;
    }
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    padding: 8px 16px;
    margin-bottom: 32px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #4ade80;
    border-radius: 50%;
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.hero__badge span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.hero__title {
    font-size: 60px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    margin-bottom: 24px;
}

@media (max-width: 1024px) {
    .hero__title {
        font-size: 48px;
    }
}

@media (max-width: 640px) {
    .hero__title {
        font-size: 36px;
    }
}

.text-gradient {
    background: linear-gradient(to right, #ff5000, #fb923c);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero__description {
    font-size: 20px;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.625;
    max-width: 576px;
}

.hero__actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 640px) {
    .hero__actions {
        flex-direction: row;
    }
}

.btn-lg svg {
    margin-left: 8px;
    transition: transform 0.2s;
}

.btn-lg:hover svg {
    transform: translateX(4px);
}

.hero__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 64px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-value {
    font-size: 30px;
    font-weight: 700;
    color: white;
}

.stat-label {
    font-size: 14px;
    color: #94a3b8;
    margin-top: 4px;
}

/* Dashboard Visual */
.hero__visual {
    position: relative;
    display: none;
}

@media (min-width: 1024px) {
    .hero__visual {
        display: block;
    }
}

.dashboard {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(24px);
    border-radius: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transform-origin: center;
    animation: fadeInScale 0.8s 0.2s backwards;
}

.dashboard__header {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.dashboard__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dashboard__dot--red {
    background: #f87171;
}

.dashboard__dot--yellow {
    background: #facc15;
}

.dashboard__dot--green {
    background: #22c55e;
}

.dashboard__grid {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
}

.dashboard__card {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.dashboard__card h4 {
    font-size: 12px;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 400;
}

.dashboard__value {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.dashboard__change {
    font-size: 14px;
}

.text-green {
    color: #ff5000;
}

.dashboard__card--full {
    margin-bottom: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 16px;
}

.chart-container {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, #ff5000, #fdba74);
    border-radius: 2px;
}

.bottom-tabs {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.tab {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
    font-size: 12px;
    color: white;
}

/* Floating Badges */
.auto-badge,
.erp-badge {
    position: absolute;
    padding: 8px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.auto-badge {
    top: -24px;
    right: -24px;
    background: #22c55e;
    animation: floatUpDown 3s ease-in-out infinite;
}

.erp-badge {
    bottom: -16px;
    left: -24px;
    background: #ff5000;
    animation: floatDownUp 4s ease-in-out infinite;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 13px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 0;
        transform: translateX(-50%) translateY(0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

@keyframes floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes floatDownUp {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Global Section & Typography Architecture */
.section {
    padding: 80px 0;
}

.section--light {
    background-color: #f8fafc;
}

.section--white {
    background-color: #ffffff;
}

.section--dark {
    background-color: #0f172a;
    color: white;
}

.section__header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.section__title {
    font-size: 36px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.2;
}

.section--dark .section__title {
    color: white;
}

.section__subtitle {
    font-size: 20px;
    color: #475569;
    line-height: 1.625;
}

.section--dark .section__subtitle {
    color: #94a3b8;
}

/* Tagline Pill Badge (unified for all pages) */
.tagline-pill {
    display: inline-block;
    padding: 6px 16px;
    background: #fff5f0;
    color: #ff5000;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 16px;
}

/* Dark background variant */
.section--dark .tagline-pill,
.tagline-pill--dark {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}


.reveal {
    /* If Reveal.js/ScrollReveal not loaded, this needs basic state */
}

/* Common Card Styles */
.feature-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: none;
    height: 100%;
    cursor: default;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.feature-card:hover .feature-icon {
    background-color: #ff5000;
    color: white;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background-color: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff5000;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 12px;
}

.feature-desc {
    font-size: 16px;
    color: #475569;
    line-height: 1.625;
}

/* Contact Section Styles */
#contact {
    background-color: #f8fafc;
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    margin-top: 64px;
    align-items: start;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .contact-info-col {
        grid-column: span 2;
    }

    .contact-form-col {
        grid-column: span 3;
    }
}

.contact-info-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin-bottom: 32px;
}

.contact-info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

.contact-method-item:hover {
    transform: translateX(4px);
}

.contact-method-icon {
    width: 48px;
    height: 48px;
    background-color: #fff7ed;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ff5000;
    transition: all 0.3s ease;
}

.contact-method-item:hover .contact-method-icon {
    background-color: #ff5000;
    color: white;
}

.contact-method-icon svg {
    width: 24px;
    height: 24px;
}

.contact-method-label {
    font-size: 12px;
    color: #64748b;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.contact-method-value {
    font-size: 16px;
    color: #0f172a;
    font-weight: 600;
}

.contact-promo-card {
    background: linear-gradient(135deg, #ff5000 0%, #ea580c 100%);
    border-radius: 20px;
    padding: 32px;
    color: white;
}

.contact-promo-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: white;
}

.contact-promo-card p {
    font-size: 15px;
    opacity: 0.9;
    line-height: 1.6;
    margin-bottom: 24px;
    color: white;
}



/* Contact Form 7 Global Refinement */
.wpcf7-form p {
    margin-bottom: 20px;
}

.wpcf7-form-control-wrap {
    display: block;
    margin-bottom: 4px;
}

.wpcf7-text,
.wpcf7-textarea,
.wpcf7-select {
    width: 100% !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    padding: 0 16px !important;
    transition: all 0.2s ease !important;
    background-color: #f8fafc !important;
}

.wpcf7-text {
    height: 50px !important;
}

.wpcf7-textarea {
    padding-top: 12px !important;
    min-height: 120px !important;
    resize: none !important;
}

.wpcf7-text:focus,
.wpcf7-textarea:focus {
    outline: none !important;
    border-color: #ff5000 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 4px rgba(255, 80, 0, 0.1) !important;
}

.wpcf7-submit {
    width: 100% !important;
    height: 56px !important;
    background: #ff5000 !important;
    color: white !important;
    border: none !important;
    border-radius: 8px !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.wpcf7-submit:hover {
    background: #ea580c !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 10px 15px -3px rgba(234, 88, 12, 0.3) !important;
}

.wpcf7-spinner {
    position: absolute;
    bottom: 20px;
    right: 20px;
}

/* =========================================
   Utility Classes — Design System
   ========================================= */

/* Grid Utilities */
.grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    /* Standard gap from Design System */
}

.grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

@media (max-width: 768px) {

    .grid-2col,
    .grid-3col,
    .grid-4col {
        grid-template-columns: 1fr;
        /* Mobile: single column */
        gap: 24px;
    }
}

/* Text Utilities */
.text-center {
    text-align: center;
}

.text-large {
    font-size: 18px;
    /* Body large from Design System */
}

.text-muted {
    color: #475569;
    /* Text secondary from Design System */
}

.text-primary {
    color: #0f172a;
    /* Text primary from Design System */
}

.text-orange {
    color: #ff5000;
    /* Primary orange from Design System */
}

/* Width Utilities */
.max-w-narrow {
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-medium {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.max-w-container {
    max-width: 1200px;
    /* Container standard */
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   Product Page Utilities
   ========================================= */

/* FAQ List Centering */
.faq-list--centered {
    max-width: 1000px;
    margin: 0 auto;
}

/* Pricing Grid Centered */
.pricing-grid--centered {
    justify-content: center;
}

/* Auto Margin Top (pricing buttons) */
.mt-auto {
    margin-top: auto;
}

/* Feature Strikethrough (disabled pricing features) */
.feature--disabled {
    text-decoration: line-through;
    opacity: 0.5;
}

/* =========================================
   New Utility Classes (Style Audit Fixes)
   ========================================= */

/* Spacing Utilities */
.mt-0 {
    margin-top: 0 !important;
}

.mt-16 {
    margin-top: 16px !important;
}

.mt-24 {
    margin-top: 24px !important;
}

.mt-32 {
    margin-top: 32px !important;
}

.mt-40 {
    margin-top: 40px !important;
}

.mt-48 {
    margin-top: 48px !important;
}

.mt-64 {
    margin-top: 64px !important;
}

.mt-80 {
    margin-top: 80px !important;
}

.mb-16 {
    margin-bottom: 16px !important;
}

.mb-24 {
    margin-bottom: 24px !important;
}

.mb-32 {
    margin-bottom: 32px !important;
}

.mb-40 {
    margin-bottom: 40px !important;
}

/* Text Utilities */
.text-white {
    color: white !important;
}

.section--gradient-gray {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

/* Components */
.highlight-box {
    margin-top: 64px;
    text-align: center;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    border-radius: 20px;
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.highlight-box h2 {
    color: white;
    margin-bottom: 24px;
}

.highlight-box p {
    color: #cbd5e1;
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px;
}