/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a2e;
    background: #ffffff;
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 16px;
    line-height: 1.2;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-primary {
    background: #1a1a2e;
    color: #ffffff;
}

.btn-primary:hover {
    background: #2d2d4a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 26, 46, 0.20);
}

.btn-secondary {
    background: transparent;
    color: #1a1a2e;
    border: 2px solid #1a1a2e;
}

.btn-secondary:hover {
    background: #1a1a2e;
    color: #ffffff;
    transform: translateY(-2px);
}

/* ========== HEADER / NAV ========== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 14px 0;
    transition: background 0.3s ease;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 24px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -0.5px;
}

.logo-tagline {
    font-size: 12px;
    font-weight: 400;
    color: #6b6b7a;
    letter-spacing: 0.3px;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-list a {
    font-size: 15px;
    font-weight: 500;
    color: #1a1a2e;
    transition: color 0.2s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #1a1a2e;
    transition: width 0.25s ease;
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a.active {
    color: #1a1a2e;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 26px;
    height: 2.5px;
    background: #1a1a2e;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ========== HERO ========== */
.hero {
    padding: 160px 0 80px;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.hero-content {
    max-width: 820px;
}

.hero h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.hero h1 span {
    color: #4a6cf7;
    position: relative;
}

.hero p {
    font-size: 20px;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 680px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
    padding: 48px 0;
    background: #ffffff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    text-align: center;
}

.badge {
    display: flex;
    flex-direction: column;
}

.badge-number {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
}

.badge-label {
    font-size: 14px;
    color: #6b6b7a;
    font-weight: 400;
}

/* ========== SECTION TITLES ========== */
.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 18px;
    color: #4a4a5a;
    text-align: center;
    margin-bottom: 48px;
}

/* ========== SERVICES PREVIEW ========== */
.services-preview {
    padding: 80px 0;
    background: #f8f9fc;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.service-card {
    background: #ffffff;
    padding: 40px 32px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.service-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.service-card h3 {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #4a4a5a;
    line-height: 1.6;
    margin-bottom: 16px;
}

.service-link {
    font-weight: 600;
    font-size: 14px;
    color: #4a6cf7;
    transition: color 0.2s;
}

.service-link:hover {
    color: #1a1a2e;
}

/* ========== WHY EVERMONT ========== */
.why-evermont {
    padding: 80px 0;
    background: #ffffff;
}

.why-content {
    max-width: 720px;
    margin: 0 auto;
    text-align: center;
}

.why-content h2 {
    font-size: 38px;
    font-weight: 700;
    line-height: 1.2;
    color: #1a1a2e;
    margin-bottom: 16px;
}

.why-content h2 span {
    color: #4a6cf7;
}

.why-content p {
    font-size: 18px;
    color: #4a4a5a;
    margin-bottom: 32px;
}

/* ========== TESTIMONIALS ========== */
.testimonials {
    padding: 80px 0;
    background: #f8f9fc;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonials-grid blockquote {
    background: #ffffff;
    padding: 32px;
    border-radius: 16px;
    border-left: 4px solid #4a6cf7;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.testimonials-grid blockquote p {
    font-size: 16px;
    color: #1a1a2e;
    line-height: 1.6;
    margin-bottom: 12px;
    font-style: italic;
}

.testimonials-grid blockquote cite {
    font-size: 14px;
    font-weight: 500;
    color: #4a4a5a;
    font-style: normal;
}

/* ========== FINAL CTA ========== */
.final-cta {
    padding: 80px 0;
    background: #1a1a2e;
    text-align: center;
    color: #ffffff;
}

.final-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .btn-primary {
    background: #ffffff;
    color: #1a1a2e;
}

.final-cta .btn-primary:hover {
    background: #e8e8f0;
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.12);
}

/* ========== FOOTER ========== */
.footer {
    background: #12121e;
    color: rgba(255, 255, 255, 0.7);
    padding: 64px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.4);
}

.footer-brand p {
    font-size: 14px;
    margin-top: 12px;
    max-width: 280px;
}

.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.2s ease;
}

.footer-social a:hover {
    background: rgba(255, 255, 255, 0.12);
}

.footer-links h4,
.footer-contact h4 {
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 16px;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s ease;
}

.footer-links ul li a:hover {
    color: #ffffff;
}

.footer-contact p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s ease;
}

.footer-contact a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 24px;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.3);
}

/* ========== PAGE HERO (Inner Pages) ========== */
.page-hero {
    padding: 140px 0 56px;
    background: linear-gradient(160deg, #f8f9fc 0%, #ffffff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    text-align: center;
}

.page-hero h1 {
    font-size: 44px;
    font-weight: 800;
    color: #1a1a2e;
    letter-spacing: -1px;
}

.page-hero p {
    font-size: 18px;
    color: #4a4a5a;
    margin-top: 8px;
}

/* ========== ABOUT PAGE ========== */
.about-content {
    padding: 64px 0 80px;
}

.about-story {
    max-width: 820px;
    margin: 0 auto 64px;
    text-align: center;
}

.about-story h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
}

