/* layout.css — Structural foundations */

/* ─── GLOBAL STICKY NAVBAR ───────────────────────────────── */
/* ─── GLOBAL STICKY NAVBAR ───────────────────────────────── */
/* ─── GLOBAL STICKY NAVBAR ───────────────────────────────── */
.deca-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 76px;
    z-index: 9999;
    display: flex;
    align-items: center;
    padding: 0 40px;
    background: rgba(1, 63, 140, 0.45) !important;
    backdrop-filter: blur(16px) !important;
    -webkit-backdrop-filter: blur(16px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Admin Bar Adjustments */
.admin-bar .deca-nav {
    top: 32px;
}

@media screen and (max-width: 782px) {
    .admin-bar .deca-nav {
        top: 46px;
    }
}

.deca-nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1360px;
    margin: 0 auto;
}

.deca-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-family: var(--font-primary);
    font-size: 22px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
}

.brand-logo {
    height: 44px;
    width: auto;
    object-fit: contain;
}

.deca-nav .brand-logo {
    height: 60px;
}

.deca-nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.deca-nav-link {
    position: relative;
    font-family: var(--font-primary);
    font-size: 16px;
    font-weight: 500;
    color: var(--ink-soft) !important;
    padding: 10px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.deca-nav-link--mobile-cta {
    display: none !important;
}

.deca-nav-link::before {
    content: "{";
    position: absolute;
    left: 8px;
    opacity: 0;
    color: var(--pink) !important;
    transform: translateX(4px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
}

.deca-nav-link::after {
    content: "}";
    position: absolute;
    right: 8px;
    opacity: 0;
    color: var(--pink) !important;
    transform: translateX(-4px);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-weight: 700;
}

.deca-nav-link:hover::before,
.deca-nav-link.active::before {
    opacity: 1;
    transform: translateX(0);
}

.deca-nav-link:hover::after,
.deca-nav-link.active::after {
    opacity: 1;
    transform: translateX(0);
}

.deca-nav-link:hover,
.deca-nav-link.active {
    color: var(--ink) !important;
}

.deca-nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.deca-nav-hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.deca-nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--ink);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.deca-cta-btn {
    font-family: var(--font-primary);
    font-size: 15px;
    font-weight: 800;
    color: var(--ink-dark);
    padding: 12px 28px;
    border-radius: 100px;
    background: var(--grad-cta);
    border: none;
    text-decoration: none;
    text-transform: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
}

.deca-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 61, 138, 0.4);
    color: var(--ink-dark);
}

/* ─── UTILITY ─────────────────────────────────────────────── */
.flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.flex-column {
    flex-direction: column;
}

.grid {
    display: grid;
    gap: 20px;
}

/* ─── RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 768px) {
    .deca-nav-links {
        display: none;
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(1, 63, 140, 0.96) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        padding: 24px 40px;
        gap: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.5);
    }

    .deca-nav-links.deca-nav-links--open {
        display: flex;
    }

    .deca-nav-actions {
        gap: 12px;
    }

    .deca-nav-hamburger {
        display: flex;
    }

    .deca-nav-link {
        padding: 16px 0;
        border-radius: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .deca-cta-btn {
        display: none !important;
    }

    .deca-nav-link--mobile-cta {
        display: block !important;
        color: var(--pink) !important;
        font-weight: 700 !important;
        border-bottom: none !important;
        text-shadow: 0 0 12px rgba(255, 61, 138, 0.3) !important;
    }

    .deca-nav-link::before {
        display: none;
    }

    .deca-nav-link::after {
        display: none;
    }

    .deca-nav-hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

    .deca-nav-hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .deca-nav-hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }
}

/* ═══ CONTACT SALES SLIDE PANEL ══════════════════════════════ */
.cs-panel-overlay {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.cs-panel {
    position: fixed;
    top: 0;
    right: -520px;
    z-index: 10001;
    width: 480px;
    max-width: 90vw;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow-y: auto;
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -20px 0 60px rgba(0, 0, 0, 0.5);
    border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.cs-panel.open {
    right: 0;
}

.cs-panel.open~.cs-panel-overlay,
.cs-panel-overlay:has(~ .cs-panel.open) {
    opacity: 1;
    pointer-events: auto;
}

/* Fallback for browsers without :has */
.cs-panel.open+.cs-panel-overlay {
    opacity: 1;
    pointer-events: auto;
}

.cs-panel__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    cursor: pointer;
    color: #999;
    transition: color 0.3s ease;
    padding: 4px;
}

.cs-panel__close:hover {
    color: var(--ink);
}

.cs-panel__body {
    padding: 64px 40px 40px;
}

.cs-panel__title {
    font-family: var(--font-primary);
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -0.03em;
    color: var(--ink);
    margin: 0 0 16px;
    line-height: 1.2;
}

.cs-panel__sub {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0 0 40px;
}

.cs-panel__form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cs-panel__field label {
    font-family: var(--font-primary);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.65);
    display: block;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.cs-panel__field input,
.cs-panel__field select,
.cs-panel__field textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-primary);
    font-size: 14px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: var(--glass-bg);
    color: var(--ink);
    outline: none;
    transition: border-color 0.3s ease;
}

