/* ===========================================
   ConnectSoft Marketing Site - Main Stylesheet
   Version: 1.0.0
   
   Base Tailwind CSS is loaded from Flowbite CDN.
   Design tokens are defined in design-tokens.css.
   Component styles are in components.css.
   =========================================== */

/* ===========================================
   BASE TYPOGRAPHY
   =========================================== */

html {
    font-family: var(--font-family-sans);
}

/* Hebrew/RTL Typography */
[lang="he"],
[dir="rtl"] {
    font-family: var(--font-family-hebrew);
}

/* ===========================================
   RTL (Right-to-Left) Support
   =========================================== */

[dir="rtl"] {
    direction: rtl;
    text-align: right;
}

[dir="ltr"] {
    direction: ltr;
    text-align: left;
}

/* RTL margin utilities - Using logical properties where possible */
[dir="rtl"] .ml-1 { margin-right: var(--spacing-1); margin-left: 0; }
[dir="rtl"] .ml-2 { margin-right: var(--spacing-2); margin-left: 0; }
[dir="rtl"] .ml-3 { margin-right: var(--spacing-3); margin-left: 0; }
[dir="rtl"] .ml-4 { margin-right: var(--spacing-4); margin-left: 0; }
[dir="rtl"] .ml-5 { margin-right: var(--spacing-5); margin-left: 0; }
[dir="rtl"] .ml-6 { margin-right: var(--spacing-6); margin-left: 0; }
[dir="rtl"] .ml-8 { margin-right: var(--spacing-8); margin-left: 0; }
[dir="rtl"] .mr-1 { margin-left: var(--spacing-1); margin-right: 0; }
[dir="rtl"] .mr-2 { margin-left: var(--spacing-2); margin-right: 0; }
[dir="rtl"] .mr-3 { margin-left: var(--spacing-3); margin-right: 0; }
[dir="rtl"] .mr-4 { margin-left: var(--spacing-4); margin-right: 0; }
[dir="rtl"] .mr-5 { margin-left: var(--spacing-5); margin-right: 0; }
[dir="rtl"] .mr-6 { margin-left: var(--spacing-6); margin-right: 0; }
[dir="rtl"] .mr-8 { margin-left: var(--spacing-8); margin-right: 0; }

/* RTL padding utilities */
[dir="rtl"] .pl-1 { padding-right: var(--spacing-1); padding-left: 0; }
[dir="rtl"] .pl-2 { padding-right: var(--spacing-2); padding-left: 0; }
[dir="rtl"] .pl-3 { padding-right: var(--spacing-3); padding-left: 0; }
[dir="rtl"] .pl-4 { padding-right: var(--spacing-4); padding-left: 0; }
[dir="rtl"] .pl-5 { padding-right: var(--spacing-5); padding-left: 0; }
[dir="rtl"] .pl-6 { padding-right: var(--spacing-6); padding-left: 0; }
[dir="rtl"] .pl-8 { padding-right: var(--spacing-8); padding-left: 0; }
[dir="rtl"] .pr-1 { padding-left: var(--spacing-1); padding-right: 0; }
[dir="rtl"] .pr-2 { padding-left: var(--spacing-2); padding-right: 0; }
[dir="rtl"] .pr-3 { padding-left: var(--spacing-3); padding-right: 0; }
[dir="rtl"] .pr-4 { padding-left: var(--spacing-4); padding-right: 0; }
[dir="rtl"] .pr-5 { padding-left: var(--spacing-5); padding-right: 0; }
[dir="rtl"] .pr-6 { padding-left: var(--spacing-6); padding-right: 0; }
[dir="rtl"] .pr-8 { padding-left: var(--spacing-8); padding-right: 0; }

/* RTL positioning */
[dir="rtl"] .left-0 { right: 0; left: auto; }
[dir="rtl"] .left-1 { right: var(--spacing-1); left: auto; }
[dir="rtl"] .left-2 { right: var(--spacing-2); left: auto; }
[dir="rtl"] .left-4 { right: var(--spacing-4); left: auto; }
[dir="rtl"] .right-0 { left: 0; right: auto; }
[dir="rtl"] .right-1 { left: var(--spacing-1); right: auto; }
[dir="rtl"] .right-2 { left: var(--spacing-2); right: auto; }
[dir="rtl"] .right-4 { left: var(--spacing-4); right: auto; }

