:root {
    /* Color Palette - Light Tech Aesthetic */
    --primary-navy: #0A192F;
    /* Deep Tech Blue (from logo) */
    --primary-navy-light: #112240;
    --accent-coral: #00C468;
    /* Neon Green (darkened slightly for readability on white) */
    --accent-coral-hover: #00A656;
    --accent-cyan: #009BD6;
    --bg-white: #FFFFFF;
    --bg-offwhite: #F4F7FA;
    --text-dark: #0A192F;
    --text-muted: #546A83;
    --border-light: #CFDCE8;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0A192F 0%, #112240 100%);
    --gradient-accent: linear-gradient(135deg, #00C468 0%, #009BD6 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --glow: 0 4px 14px 0 rgba(0, 196, 104, 0.3);

    /* Typography - Premium Pairing */
    --font-display: 'Plus Jakarta Sans', sans-serif;
    /* headings */
    --font-sans: 'DM Sans', sans-serif;
    /* body / UI */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-feature-settings: 'kern' 1, 'liga' 1;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Typography */
h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.18;
    color: var(--primary-navy);
    letter-spacing: -0.02em;
}

h3,
h4 {
    font-weight: 700;
    letter-spacing: -0.01em;
}

p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.72;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    border-radius: 10px;
    transition: all var(--transition-fast);
    cursor: pointer;
    border: none;
    letter-spacing: -0.01em;
}

.btn-primary-small {
    padding: 0.5rem 1.25rem;
    background-color: var(--primary-navy-light);
    color: var(--bg-white);
    font-size: 0.95rem;
}

.btn-primary-small:hover {
    background-color: var(--primary-navy);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-accent {
    background: linear-gradient(135deg, #00C468 0%, #00A656 100%);
    color: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 196, 104, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #00D672 0%, #00B35C 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 196, 104, 0.45);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: 12px;
}

.btn-massive {
    padding: 1rem 1.75rem;
    font-size: 1.05rem;
    border-radius: 12px;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-weight: 800;
}

/* Top Bar */
.top-bar {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    height: 58px;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 101;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0;
    text-decoration: none;
    line-height: 1;
}

.logo-wordmark {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.logo-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-navy);
    letter-spacing: -0.03em;
    line-height: 1;
    /* "Medz" plain, "On" in accent colour */
}

.logo-brand .brand-accent {
    color: var(--accent-coral);
}

.logo-tagline {
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
}


.top-bar-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.phone-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #005696;
    /* matching the button color */
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    border: 2px solid #005696;
    padding: 0.3rem 0.9rem;
    border-radius: 20px;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    transition: all var(--transition-fast);
}

.phone-link:hover {
    background-color: #005696;
    color: white;
    transform: translateY(-1px);
}

.btn-primary {
    background-color: #005696;
    color: white;
    padding: 0.42rem 1.1rem;
    border-radius: 20px;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.88rem;
    letter-spacing: -0.01em;
    transition: all var(--transition-fast);
}

.btn-primary:hover {
    background-color: #003d6b;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 86, 150, 0.35);
}

/* Navbar */
.navbar {
    background-color: #006ebc;
    /* blue background from image */
    position: relative;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.92);
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    transition: all var(--transition-fast);
    position: relative;
    padding-bottom: 3px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    transition: width var(--transition-fast);
}

.nav-links a:hover {
    color: white;
}

.nav-links a:hover::after {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-icon {
    position: relative;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

.social-tooltip {
    position: absolute;
    top: 42px;
    left: 50%;
    transform: translateX(-50%) translateY(-5px);
    background-color: #0A192F;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.35rem 0.7rem;
    border-radius: 4px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
}

.social-tooltip::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #0A192F transparent;
}

.social-icon:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: scale(1.12);
}

