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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #F0F5FA 0%, #E8F0F7 100%);
    color: #0A1A2A;
    line-height: 1.5;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

:root {
    --primary-dark: #0C2B4B;
    --primary: #1E4A76;
    --primary-light: #2E5F8E;
    --accent: #B8863F;
    --accent-light: #DAA75D;
    --text-dark: #0A1A2A;
    --text-muted: #2C4A5E;
    --bg-card: #FFFFFF;
    --border-light: #C8D9E9;
    --bg-soft: #E1EBF5;
}

.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.appear {
    opacity: 1;
    transform: translateY(0);
}

.header {
    padding: 24px 0;
    background-color: var(--bg-card);
    border-bottom: 2px solid var(--border-light);
    box-shadow: 0 4px 15px rgba(0,20,40,0.05);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px 20px;
}

.logo {
    font-weight: 700;
    font-size: 30px;
    color: var(--primary-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.logo span {
    font-weight: 400;
    font-size: 15px;
    color: var(--primary);
    margin-left: 10px;
}

.trust-badge {
    display: flex;
    gap: 24px;
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 500;
    flex-wrap: wrap;
}

.trust-badge i {
    color: var(--accent);
    width: 18px;
    margin-right: 6px;
}

.trust-badge span {
    display: inline-flex;
    align-items: center;
    background: rgba(184, 134, 63, 0.08);
    padding: 6px 14px;
    border-radius: 40px;
}

.hero {
    padding: 60px 0 50px;
    background-color: var(--bg-card);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px 60px;
    align-items: start;
}

.hero-content {
    max-width: 550px;
}

.hero-title {
    font-size: clamp(38px, 5vw, 54px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.hero-title .accent {
    color: var(--primary-dark);
    border-bottom: 4px solid var(--accent);
    display: inline-block;
    padding-bottom: 6px;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 32px;
    padding: 22px 26px;
    background: var(--bg-soft);
    border-radius: 20px;
    border-left: 5px solid var(--accent);
    font-weight: 500;
    box-shadow: 0 8px 20px rgba(0,30,50,0.08);
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dark);
    color: white;
    font-weight: 600;
    font-size: 18px;
    padding: 18px 38px;
    border-radius: 50px;
    text-decoration: none;
    border: none;
    box-shadow: 0 12px 25px -5px rgba(12, 43, 75, 0.3);
    transition: all 0.25s ease;
    cursor: pointer;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

.btn-primary i {
    margin-left: 10px;
    transition: transform 0.2s;
}

.btn-primary:hover {
    background: var(--primary);
    box-shadow: 0 18px 30px -5px rgba(12, 43, 75, 0.4);
    transform: scale(1.02);
}

.btn-primary:hover i {
    transform: translateX(6px);
}

.passport-card {
    background: var(--bg-card);
    border-radius: 32px;
    padding: 30px;
    box-shadow: 0 25px 40px -12px rgba(10, 37, 64, 0.25);
    border: 1px solid var(--border-light);
    max-width: 420px;
    width: 100%;
    justify-self: end;
    transition: all 0.3s;
}

.passport-card:hover {
    box-shadow: 0 30px 50px -12px rgba(10, 37, 64, 0.35);
    transform: translateY(-4px);
}

.passport-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-light);
}

.passport-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-soft);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 28px;
}

.passport-header h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
}

.passport-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 4px;
}

.passport-details {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
}

.detail-label {
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.detail-label i {
    color: var(--accent);
    width: 18px;
    font-size: 15px;
}

.detail-value {
    font-weight: 600;
    color: var(--text-dark);
    background: var(--bg-soft);
    padding: 5px 14px;
    border-radius: 40px;
    font-size: 15px;
}

.benefits {
    padding: 70px 0;
    background: linear-gradient(135deg, #E1EBF5 0%, #D5E2F0 100%);
}

.section-title {
    font-size: clamp(30px, 4.5vw, 40px);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    text-align: center;
}

.section-sub {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 50px;
    font-size: 18px;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

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

.benefit-item {
    background: white;
    padding: 30px 25px;
    border-radius: 28px;
    border: 1px solid var(--border-light);
    transition: all 0.25s;
    box-shadow: 0 10px 25px -8px rgba(0,30,50,0.15);
}

.benefit-item:hover {
    border-color: var(--accent);
    box-shadow: 0 20px 35px -10px rgba(12, 43, 75, 0.2);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 26px;
    margin-bottom: 22px;
}

.benefit-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.benefit-item p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.5;
}

.trust {
    padding: 70px 0;
    background: white;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    background: linear-gradient(135deg, #E8F0F7 0%, #DCE8F2 100%);
    border-radius: 60px;
    padding: 50px 50px;
    max-width: 1000px;
    margin: 0 auto;
    border: 1px solid var(--border-light);
    box-shadow: 0 20px 40px -12px rgba(0,30,50,0.2);
}

.trust-item {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 10px 5px;
}

.trust-item i {
    font-size: 42px;
    color: var(--primary-dark);
    min-width: 50px;
    text-align: center;
}

.trust-item h4 {
    font-size: 19px;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-dark);
}

.trust-item p {
    color: var(--text-muted);
    font-size: 15px;
    font-weight: 500;
}

.footer {
    padding: 45px 0 25px;
    border-top: 2px solid var(--border-light);
    background: white;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px 40px;
    margin-bottom: 35px;
}

.footer-links {
    display: flex;
    gap: 35px;
    flex-wrap: wrap;
    align-items: center;
}

.footer-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

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

.footer-links span {
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    width: 46px;
    height: 46px;
    background: var(--bg-soft);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-dark);
    font-size: 22px;
    transition: all 0.25s;
    text-decoration: none;
    border: 1px solid var(--border-light);
}

.social-icons a:hover {
    background: var(--primary-dark);
    color: white;
    transform: translateY(-4px);
    border-color: var(--primary-dark);
}

.copyright {
    text-align: center;
    color: var(--text-muted);
    font-size: 13px;
    border-top: 1px solid var(--border-light);
    padding-top: 25px;
}

@media (max-width: 900px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .hero-content {
        max-width: 100%;
    }
    .passport-card {
        justify-self: start;
        max-width: 100%;
    }
    .benefits-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 650px) {
    .benefits-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }
    .trust-grid {
        padding: 30px 20px;
    }
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .trust-badge {
        width: 100%;
        justify-content: flex-start;
    }
    .hero-title {
        font-size: 34px;
    }
    .btn-primary {
        width: 100%;
        white-space: normal;
        padding: 16px 24px;
    }
}

@media (max-width: 480px) {
    .trust-badge {
        flex-direction: column;
        gap: 10px;
    }
    .trust-badge span {
        width: fit-content;
    }
    .passport-header {
        flex-wrap: wrap;
    }
    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .footer-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}
