*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy: #0B1D3A;
    --blue-900: #0E2A52;
    --blue-800: #0F3468;
    --blue-700: #1450A0;
    --blue-600: #1A6ADB;
    --blue-500: #2E7FF2;
    --blue-400: #5A9DF5;
    --blue-300: #8BBDFA;
    --blue-200: #BDD8FC;
    --blue-100: #E3EFFE;
    --blue-50: #F0F6FF;
    --gray-900: #111827;
    --gray-700: #374151;
    --gray-600: #4B5563;
    --gray-500: #6B7280;
    --gray-400: #9CA3AF;
    --gray-300: #D1D5DB;
    --gray-200: #E5E7EB;
    --gray-100: #F3F4F6;
    --white: #FFFFFF;
    --shadow-sm: 0 1px 2px rgba(11,29,58,0.05);
    --shadow-md: 0 4px 12px rgba(11,29,58,0.08);
    --shadow-lg: 0 12px 32px rgba(11,29,58,0.12);
    --shadow-xl: 0 20px 48px rgba(11,29,58,0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

/* ---- NAV ---- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gray-200);
    transition: box-shadow 0.3s;
}
.nav.scrolled {
    box-shadow: var(--shadow-md);
}
.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-weight: 800;
    font-size: 20px;
    color: var(--navy);
}
.logo-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    font-weight: 800;
}
.logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
}
.nav-links a {
    text-decoration: none;
    color: var(--gray-600);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}
.nav-links a:hover {
    color: var(--blue-600);
}
.lang-toggle {
    display: flex;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 3px;
    gap: 2px;
}
.lang-btn {
    padding: 6px 14px;
    border: none;
    background: transparent;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--gray-500);
    transition: all 0.2s;
    font-family: inherit;
}
.lang-btn.active {
    background: var(--white);
    color: var(--blue-600);
    box-shadow: var(--shadow-sm);
}
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}
.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 6px 0;
    border-radius: 2px;
    transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
    padding: 160px 24px 96px;
    background: linear-gradient(165deg, var(--blue-50) 0%, var(--white) 50%, var(--blue-50) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(46,127,242,0.06) 0%, transparent 70%);
    border-radius: 50%;
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(20,80,160,0.04) 0%, transparent 70%);
    border-radius: 50%;
}
.hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--blue-100);
    color: var(--blue-700);
    padding: 6px 16px;
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
}
.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.hero h1 {
    font-size: 52px;
    font-weight: 800;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}
.hero h1 .highlight {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero p {
    font-size: 18px;
    color: var(--gray-600);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.7;
}
.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s;
    font-family: inherit;
    cursor: pointer;
    border: none;
}
.btn-primary {
    background: linear-gradient(135deg, var(--blue-600), var(--blue-500));
    color: var(--white);
    box-shadow: 0 4px 16px rgba(26,106,219,0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26,106,219,0.4);
}
.btn-secondary {
    background: var(--white);
    color: var(--navy);
    border: 1.5px solid var(--gray-300);
}
.btn-secondary:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}
.hero-visual {
    position: relative;
}
.hero-card {
    background: var(--white);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}
.hero-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.hero-card-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.hero-card-dot:nth-child(1) { background: #EF4444; }
.hero-card-dot:nth-child(2) { background: #F59E0B; }
.hero-card-dot:nth-child(3) { background: #22C55E; }
.hero-card-row {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid var(--gray-100);
}
.hero-card-row:last-child { border: none; }
.hero-card-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}
.hero-card-row-text {
    flex: 1;
}
.hero-card-row-text strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
    font-weight: 600;
}
.hero-card-row-text span {
    font-size: 12px;
    color: var(--gray-500);
}
.hero-card-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
}
.status-active {
    background: #DCFCE7;
    color: #166534;
}
.status-progress {
    background: var(--blue-100);
    color: var(--blue-700);
}
.status-review {
    background: #FEF3C7;
    color: #92400E;
}
.floating-card {
    position: absolute;
    background: var(--white);
    border-radius: 14px;
    padding: 16px 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    animation: float 6s ease-in-out infinite;
}
.floating-card-1 {
    top: -20px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.floating-card-2 {
    bottom: -16px;
    left: -20px;
    animation-delay: -3s;
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
.floating-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--blue-600);
}
.floating-label {
    font-size: 12px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ---- STATS BAR ---- */
.stats-bar {
    background: var(--navy);
    padding: 48px 24px;
}
.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}
.stat-item {
    color: var(--white);
}
.stat-number {
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 4px;
    background: linear-gradient(135deg, var(--blue-300), var(--blue-100));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-label {
    font-size: 14px;
    color: var(--blue-300);
    font-weight: 500;
}

/* ---- SECTIONS ---- */
.section {
    padding: 96px 24px;
}
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}
.section-tag {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    color: var(--blue-600);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-desc {
    font-size: 17px;
    color: var(--gray-500);
    line-height: 1.7;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}

/* ---- SERVICES ---- */
.services-section {
    background: var(--gray-100);
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.service-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 28px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-500), var(--blue-300));
    opacity: 0;
    transition: opacity 0.3s;
}
.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--blue-200);
}
.service-card:hover::before {
    opacity: 1;
}
.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 20px;
}
.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
}
.service-card p {
    font-size: 14px;
    color: var(--gray-500);
    line-height: 1.7;
}
.service-features {
    margin-top: 16px;
    list-style: none;
}
.service-features li {
    font-size: 13px;
    color: var(--gray-600);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.service-features li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--blue-400);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ---- EXPERIENCE / ABOUT ---- */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.experience-content h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 16px;
    line-height: 1.2;
}
.experience-content p {
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 24px;
    line-height: 1.7;
}
.experience-list {
    display: grid;
    gap: 16px;
}
.experience-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.experience-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--blue-100);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}
.experience-item-text strong {
    display: block;
    font-size: 15px;
    color: var(--navy);
    margin-bottom: 2px;
}
.experience-item-text span {
    font-size: 13px;
    color: var(--gray-500);
}
.experience-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.exp-stat-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    padding: 28px;
    text-align: center;
    transition: all 0.3s;
}
.exp-stat-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.exp-stat-card:nth-child(2) {
    margin-top: 24px;
}
.exp-stat-card:nth-child(3) {
    margin-top: -24px;
}
.exp-stat-number {
    font-size: 36px;
    font-weight: 800;
    color: var(--blue-600);
    margin-bottom: 4px;
}
.exp-stat-label {
    font-size: 13px;
    color: var(--gray-500);
    font-weight: 500;
}

