/*
Theme Name: TransformNXT
Theme URI: https://transformnxt.pro
Author: TransformNXT
Description: Custom WordPress theme for TransformNXT
Version: 1.2
*/

/* ==========================================================================
   DESIGN SYSTEM & VARIABLES
   ========================================================================== */
:root {
    /* Colors */
    --primary-blue: #0046FF;
    --text-dark: #0B132B;
    --text-muted: #475569;
    --text-light: #64748B;
    --bg-card: #FFFFFF;
    --white: #FFFFFF;

    /* Fonts */
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-heading: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    /* Shadows */
    --card-shadow: 0 25px 50px -12px rgba(0, 70, 255, 0.08),
        0 0 1px 0 rgba(0, 70, 255, 0.12),
        0 4px 12px 0 rgba(0, 0, 0, 0.02);

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ==========================================================================
   DECORATIVE BACKGROUND
   ========================================================================== */
.bg-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 900px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.dot-grid-left {
    position: absolute;
    top: 300px;
    left: -80px;
    width: 240px;
    height: 240px;
    background-image: radial-gradient(rgba(0, 70, 255, 0.12) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.8;
}

.gradient-glow-top {
    position: absolute;
    top: -150px;
    left: 5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 70, 255, 0.08) 0%, rgba(124, 58, 237, 0.04) 50%, transparent 70%);
    filter: blur(60px);
}

.gradient-glow-right {
    position: absolute;
    top: 50px;
    right: -150px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, rgba(0, 70, 255, 0.05) 50%, transparent 70%);
    filter: blur(80px);
}

/* ==========================================================================
   HEADER / NAVBAR
   ========================================================================== */
.site-header {
    position: relative;
    z-index: 10;
    padding: 24px 0;
}

.header-container {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    transition: transform var(--transition-fast);
}

.logo-link:hover {
    transform: translateY(-1px);
}

.logo-image {
    height: 48px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    position: relative;
    padding-top: 32px;
    padding-bottom: 48px;
    background: radial-gradient(100% 100% at 50% 0%, rgba(232, 239, 255, 0.25) 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 58px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.035em;
}

.text-blue {
    color: var(--primary-blue);
    background: linear-gradient(90deg, var(--primary-blue) 0%, #3B82F6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-muted);
    margin-top: 24px;
    max-width: 530px;
}

/* Benefits Checklist */
.benefits-list {
    list-style: none;
    margin: 32px 0 40px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 14px;
    transition: transform var(--transition-fast) ease;
}

.benefit-item:hover {
    transform: translateX(6px);
}

.benefit-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
}

.benefit-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Action Buttons */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.btn-arrow {
    transition: transform var(--transition-fast);
}

.btn-primary {
    background: linear-gradient(135deg, #0046FF 0%, #0088FF 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 70, 255, 0.25), 0 0 10px rgba(0, 70, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #0036DB 0%, #0077EE 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 70, 255, 0.4), 0 0 25px rgba(0, 70, 255, 0.5), 0 0 12px rgba(59, 130, 246, 0.3);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background-color: transparent;
    color: #0046FF;
    border: 1.5px solid rgba(0, 70, 255, 0.3);
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(0, 70, 255, 0.06) 0%, rgba(0, 136, 255, 0.06) 100%);
    border-color: #0046FF;
    box-shadow: 0 4px 15px rgba(0, 70, 255, 0.1), 0 0 15px rgba(0, 70, 255, 0.15);
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary:hover .btn-arrow {
    transform: translateX(4px);
}

.btn-secondary:active {
    transform: translateY(0);
}

/* Hero Right Block (Form Card) */
.form-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04),
        0 0 1px 0 rgba(0, 0, 0, 0.08);
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    position: relative;
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.form-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06),
        0 0 2px 0 rgba(0, 0, 0, 0.1);
    border-color: #CBD5E1;
}

.form-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    color: var(--text-dark);
    text-align: left;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.text-accent-blue {
    color: #0088FF;
    background: none;
    -webkit-text-fill-color: initial;
    -webkit-background-clip: initial;
}

/* Hero Demo Form */
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.input-group {
    position: relative;
    width: 100%;
}

.input-icon {
    position: absolute;
    left: 20px;
    top: 27px;
    transform: translateY(-50%);
    color: #0088FF;
    display: flex;
    align-items: center;
    pointer-events: none;
    transition: color var(--transition-fast);
    z-index: 10;
}

