/* Open Enterprise - Professional Website Styles */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

:root {
    /* Brand Colors */
    --hero-color: #44ba9c;
    --hero-dark: #2e9e82;
    --hero-glow: rgba(68, 186, 156, 0.18);
    --charcoal: #1a1a1a;
    --near-black: #0d0d0d;
    --white: #ffffff;
    --off-white: #f4f6f8;
    --grey-light: #e0e0e0;
    --grey-medium: #6c757d;
    --grey-dark: #343a40;

    /* Functional Colors */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6c757d;
    --border-color: #e2e8f0;
    --shadow: rgba(0, 0, 0, 0.08);
    --shadow-hover: rgba(0, 0, 0, 0.14);
    --shadow-card: 0 2px 12px rgba(0,0,0,0.07), 0 1px 3px rgba(0,0,0,0.05);
    --shadow-card-hover: 0 12px 36px rgba(68,186,156,0.13), 0 4px 12px rgba(0,0,0,0.1);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --section-padding: 100px;
    --container-width: 1200px;
    --content-width: 900px;
    --radius: 10px;
    --radius-lg: 16px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-primary);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--charcoal);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.75rem;
}

h4 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1.25rem;
    color: var(--text-secondary);
}

/* Bold text in dark/hero sections becomes green for legibility */
.hero strong,
.section-dark strong,
.callout-dark strong {
    color: var(--hero-color);
    font-weight: 700;
}

/* Bold text in light sections stays primary */
strong {
    font-weight: 600;
    color: var(--text-primary);
}

a {
    color: var(--hero-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--hero-dark);
}

/* ============================================
   LAYOUT UTILITIES
   ============================================ */

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.container-narrow {
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background-color: var(--near-black);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Interlocking honeycomb on dark sections */
.section-dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28'%3E%3Cdefs%3E%3CclipPath id='d1'%3E%3Crect width='120' height='69.28'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23d1)'%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='100.0,34.64 80.0,69.28 40.0,69.28 20.0,34.64 40.0,0.0 80.0,0.0'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='40.0,0.0 20.0,34.64 -20.0,34.64 -40.0,0.0 -20.0,-34.64 20.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='40.0,69.28 20.0,103.92 -20.0,103.92 -40.0,69.28 -20.0,34.64 20.0,34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='160.0,0.0 140.0,34.64 100.0,34.64 80.0,0.0 100.0,-34.64 140.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='160.0,69.28 140.0,103.92 100.0,103.92 80.0,69.28 100.0,34.64 140.0,34.64'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 69.28px;
    pointer-events: none;
    z-index: 0;
}

.section-dark > * {
    position: relative;
    z-index: 1;
}

.section-dark h1,
.section-dark h2 {
    color: var(--white);
}

.section-dark h3,
.section-dark h4 {
    color: var(--hero-color);
}

.section-dark p {
    color: rgba(255,255,255,0.75);
}

.section-grey {
    background-color: var(--off-white);
    position: relative;
    overflow: hidden;
}

/* Interlocking honeycomb on grey sections */
.section-grey::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28'%3E%3Cdefs%3E%3CclipPath id='g1'%3E%3Crect width='120' height='69.28'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23g1)'%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='100.0,34.64 80.0,69.28 40.0,69.28 20.0,34.64 40.0,0.0 80.0,0.0'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='40.0,0.0 20.0,34.64 -20.0,34.64 -40.0,0.0 -20.0,-34.64 20.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='40.0,69.28 20.0,103.92 -20.0,103.92 -40.0,69.28 -20.0,34.64 20.0,34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='160.0,0.0 140.0,34.64 100.0,34.64 80.0,0.0 100.0,-34.64 140.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='160.0,69.28 140.0,103.92 100.0,103.92 80.0,69.28 100.0,34.64 140.0,34.64'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 69.28px;
    pointer-events: none;
}

.section-grey > * {
    position: relative;
    z-index: 1;
}

.text-center {
    text-align: center;
}

/* ============================================
   STICKY SITE HEADER WRAPPER
   ============================================ */

.site-header-wrap {
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* ============================================
   TOP CONTACT BAR
   ============================================ */

.top-bar {
    background-color: var(--near-black);
    border-bottom: 1px solid rgba(68,186,156,0.2);
    padding: 0.55rem 0;
    font-size: 0.82rem;
}

.top-bar-inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 2rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    transition: color 0.25s ease;
    font-weight: 500;
    letter-spacing: 0.01em;
}