.cs-panel__field input::placeholder,
.cs-panel__field textarea::placeholder {
    color: rgba(234, 241, 255, 0.42) !important;
}

.cs-panel__field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 12px) 50% !important;
    background-size: 20px !important;
    padding-right: 40px !important;
    cursor: pointer;
}

.cs-panel__field select option {
    background-color: #06122e !important;
    color: var(--ink) !important;
}

.cs-panel__field input:focus,
.cs-panel__field select:focus,
.cs-panel__field textarea:focus {
    border-color: var(--pink);
}

.cs-panel__field textarea {
    resize: vertical;
    min-height: 80px;
}

.cs-panel__submit {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-primary);
    background: var(--grad-cta);
    color: white;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: fit-content;
}

.cs-panel__submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 61, 138, 0.4);
}

.cs-panel__note {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--color-text-secondary);
    line-height: 1.5;
}

/* WPForms styling specifically inside Contact Sales Panel, Discovery Form, Onboarding Form */
#cs-panel-form-wrapper .wpforms-form,
#solutions-discovery-form-wrapper .wpforms-form,
#demo-quick-form .wpforms-form,
#hidden-expert-form-wrapper .wpforms-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#cs-panel-form-wrapper .wpforms-field,
#solutions-discovery-form-wrapper .wpforms-field,
#demo-quick-form .wpforms-field,
#hidden-expert-form-wrapper .wpforms-field {
    padding: 0;
    margin-bottom: 20px;
}

/* Discovery Form Specific Grid & Spacing Adjustments */
#solutions-discovery-form-wrapper .wpforms-form {
    gap: 12px !important;
}
#solutions-discovery-form-wrapper .wpforms-field {
    margin-bottom: 12px !important;
}
@media (min-width: 769px) {
    #solutions-discovery-form-wrapper .wpforms-field-container {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 0 20px !important;
    }
    #solutions-discovery-form-wrapper .wpforms-field {
        grid-column: span 2 !important;
    }
    #solutions-discovery-form-wrapper .wpforms-field:first-child,
    #solutions-discovery-form-wrapper .wpforms-field:nth-child(2) {
        grid-column: span 1 !important;
    }
}

#cs-panel-form-wrapper .wpforms-field-label,
#solutions-discovery-form-wrapper .wpforms-field-label,
#demo-quick-form .wpforms-field-label,
#hidden-expert-form-wrapper .wpforms-field-label {
    font-family: var(--font-primary) !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.8) !important;
    display: block !important;
    margin-bottom: 8px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.06em !important;
}

#cs-panel-form-wrapper .wpforms-field-label .wpforms-required-label,
#solutions-discovery-form-wrapper .wpforms-field-label .wpforms-required-label,
#demo-quick-form .wpforms-field-label .wpforms-required-label,
#hidden-expert-form-wrapper .wpforms-field-label .wpforms-required-label {
    color: var(--pink) !important;
}

#cs-panel-form-wrapper input[type="text"],
#cs-panel-form-wrapper input[type="email"],
#cs-panel-form-wrapper input[type="tel"],
#cs-panel-form-wrapper select,
#cs-panel-form-wrapper textarea,
#solutions-discovery-form-wrapper input[type="text"],
#solutions-discovery-form-wrapper input[type="email"],
#solutions-discovery-form-wrapper input[type="tel"],
#solutions-discovery-form-wrapper select,
#solutions-discovery-form-wrapper textarea,
#demo-quick-form input[type="text"],
#demo-quick-form input[type="email"],
#demo-quick-form input[type="tel"],
#demo-quick-form select,
#demo-quick-form textarea,
#hidden-expert-form-wrapper input[type="text"],
#hidden-expert-form-wrapper input[type="email"],
#hidden-expert-form-wrapper input[type="tel"],
#hidden-expert-form-wrapper select,
#hidden-expert-form-wrapper textarea {
    width: 100% !important;
    padding: 12px 16px !important;
    font-family: var(--font-primary) !important;
    font-size: 14px !important;
    border: 1px solid var(--glass-border) !important;
    border-radius: 12px !important;
    background: var(--glass-bg) !important;
    color: var(--ink) !important;
    outline: none !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    transition: border-color 0.3s ease, background-color 0.3s ease !important;
}