.about-story p {
    font-size: 17px;
    color: #4a4a5a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-values {
    margin-bottom: 64px;
}

.about-values h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    background: #f8f9fc;
    padding: 28px 24px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.value-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 14px;
    color: #4a4a5a;
    line-height: 1.6;
}

.about-team h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.team-member {
    text-align: center;
}

.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: #e8e8f0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120' viewBox='0 0 120 120'%3E%3Ccircle cx='60' cy='45' r='28' fill='%23c4c4d0'/%3E%3Cpath d='M10 105c0-22 22-40 50-40s50 18 50 40v15H10z' fill='%23c4c4d0'/%3E%3C/svg%3E");
    background-size: cover;
    background-position: center;
}

.team-member h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a2e;
}

.team-member .team-title {
    font-size: 14px;
    color: #4a6cf7;
    font-weight: 500;
    margin-bottom: 6px;
}

.team-member p {
    font-size: 14px;
    color: #4a4a5a;
    line-height: 1.5;
}

/* ========== SERVICES FULL ========== */
.services-full {
    padding: 64px 0 80px;
}

.service-detail {
    max-width: 760px;
    margin: 0 auto;
}

.service-detail h2 {
    font-size: 30px;
    font-weight: 700;
    color: #1a1a2e;
}

.service-detail .service-subtitle {
    font-size: 18px;
    color: #4a6cf7;
    font-weight: 500;
    margin-bottom: 16px;
    text-align: left;
}

.service-detail p {
    font-size: 17px;
    color: #4a4a5a;
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-features {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 24px;
}

.service-features li {
    font-size: 15px;
    color: #4a4a5a;
    line-height: 1.7;
}

.services-full hr {
    max-width: 760px;
    margin: 56px auto;
    border: 0;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

/* ========== CAREERS PAGE ========== */
.careers-content {
    padding: 64px 0 80px;
    text-align: center;
}

.careers-intro {
    max-width: 680px;
    margin: 0 auto 48px;
}

.careers-intro p {
    font-size: 18px;
    color: #4a4a5a;
    line-height: 1.7;
}

.openings h2 {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.openings-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
}

.openings-list li {
    font-size: 16px;
    color: #1a1a2e;
    padding: 8px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    width: 100%;
    max-width: 400px;
}

.careers-note {
    margin-top: 20px;
    font-size: 15px;
    color: #6b6b7a;
}

/* ========== CONTACT PAGE ========== */
.contact-content {
    padding: 64px 0 80px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
}

.contact-form h2,
.contact-info h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d4d4e0;
    border-radius: 8px;
    font-family: inherit;
    font-size: 15px;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a6cf7;
}

.contact-info p {
    font-size: 15px;
    color: #4a4a5a;
    margin-bottom: 12px;
}

.contact-info a {
    color: #4a6cf7;
}

.contact-info a:hover {
    color: #1a1a2e;
}

/* ========== APPLY PAGE ========== */
.apply-content {
    padding: 64px 0 80px;
}

.apply-form {
    max-width: 720px;
    margin: 0 auto;
    background: #f8f9fc;
    padding: 48px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.apply-form fieldset {
    border: none;
    margin-bottom: 32px;
}

.apply-form legend {
    font-size: 20px;
    font-weight: 600;
    color: #1a1a2e;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(0, 0, 0, 0.06);
    width: 100%;
    margin-bottom: 20px;
}

.apply-form .form-group {
    margin-bottom: 16px;
}

.apply-form .form-group label {
    font-weight: 500;
}

.apply-form input[type="file"] {
    padding: 8px 0;
    border: none;
}

.apply-note {
    text-align: center;
    margin-top: 24px;
    font-size: 14px;
    color: #6b6b7a;
}

/* ========== PRIVACY PAGE ========== */
.privacy-content {
    padding: 64px 0 80px;
    max-width: 820px;
    margin: 0 auto;
}

.privacy-content h2 {
    font-size: 22px;
    font-weight: 600;
    color: #1a1a2e;
    margin: 32px 0 12px;
}

.privacy-content p,
.privacy-content li {
    font-size: 16px;
    color: #4a4a5a;
    line-height: 1.8;
}

.privacy-content ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-content a {
    color: #4a6cf7;
}

.privacy-content a:hover {
    color: #1a1a2e;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .services-grid,
    .testimonials-grid,
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .section-title {
        font-size: 28px;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .services-grid,
    .testimonials-grid,
    .team-grid,
    .values-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .nav-list {
        display: none;
        flex-direction: column;
        background: #ffffff;
        padding: 24px;
        border-radius: 12px;
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
        position: absolute;
        top: 100%;
        left: 24px;
        right: 24px;
        gap: 16px;
    }

    .nav-list.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .apply-form {
        padding: 24px;
    }

    .page-hero h1 {
        font-size: 32px;
    }

    .why-content h2 {
        font-size: 28px;
    }

    .final-cta h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .badges-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .container {
        padding: 0 16px;
    }

    .apply-form {
        padding: 16px;
    }
}