/* =============================================
   Innotech - Main Stylesheet
   Unified styles for all pages
   ============================================= */

/* === RESET & BASE === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: #f8f9fa;
    min-height: 100vh;
    color: #333;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
}

a {
    text-decoration: none;
    color: inherit;
}

/* === TICKER === */
.ticker {
    background: linear-gradient(90deg, #1a365d 0%, #234e82 50%, #1a365d 100%);
    padding: 12px 0;
    overflow: hidden;
    position: relative;
}

.ticker-track {
    display: flex;
    animation: ticker 30s linear infinite;
    width: max-content;
}

.ticker-track:hover {
    animation-play-state: paused;
}

@keyframes ticker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.ticker-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    white-space: nowrap;
    color: #fff;
    font-size: 14px;
}

.ticker-pair {
    font-weight: 500;
}

.ticker-rate {
    color: rgba(255, 255, 255, 0.7);
}

.ticker-change {
    font-size: 12px;
}

.ticker-change.up { color: #22c55e; }
.ticker-change.down { color: #ef4444; }

/* === HEADER === */
#site-header {
    position: relative;
    z-index: 9999;
}

.site-header {
    background: linear-gradient(135deg, #1a365d 0%, #234e82 100%);
    padding: 15px 0;
    position: relative;
    z-index: 9999;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
}

.logo svg {
    width: 28px;
    height: 28px;
}

/* Header Right (lang + auth) */
.header-right {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-left: auto;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    gap: 5px;
}

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 4px 8px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.2s;
}

.lang-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn.active {
    color: #fff;
    background: rgba(255, 255, 255, 0.2);
}

.nav-auth {
    display: flex;
    gap: 10px;
    align-items: center;
    overflow: visible;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 6px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.2s;
}

.btn-nav:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.6);
}

.btn-nav-primary {
    background: #F97316;
    border-color: #F97316;
    color: #fff;
}

.btn-nav-primary:hover {
    background: #ea580c;
    border-color: #ea580c;
}


/* Auth Dropdown */
.auth-dropdown {
    position: relative;
    overflow: visible;
}

.auth-trigger {
    gap: 8px;
}

.auth-arrow {
    font-size: 10px;
    opacity: 0.8;
    transition: transform 0.2s;
}

.auth-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s;
    z-index: 10000;
    overflow: hidden;
}

.auth-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.auth-menu a {
    display: block;
    padding: 12px 20px;
    color: #333 !important;
    font-size: 14px;
    font-weight: 500;
    transition: background 0.2s;
}

.auth-menu a:hover {
    background: #f5f5f5;
    color: #1a365d !important;
}

.auth-menu a:first-child {
    border-bottom: 1px solid #eee;
}

/* === BREADCRUMBS === */
.breadcrumbs-wrapper {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-bottom: 1px solid #e0e0e0;
}

.breadcrumbs {
    max-width: 1400px;
    margin: 0 auto;
    padding: 12px 40px;
}