.social-icon:hover .social-tooltip {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

/* Hero Section */
.hero {
    position: relative;
    height: calc(100vh - 120px);
    /* 58px top-bar + 60px navbar + 2px borders */
    min-height: 400px;
    background: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80') center/cover no-repeat;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(10, 25, 47, 0.8) 0%, rgba(10, 25, 47, 0.2) 100%);
    clip-path: polygon(0 0, 70% 0, 40% 100%, 0% 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-card {
    max-width: 620px;
    background: rgba(10, 25, 47, 0.7);
    backdrop-filter: blur(10px);
    border-left: 4px solid #00c3ff;
    border-radius: 0 16px 16px 0;
    padding: 2rem 2rem;
    color: white;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.badge .dot {
    width: 8px;
    height: 8px;
    background-color: #00c3ff;
    border-radius: 50%;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 2.55rem;
    font-weight: 800;
    line-height: 1.14;
    letter-spacing: -0.03em;
    margin-bottom: 1.1rem;
    color: white;
}

.hero-title .highlight {
    color: #00c3ff;
    font-style: italic;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 0.98rem;
    font-weight: 400;
    color: rgba(226, 232, 240, 0.9);
    margin-bottom: 1.75rem;
    border-left: 2px solid rgba(0, 195, 255, 0.4);
    padding-left: 1rem;
    line-height: 1.7;
}

.btn-accent-blue {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #0088ef 0%, #005696 100%);
    color: white;
    padding: 0.85rem 1.75rem;
    border-radius: 30px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.01em;
    transition: all var(--transition-fast);
    box-shadow: 0 4px 18px rgba(0, 119, 212, 0.4);
}

.btn-accent-blue:hover {
    background: linear-gradient(135deg, #009aff 0%, #0066b3 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 119, 212, 0.5);
}

/* Slider Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: color var(--transition-fast);
}

.slider-arrow:hover {
    color: white;
}

.slider-arrow.prev {
    left: 20px;
}

.slider-arrow.next {
    right: 20px;
}

/* WhatsApp Button */
@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(37, 211, 102, 0.45);
    z-index: 1000;
    text-decoration: none;
    animation: whatsapp-pulse 2s infinite;
    transition: transform 0.2s ease, background-color 0.2s ease;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background-color: #128c7e;
    color: white;
    font-size: 0.82rem;
    font-weight: 600;
    white-space: nowrap;
    padding: 0.45rem 0.9rem;
    border-radius: 20px;
    opacity: 0;
    pointer-events: none;
    transform: translateX(8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 7px;
    border-style: solid;
    border-color: transparent transparent transparent #128c7e;
}

.whatsapp-btn:hover {
    transform: scale(1.12);
    background-color: #20ba5a;
    animation: none;
}

.whatsapp-btn:hover .whatsapp-tooltip {
    opacity: 1;
    transform: translateX(0);
}

/* Metrics Banner */
.metrics-banner {
    background: var(--gradient-hero);
    padding: 4rem 0;
    color: var(--bg-white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.metric-number {
    font-family: var(--font-display);
    color: var(--bg-white);
    font-size: 3.8rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #00E57A 0%, #00D2FF 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.metric-label {
    font-family: var(--font-sans);
    color: #94A3B8;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* Features */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 580px;
    margin: 0 auto;
    color: var(--text-muted);
    line-height: 1.7;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-top: 3px solid transparent;
    border-radius: 16px;
    padding: 2.5rem 2rem;
    transition: all var(--transition-smooth);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-accent);
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 25, 47, 0.12);
    border-color: transparent;
    background: linear-gradient(160deg, #ffffff 60%, #f0fdf8);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(0, 196, 104, 0.15) 0%, rgba(0, 155, 214, 0.15) 100%);
    color: var(--accent-coral);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all var(--transition-smooth);
}

.feature-card:hover .feature-icon {
    background: var(--gradient-accent);
    color: white;
    box-shadow: 0 6px 20px rgba(0, 196, 104, 0.35);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    margin-bottom: 0.85rem;
    color: var(--primary-navy);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.feature-card p {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--text-muted);
}

/* Interactive Showcase Placeholder */
.showcase-section {
    padding: 100px 0;
    background-color: var(--bg-offwhite);
}

.showcase-header {
    text-align: center;
    margin-bottom: 4rem;
}

.showcase-header h2 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.showcase-interactive-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
}

.interactive-placeholder {
    height: 600px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(244, 247, 250, 0.9));
    cursor: pointer;
    border: 2px dashed var(--border-light);
    transition: all var(--transition-fast);
}

.interactive-placeholder:hover {
    border-color: var(--accent-coral);
    background: rgba(255, 255, 255, 1);
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: var(--accent-coral);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--glow);
    transition: transform var(--transition-fast);
}

.interactive-placeholder:hover .play-button {
    transform: scale(1.1);
}

.interactive-placeholder p {
    font-weight: 500;
    font-size: 1.2rem;
    color: var(--primary-navy);
}

/* Lead Capture / Footer Section */
.footer-lead {
    background: var(--gradient-hero);
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-lead::before {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 196, 104, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.footer-lead-inner {
    padding: 90px 0 0;
}

.lead-form-wrapper {
    max-width: 560px;
    margin: 0 auto 80px;
    text-align: center;
}

.lead-form-wrapper h2 {
    font-family: var(--font-display);
    color: white;
    font-size: 2.4rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 0.85rem;
    line-height: 1.15;
}

.lead-form-wrapper>p {
    color: #94A3B8;
    font-size: 1rem;
    margin-bottom: 2.5rem;
    line-height: 1.65;
}

.lead-form {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(12px);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: left;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.25rem;
}

.lead-form .form-group {
    margin-bottom: 0;
}

.lead-form button[type="submit"] {
    grid-column: 1 / -1;
    margin-top: 0.5rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-family: var(--font-display);
    font-size: 0.72rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #94A3B8;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.07);
    color: white;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 400;
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast), background var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-coral);
    background: rgba(255, 255, 255, 0.11);
    box-shadow: 0 0 0 3px rgba(0, 196, 104, 0.2);
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.35);
}

.form-group select option {
    background: var(--primary-navy);
    color: white;
}

/* Footer Bottom Bar */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 3rem 0 2.5rem;
    background: #060F1C;
}

.footer-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2.5rem;
    align-items: flex-start;
}

