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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    color: #111;
    background: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}


/* ================= HEADER ================= */

.site-header {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 28px 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: rgba(0,0,0,0.25);
    backdrop-filter: blur(14px);
    transition: 0.3s ease;
}

.site-header.scrolled {
    background: rgba(255,255,255,0.96);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.logo {
    font-size: 38px;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-decoration: none;
    color: #ffffff;
}

.site-header.scrolled .logo {
    color: #000;
}


/* ================= NAV ================= */

nav ul {
    list-style: none;
    display: flex;
    gap: 55px;
}

nav li { position: relative; }

nav > ul > li > a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
    color: #ffffff;
    transition: 0.3s ease;
}

.site-header.scrolled nav > ul > li > a {
    color: #000;
}

nav ul ul {
    position: absolute;
    top: 120%;
    left: 0;
    min-width: 220px;
    background: #ffffff;
    padding: 16px 0;
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
    border-radius: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: 0.25s ease;
}

nav ul ul li {
    padding: 10px 24px;
}

nav ul ul li a {
    color: #000;
    text-decoration: none;
    font-size: 15px;
}

nav li:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* ================= HERO ================= */

.hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    background: rgba(0,0,0,0.35);
    padding: 100px 140px;
    color: white;
    max-width: 1100px;
}

.hero h1 {
    font-size: 68px;
    font-weight: 600;
    margin-bottom: 35px;
}

.hero p {
    font-size: 22px;
    margin-bottom: 45px;
}

.hero-cta-row {
    display: flex;
    justify-content: center;
    gap: 35px;
    align-items: center;
}

.hero-button {
    padding: 18px 48px;
    border: 1.5px solid #ffffff;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s ease;
}

.hero-button:hover {
    background: #ffffff;
    color: #000;
}

.hero-secondary {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    opacity: 0.85;
}

.hero-secondary:hover {
    opacity: 1;
}


/* ================= TRUST BAR ================= */

.trust-bar {
    margin-top: -80px;
    background: #ffffff;
    max-width: 1300px;
    margin-left: auto;
    margin-right: auto;
    display: flex;
    justify-content: space-between;
    border-radius: 4px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    padding: 40px 60px;
    position: relative;
    z-index: 5;
}

.trust-item {
    flex: 1;
    text-align: center;
    position: relative;
}

.trust-item:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background: rgba(0,0,0,0.08);
}

.trust-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #777;
    margin-bottom: 12px;
}

.trust-value {
    font-size: 22px;
    font-weight: 600;
    color: #111;
}


/* ================= CONTENT ================= */

.content-section {
    max-width: 1100px;
    margin: 140px auto;
    padding: 0 30px;
}

.content-section h2 {
    font-size: 34px;
    margin-bottom: 30px;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 70px;
    margin-bottom: 25px;
}

.content-section hr {
    margin: 70px 0;
}


/* ================= FOOTER ================= */

.site-footer {
    padding: 70px 80px;
    background: #111;
    color: #fff;
    display: flex;
    justify-content: space-between;
    margin-top: 120px;
}

.site-footer a {
    color: #fff;
    text-decoration: none;
    opacity: 0.8;
}

.site-footer a:hover {
    opacity: 1;
}

