/* ============================================
   VRASTEN MEDIA — STYLESHEET
   ============================================ */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #fafafa;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Typography */
h1 {
    font-size: 42px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 24px;
}

h2 {
    font-size: 30px;
    font-weight: 600;
    letter-spacing: -0.01em;
    line-height: 1.3;
    color: #1a1a1a;
    margin-bottom: 32px;
}

h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 16px;
}

h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #1a1a1a;
    margin-bottom: 12px;
}

p {
    color: #555555;
    margin-bottom: 16px;
}

a {
    color: #1e3a5f;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #2c5282;
}

ul {
    margin-bottom: 16px;
    padding-left: 24px;
    color: #555555;
}

ul li {
    margin-bottom: 8px;
}

/* Header */
.site-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.logo:hover {
    color: #1a1a1a;
}

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: #555555;
    font-size: 15px;
    font-weight: 500;
}

.main-nav a:hover {
    color: #1e3a5f;
}

/* Hero */
.hero {
    padding: 120px 0 100px;
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
}

.hero h1 {
    max-width: 800px;
    margin-bottom: 24px;
}

.hero .lead {
    font-size: 19px;
    color: #555555;
    max-width: 680px;
    margin-bottom: 40px;
    line-height: 1.5;
}

.btn-primary {
    display: inline-block;
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.2s ease;
}

.btn-primary:hover {
    background-color: #2c5282;
    color: #ffffff;
}

/* Sections */
.section {
    padding: 100px 0;
}

.section-alt {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.section p {
    max-width: 760px;
    margin-bottom: 20px;
    font-size: 16px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 16px;
}

.service-card {
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 32px;
}

.service-card h3 {
    color: #1e3a5f;
    margin-bottom: 16px;
    font-size: 19px;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Approach Grid */
.approach-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 16px;
}

.approach-item h4 {
    color: #1e3a5f;
    font-size: 17px;
    margin-bottom: 12px;
}

.approach-item p {
    font-size: 15px;
    margin-bottom: 0;
}

/* Compliance Section */
.compliance-header {
    font-size: 16px;
    color: #1e3a5f;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-weight: 600;
}

.compliance-text {
    font-size: 15px;
    color: #555555;
    max-width: 820px;
    line-height: 1.7;
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.contact-block h4 {
    color: #1e3a5f;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.contact-block p {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 0;
    line-height: 1.6;
}

/* Footer */
.site-footer {
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    padding: 48px 0 24px;
    margin-top: 60px;
}

.footer-inner {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 32px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-left strong {
    color: #1a1a1a;
    font-size: 15px;
}

.footer-left span {
    color: #888888;
    font-size: 14px;
}

.footer-right {
    display: flex;
    gap: 24px;
}

.footer-right a {
    color: #555555;
    font-size: 14px;
}

.footer-right a:hover {
    color: #1e3a5f;
}

.footer-bottom {
    border-top: 1px solid #e0e0e0;
    padding-top: 24px;
}

.footer-bottom p {
    color: #888888;
    font-size: 13px;
    margin-bottom: 0;
}

/* Legal pages */
.legal-page h1 {
    font-size: 36px;
    margin-bottom: 8px;
}

.legal-page .last-updated {
    color: #888888;
    font-size: 14px;
    margin-bottom: 40px;
}

.legal-page h3 {
    margin-top: 32px;
    font-size: 19px;
    color: #1a1a1a;
}

.legal-page p,
.legal-page ul {
    font-size: 15px;
    line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 24px;
    }

    .hero {
        padding: 60px 0 60px;
    }

    .hero .lead {
        font-size: 17px;
    }

    .section {
        padding: 60px 0;
    }

    .main-nav {
        gap: 20px;
    }

    .main-nav a {
        font-size: 14px;
    }

    .services-grid,
    .approach-grid,
    .contact-info {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-inner {
        flex-direction: column;
    }

    .footer-right {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .logo {
        font-size: 20px;
    }

    h1 {
        font-size: 28px;
    }

    .btn-primary {
        width: 100%;
        text-align: center;
    }
}