.breadcrumbs-container {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb-home:hover {
    color: #1a365d;
}

.breadcrumb-home svg {
    opacity: 0.7;
}

.breadcrumb-home:hover svg {
    opacity: 1;
}

.breadcrumb-separator {
    display: flex;
    align-items: center;
    color: #999;
}

.breadcrumb-separator svg {
    width: 14px;
    height: 14px;
}

.breadcrumb-current {
    color: #1a365d;
    font-weight: 500;
}

/* === FOOTER === */
.site-footer {
    background: linear-gradient(135deg, #0A1A3A 0%, #1a365d 100%);
    padding: 50px 20px 0;
    color: #fff;
    margin-top: auto;
    overflow-x: hidden;
}

.footer-content-full {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    margin-bottom: 15px;
}

.footer-logo svg {
    flex-shrink: 0;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 20px;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-section ul li a:hover {
    color: #00D4FF;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    text-align: center;
}

.footer-copy {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #00D4FF;
}

/* === MAIN CONTENT === */
.main-content {
    flex: 1;
    padding: 40px 20px;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 50px;
}

.container-wide {
    max-width: 1200px;
}

/* === TYPOGRAPHY === */
h1 {
    font-size: 32px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

h2 {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    margin-top: 35px;
    margin-bottom: 15px;
}

h3 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-top: 20px;
    margin-bottom: 10px;
}

p {
    margin-bottom: 15px;
    color: #444;
}

ul, ol {
    margin-bottom: 15px;
    padding-left: 25px;
}

li {
    margin-bottom: 8px;
    color: #444;
}

.last-updated {
    color: #888;
    font-size: 14px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

/* === HIGHLIGHT BOXES === */
.highlight {
    background: #f0f9ff;
    border-left: 4px solid #00D4FF;
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 0 8px 8px 0;
}

.highlight p {
    margin: 0;
}

.highlight-warning {
    background: #fef3c7;
    border-left-color: #f59e0b;
}

.highlight-orange {
    background: #fff8f0;
    border-left-color: #F97316;
}

.info-box {
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
}

.info-box h4 {
    color: #0369a1;
    margin-bottom: 10px;
    font-size: 16px;
}

/* === TABLES === */
table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

th, td {
    border: 1px solid #e0e0e0;
    padding: 12px 15px;
    text-align: left;
}

th {
    background: #f8f9fa;
    font-weight: 600;
    color: #1a365d;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 500;
    border: 2px solid #1a365d;
    border-radius: 25px;
    background: transparent;
    color: #1a365d;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn:hover {
    background: #1a365d;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(26, 54, 93, 0.3);
}

.btn-primary {
    background: linear-gradient(135deg, #1a365d 0%, #234e82 100%);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 2px 8px rgba(26, 54, 93, 0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #234e82 0%, #2d5a87 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 54, 93, 0.35);
}

/* === HERO SECTION === */
.hero {
    background: linear-gradient(135deg, #1a365d 0%, #234e82 50%, #1a365d 100%);
    padding: 80px 20px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.hero p {
    font-size: 18px;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: #fff;
}

/* === CARDS === */
.card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

/* === VERIFICATION LEVELS === */
.verification-levels {
    display: grid;
    gap: 20px;
    margin: 25px 0;
}

.level-card {
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px;
    background: #fafafa;
}

.level-card h4 {
    color: #1a365d;
    font-size: 18px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.level-badge {
    background: #F97316;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.level-badge.basic { background: #22c55e; }
.level-badge.advanced { background: #3b82f6; }
.level-badge.premium { background: #8b5cf6; }

/* === LICENSE/COMPLIANCE ITEMS === */
.license-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.license-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
}

.license-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    flex-shrink: 0;
}

.license-text h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
}

.license-text p {
    font-size: 13px;
    color: #666;
    margin: 0;
}

/* === GRID LAYOUTS === */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* === STATS === */
.stats {
    background: linear-gradient(135deg, #1a365d 0%, #234e82 100%);
    border-radius: 20px;
    padding: 50px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    color: #fff;
}

.stat-value {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #00D4FF;
}

.stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* === CONTACT CARDS === */
.contact-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d, #234e82);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.contact-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 10px;
}

.contact-card p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.contact-card a {
    color: #234e82;
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    color: #00D4FF;
}

/* === INFO LIST === */
.info-list {
    list-style: none;
    padding: 0;
}

.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 15px;
    color: #444;
}

.info-list li span {
    color: #22c55e;
    font-size: 18px;
}

/* === HOURS BLOCK === */
.hours-block {
    background: linear-gradient(135deg, #1a365d 0%, #234e82 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.hours-block h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    color: #fff;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
}

.hours-item .day {
    font-weight: 500;
}

.hours-item .time {
    color: #00D4FF;
    font-weight: 600;
}

/* === VALUE CARDS === */
.value-card {
    background: #fff;
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #1a365d, #234e82);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
}

.value-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 12px;
}

.value-card p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* === MOBILE RESPONSIVE === */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }

    .header-container {
        padding: 0 15px;
    }

    .btn-nav {
        padding: 8px 12px;
        font-size: 12px;
    }

    .auth-arrow {
        display: none;
    }

    .auth-trigger {
        white-space: nowrap;
    }

    .breadcrumbs {
        padding: 10px 15px;
    }

    .breadcrumb-item {
        font-size: 12px;
    }

    .breadcrumb-home span {
        display: none;
    }

    .main-content {
        padding: 20px 15px;
    }

    .container {
        padding: 25px 20px;
        border-radius: 12px;
    }

    h1 {
        font-size: 24px;
    }

    h2 {
        font-size: 18px;
    }

    .hero {
        padding: 50px 20px;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    table {
        font-size: 13px;
    }

    th, td {
        padding: 8px 10px;
    }

    .footer-content-full {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        max-width: 100%;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }

    .footer-section {
        text-align: center;
    }

    .grid-2, .grid-3, .license-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 30px 20px;
        gap: 20px;
    }

    .stat-value {
        font-size: 28px;
    }

    .hours-grid {
        grid-template-columns: 1fr;
    }

    .hours-block {
        padding: 30px 20px;
    }
}

@media (max-width: 480px) {
    .btn-nav {
        padding: 6px 10px;
        font-size: 11px;
    }

    .logo {
        font-size: 16px;
        gap: 6px;
    }

    .logo svg {
        width: 22px;
        height: 22px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 32px;
    }

    .value-icon, .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .footer-content-full {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-section {
        text-align: center;
    }

    .hours-item {
        flex-direction: column;
        text-align: center;
        gap: 5px;
    }
}

/* === FAQ SECTION === */
.faq-section {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    margin-bottom: 50px;
}

.faq-section h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0;
}

.faq-item {
    border-bottom: 1px solid #eee;
    padding: 20px 0;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question:hover {
    color: #1a365d;
}

.faq-question .arrow {
    font-size: 12px;
    transition: transform 0.3s;
}

.faq-item.open .faq-question .arrow {
    transform: rotate(180deg);
}

.faq-answer {
    font-size: 15px;
    color: #555;
    margin-top: 15px;
    display: none;
    line-height: 1.8;
}

.faq-item.open .faq-answer {
    display: block;
}

/* === ACTION CARDS === */
.action-card {
    background: #fff;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
    display: block;
}

.action-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.action-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1a365d, #234e82);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 28px;
}

.action-card h3 {
    font-size: 17px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
}

.action-card p {
    font-size: 14px;
    color: #666;
    margin: 0;
}

/* === CONTACT FORM === */
.contact-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.contact-form h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
    margin-top: 0;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 15px;
    transition: border-color 0.2s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a365d;
    box-shadow: 0 0 0 3px rgba(26, 54, 93, 0.1);
}

.form-group input.error {
    border-color: #ef4444;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-group .hint {
    font-size: 12px;
    color: #888;
    margin-top: 6px;
}

.form-group .error-text {
    font-size: 12px;
    color: #ef4444;
    margin-top: 6px;
    display: none;
}

.form-group .error-text.show {
    display: block;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, #1a365d, #234e82);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.submit-btn:hover {
    opacity: 0.9;
}

.submit-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.submit-btn.btn-orange {
    background: #F97316;
}

.submit-btn.btn-orange:hover {
    background: #ea580c;
}

/* === CONTACT INFO BLOCK === */
.contact-info {
    background: linear-gradient(135deg, #1a365d 0%, #234e82 100%);
    border-radius: 16px;
    padding: 40px;
    color: #fff;
}

.contact-info h2 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #fff;
    margin-top: 0;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.info-content p {
    font-size: 14px;
    opacity: 0.8;
    color: #fff;
}

.info-content a {
    color: #00D4FF;
    text-decoration: none;
}

.info-content a:hover {
    text-decoration: underline;
}

.response-time {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    margin-top: 30px;
}

.response-time h4 {
    font-size: 15px;
    margin-bottom: 10px;
    color: #1a365d;
}

.response-time p {
    font-size: 13px;
    color: #555;
}

/* === ALERTS === */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.alert.error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #dc2626;
}

.alert.success {
    background: #f0fdf4;
    border: 1px solid #bbf7d0;
    color: #16a34a;
}

.alert.show {
    display: block;
}

.success-message {
    display: none;
    background: #dcfce7;
    border: 1px solid #22c55e;
    color: #15803d;
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    text-align: center;
}

/* === AUTH CARD === */
.auth-main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.auth-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 40px;
    width: 100%;
    max-width: 440px;
}

.auth-card h1 {
    font-size: 28px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 8px;
    text-align: center;
}

.auth-card .subtitle {
    color: #666;
    font-size: 15px;
    text-align: center;
    margin-bottom: 32px;
}

.auth-footer {
    text-align: center;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #eee;
}

.auth-footer a {
    color: #1a365d;
    text-decoration: none;
    font-weight: 500;
}

.auth-footer a:hover {
    text-decoration: underline;
}

/* === MISSION BLOCK === */
.mission-block {
    background: #fff;
    border-radius: 16px;
    padding: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.mission-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 20px;
    margin-top: 0;
}

.mission-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
}

/* === LICENSES BLOCK === */
.licenses {
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.licenses h2 {
    font-size: 24px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
    margin-top: 0;
}

/* === SECTION === */
.section {
    margin-bottom: 60px;
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 25px;
    text-align: center;
}

.section-text {
    font-size: 16px;
    color: #555;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
}

/* === COMPANY DETAILS === */
.company-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.company-detail-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
}

.company-detail-block h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a365d;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* === ADDITIONAL RESPONSIVE === */
@media (max-width: 768px) {
    .contact-section {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .faq-section, .contact-form, .contact-info {
        padding: 20px;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .mission-block {
        padding: 25px;
    }

    .licenses {
        padding: 25px;
    }

    .company-details-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .auth-card h1 {
        font-size: 24px;
    }
}
