.section-header {
    margin-bottom: 5rem;
    text-align: center;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--gray);
    font-size: 1.125rem;
    max-width: 680px;
    margin: 0 auto;
}

.section-tight-top {
    padding-top: 0;
}

.bg-alt {
    background: rgba(15, 23, 42, 0.5);
    position: relative;
}

.reveal-delay-100 {
    transition-delay: 0.1s;
}

.reveal-delay-200 {
    transition-delay: 0.2s;
}

.reveal-delay-300 {
    transition-delay: 0.3s;
}

.reveal-delay-400 {
    transition-delay: 0.4s;
}

.reveal-delay-500 {
    transition-delay: 0.5s;
}

.form-honeypot {
    display: none !important;
}

.btn-block {
    width: 100%;
    justify-content: center;
    padding: 1rem;
}

.loader {
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: #fff;
    animation: spin 1s ease-in-out infinite;
    display: none;
    margin-left: 10px;
}

[data-async-form].is-submitting .loader {
    display: inline-block;
}

.reveal-image-wrap {
    display: block;
    overflow: hidden;
    border-radius: inherit;
}

.reveal-image-wrap img {
    display: block;
    width: 100%;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
}

.logo {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-panel-header,
.nav-mobile-cta,
.dropdown-toggle,
.mobile-menu-btn {
    display: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-links > li {
    display: flex;
    align-items: center;
}

.nav-links > li > a,
.dropdown-parent-link {
    display: inline-flex;
    align-items: center;
    font-weight: 500;
    line-height: 1.2;
    color: var(--gray);
    position: relative;
}

.nav-links > li > a:hover,
.nav-links > li > a.active,
.dropdown-parent-link:hover,
.dropdown-parent-link.active {
    color: var(--light);
}

.nav-links > li > a::after,
.dropdown-parent-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links > li > a:hover::after,
.dropdown-parent-link:hover::after {
    width: 100%;
}

.dropdown-trigger {
    position: relative;
}

.dropdown-trigger::after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 1rem;
}

.dropdown-link-group {
    display: flex;
    align-items: center;
}

.dropdown-parent-link {
    gap: 0.35rem;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1.25rem;
    padding: 1rem;
    width: 290px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.dropdown-trigger:hover .dropdown-menu,
.dropdown-trigger:focus-within .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    padding: 0.8rem 1.25rem;
    color: var(--gray);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 0.75rem;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
    gap: 0.75rem;
}

.nav-icon {
    font-size: 1rem;
    width: 20px;
    display: flex;
    justify-content: center;
    color: var(--primary);
    opacity: 0.8;
    transition: transform 0.3s;
}

.dropdown-menu a:hover .nav-icon i {
    display: none;
}

.nav-emoji {
    display: none;
    font-size: 1.2rem;
    line-height: 1;
}

.dropdown-menu a:hover .nav-emoji {
    display: inline-block;
    transform: scale(1.2);
}

.dropdown-menu a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--light);
    transform: translateX(5px);
}

.dropdown-menu a:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary);
    border-radius: 0 4px 4px 0;
}

.dropdown-menu a::after {
    display: none;
}

.arrow {
    font-size: 0.8em;
    display: inline-block;
    transition: transform 0.3s ease;
}

.dropdown-trigger:hover .arrow-link,
.dropdown-trigger:focus-within .arrow-link {
    transform: rotate(180deg);
}

.navbar-cta {
    flex-shrink: 0;
}

.mobile-menu-btn {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    width: 52px;
    height: 52px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    position: relative;
    z-index: 1002;
}

.mobile-menu-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--light);
    border-radius: 999px;
    transition: var(--transition);
}

.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 25, 0.58);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 999;
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

.dropdown-toggle:focus-visible,
.mobile-menu-btn:focus-visible,
.nav-links a:focus-visible,
.dropdown-menu a:focus-visible,
.nav-mobile-cta:focus-visible,
.navbar-cta:focus-visible,
.faq-trigger:focus-visible,
.faq-quicklink:focus-visible {
    outline: 2px solid var(--primary);
    outline-offset: 3px;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 80px;
    overflow: hidden;
    background: var(--dark);
}

.hero-inner {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 900px;
}

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

.hero-title {
    font-size: clamp(3.5rem, 8vw, 6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 700px;
    line-height: 1.6;
}

.hero-bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    perspective: 1000px;
    overflow: hidden;
    background: radial-gradient(circle at 50% 0%, rgba(15, 23, 42, 0) 0%, rgba(15, 23, 42, 1) 90%);
}

.grid-plane {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(0, 124, 194, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 124, 194, 0.3) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg) translateY(-100px);
    transform-origin: 50% 0;
    mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 20%, black 60%, transparent 100%);
    opacity: 0.42;
}