/* ---- PROCESS ---- */
.process-section {
    background: linear-gradient(180deg, var(--navy) 0%, var(--blue-900) 100%);
    color: var(--white);
}
.process-section .section-tag {
    color: var(--blue-300);
}
.process-section .section-title {
    color: var(--white);
}
.process-section .section-desc {
    color: var(--blue-300);
}
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
}
.process-grid::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--blue-700), var(--blue-700), transparent);
}
.process-step {
    text-align: center;
    position: relative;
}
.process-number {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--blue-600), var(--blue-400));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 800;
    margin: 0 auto 20px;
    position: relative;
    z-index: 1;
}
.process-step h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}
.process-step p {
    font-size: 13px;
    color: var(--blue-300);
    line-height: 1.6;
}

/* ---- TESTIMONIALS ---- */
.testimonials-section {
    background: var(--blue-50);
}
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.testimonial-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px;
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
    position: relative;
}
.testimonial-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 16px;
}
.star {
    color: #F59E0B;
    font-size: 16px;
}
.testimonial-text {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}
.testimonial-text::before {
    content: '\201C';
    font-size: 48px;
    color: var(--blue-200);
    line-height: 0;
    display: block;
    margin-bottom: 8px;
    font-style: normal;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
}
.testimonial-author-info strong {
    display: block;
    font-size: 14px;
    color: var(--navy);
}
.testimonial-author-info span {
    font-size: 12px;
    color: var(--gray-500);
}