/* RTL text alignment */
[dir="rtl"] .text-left { text-align: right; }
[dir="rtl"] .text-right { text-align: left; }

/* RTL flex utilities */
[dir="rtl"] .flex-row { flex-direction: row-reverse; }
[dir="rtl"] .flex-row-reverse { flex-direction: row; }
[dir="rtl"] .justify-start { justify-content: flex-end; }
[dir="rtl"] .justify-end { justify-content: flex-start; }

/* Keep original direction when explicitly set */
[dir="rtl"] .ltr\:flex-row { flex-direction: row; }
[dir="rtl"] .ltr\:text-left { text-align: left; }
[dir="rtl"] .rtl\:flex-row-reverse { flex-direction: row-reverse; }
[dir="rtl"] .rtl\:text-right { text-align: right; }

/* RTL transform for icons that should mirror */
[dir="rtl"] .rtl-mirror {
    transform: scaleX(-1);
}

/* RTL border radius */
[dir="rtl"] .rounded-l { border-radius: 0 var(--radius-default) var(--radius-default) 0; }
[dir="rtl"] .rounded-r { border-radius: var(--radius-default) 0 0 var(--radius-default); }
[dir="rtl"] .rounded-l-lg { border-radius: 0 var(--radius-lg) var(--radius-lg) 0; }
[dir="rtl"] .rounded-r-lg { border-radius: var(--radius-lg) 0 0 var(--radius-lg); }
[dir="rtl"] .rounded-l-xl { border-radius: 0 var(--radius-xl) var(--radius-xl) 0; }
[dir="rtl"] .rounded-r-xl { border-radius: var(--radius-xl) 0 0 var(--radius-xl); }

/* RTL border */
[dir="rtl"] .border-l { border-left: 0; border-right-width: 1px; }
[dir="rtl"] .border-r { border-right: 0; border-left-width: 1px; }
[dir="rtl"] .border-l-2 { border-left: 0; border-right-width: 2px; }
[dir="rtl"] .border-r-2 { border-right: 0; border-left-width: 2px; }
[dir="rtl"] .border-l-4 { border-left: 0; border-right-width: 4px; }
[dir="rtl"] .border-r-4 { border-right: 0; border-left-width: 4px; }

/* RTL dropdown origin */
[dir="rtl"] .origin-top-right { transform-origin: top left; }
[dir="rtl"] .origin-top-left { transform-origin: top right; }
[dir="rtl"] .origin-bottom-right { transform-origin: bottom left; }
[dir="rtl"] .origin-bottom-left { transform-origin: bottom right; }

/* RTL translate utilities */
[dir="rtl"] .translate-x-full { transform: translateX(-100%); }
[dir="rtl"] .-translate-x-full { transform: translateX(100%); }
[dir="rtl"] .translate-x-1\/2 { transform: translateX(-50%); }
[dir="rtl"] .-translate-x-1\/2 { transform: translateX(50%); }

/* RTL space utilities */
[dir="rtl"] .space-x-1 > * + * { margin-right: var(--spacing-1); margin-left: 0; }
[dir="rtl"] .space-x-2 > * + * { margin-right: var(--spacing-2); margin-left: 0; }
[dir="rtl"] .space-x-3 > * + * { margin-right: var(--spacing-3); margin-left: 0; }
[dir="rtl"] .space-x-4 > * + * { margin-right: var(--spacing-4); margin-left: 0; }
[dir="rtl"] .space-x-6 > * + * { margin-right: var(--spacing-6); margin-left: 0; }
[dir="rtl"] .space-x-8 > * + * { margin-right: var(--spacing-8); margin-left: 0; }

/* RTL list support */
[dir="rtl"] ul,
[dir="rtl"] ol {
    padding-right: var(--spacing-6);
    padding-left: 0;
}

[dir="rtl"] .list-inside {
    padding-right: 0;
}

/* RTL prose adjustments for Tailwind Typography */
[dir="rtl"] .prose ul,
[dir="rtl"] .prose ol {
    padding-right: 1.625em;
    padding-left: 0;
}

[dir="rtl"] .prose ul > li::marker,
[dir="rtl"] .prose ol > li::marker {
    text-align: right;
}

/* RTL checkbox/radio positioning */
[dir="rtl"] input[type="checkbox"] + label,
[dir="rtl"] input[type="radio"] + label {
    margin-right: var(--spacing-2);
    margin-left: 0;
}