.input-group input {
    width: 100%;
    padding: 16px 20px 16px 52px;
    border: 1.5px solid #D8E8FF;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-dark);
    background-color: #F4F8FF;
    outline: none;
    box-shadow: inset 0 2px 4px 0 rgba(0, 70, 255, 0.01);
    transition: all var(--transition-fast);
}

.input-group input::placeholder {
    color: #8A9BB5;
    font-weight: 500;
}

.input-group input:focus {
    border-color: #0088FF;
    background-color: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 136, 255, 0.15);
}

.input-group input:focus+.input-icon {
    color: #0046FF;
}

/* Field Level Validation Error Styles */
.field-error-msg {
    color: #DC2626;
    font-size: 12.5px;
    font-weight: 600;
    margin-top: 6px;
    padding-left: 18px;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: fadeIn 0.2s ease-in-out;
}

.form-group .field-error-msg {
    padding-left: 4px;
}

.input-group.has-error input,
.form-group.has-error .form-input,
.input-group input.has-error,
.form-input.has-error {
    border-color: #EF4444 !important;
    background-color: #FEF2F2 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15) !important;
}

/* Success Box & Close Button */
.demo-form.form-submitted>*:not(.form-success-box),
.lead-form.form-submitted>*:not(.form-success-box) {
    display: none !important;
}

.demo-form.form-submitted,
.lead-form.form-submitted {
    position: static;
}

.form-success-box {
    position: static;
    text-align: center;
    padding: 24px 16px 16px;
    width: 100%;
}

.form-success-content {
    animation: fadeIn 0.35s ease;
}

.success-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    color: #64748B;
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 20;
}

.success-close-btn:hover {
    background: #E2E8F0;
    color: #0B132B;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.btn-submit {
    width: 100%;
    background: linear-gradient(135deg, #0046FF 0%, #0088FF 100%);
    color: var(--white);
    border: none;
    padding: 16px;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 14px rgba(0, 70, 255, 0.25), 0 0 10px rgba(0, 70, 255, 0.1);
    transition: all var(--transition-fast);
    margin-top: 6px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #0036DB 0%, #0077EE 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 70, 255, 0.4), 0 0 25px rgba(0, 70, 255, 0.5), 0 0 12px rgba(59, 130, 246, 0.3);
}

.btn-submit:active {
    transform: translateY(1px);
}

.form-trust {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-top: 24px;
    padding: 0 8px;
}

.trust-icon {
    flex-shrink: 0;
    color: var(--text-light);
    display: flex;
}

.trust-text {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-light);
}

/* ==========================================================================
   SECTION PADDING SYSTEM
   ========================================================================= */
.problem-section,
.features-section,
.conversion-section {
    padding: 48px 0;
}

/* ==========================================================================
   HIRING CHALLENGES SECTION
   ========================================================================== */
.problem-section {
    position: relative;
    background-color: var(--white);
    overflow: hidden;
    z-index: 1;
}

