:root {
    --primary: #007bff;
    --primary-dark: #0056b3;
    --ink: #0b1b32;
    --text: #334155;
    --muted: #6b7280;
    --bg: #f8fafc;
    --card: #ffffff;
    --border: #e2e8f0;
    --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.14);
}

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

body {
    font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
    color: var(--text);
    background: #ffffff;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.section {
    padding: 96px 0;
    scroll-margin-top: 120px;
}

.section-alt {
    background: var(--bg);
}

.eyebrow {
    font-size: 13px;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 14px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 48px;
}

.section-heading.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.section-heading h2 {
    font-size: 36px;
    color: var(--ink);
    margin-bottom: 16px;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 22px;
    border-radius: 999px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.btn:focus-visible,
.site-nav a:focus-visible,
.text-link:focus-visible,
.contact-card a:focus-visible {
    outline: 3px solid rgba(0, 123, 255, 0.35);
    outline-offset: 2px;
    border-radius: 999px;
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 24px rgba(0, 123, 255, 0.25);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

.btn-outline {
    border-color: var(--border);
    color: var(--ink);
    background: #ffffff;
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    background: var(--primary);
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    z-index: 2000;
}

.skip-link:focus {
    left: 12px;
}

.site-header {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1500;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 18px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    color: var(--ink);
}

.logo img {
    height: 44px;
    width: auto;
}

.site-nav {
    display: flex;
    gap: 20px;
    font-weight: 600;
    color: var(--ink);
    flex-wrap: wrap;
    justify-content: center;
}

.site-nav a {
    color: var(--muted);
    transition: color 0.3s ease;
}

.site-nav a:hover {
    color: var(--primary);
}

.nav-cta {
    white-space: nowrap;
}

.hero {
    background: radial-gradient(circle at top, #f5f8ff 0%, #ffffff 55%);
    padding: 90px 0 110px;
}

.hero-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: center;
}

.hero-text h1 {
    font-size: 48px;
    color: var(--ink);
    margin-bottom: 18px;
}

.hero-text .lead {
    font-size: 18px;
    color: var(--muted);
    margin-bottom: 28px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.stat {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 16px;
    box-shadow: var(--shadow-sm);
}

.stat-value {
    display: block;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
}

.stat-label {
    font-size: 13px;
    color: var(--muted);
}

.hero-media {
    position: relative;
    min-height: 460px;
}

.hero-image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #ffffff;
}

.hero-image.secondary {
    position: absolute;
    right: -10px;
    bottom: -20px;
    width: 55%;
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.2);
}

.floating-card {
    position: absolute;
    left: 16px;
    bottom: 16px;
    background: rgba(11, 27, 50, 0.9);
    color: #ffffff;
    padding: 14px 16px;
    border-radius: 12px;
    font-size: 14px;
    max-width: 220px;
}

.trust {
    background: #ffffff;
    border-bottom: 1px solid var(--border);
    padding: 28px 0;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--muted);
    font-weight: 600;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.about-copy {
    display: grid;
    gap: 24px;
}

.feature h3 {
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 10px;
}

.feature p {
    color: var(--muted);
}

.about-cards {
    display: grid;
    gap: 20px;
}

.info-card {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 22px;
    box-shadow: var(--shadow-sm);
}

.info-card h4 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
}

.info-card p {
    color: var(--muted);
}

.founder-card {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.founder-card img {
    width: 90px;
    height: 90px;
    border-radius: 14px;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 24px;
}

.service-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    min-height: 210px;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    width: 40px;
    height: 4px;
    background: var(--primary);
    border-radius: 999px;
}

.service-card h3 {
    font-size: 18px;
    color: var(--ink);
    margin-top: 12px;
}

.service-card p {
    color: var(--muted);
    flex: 1;
}

.service-tag {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.process-step {
    background: #ffffff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.12);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 14px;
}

.process-step h3 {
    font-size: 18px;
    color: var(--ink);
    margin-bottom: 10px;
}

.process-step p {
    color: var(--muted);
}

.case-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

.case-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-sm);
}

.case-card img {
    height: 200px;
    width: 100%;
    object-fit: cover;
}

.case-body {
    padding: 22px;
}

.case-body h3 {
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 12px;
}

.case-body p {
    color: var(--muted);
    margin-bottom: 16px;
}

.case-metrics {
    list-style: none;
    display: grid;
    gap: 10px;
    color: var(--text);
    font-size: 14px;
}

.case-metrics li {
    position: relative;
    padding-left: 22px;
}

.case-metrics li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--primary);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
}

.team-profile {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 24px;
    box-shadow: var(--shadow-sm);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.team-profile img {
    width: 120px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
}

.team-profile h3 {
    font-size: 20px;
    color: var(--ink);
    margin-bottom: 6px;
}

.team-profile .role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-band {
    background: linear-gradient(120deg, #0b1b32 0%, #1b3a6f 100%);
    color: #ffffff;
    padding: 60px 0;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content h2 {
    font-size: 32px;
    margin-bottom: 10px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-section {
    background: #ffffff;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 40px;
    align-items: start;
}

.contact-details h2 {
    font-size: 32px;
    color: var(--ink);
    margin-bottom: 14px;
}

.contact-details p {
    color: var(--muted);
    margin-bottom: 18px;
}

.contact-cards {
    display: grid;
    gap: 16px;
}

.contact-card {
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 18px;
    background: var(--bg);
}

.contact-card h4 {
    color: var(--ink);
    margin-bottom: 8px;
}

.contact-card p {
    color: var(--muted);
    font-size: 14px;
}

.contact-form {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.form-field {
    display: grid;
    gap: 8px;
}

.form-field label {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--muted);
    font-weight: 600;
}

.form-field input,
.form-field textarea {
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 15px;
    font-family: inherit;
    color: var(--text);
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.15);
}

.form-note {
    font-size: 13px;
    color: var(--muted);
}

.site-footer {
    background: var(--ink);
    color: #ffffff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 32px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.75);
    margin-top: 16px;
}

.footer-links h4,
.footer-contact h4 {
    margin-bottom: 12px;
}

.footer-links a {
    display: block;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 10px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 16px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: auto;
    }

    .hero-image.secondary {
        position: relative;
        width: 100%;
        right: auto;
        bottom: auto;
        margin-top: 20px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .process-grid,
    .case-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 900px) {
    .section {
        padding: 72px 0;
    }

    .header-content {
        flex-wrap: wrap;
    }

    .nav-cta {
        width: 100%;
        justify-content: center;
    }

    .about-grid,
    .contact-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .trust-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .section-heading h2 {
        font-size: 28px;
    }

    .site-nav {
        gap: 12px;
        font-size: 14px;
    }

    .case-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }

    .team-profile {
        flex-direction: column;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