.company-desc {
    flex: 1;
    min-width: 260px;
    max-width: 380px;
}

.company-desc p {
    color: #64748B;
    font-size: 0.9rem;
    line-height: 1.75;
}

.support-info h4 {
    color: #94A3B8;
    margin-bottom: 0.6rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.support-info a {
    display: block;
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.97rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
    transition: color var(--transition-fast);
}

.support-info a:hover {
    color: var(--accent-coral);
}

.footer-nav-col h4 {
    color: #94A3B8;
    margin-bottom: 0.75rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    font-weight: 600;
}

.footer-nav-col a {
    display: block;
    color: #CBD5E1;
    text-decoration: none;
    font-size: 0.93rem;
    margin-bottom: 0.35rem;
    transition: color var(--transition-fast);
}

.footer-nav-col a:hover {
    color: var(--accent-coral);
}

.copyright {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    text-align: center;
    color: #475569;
    font-size: 0.85rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transition: opacity 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-header h2 {
        font-size: 2.1rem;
    }

    .metrics-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 3rem;
    }

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

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-header h2 {
        font-size: 1.85rem;
    }

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

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

/* =============================================
   Inner Page Styles - consistent with landing
   ============================================= */

/* Page Hero Banner - top section on all inner pages */
.page-hero {
    background: var(--gradient-hero);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 195, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.page-hero h1 {
    font-family: var(--font-display);
    color: white;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
    line-height: 1.15;
}

.page-hero h1 span {
    color: #00c3ff;
    font-style: italic;
}

.page-hero p {
    font-family: var(--font-sans);
    color: #94A3B8;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Inner page content section */
.page-content {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.page-content.alt-bg {
    background-color: var(--bg-offwhite);
}

/* Step cards (used in how-we-work) */
.step-card {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 195, 255, 0.3);
}

.step-number {
    background: linear-gradient(135deg, #00c3ff, #0077d4);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.step-card h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.4rem;
}

/* Highlight card (used in why-choose-us) */
.highlight-card {
    border-left: 4px solid #00c3ff;
    padding: 1.5rem 2rem;
    background: var(--bg-offwhite);
    border-radius: 0 12px 12px 0;
    transition: all var(--transition-smooth);
}

.highlight-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.highlight-card h3 {
    font-family: var(--font-display);
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.5rem;
}

/* Engagement model cards */
.model-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.model-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(0, 119, 212, 0.3);
}

.model-card h3 {
    font-family: var(--font-display);
    color: var(--primary-navy);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 0.75rem;
}

/* Job card */
.job-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-smooth);
}

.job-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 119, 212, 0.3);
}

.job-card h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    color: var(--primary-navy);
    margin-bottom: 0.25rem;
}

/* Active nav link */
.nav-links a.active {
    border-bottom: 2px solid #00c3ff;
    padding-bottom: 2px;
}

/* Contact page form styling */
.contact-wrapper {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: space-between;
}

.contact-info {
    flex: 1;
    min-width: 280px;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.3rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.contact-detail {
    margin-bottom: 1.5rem;
}

.contact-detail h4 {
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #94A3B8;
    margin-bottom: 0.35rem;
    font-weight: 600;
}

.contact-detail a {
    color: #0077d4;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-detail a:hover {
    text-decoration: underline;
}

.contact-form-wrapper {
    flex: 1.3;
    min-width: 300px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-xl);
}

/* About page content */
.about-content {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.about-content p {
    font-size: 1.08rem;
    line-height: 1.85;
    color: var(--text-muted);
    font-weight: 400;
}

@media (max-width: 768px) {
    .lead-form {
        grid-template-columns: 1fr;
    }
    
    .lead-form button[type="submit"] {
        grid-column: 1 / -1;
    }
}