/* ---- CTA ---- */
.cta-section {
    background: linear-gradient(135deg, var(--blue-600) 0%, var(--blue-800) 100%);
    padding: 96px 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(255,255,255,0.05) 0%, transparent 50%);
}
.cta-content {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.cta-content h2 {
    font-size: 40px;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.15;
}
.cta-content p {
    font-size: 17px;
    color: var(--blue-200);
    margin-bottom: 40px;
    line-height: 1.7;
}
.btn-white {
    background: var(--white);
    color: var(--blue-700);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-outline-white {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--navy);
    padding: 64px 24px 32px;
    color: var(--blue-300);
}
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}
.footer-brand .logo {
    color: var(--white);
    margin-bottom: 16px;
}
.footer-brand .logo-img {
    filter: brightness(0) invert(1);
}
.footer-brand p {
    font-size: 14px;
    color: var(--blue-300);
    line-height: 1.7;
    max-width: 280px;
}
.footer-col h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.footer-col ul {
    list-style: none;
}
.footer-col li {
    margin-bottom: 10px;
}
.footer-col a {
    color: var(--blue-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.footer-col a:hover {
    color: var(--white);
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: rgba(139,189,250,0.6);
}
.social-links {
    display: flex;
    gap: 16px;
}
.social-links a {
    color: var(--blue-300);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}
.social-links a:hover {
    color: var(--white);
}

/* ---- MOBILE ---- */
.mobile-nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 16px 24px;
    z-index: 99;
    box-shadow: var(--shadow-lg);
}
.mobile-nav.open {
    display: block;
}
.mobile-nav a {
    display: block;
    padding: 12px 0;
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-bottom: 1px solid var(--gray-100);
}
.mobile-nav a:last-child {
    border: none;
}

@media (max-width: 1024px) {
    .hero h1 { font-size: 40px; }
    .hero-inner { grid-template-columns: 1fr; gap: 48px; }
    .hero-visual { max-width: 480px; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
    .process-grid::before { display: none; }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .experience-grid { grid-template-columns: 1fr; gap: 48px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-inner { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: block; }
    .hero { padding: 120px 24px 64px; }
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    .section { padding: 64px 24px; }
    .section-title { font-size: 28px; }
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .process-grid { grid-template-columns: 1fr; gap: 24px; }
    .experience-visual { grid-template-columns: 1fr 1fr; }
    .exp-stat-card:nth-child(2) { margin-top: 0; }
    .exp-stat-card:nth-child(3) { margin-top: 0; }
    .cta-content h2 { font-size: 28px; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn { text-align: center; justify-content: center; }
    .cta-buttons { flex-direction: column; align-items: center; }
    .floating-card { display: none; }
}

/* ---- MODAL ---- */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(11,29,58,0.6);
    z-index: 200;
    align-items: center;
    justify-content: center;
    padding: 24px;
    backdrop-filter: blur(4px);
}
.modal-overlay.open {
    display: flex;
}
.modal {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: var(--shadow-xl);
    animation: modal-in 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}
@keyframes modal-in {
    from { opacity: 0; transform: scale(0.95) translateY(16px); }
    to   { opacity: 1; transform: scale(1)    translateY(0);    }
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--gray-100);
    border: none;
    border-radius: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
    cursor: pointer;
    color: var(--gray-600);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    line-height: 1;
}
.modal-close:hover {
    background: var(--gray-200);
    color: var(--navy);
}
.modal h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 8px;
    padding-right: 40px;
}
.modal-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 16px;
}
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-300);
    border-radius: 10px;
    font-size: 14px;
    font-family: inherit;
    color: var(--gray-900);
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    background: var(--white);
    resize: vertical;
}
.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(46,127,242,0.12);
}
.form-status {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 8px;
    display: none;
}
.form-status.success {
    display: block;
    background: #DCFCE7;
    color: #166534;
}
.form-status.error {
    display: block;
    background: #FEE2E2;
    color: #991B1B;
}
.btn-form-submit {
    width: 100%;
    justify-content: center;
}
.btn-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* ---- ANIMATIONS ---- */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}