.hero-glow-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(0, 124, 194, 0.12) 0%, transparent 70%);
    filter: blur(44px);
    pointer-events: none;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding: 1.5rem 3rem;
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 1rem;
}

.hero-stats .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-stats .stat-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--light);
}

.hero-stats .stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    align-self: center;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-text {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    font-size: 1.125rem;
    color: var(--gray);
}

.stats-grid {
    display: flex;
    gap: 4rem;
    margin-top: 3rem;
}

.stats-grid .stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stats-grid .stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray);
}

.about-image-container {
    position: relative;
}

.about-image-card {
    padding: 0.5rem;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 1rem;
    display: block;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-icon {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.service-icon i {
    color: var(--primary);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.service-emoji {
    display: none;
    font-size: 2.5rem;
    line-height: 1;
}

.service-card:hover .service-icon i {
    display: inline;
}

.service-card:hover .service-emoji {
    display: none;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 2rem;
    font-size: 0.95rem;
    min-height: 3em;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border-top: 1px solid var(--glass-border);
    padding-top: 1.5rem;
}

.service-features li {
    font-size: 0.9rem;
    color: var(--light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-features li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--secondary);
    font-size: 0.8rem;
}

.technos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.tech-card {
    height: 100%;
}

.tech-card-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 1rem;
    background: rgba(51, 163, 220, 0.12);
    color: var(--primary);
    font-size: 1.35rem;
}

.tech-card h3 {
    margin-bottom: 0.75rem;
}

.tech-card p {
    margin-bottom: 1.5rem;
    color: var(--gray);
}

.tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.tech-badges span {
    padding: 0.45rem 0.8rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.85rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--gray);
    margin: 1.5rem 0 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-item .icon {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--secondary);
}

.contact-item h4 {
    margin-bottom: 0.25rem;
}

.contact-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

.contact-form,
.application-form {
    display: flex;
    flex-direction: column;
}

.contact-form {
    gap: 1.5rem;
}

.application-form {
    gap: 2rem;
    padding: 3rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.application-form .form-row {
    gap: 2rem;
}

.contact-form label,
.application-form label {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--light);
}

.application-form .form-group label {
    font-size: 0.95rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--gray);
    font-weight: 500;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.8rem 1rem;
    border-radius: 0.75rem;
    color: var(--light);
    font-family: inherit;
    transition: var(--transition);
}

.application-form input[type="text"],
.application-form input[type="email"],
.application-form input[type="tel"],
.application-form textarea {
    width: 100%;
    background: rgba(15, 23, 42, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.25rem;
    font-size: 1rem;
    border-radius: 0.75rem;
    color: var(--light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.application-form input:focus,
.application-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);
}

.application-form input:focus,
.application-form textarea:focus {
    background: rgba(15, 23, 42, 0.6);
    box-shadow: 0 0 0 4px rgba(0, 124, 194, 0.15);
}

.page-hero {
    padding: 180px 0 100px;
    text-align: center;
    background: radial-gradient(circle at 50% 0%, rgba(0, 124, 194, 0.15) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.03) 0%, transparent 60%);
    transform: rotate(30deg);
    pointer-events: none;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    position: relative;
}

.page-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 187, 235, 0.35);
    box-shadow: 0 16px 28px -18px rgba(0, 0, 0, 0.28);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: var(--primary);
    filter: drop-shadow(0 0 15px rgba(0, 124, 194, 0.2));
}

.value-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: var(--light);
}

.value-card p {
    color: var(--gray);
    line-height: 1.7;
}

.application-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.file-upload-wrapper {
    position: relative;
    height: 120px;
    background: rgba(15, 23, 42, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.file-upload-wrapper:hover {
    border-color: var(--primary);
    background: rgba(0, 124, 194, 0.05);
}

.file-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
    z-index: 2;
}

.file-upload-visual {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--gray);
    pointer-events: none;
    transition: color 0.3s ease;
}

.file-upload-visual .icon {
    font-size: 2rem;
    transition: color 0.22s ease;
}

.file-upload-wrapper:hover .file-upload-visual .icon {
    color: var(--primary);
}

.file-upload-visual.has-file {
    color: var(--primary);
    background: rgba(0, 124, 194, 0.1);
}

.blog-hero {
    padding-top: 151px;
    padding-bottom: 100px;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.blog-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.12);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.02);
}

.blog-content {
    padding: 1.5rem 2rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.85rem;
}