.top-bar-contact:hover {
    color: var(--hero-color);
}

.top-bar-contact svg {
    width: 13px;
    height: 13px;
    stroke: var(--hero-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.top-bar-divider {
    width: 1px;
    height: 14px;
    background: rgba(255,255,255,0.15);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

.header {
    background-color: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.site-header-wrap.scrolled .header {
    box-shadow: 0 2px 20px rgba(0,0,0,0.10);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* ============================================
   LOGO
   ============================================ */

.logo {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    text-decoration: none;
    flex-shrink: 0;
}

.logo img {
    height: 52px;
    width: auto;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--charcoal);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.logo-tagline {
    font-size: 0.68rem;
    font-weight: 500;
    color: var(--hero-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Hero logo lockup */
.hero-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.hero-brand img {
    height: 64px;
    width: auto;
    filter: brightness(1.05);
}

.hero-brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.hero-brand-name {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.hero-brand-tag {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--hero-color);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

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

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

.nav-link:hover {
    color: var(--hero-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    right: 0;
    height: 2px;
    background-color: var(--hero-color);
    border-radius: 2px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--hero-color) 0%, var(--hero-dark) 100%);
    color: var(--white);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    box-shadow: 0 2px 8px rgba(68,186,156,0.25);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--hero-dark) 0%, #268f72 100%);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(68, 186, 156, 0.38);
}

.btn-secondary {
    background-color: transparent;
    color: var(--charcoal);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius);
    font-weight: 600;
    border: 2px solid var(--charcoal);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: var(--charcoal);
    color: var(--white);
    transform: translateY(-2px);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--charcoal);
    margin: 5px 0;
    transition: 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    background: linear-gradient(145deg, #0a0a0a 0%, #141414 40%, #1a1f1e 100%);
    color: var(--white);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
}

/* Interlocking honeycomb on hero */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28'%3E%3Cdefs%3E%3CclipPath id='h1'%3E%3Crect width='120' height='69.28'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23h1)'%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='100.0,34.64 80.0,69.28 40.0,69.28 20.0,34.64 40.0,0.0 80.0,0.0'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='40.0,0.0 20.0,34.64 -20.0,34.64 -40.0,0.0 -20.0,-34.64 20.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='40.0,69.28 20.0,103.92 -20.0,103.92 -40.0,69.28 -20.0,34.64 20.0,34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='160.0,0.0 140.0,34.64 100.0,34.64 80.0,0.0 100.0,-34.64 140.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='160.0,69.28 140.0,103.92 100.0,103.92 80.0,69.28 100.0,34.64 140.0,34.64'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 69.28px;
    pointer-events: none;
    z-index: 0;
}

/* Glowing radial overlay — depth effect */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 50%, rgba(68,186,156,0.10) 0%, transparent 70%),
        radial-gradient(ellipse 40% 60% at 85% 20%, rgba(68,186,156,0.06) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero h1 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 4rem;
}

.hero p {
    font-size: 1.35rem;
    color: rgba(255,255,255,0.72);
    max-width: 700px;
    margin-bottom: 2.5rem;
}

/* Bold text in hero becomes green — high contrast fix */
.hero p strong {
    color: var(--hero-color);
    font-weight: 700;
}

.hero-accent {
    color: var(--hero-color);
    font-weight: 700;
}

/* ============================================
   CONTENT SECTIONS
   ============================================ */

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

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
}

/* Section label / eyebrow */
.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--hero-color);
    margin-bottom: 0.75rem;
}

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

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

/* ============================================
   CARDS
   ============================================ */

.card {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    transition: all 0.35s ease;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

/* Subtle top-left accent line */
.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0;
    background: linear-gradient(180deg, var(--hero-color), var(--hero-dark));
    transition: height 0.35s ease;
    border-radius: 0 0 3px 0;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(68,186,156,0.3);
}

.card:hover::before {
    height: 100%;
}

.card h3 {
    margin-bottom: 1rem;
    color: var(--charcoal);
}

.card p {
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Dark section cards */
.section-dark .card {
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.1);
    box-shadow: none;
}

.section-dark .card h3 {
    color: var(--white);
}

.section-dark .card p,
.section-dark .card li {
    color: rgba(255,255,255,0.7);
}