.problem-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dot-grid-right-section2 {
    position: absolute;
    top: 40px;
    right: -60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(0, 70, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.8;
}

.dot-grid-left-section2 {
    position: absolute;
    bottom: 40px;
    left: -60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(0, 70, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.8;
}

.problem-container {
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background-color: #EEF2F6;
    color: var(--primary-blue);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.35;
    padding: 6px 18px;
    border-radius: 30px;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-badge .badge-subtitle {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.04em;
    opacity: 0.85;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 36px auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.problem-card {
    background-color: var(--bg-card);
    border: 1px solid rgba(0, 70, 255, 0.06);
    border-radius: 16px;
    padding: 24px 16px;
    text-align: center;
    box-shadow: 0 10px 30px -10px rgba(0, 70, 255, 0.04), 0 0 1px 0 rgba(0, 0, 0, 0.05);
    transition: all var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--card-shadow);
    border-color: rgba(0, 70, 255, 0.12);
}

.card-icon-container {
    margin-bottom: 14px;
    transition: transform var(--transition-normal);
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-icon-container svg {
    width: 66px;
    height: 66px;
}

.problem-card:hover .card-icon-container {
    transform: scale(1.06);
}

.card-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
    letter-spacing: -0.01em;
    line-height: 1.25;
}

.card-divider {
    width: 28px;
    height: 2px;
    background-color: var(--primary-blue);
    margin-bottom: 10px;
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.problem-card:hover .card-divider {
    width: 40px;
}

.card-desc {
    font-size: 13px;
    line-height: 1.45;
    color: var(--text-light);
}

/* ==========================================================================
   TRANSFORM ASSESS FEATURES SECTION
   ========================================================================== */
.features-section {
    position: relative;
    background-color: #F8FAFC;
    overflow: hidden;
    z-index: 1;
}

.features-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
}

.dot-grid-left-section4 {
    position: absolute;
    top: 20%;
    left: -60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(0, 70, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.8;
}

.dot-grid-right-section4 {
    position: absolute;
    bottom: 20%;
    right: -60px;
    width: 200px;
    height: 200px;
    background-image: radial-gradient(rgba(0, 70, 255, 0.08) 1.5px, transparent 1.5px);
    background-size: 16px 16px;
    opacity: 0.8;
}

.features-container {
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 36px;
    max-width: 1060px;
    margin: 32px auto 0 auto;
}

.feature-card {
    background-color: var(--white);
    border: 1px solid rgba(0, 70, 255, 0.05);
    border-radius: 16px;
    padding: 48px 20px 24px 20px;
    margin-top: 30px;
    transition: all var(--transition-normal);
    box-shadow: 0 10px 30px -15px rgba(0, 70, 255, 0.03), 0 0 1px 0 rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    position: relative;
    min-height: 180px;
    box-sizing: border-box;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px -12px rgba(0, 70, 255, 0.08), 0 0 1px 0 rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 70, 255, 0.12);
}

.feature-tab {
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background-color: var(--white);
    border: 1px solid rgba(0, 70, 255, 0.08);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04), 0 -2px 6px rgba(0, 70, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    z-index: 4;
    transition: transform var(--transition-normal), background-color var(--transition-normal), color var(--transition-normal);
}

.feature-tab svg {
    width: 28px;
    height: 28px;
}

.feature-card:hover .feature-tab {
    transform: translateX(-50%) scale(1.08);
    background-color: var(--primary-blue);
    color: var(--white);
    border-color: var(--primary-blue);
}

.feature-card-title {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 750;
    color: var(--text-dark);
    margin-top: 8px;
    margin-bottom: 10px;
    letter-spacing: -0.01em;
    line-height: 1.35;
}

.feature-card-desc {
    font-size: 13.5px;
    line-height: 1.55;
    color: var(--text-light);
    flex-grow: 1;
}

/* ==========================================================================
   FINAL CONVERSION SECTION (CTA)
   ========================================================================== */
.conversion-section {
    position: relative;
    background: linear-gradient(180deg, #0046FF 0%, #002DB3 100%);
    color: var(--white);
    overflow: hidden;
    z-index: 10;
}

.conversion-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.15) 1.2px, transparent 1.2px);
    background-size: 24px 24px;
    pointer-events: none;
    z-index: 2;
    opacity: 0.75;
}

.conversion-container {
    position: relative;
    z-index: 10;
}

.conversion-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 64px;
    align-items: center;
}

.conversion-content-col {
    display: flex;
    flex-direction: column;
}

.conversion-badge {
    display: inline-block;
    align-self: flex-start;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.15);
    padding: 8px 18px;
    border-radius: 30px;
}

.conversion-title {
    font-family: var(--font-heading);
    font-size: 46px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.025em;
}

.conversion-desc {
    font-size: 18px;
    line-height: 1.65;
    color: #E2E8F0;
    margin-bottom: 36px;
}

.conversion-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.conv-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 17px;
    font-weight: 600;
    color: #F1F5F9;
}

.conv-check {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: rgba(56, 189, 248, 0.18);
    color: #38BDF8;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
}

/* Form Card in CTA */
.conversion-form-card {
    background-color: var(--white);
    border-radius: 24px;
    padding: 38px 40px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.3);
    color: var(--text-dark);
    width: 100%;
    max-width: 480px;
    margin-left: auto;
    position: relative;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    height: 48px;
    padding: 12px 18px;
    background-color: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    font-size: 14px;
    color: var(--text-dark);
    font-family: var(--font-body);
    transition: all var(--transition-fast);
}

.form-input:focus {
    outline: none;
    background-color: var(--white);
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 70, 255, 0.1);
}

.form-submit-btn {
    width: 100%;
    height: 50px;
    font-size: 15px;
    font-weight: 700;
    border-radius: 50px;
    margin-top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, #0046FF 0%, #0088FF 100%);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(0, 70, 255, 0.25), 0 0 10px rgba(0, 70, 255, 0.1);
    transition: all var(--transition-fast);
}