.blog-category {
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-date {
    opacity: 0.6;
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-date::before {
    content: '\f017';
    font-family: 'Font Awesome 6 Free';
    font-weight: 400;
    font-size: 0.8rem;
}

.blog-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.read-more {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    margin-top: auto;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover {
    color: var(--secondary);
    transform: translateX(2px);
}

.read-more i {
    font-size: 0.8rem;
}

.blog-related-link {
    margin-top: 0.9rem;
    color: var(--primary-light);
    font-weight: 600;
}

.blog-related-link:hover {
    color: var(--primary);
}

.blog-seo-links {
    margin-top: 3rem;
    text-align: center;
}

.blog-seo-links h2 {
    margin-bottom: 1rem;
}

.blog-seo-links p {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.blog-link-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.blog-link-chip {
    padding: 0.75rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.04);
}

.blog-link-chip:hover {
    border-color: var(--primary);
    color: var(--light);
}

.faq-hero {
    padding-top: 151px;
    padding-bottom: 100px;
}

.faq-container {
    max-width: 880px;
    margin: 0 auto;
}

.faq-overview {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    max-width: 880px;
    margin: 2rem auto 1.5rem;
}

.faq-overview-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 1.25rem;
    padding: 1.2rem 1.25rem;
    text-align: center;
}

.faq-overview-card strong {
    display: block;
    color: var(--light);
    font-size: 1.2rem;
    margin-bottom: 0.35rem;
}

.faq-overview-card span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.faq-quicklinks {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    max-width: 880px;
    margin: 0 auto 3rem;
}

.faq-quicklink {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0.7rem 1rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--gray);
    transition: var(--transition);
}

.faq-quicklink:hover {
    color: var(--light);
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.08);
}

.faq-category-head {
    margin-bottom: 1.5rem;
}