.section-dark .card:hover {
    background: rgba(68,186,156,0.08);
    border-color: rgba(68,186,156,0.3);
}

/* ============================================
   CARD ICONS — SVG Monochrome
   ============================================ */

.card-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(68,186,156,0.12) 0%, rgba(68,186,156,0.06) 100%);
    border: 1.5px solid rgba(68,186,156,0.25);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.card-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--hero-color);
    fill: none;
    stroke-width: 1.75;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.card:hover .card-icon {
    background: linear-gradient(135deg, rgba(68,186,156,0.2) 0%, rgba(68,186,156,0.1) 100%);
    border-color: var(--hero-color);
}

/* ============================================
   FEATURE LIST
   ============================================ */

.feature-list {
    list-style: none;
    margin: 2rem 0;
}

.feature-list li {
    padding: 0.875rem 0 0.875rem 2rem;
    position: relative;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    font-size: 0.97rem;
}

.feature-list li:last-child {
    border-bottom: none;
}

/* SVG checkmark arrow bullet */
.feature-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2344ba9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='3,8 7,12 13,4'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.section-dark .feature-list li {
    border-bottom-color: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.72);
}

/* ============================================
   PROCESS FLOW / V-MODEL
   ============================================ */

.process-flow {
    margin: 4rem 0;
    padding: 3rem;
    background: #ffffff;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.process-flow::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28'%3E%3Cdefs%3E%3CclipPath id='p1'%3E%3Crect width='120' height='69.28'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23p1)'%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='100.0,34.64 80.0,69.28 40.0,69.28 20.0,34.64 40.0,0.0 80.0,0.0'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='40.0,0.0 20.0,34.64 -20.0,34.64 -40.0,0.0 -20.0,-34.64 20.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='40.0,69.28 20.0,103.92 -20.0,103.92 -40.0,69.28 -20.0,34.64 20.0,34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='160.0,0.0 140.0,34.64 100.0,34.64 80.0,0.0 100.0,-34.64 140.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.12)' stroke-width='1.2' stroke-linejoin='round' points='160.0,69.28 140.0,103.92 100.0,103.92 80.0,69.28 100.0,34.64 140.0,34.64'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 69.28px;
    pointer-events: none;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-step::after {
    content: '';
    position: absolute;
    right: -1.25rem;
    top: 1.5rem;
    width: 16px;
    height: 16px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2344ba9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='2' y1='8' x2='14' y2='8'/%3E%3Cpolyline points='10,4 14,8 10,12'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
}

.process-step:last-child::after {
    display: none;
}

.process-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--hero-color) 0%, var(--hero-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 12px rgba(68,186,156,0.3);
}

.process-step h4 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.process-step p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

/* ============================================
   CALLOUT SECTIONS
   ============================================ */

.callout {
    background: linear-gradient(135deg, var(--hero-color) 0%, var(--hero-dark) 100%);
    color: var(--white);
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.callout::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28'%3E%3Cdefs%3E%3CclipPath id='c1'%3E%3Crect width='120' height='69.28'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23c1)'%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.2' stroke-linejoin='round' points='100.0,34.64 80.0,69.28 40.0,69.28 20.0,34.64 40.0,0.0 80.0,0.0'/%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.2' stroke-linejoin='round' points='40.0,0.0 20.0,34.64 -20.0,34.64 -40.0,0.0 -20.0,-34.64 20.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.2' stroke-linejoin='round' points='40.0,69.28 20.0,103.92 -20.0,103.92 -40.0,69.28 -20.0,34.64 20.0,34.64'/%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.2' stroke-linejoin='round' points='160.0,0.0 140.0,34.64 100.0,34.64 80.0,0.0 100.0,-34.64 140.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(255,255,255,0.15)' stroke-width='1.2' stroke-linejoin='round' points='160.0,69.28 140.0,103.92 100.0,103.92 80.0,69.28 100.0,34.64 140.0,34.64'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 69.28px;
    pointer-events: none;
}

.callout > * {
    position: relative;
    z-index: 1;
}