/* ===========================================
   ACCESSIBILITY
   =========================================== */

/* Focus visible states */
*:focus-visible {
    outline: 2px solid rgb(var(--color-primary-500));
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    *:focus-visible {
        outline-width: 3px;
    }
    
    .btn-primary,
    .btn-secondary,
    .btn-outline {
        border-width: 2px;
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Skip to main content link */
.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: rgb(var(--color-primary-600));
    color: white;
    padding: var(--spacing-2) var(--spacing-4);
    z-index: var(--z-index-tooltip);
    transition: top var(--transition-duration-fast) var(--transition-timing-default);
}

.skip-link:focus {
    top: 0;
}

[dir="rtl"] .skip-link {
    left: auto;
    right: 0;
}

/* ===========================================
   CUSTOM BLAZOR STYLES
   =========================================== */

#blazor-error-ui {
    display: none;
}

#blazor-error-ui.show {
    display: block;
}

/* NavLink active state */
.active {
    background-color: rgb(var(--color-primary-50));
    color: rgb(var(--color-primary-600));
}

.dark .active {
    background-color: rgb(var(--color-primary-900));
    color: rgb(var(--color-primary-300));
}

/* ===========================================
   FORM VALIDATION STATES
   =========================================== */

.valid.modified:not([type=checkbox]) {
    outline: 2px solid rgb(var(--color-success-500));
}

.invalid {
    outline: 2px solid rgb(var(--color-error-500));
}

.validation-message {
    color: rgb(var(--color-error-600));
    font-size: var(--font-size-sm);
    line-height: var(--line-height-normal);
    margin-top: var(--spacing-1);
}

.dark .validation-message {
    color: rgb(var(--color-error-400));
}

/* ===========================================
   LOADING SPINNER
   =========================================== */

.loading-progress {
    position: relative;
    display: block;
    width: 8rem;
    height: 8rem;
    margin: 20vh auto 1rem auto;
}

.loading-progress circle {
    fill: none;
    stroke: rgb(var(--color-neutral-200));
    stroke-width: 0.6rem;
    transform-origin: 50% 50%;
    transform: rotate(-90deg);
}

.loading-progress circle:last-child {
    stroke: rgb(var(--color-primary-500));
    stroke-dasharray: calc(3.141 * var(--blazor-load-percentage, 0%) * 0.8), 500%;
    transition: stroke-dasharray 0.05s ease-in-out;
}

.dark .loading-progress circle {
    stroke: rgb(var(--color-neutral-700));
}

.dark .loading-progress circle:last-child {
    stroke: rgb(var(--color-primary-400));
}

.loading-progress-text {
    position: absolute;
    text-align: center;
    font-weight: var(--font-weight-bold);
    inset: calc(20vh + 3.25rem) 0 auto 0.2rem;
    color: rgb(var(--color-text-primary-light));
}

.dark .loading-progress-text {
    color: rgb(var(--color-text-primary-dark));
}

.loading-progress-text:after {
    content: var(--blazor-load-percentage-text, "Loading");
}

/* ===========================================
   UTILITY CLASSES
   =========================================== */

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Not screen reader only (show when focused) */
.not-sr-only {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

/* Focus-visible only */
.sr-only-focusable:not(:focus):not(:focus-within) {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ===========================================
   PRINT STYLES
   =========================================== */

@media print {
    /* Hide navigation and footer when printing */
    header,
    footer,
    .no-print {
        display: none !important;
    }
    
    /* Ensure good contrast */
    body {
        color: #000;
        background: #fff;
    }
    
    /* Show URLs for links */
    a[href]:after {
        content: " (" attr(href) ")";
    }
    
    /* Avoid page breaks inside cards */
    .ds-card {
        page-break-inside: avoid;
    }
}

/* ===========================================
   HEADER NAVIGATION LINKS
   =========================================== */

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.125rem; /* 18px */
    font-weight: 400;
    transition: color 0.15s ease-in-out;
}

.nav-link:hover {
    color: #ffffff;
}

.nav-link.active {
    color: #ffffff;
}

/* ===========================================
   LANGUAGE DROPDOWN
   =========================================== */

.lang-dropdown {
    background: rgb(31, 41, 55) !important; /* bg-gray-800 */
    border: 1px solid rgb(55, 65, 81) !important; /* border-gray-700 */
}

.lang-dropdown ul {
    color: #FFFFFF;
}

.lang-dropdown li {
    font-size: 1.125rem; /* 18px */
    font-weight: 500;
    line-height: 1.3; /* 130% */
    color: #FFFFFF;
    text-align: center;
}

.lang-dropdown li:hover {
    background: rgba(55, 65, 81, 0.5); /* hover:bg-gray-700/50 */
}

.lang-icon {
    width: 40px;
    height: 40px;
    background: rgb(55, 65, 81); /* bg-gray-700 */
    border-radius: 8px; /* rounded-lg */
    flex-shrink: 0;
}

/* ===========================================
   HOME PAGE - HERO SECTION
   =========================================== */

.hero-title {
    font-family: 'Heebo', var(--font-family-sans);
    font-size: 72px;
    font-weight: 700;
    line-height: 100%;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
}

.hero-description {
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 560px;
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 16px;
    }
}

