:root {
    --brand-blue: #174977;
    --brand-grey: #9E9E9E;
    --brand-amber: #f4a91f;
    --text-primary: #212121;
    --text-secondary: #666;
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-dark: #0d2536;
    --muted: #f2f2f2;
    --radius: 12px;
    --radius-sm: 6px;
    --radius-lg: 20px;
    --shadow-sm: 0 2px 8px rgba(23, 73, 119, 0.08);
    --shadow-md: 0 4px 16px rgba(23, 73, 119, 0.12);
    --shadow-lg: 0 8px 32px rgba(23, 73, 119, 0.16);
}

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

body {
    font-family: 'Source Sans 3', system-ui, -apple-system, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header & Navigation - Distinctive floating nav style */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(158, 158, 158, 0.2);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    text-decoration: none;
}

.logo {
    height: 48px;
    width: auto;
}

.strapline {
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--brand-grey);
    text-transform: uppercase;
    display: none;
}

@media (min-width: 768px) {
    .strapline {
        display: block;
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s ease;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--brand-amber);
    transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-blue);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.cta-button {
    background: var(--brand-amber) !important;
    color: var(--bg-dark) !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.cta-button::after {
    display: none !important;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--brand-blue);
    transition: all 0.3s ease;
}

/* Hero Section - Unique diagonal split design */
.hero {
    margin-top: 80px;
    min-height: 90vh;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-white) 50%, var(--bg-light) 50%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: -20%;
    width: 60%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23174977' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 4rem 0;
}

.hero-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--brand-blue);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

/* Buttons - Unique pill style with gradient effects */
.button {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    font-size: 1rem;
}

.button-primary {
    background: linear-gradient(135deg, var(--brand-amber), #ffb84d);
    color: var(--bg-dark);
    box-shadow: 0 4px 16px rgba(244, 169, 31, 0.3);
}

.button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(244, 169, 31, 0.4);
}

.button-secondary {
    background: var(--bg-white);
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.button-secondary:hover {
    background: var(--brand-blue);
    color: var(--bg-white);
    transform: translateY(-3px);
    box-shadow: 0 6px 24px rgba(23, 73, 119, 0.3);
}

.button.large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

/* Proof Points - Card-based layout with hover effects */
.proof-points {
    padding: 5rem 0;
    background: var(--bg-white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, var(--bg-white), var(--bg-light));
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(158, 158, 158, 0.1);
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-blue), var(--brand-amber));
}

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

.stat-number {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.stat-context {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Services Overview - Modern grid with icon badges */
.services-overview {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 2.75rem;
    font-weight: 600;
    color: var(--brand-blue);
    text-align: center;
    margin-bottom: 1rem;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.service-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    position: relative;
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--brand-amber);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(23, 73, 119, 0.1), rgba(244, 169, 31, 0.1));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--brand-amber);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 0.5rem;
}

/* Industries Section */
.industries {
    padding: 5rem 0;
    background: var(--bg-white);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: linear-gradient(135deg, var(--brand-blue), #2a5a8a);
    color: var(--bg-white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
}

.industry-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(244, 169, 31, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.1); opacity: 0.3; }
}

.industry-card h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.industry-card p {
    opacity: 0.95;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-light), var(--bg-white));
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    color: var(--brand-blue);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Trust Indicators */
.trust-indicators {
    padding: 4rem 0;
    background: var(--bg-white);
    border-top: 1px solid var(--muted);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.trust-item h4 {
    font-family: 'Oswald', sans-serif;
    color: var(--brand-blue);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.trust-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Footer - Clean and organized */
.site-footer {
    background: var(--bg-dark);
    color: var(--bg-white);
    padding: 4rem 0 2rem;
    margin-top: 5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-strapline {
    font-family: 'Oswald', sans-serif;
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    color: var(--brand-amber);
    margin-bottom: 1rem;
}

.footer-description {
    opacity: 0.8;
    line-height: 1.6;
}

.footer-section h4 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--brand-amber);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section a {
    color: var(--bg-white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

.footer-section p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--brand-amber);
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .button {
        width: 100%;
        text-align: center;
    }
    
    .services-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }
}