.callout h2 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.callout p {
    color: rgba(255,255,255,0.88);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.callout-dark {
    background: linear-gradient(135deg, #0d0d0d 0%, #1a1a1a 100%);
}

/* ============================================
   EXPERIENCE BADGES
   ============================================ */

.experience-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2rem 0;
}

.experience-tag {
    background-color: var(--off-white);
    padding: 0.6rem 1.25rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.experience-tag:hover {
    background-color: var(--hero-color);
    color: var(--white);
    border-color: var(--hero-color);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(68,186,156,0.25);
}

/* ============================================
   STAT / METRIC HIGHLIGHTS
   ============================================ */

.stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(68,186,156,0.05);
    border: 1px solid rgba(68,186,156,0.15);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--hero-color);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: linear-gradient(160deg, #0d0d0d 0%, #111 100%);
    color: var(--grey-light);
    padding: 5rem 0 2.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='69.28'%3E%3Cdefs%3E%3CclipPath id='f1'%3E%3Crect width='120' height='69.28'/%3E%3C/clipPath%3E%3C/defs%3E%3Cg clip-path='url(%23f1)'%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='100.0,34.64 80.0,69.28 40.0,69.28 20.0,34.64 40.0,0.0 80.0,0.0'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='40.0,0.0 20.0,34.64 -20.0,34.64 -40.0,0.0 -20.0,-34.64 20.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='40.0,69.28 20.0,103.92 -20.0,103.92 -40.0,69.28 -20.0,34.64 20.0,34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='160.0,0.0 140.0,34.64 100.0,34.64 80.0,0.0 100.0,-34.64 140.0,-34.64'/%3E%3Cpolygon fill='none' stroke='rgba(68,186,156,0.06)' stroke-width='1' stroke-linejoin='round' points='160.0,69.28 140.0,103.92 100.0,103.92 80.0,69.28 100.0,34.64 140.0,34.64'/%3E%3C/g%3E%3C/svg%3E");
    background-size: 120px 69.28px;
    pointer-events: none;
}

.footer > * {
    position: relative;
    z-index: 1;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-logo-wrap {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    margin-bottom: 1.25rem;
}

.footer-logo-wrap img {
    height: 52px;
    width: auto;
    filter: brightness(1.1);
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.footer-logo-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-logo-tag {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--hero-color);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    text-decoration: none;
    transition: color 0.25s ease;
}

.footer-contact-item:hover {
    color: var(--hero-color);
}

.footer-contact-item svg {
    width: 14px;
    height: 14px;
    stroke: var(--hero-color);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
    flex-shrink: 0;
}

.footer-section p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--hero-color);
}

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

.footer-bottom p {
    color: rgba(255,255,255,0.3);
    font-size: 0.85rem;
    margin: 0;
}

/* ============================================
   FORMS
   ============================================ */

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

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius);
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
    color: var(--text-primary);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--hero-color);
    box-shadow: 0 0 0 3px rgba(68,186,156,0.12);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

/* ============================================
   DIVIDER
   ============================================ */

.divider {
    width: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--hero-color), var(--hero-dark));
    border-radius: 2px;
    margin: 1rem 0 2rem;
}

.text-center .divider {
    margin: 1rem auto 2rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }

    .stats-row {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    html {
        font-size: 15px;
    }

    .container {
        padding: 0 1.5rem;
    }

    .top-bar-inner {
        justify-content: center;
        gap: 1rem;
    }

    .top-bar-divider {
        display: none;
    }

    .logo-tagline {
        display: none;
    }

    h1 {
        font-size: 2.5rem;
    }

    .hero h1 {
        font-size: 2.75rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 1rem 0;
        box-shadow: 0 8px 24px var(--shadow);
        display: none;
    }

    .nav.active {
        display: flex;
    }

    .nav-link {
        padding: 1rem 2rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .mobile-menu-toggle {
        display: block;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero {
        padding: 100px 0 80px;
    }

    .hero p {
        font-size: 1.15rem;
    }

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

    .process-step::after {
        content: '';
        right: 50%;
        top: auto;
        bottom: -1.5rem;
        transform: translateX(50%);
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%2344ba9c' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cline x1='8' y1='2' x2='8' y2='14'/%3E%3Cpolyline points='4,10 8,14 12,10'/%3E%3C/svg%3E");
    }

    .stats-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 40px;
    }

    .card {
        padding: 1.75rem;
    }

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

/* ============================================
   UTILITY CLASSES
   ============================================ */

.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mb-5 { margin-bottom: 3rem; }

.hide-mobile {
    display: block;
}

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