#cs-panel-form-wrapper input:focus,
#cs-panel-form-wrapper select:focus,
#cs-panel-form-wrapper textarea:focus,
#solutions-discovery-form-wrapper input:focus,
#solutions-discovery-form-wrapper select:focus,
#solutions-discovery-form-wrapper textarea:focus,
#demo-quick-form input:focus,
#demo-quick-form select:focus,
#demo-quick-form textarea:focus,
#hidden-expert-form-wrapper input:focus,
#hidden-expert-form-wrapper select:focus,
#hidden-expert-form-wrapper textarea:focus {
    border-color: var(--pink) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
}

#cs-panel-form-wrapper input::placeholder,
#cs-panel-form-wrapper textarea::placeholder,
#solutions-discovery-form-wrapper input::placeholder,
#solutions-discovery-form-wrapper textarea::placeholder,
#demo-quick-form input::placeholder,
#demo-quick-form textarea::placeholder,
#hidden-expert-form-wrapper input::placeholder,
#hidden-expert-form-wrapper textarea::placeholder {
    color: rgba(234, 241, 255, 0.42) !important;
}

#cs-panel-form-wrapper select,
#solutions-discovery-form-wrapper select,
#demo-quick-form select,
#hidden-expert-form-wrapper select {
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml;utf8,<svg fill='white' height='24' viewBox='0 0 24 24' width='24' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/><path d='M0 0h24v24H0z' fill='none'/></svg>") !important;
    background-repeat: no-repeat !important;
    background-position: calc(100% - 12px) 50% !important;
    background-size: 20px !important;
    padding-right: 40px !important;
    cursor: pointer !important;
}

#cs-panel-form-wrapper select option,
#solutions-discovery-form-wrapper select option,
#demo-quick-form select option,
#hidden-expert-form-wrapper select option {
    background-color: #06122e !important;
    color: var(--ink) !important;
}

#cs-panel-form-wrapper textarea,
#solutions-discovery-form-wrapper textarea,
#demo-quick-form textarea,
#hidden-expert-form-wrapper textarea {
    resize: vertical !important;
    min-height: 100px !important;
}

/* Submit Button styling */
#cs-panel-form-wrapper .wpforms-submit-container,
#solutions-discovery-form-wrapper .wpforms-submit-container,
#demo-quick-form .wpforms-submit-container,
#hidden-expert-form-wrapper .wpforms-submit-container {
    padding: 0 !important;
    margin: 10px 0 0 0 !important;
}

#cs-panel-form-wrapper .wpforms-submit,
#solutions-discovery-form-wrapper .wpforms-submit,
#demo-quick-form .wpforms-submit,
#hidden-expert-form-wrapper .wpforms-submit {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 36px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    font-family: var(--font-primary) !important;
    background: var(--grad-cta) !important;
    color: var(--ink-dark) !important;
    border: none !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    width: fit-content !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    box-shadow: none !important;
}

#cs-panel-form-wrapper .wpforms-submit:hover,
#solutions-discovery-form-wrapper .wpforms-submit:hover,
#demo-quick-form .wpforms-submit:hover,
#hidden-expert-form-wrapper .wpforms-submit:hover {
    opacity: 0.95 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255, 61, 138, 0.4) !important;
}

#cs-panel-form-wrapper label.wpforms-error,
#solutions-discovery-form-wrapper label.wpforms-error,
#demo-quick-form label.wpforms-error,
#hidden-expert-form-wrapper label.wpforms-error {
    color: #ef4444 !important;
    font-size: 11px !important;
    margin-top: 4px !important;
    text-transform: none !important;
    letter-spacing: normal !important;
}

/* Success Confirmation message style overrides */
.wpforms-confirmation-container-outer,
.wpforms-confirmation-container {
    background: rgba(255, 61, 138, 0.08) !important;
    border: 1px solid rgba(255, 61, 138, 0.2) !important;
    color: var(--ink) !important;
    padding: 24px !important;
    border-radius: 16px !important;
    text-align: center !important;
    font-family: var(--font-primary) !important;
    font-size: 16px !important;
    margin-top: 20px !important;
}

/* WPForms Sublabels styling (First / Last sublabel text) */
.wpforms-field-sublabel {
    font-family: var(--font-primary) !important;
    font-size: 11px !important;
    color: rgba(255, 255, 255, 0.5) !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-top: 4px !important;
}



/* ═══ FOOTER ═════════════════════════════════════════════════ */
.bv-footer {
    background: transparent;
    padding: 80px 0 40px;
    color: var(--ink-soft);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
}