.form-submit-btn:hover {
    background: linear-gradient(135deg, #0036DB 0%, #0077EE 100%);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 6px 20px rgba(0, 70, 255, 0.4), 0 0 25px rgba(0, 70, 255, 0.5), 0 0 12px rgba(59, 130, 246, 0.3);
}

.form-trust-note {
    font-size: 12px;
    color: var(--text-muted);
    text-align: center;
    margin-top: 14px;
    line-height: 1.5;
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
    background-color: #F8FAFC;
    color: #475569;
    padding: 60px 0;
    border-top: 1px solid #E2E8F0;
    font-size: 14px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-brand-col {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.footer-logo-image {
    height: 38px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-copyright {
    font-size: 13px;
    color: #94A3B8;
}

.footer-links-col {
    display: flex;
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: 16px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

.footer-divider {
    color: #CBD5E1;
    font-size: 13px;
    user-select: none;
}

.footer-link {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--primary-blue);
}

.footer-contact-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.contact-label {
    color: #64748B;
    font-weight: 600;
    font-size: 13px;
}

.contact-value {
    color: #475569;
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-value:hover {
    color: var(--primary-blue);
}

/* ==========================================================================
   RESPONSIVE MEDIA QUERIES
   ========================================================================== */

/* Large Tablets / Small Desktops */
@media (max-width: 1200px) {
    .problem-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

/* Tablets (1024px and down) */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 48px;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

    .hero-title {
        font-size: 46px;
    }

    .hero-subtitle {
        max-width: 600px;
    }

    .benefits-list {
        align-items: center;
    }

    .form-card {
        margin: 0 auto;
    }

    .problem-section,
    .features-section,
    .conversion-section {
        padding: 36px 0;
    }

    .section-title {
        font-size: 38px;
    }

    .problem-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 740px;
        gap: 36px 30px;
    }

    .conversion-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .conversion-title {
        font-size: 38px;
    }

    .conversion-desc {
        font-size: 17px;
    }

    .conv-feature-item {
        font-size: 16px;
    }

    .conversion-form-card {
        padding: 32px;
        max-width: 480px;
        margin: 0 auto;
    }
}

/* Mobile Devices (768px and down) */
@media (max-width: 768px) {
    .hero-section {
        padding-top: 16px;
        padding-bottom: 36px;
    }

    .hero-title {
        font-size: 38px;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        width: fit-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
        gap: 12px;
    }

    .hero-actions .btn {
        width: 100%;
        box-sizing: border-box;
        text-align: center;
    }

    .btn-submit,
    .form-submit-btn {
        width: fit-content;
        padding-left: 36px;
        padding-right: 36px;
        margin-left: auto;
        margin-right: auto;
    }

    .benefits-list {
        align-items: flex-start;
        width: fit-content;
        margin-left: auto;
        margin-right: auto;
    }

    .form-card {
        padding: 24px;
    }

    .form-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .problem-section,
    .features-section,
    .conversion-section {
        padding: 32px 0;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 32px;
    }

    .footer-contact-col {
        align-items: flex-start;
    }

    .footer-nav {
        gap: 12px 14px;
    }
}

/* Small Mobile (640px and down) */
@media (max-width: 640px) {
    .section-title {
        font-size: 30px;
    }

    .problem-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .problem-card {
        padding: 20px 16px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        gap: 32px;
    }

    .feature-card {
        padding: 36px 20px 20px 20px;
    }
}

/* Extra Small Mobile (480px and down) */
@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }

    .conversion-title {
        font-size: 30px;
    }

    .conversion-desc {
        font-size: 16px;
    }

    .conv-feature-item {
        font-size: 15px;
    }

    .conversion-form-card {
        padding: 24px;
    }
}

/* ==========================================================================
   ANIMATIONS & FORM UTILITIES
   ========================================================================== */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   LEAD POPUP MODAL
   ========================================================================== */
.lead-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 19, 43, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.lead-modal-overlay.is-active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.lead-modal-card {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 38px 40px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.35), 0 0 2px rgba(0, 0, 0, 0.1);
    width: 100%;
    max-width: 480px;
    position: relative;
    transform: scale(0.92) translateY(12px);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    max-height: 92vh;
    overflow-y: auto;
}

.lead-modal-overlay.is-active .lead-modal-card {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #E2E8F0;
    background: #F8FAFC;
    color: #64748B;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-fast);
    z-index: 25;
}

.modal-close-btn:hover {
    background: #E2E8F0;
    color: #0B132B;
    transform: scale(1.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lead-modal-card .success-close-btn {
    display: none !important;
}

body.modal-open {
    overflow: hidden !important;
}

@media (max-width: 480px) {
    .lead-modal-card {
        padding: 28px 20px;
        border-radius: 20px;
    }

    .modal-close-btn {
        top: 14px;
        right: 14px;
    }
}