.faq-category-head h2 {
    margin-bottom: 0.65rem;
    color: var(--accent-color);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.faq-category-head p {
    color: rgba(255, 255, 255, 0.72);
    max-width: 680px;
}

.faq-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 1rem;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-card:hover,
.faq-card.is-open {
    border-color: rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
}

.faq-trigger {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    padding: 1.35rem 1.5rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
}

.faq-question {
    flex: 1;
}

.faq-icon {
    flex-shrink: 0;
    font-size: 1rem;
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding-bottom 0.3s ease;
    padding: 0 1.5rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

.faq-answer p {
    margin: 0;
}

.faq-card.is-open .faq-icon {
    transform: rotate(45deg);
}

.faq-card.is-open .faq-answer {
    max-height: 420px;
    padding-bottom: 1.5rem;
}

.faq-cta {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.01) 100%);
    border-radius: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer {
    padding: 6rem 0 3rem;
    border-top: 1px solid var(--glass-border);
    background: rgba(0, 0, 0, 0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-desc {
    color: var(--gray);
    max-width: 320px;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.social-links a:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.footer-links h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--gray);
}

.footer-links a:hover {
    color: var(--light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-meta-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.9rem 1.5rem;
    margin-top: 1rem;
}

.footer-meta-links a {
    color: var(--gray);
}

.footer-meta-links a:hover {
    color: var(--light);
}

.contact-page-hero {
    padding: 151px 0 2rem;
}

.contact-page-body {
    padding-top: 1rem;
}

.legal-hero {
    padding-top: 151px;
    padding-bottom: 2.5rem;
}

.legal-hero-content {
    max-width: 860px;
}

.legal-kicker {
    display: inline-flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: var(--primary-light);
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.legal-lead {
    max-width: 760px;
    font-size: 1.08rem;
    color: var(--gray);
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.75fr);
    gap: 2rem;
    align-items: start;
}

.legal-main {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-card {
    padding: 2rem;
}

.legal-card h2,
.legal-sidebar-card h2 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
}

.legal-card p + p {
    margin-top: 0.9rem;
}

.legal-list {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    margin-top: 1rem;
}

.legal-list li {
    position: relative;
    padding-left: 1.15rem;
    color: var(--gray-light);
}

.legal-list li::before {
    content: '';
    position: absolute;
    top: 0.72rem;
    left: 0;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary);
}

.legal-sidebar {
    position: sticky;
    top: 128px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.legal-sidebar-card {
    padding: 1.75rem;
}

.legal-sidebar-card p {
    color: var(--gray);
}

.legal-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.25rem;
}

.legal-contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.legal-contact-item strong {
    color: var(--light);
    font-size: 0.92rem;
}

.legal-contact-item a,
.legal-contact-item span {
    color: var(--gray-light);
    word-break: break-word;
}

.legal-contact-item a:hover {
    color: var(--light);
}

.legal-note-card {
    background: rgba(255, 255, 255, 0.03);
}

.error-404 {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 151px;
}

.error-code {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.error-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.error-text {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.error-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

@media (max-width: 992px) {
    .navbar {
        padding: 1rem 0;
    }

    .navbar-inner {
        gap: 1rem;
    }

    .navbar-cta {
        display: none;
    }

    .mobile-menu-btn {
        display: inline-flex;
    }

    .nav-panel {
        position: fixed;
        top: 0;
        right: -100%;
        height: 100dvh;
        width: min(100%, 360px);
        padding: 5.5rem 1.25rem 1.5rem;
        background: rgba(15, 23, 42, 0.96);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-left: 1px solid var(--glass-border);
        box-shadow: -14px 0 36px rgba(0, 0, 0, 0.45);
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 1.25rem;
        transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1001;
    }

    .nav-panel.active {
        right: 0;
    }

    .nav-panel-header {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
        padding: 0 0.25rem;
    }

    .nav-panel-eyebrow {
        color: var(--primary-light);
        font-size: 0.8rem;
        letter-spacing: 0.12em;
        text-transform: uppercase;
    }

    .nav-panel-title {
        font-size: 1.35rem;
        color: var(--light);
    }

    .nav-links {
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .nav-links > li > a,
    .dropdown-parent-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        min-height: 56px;
        padding: 0.95rem 1rem;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.06);
        color: var(--light);
    }

    .nav-links > li > a::after,
    .dropdown-parent-link::after {
        display: none;
    }

    .dropdown-trigger {
        width: 100%;
        padding-bottom: 0;
    }

    .dropdown-trigger::after {
        display: none;
    }

    .dropdown-link-group {
        position: relative;
        display: block;
        width: 100%;
    }

    .dropdown-parent-link {
        width: 100%;
        justify-content: flex-start;
        padding-right: 4.5rem;
    }

    .arrow-link {
        display: none;
    }

    .dropdown-toggle {
        display: inline-flex;
        position: absolute;
        top: 50%;
        right: 0.75rem;
        transform: translateY(-50%);
        align-items: center;
        justify-content: center;
        width: 40px;
        min-width: 40px;
        height: 40px;
        border-radius: 0.85rem;
        border: 1px solid rgba(255, 255, 255, 0.06);
        background: rgba(255, 255, 255, 0.02);
        color: var(--light);
        cursor: pointer;
        z-index: 1;
    }

    .dropdown-toggle[aria-expanded="true"] .arrow {
        transform: rotate(180deg);
    }

    .dropdown-menu {
        position: static;
        left: auto;
        top: auto;
        transform: none;
        width: 100%;
        padding: 0;
        margin-top: 0;
        background: transparent;
        border: none;
        box-shadow: none;
        display: flex;
        opacity: 1;
        visibility: visible;
        overflow: hidden;
        max-height: 0;
        gap: 0.55rem;
        transition: max-height 0.3s ease, margin-top 0.3s ease;
    }

    .dropdown-trigger:hover .dropdown-menu,
    .dropdown-trigger:focus-within .dropdown-menu,
    .dropdown-trigger.is-open .dropdown-menu {
        left: auto;
        transform: none;
        max-height: 420px;
        margin-top: 0.8rem;
    }

    .dropdown-menu a {
        width: 100%;
        padding: 0.85rem 1rem;
        margin-bottom: 0;
        border-radius: 1rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        text-align: left;
        transform: none;
    }

    .dropdown-menu a:hover {
        transform: none;
    }

    .nav-mobile-cta {
        display: inline-flex;
        justify-content: center;
        margin-top: auto;
        width: 100%;
    }

    .mobile-menu-btn.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .about-wrapper,
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-image-container {
        order: -1;
    }

    .stats-grid {
        justify-content: center;
        flex-wrap: wrap;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    .btn-lg {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        width: 100%;
        justify-content: space-around;
        padding: 1.5rem;
        gap: 1rem;
    }

    .stat-divider {
        display: none;
    }

    .services-grid,
    .blog-grid,
    .faq-overview,
    .form-row {
        grid-template-columns: 1fr;
    }

    .page-hero {
        padding: 140px 0 60px;
    }

    .page-title {
        font-size: 2.5rem !important;
    }

    .application-form {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .blog-link-grid {
        justify-content: stretch;
    }

    .faq-hero {
        padding-top: 128px;
        padding-bottom: 80px;
    }

    .faq-trigger {
        padding: 1.15rem 1.1rem;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 1.1rem;
    }

    .faq-card.is-open .faq-answer {
        max-height: 540px;
        padding-bottom: 1.2rem;
    }

    .footer {
        padding: 4rem 0 2rem;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .footer-brand,
    .footer-links {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer .logo-img {
        margin: 0 auto 1.5rem;
    }

    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-sidebar {
        position: static;
    }

    .error-title {
        font-size: 2rem;
    }

    .error-actions {
        flex-direction: column;
    }
}