/* ===========================================
   HOME PAGE - CLIENTS SECTION
   =========================================== */

.clients-title {
    font-size: 24px;
    font-weight: 500;
    line-height: 100%;
    color: #FFFFFF;
    margin-bottom: 0.5rem;
}

.clients-subtitle {
    font-size: 24px;
    font-weight: 400;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
}

@media (max-width: 480px) {
    .clients-title,
    .clients-subtitle {
        font-size: 18px;
    }
}

/* ===========================================
   HOME PAGE - HERO BUTTONS
   =========================================== */

.hero-btn-primary {
    background: #FFFFFF !important;
    color: #000000 !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 100% !important;
    padding: 16px 24px !important;
    border-radius: 30px !important;
    border: none !important;
    gap: 10px;
    transition: background 0.15s ease-in-out;
}

.hero-btn-primary:hover {
    background: #E5E5E5 !important;
}

.hero-btn-secondary {
    background: transparent !important;
    color: #FFFFFF !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 100% !important;
    padding: 16px 24px !important;
    border-radius: 30px !important;
    border: 1px solid rgba(255, 255, 255, 0.8) !important;
    gap: 10px;
    transition: background 0.15s ease-in-out;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* ===========================================
   HOME PAGE - SERVICES SECTION
   =========================================== */

.service-card {
    background: rgb(24, 24, 27); /* zinc-900 */
    border: 1px solid rgb(39, 39, 42); /* zinc-800 */
    border-radius: 20px;
    padding: 24px;
    transition: border-color 0.2s ease-in-out;
}

.service-card:hover {
    border-color: rgb(63, 63, 70); /* zinc-700 */
}

.service-icon {
    width: 48px;
    height: 48px;
    background: rgb(212, 212, 216); /* zinc-300 */
    border-radius: 12px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.service-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
}

/* Roles Section */
.roles-grid {
    /* Только внутренние разделители, без внешних границ */
}

.role-card {
    border-left: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 32px;
    padding-top: 40px;
    padding-bottom: 40px;
}

/* Первая карточка в каждом ряду - без левой границы */
.role-card:nth-child(3n+1) {
    border-left: none;
}

/* Последний ряд - без нижней границы */
.role-card:nth-child(n+4) {
    border-bottom: none;
}

@media (max-width: 1023px) {
    /* 2 колонки */
    .role-card:nth-child(3n+1) {
        border-left: 1px solid rgba(255, 255, 255, 0.2);
    }
    .role-card:nth-child(2n+1) {
        border-left: none;
    }
    .role-card:nth-child(n+4) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .role-card:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 767px) {
    .roles-grid {
        border-left: none;
        border-right: none;
    }
    /* 1 колонка */
    .role-card {
        border-left: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    }
    .role-card:last-child {
        border-bottom: none;
    }
}

.role-title {
    font-size: 48px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 24px;
    line-height: 100%;
}

.role-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.role-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    font-size: 16px;
    font-weight: 500;
    line-height: 100%;
    color: rgba(255, 255, 255, 0.8);
}

/* Collaboration Section */
.collab-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    background: rgb(24, 24, 27); /* zinc-900 */
    border: 1px solid rgb(39, 39, 42); /* zinc-800 */
    border-radius: 20px;
    padding: 24px 32px;
    transition: border-color 0.2s ease-in-out;
    position: relative;
}

.collab-card:hover {
    border-color: rgb(63, 63, 70); /* zinc-700 */
}

