:root {
    --navy: #002D72;
    --navy-dark: #001a47;
    --navy-light: #0a3d8f;
    --orange: #F58220;
    --orange-light: #ff9d45;
    --text-gray: #5a6a7e;
    --text-light: #8899aa;
    --bg-white: #ffffff;
    --bg-off: #f7f9fc;
    --card-shadow: 0 4px 24px rgba(0, 45, 114, 0.10);
    --card-hover-shadow: 0 12px 40px rgba(0, 45, 114, 0.18);
}

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

html, body {
    height: 100%;
    font-family: 'DM Sans', sans-serif;
    background-color: var(--bg-white);
    overflow: hidden;
    color: var(--navy);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ─── HEADER ─── */
header {
    height: 13vh;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0,45,114,0.07);
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(8px);
    position: relative;
    z-index: 10;
}

.header-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-logo {
    height: 130px;
    width: auto;
    object-fit: contain;
}

nav { display: flex; align-items: center; gap: 8px; }

nav a {
    text-decoration: none;
    color: var(--navy);
    padding: 8px 18px;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.92rem;
    letter-spacing: 0.01em;
    transition: all 0.2s;
}

nav a:hover {
    background: rgba(0,45,114,0.06);
    color: var(--orange);
}

nav a:last-child {
    background: var(--navy);
    color: #fff;
    font-weight: 600;
}

nav a:last-child:hover {
    background: var(--orange);
    color: #fff;
}

/* ─── MAIN ─── */
.app-container {
    height: 77vh;
    display: flex;
    flex-direction: column;
}

/* ─── HERO ─── */
.hero {
    flex: 1.8;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(105deg, #f0f4fb 0%, #e8eef8 50%, #f5f7fa 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(245,130,32,0.10) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -40px; left: 20%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(0,45,114,0.07) 0%, transparent 70%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
    gap: 48px;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0,45,114,0.08);
    color: var(--navy);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 14px;
    border: 1px solid rgba(0,45,114,0.12);
}

.hero-badge::before {
    content: '';
    width: 6px; height: 6px;
    background: var(--orange);
    border-radius: 50%;
}

.hero-text h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 3.6rem;
    font-weight: 800;
    color: var(--navy-dark);
    line-height: 1.0;
    margin-bottom: 14px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    white-space: nowrap;
}

.hero-text h1 .accent {
    color: var(--orange);
    position: relative;
}

.hero-text p {
    font-size: 1.05rem;
    color: var(--text-gray);
    font-weight: 400;
    margin-bottom: 24px;
    line-height: 1.5;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--navy);
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 26px;
    border-radius: 10px;
    transition: all 0.25s;
    letter-spacing: 0.01em;
}

.cta-btn span { transition: transform 0.25s; }
.cta-btn:hover { background: var(--orange); }
.cta-btn:hover span { transform: translateX(4px); }

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.img-frame {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,45,114,0.20);
}

.img-frame img {
    width: 100%;
    height: 48vh;
    object-fit: cover;
    display: block;
}

.img-frame::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0,45,114,0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

.img-glow {
    position: absolute;
    bottom: -20px; right: -20px;
    width: 120px; height: 120px;
    background: radial-gradient(circle, rgba(245,130,32,0.5) 0%, transparent 70%);
    pointer-events: none;
}

/* ─── SERVICES ─── */
.services {
    flex: 1;
    display: flex;
    align-items: center;
    background: var(--bg-white);
    padding: 4px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    width: 100%;
}

.card {
    background: #fff;
    padding: 16px 16px;
    border-radius: 16px;
    text-align: left;
    box-shadow: var(--card-shadow);
    border: 1px solid rgba(0,45,114,0.07);
    transition: all 0.25s;
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--orange));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.card:hover {
    box-shadow: var(--card-hover-shadow);
    transform: translateY(-3px);
}

.card:hover::before { transform: scaleX(1); }

.card-icon {
    width: 40px; height: 40px;
    background: linear-gradient(135deg, rgba(0,45,114,0.08), rgba(245,130,32,0.08));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    color: var(--navy);
}

.card-icon svg { width: 20px; height: 20px; }

.card h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.card p {
    font-size: 0.73rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.card-line {
    margin-top: 12px;
    height: 1px;
    background: linear-gradient(90deg, rgba(245,130,32,0.3), transparent);
}

/* ─── FOOTER ─── */
footer {
    height: 10vh;
    border-top: 1px solid rgba(0,45,114,0.08);
    display: flex;
    align-items: center;
    background: var(--bg-off);
}

.footer-content {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.email {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 0.9rem;
}

.email svg { color: var(--orange); flex-shrink: 0; }
.email a { color: var(--navy); text-decoration: none; transition: color 0.2s; }
.email a:hover { color: var(--orange); }

.copyright { font-size: 0.72rem; color: var(--text-light); }