.bv-footer-container {
    max-width: 1360px;
    margin: 0 auto;
    padding: 0 40px;
}

.bv-footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    margin-bottom: 60px;
}

.bv-footer-brand-area {
    max-width: 650px;
    display: flex;
    flex-direction: column;
}

.bv-footer-logo-row {
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.brand-logo-full {
    height: 52px;
    width: auto;
    object-fit: contain;
    display: block;
}

.bv-footer-tagline-main {
    font-family: var(--font-primary);
    font-size: clamp(24px, 3vw, 34px);
    font-weight: 500;
    line-height: 1.25;
    color: var(--ink);
    letter-spacing: -0.03em;
    margin: 0;
}

.bv-footer-tagline-main .text-theme-highlight {
    /* Handled by .text-gradient */
}

.bv-footer-tagline-main .text-muted-highlight {
    color: var(--ink-dim) !important;
}

/* Right CTA area */
.bv-footer-cta-area {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 8px;
    flex-shrink: 0;
    text-align: right;
    margin-top: 10px;
}

.bv-footer-email-row {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
}

.bv-footer-email-row svg {
    color: var(--pink);
}

.bv-footer-email-link {
    font-family: var(--font-primary);
    font-size: 15px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bv-footer-email-link:hover {
    color: var(--pink);
}

.bv-footer-extra-emails {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    opacity: 0.55;
    margin-bottom: 12px;
    justify-content: flex-end;
    width: 100%;
}

.bv-footer-extra-emails .email-sep {
    color: var(--ink-dim);
}

.bv-footer-btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-primary);
    font-size: 14px;
    font-weight: 600;
    color: var(--ink);
    text-decoration: none;
    padding: 14px 28px;
    background: var(--grad-cta);
    border: none;
    border-radius: 50px !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.bv-footer-btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 61, 138, 0.4);
}

/* Divider */
.bv-footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    width: 100%;
    margin-bottom: 40px;
}

/* Bottom elements */
.bv-footer-bottom-new {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 24px;
}

.bv-footer-nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.bv-footer-nav-links a {
    font-family: var(--font-primary);
    font-size: 14px;
    color: var(--ink-soft);
    text-decoration: none;
    transition: color 0.3s ease;
}

.bv-footer-nav-links a:hover {
    color: var(--pink);
}

.bv-footer-copyright {
    font-family: var(--font-primary);
    font-size: 13px;
    color: var(--ink-dim);
    text-align: right;
    line-height: 1.6;
}

.bv-footer-legal-info {
    display: block;
    font-size: 11px;
    opacity: 0.6;
    margin-top: 4px;
}

@media (max-width: 900px) {
    .bv-footer-top {
        flex-direction: column;
        align-items: stretch;
        gap: 32px;
    }

    .bv-footer-cta-area {
        align-items: flex-start;
        text-align: left;
    }

    .bv-footer-extra-emails {
        justify-content: flex-start;
    }

    .bv-footer-bottom-new {
        flex-direction: column-reverse;
        align-items: flex-start;
        gap: 24px;
    }

    .bv-footer-nav-links {
        flex-wrap: wrap;
        gap: 20px;
    }

    .bv-footer-copyright {
        text-align: left;
    }

    .cs-panel {
        width: 100%;
        max-width: 100vw;
    }

    .cs-panel__body {
        padding: 50px 20px 20px;
    }

    .cs-panel__title {
        font-size: 22px;
        margin-bottom: 12px;
    }

    .cs-panel__sub {
        font-size: 14px;
        margin-bottom: 28px;
    }

    .cs-panel__form {
        gap: 16px;
    }

    .cs-panel__field label {
        font-size: 12px;
    }

    .cs-panel__field input,
    .cs-panel__field select,
    .cs-panel__field textarea {
        padding: 10px 14px;
        font-size: 13px;
    }

    .cs-panel__submit {
        padding: 12px 28px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Typography Standardization classes */
.heading-style-1 {
    font-family: var(--font-primary), sans-serif !important;
    font-size: clamp(38px, 5.5vw, 72px) !important;
    font-weight: 800 !important;
    line-height: 1.18 !important;
    letter-spacing: -0.03em !important;
}

.heading-style-2 {
    font-family: var(--font-primary), sans-serif !important;
    font-size: clamp(32px, 4vw, 52px) !important;
    font-weight: 800 !important;
    line-height: 1.1 !important;
    letter-spacing: -0.03em !important;
}

@media (max-width: 768px) {
    .heading-style-1 {
        font-size: clamp(28px, 6vw, 42px) !important;
        line-height: 1.25 !important;
    }

    .heading-style-2 {
        font-size: clamp(24px, 5vw, 34px) !important;
        line-height: 1.25 !important;
    }
}