.collab-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: rgb(212, 212, 216); /* zinc-300 */
    border-radius: 16px;
}

.collab-content {
    flex: 1;
    padding-bottom: 24px;
}

.collab-title {
    font-size: 24px;
    font-weight: 700;
    line-height: 130%;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.collab-description {
    font-size: 16px;
    font-weight: 400;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
}

.collab-link {
    position: absolute;
    right: 32px;
    bottom: 24px;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 130%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s ease-in-out;
}

.collab-link:hover {
    color: #FFFFFF;
}

@media (max-width: 767px) {
    .collab-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }
    
    .collab-link {
        align-self: flex-end;
    }
}

/* Why ConnectSoft Section */
.why-section-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 16px;
}

.why-section-subtitle {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    max-width: 42rem;
    margin: 0 auto;
}

@media (max-width: 767px) {
    .why-section-title {
        font-size: 36px;
    }
}

/* Feature Cards Section */
.feature-card {
    padding: 16px;
    text-align: left;
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: rgb(212, 212, 216); /* zinc-300 */
    border-radius: 12px;
    margin-bottom: 16px;
}

.feature-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    text-align: left;
    color: #FFFFFF;
    margin-bottom: 8px;
}

.feature-description {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    text-align: left;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
}

/* Testimonial Section */
.testimonial-quote {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 32px;
    font-weight: 400;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 32px;
}

@media (max-width: 767px) {
    .testimonial-quote {
        font-size: 24px;
    }
}

.testimonial-avatar {
    width: 96px;
    height: 96px;
    background: rgb(212, 212, 216); /* zinc-300 */
    border-radius: 50%;
    margin: 0 auto 16px;
}

.testimonial-author {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 24px;
    font-weight: 700;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: #FFFFFF;
    margin-bottom: 4px;
}

.testimonial-role {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-nav-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: rgba(255, 255, 255, 0.8);
    background: transparent;
    border: none;
    cursor: pointer;
    transition: color 0.2s ease-in-out;
}

.testimonial-nav-btn:hover {
    color: #FFFFFF;
}

/* Testimonial Rating - UIKit override for dark theme */
.testimonial-rating svg {
    color: #FFFFFF !important;
    fill: #FFFFFF !important;
}

/* Testimonial Avatar - UIKit override for dark theme */
.testimonial-avatar-component {
    width: 96px !important;
    height: 96px !important;
}

.testimonial-avatar-component > div {
    width: 96px !important;
    height: 96px !important;
    background: rgb(212, 212, 216) !important; /* zinc-300 */
}

/* CTA Form Section */
.cta-title {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 48px;
    font-weight: 700;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0;
    color: #FFFFFF;
    margin-bottom: 24px;
}

@media (max-width: 767px) {
    .cta-title {
        font-size: 32px;
    }
}

.cta-description {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    color: rgba(255, 255, 255, 0.8);
}

.cta-input {
    width: 100%;
    background: rgb(24, 24, 27) !important; /* zinc-900 */
    border: 1px solid rgb(39, 39, 42) !important; /* zinc-800 */
    border-radius: 12px !important;
    padding: 16px 20px !important;
    color: #FFFFFF !important;
    font-size: 16px;
}

.cta-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.cta-input:focus {
    border-color: rgb(63, 63, 70) !important; /* zinc-700 */
    outline: none !important;
}

.cta-submit-btn {
    background: #FFFFFF !important;
    color: #000000 !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 16px 32px !important;
    border: none !important;
    transition: opacity 0.2s ease-in-out !important;
}

.cta-submit-btn:hover {
    opacity: 0.9 !important;
}

/* CTA Form - Privacy Policy Checkbox */
.cta-checkbox {
    flex-shrink: 0;
    margin-top: 2px;
}

.cta-privacy-label {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 400;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;
    color: rgba(255, 255, 255, 0.8) !important;
}

.cta-privacy-link {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 16px;
    font-weight: 500;
    font-style: normal;
    line-height: 130%;
    letter-spacing: 0;
    vertical-align: middle;
    color: #FFFFFF !important;
    text-decoration: none;
    transition: opacity 0.2s ease-in-out;
}

.cta-privacy-link:hover {
    text-decoration: underline;
    opacity: 0.9;
}

/* ===========================================
   SECTION SPACING
   =========================================== */

.section-gap {
    margin-top: 30px;
}
