/*
  Alite Digital — Static Site Stylesheet
  Healthcare IT Architecture & Digital Transformation
*/

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,300;9..144,400;9..144,500;9..144,600;9..144,700&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --navy: #0c1825;
    --navy-light: #162640;
    --slate: #1e293b;
    --mid: #475569;
    --light: #94a3b8;
    --border: #e2e8f0;
    --bg: #f8fafc;
    --white: #ffffff;
    --accent: #0891b2;
    --accent-dark: #0e7490;
    --accent-light: #ecfeff;
    --accent-glow: rgba(8, 145, 178, 0.12);
    --purple-glow: rgba(124, 58, 237, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--slate);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    line-height: 1.6;
    overflow-x: hidden;
}

/* ===== UTILITY ===== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); border: 0;
}

/* ===== SITE HEADER ===== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.site-header.scrolled {
    background: rgba(12, 24, 37, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: white;
}

.site-logo .logo-img {
    height: 90px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 100px;
    transition: all 0.2s ease;
}

.main-nav a:hover {
    color: white;
    background: rgba(255, 255, 255, 0.08);
}

.main-nav a.active {
    color: white;
}

.main-nav a.nav-cta {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: white;
}

.main-nav a.nav-cta:hover {
    background: var(--accent);
    border-color: var(--accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: white;
    margin: 5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0c1825 0%, #162640 40%, #0f2035 70%, #0c1825 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, var(--purple-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(8, 145, 178, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 48px 100px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    color: white;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 100px;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-badge .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22d3ee;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 24px;
}

.hero h1 .accent {
    background: linear-gradient(135deg, #22d3ee, var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-desc {
    font-size: 17px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 36px;
    max-width: 480px;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent), #0e7490);
    color: white;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.4);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.25);
}

.btn-dark {
    background: var(--navy);
    color: white;
    border: 1px solid var(--border);
}

.btn-dark:hover {
    background: var(--slate);
}

.hero-visual {
    position: relative;
}

.hero-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
    backdrop-filter: blur(10px);
}

.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-stat {
    text-align: center;
    padding: 20px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.hero-stat .stat-number {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 32px;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 4px;
}

.hero-stat .stat-number span {
    font-size: 18px;
    color: var(--accent);
}

.hero-stat .stat-label {
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.hero-card-footer {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-card-footer .pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22d3ee;
    animation: pulse 2s ease-in-out infinite;
}

.hero-card-footer span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== TRUSTED BY / DOMAINS ===== */
.trust-bar {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 32px 48px;
}

.trust-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 40px;
}

.trust-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--light);
    white-space: nowrap;
}

.trust-items {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 13px;
    font-weight: 500;
    color: var(--mid);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--bg);
    border-radius: 6px;
    border: 1px solid var(--border);
}

.trust-item .t-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-eyebrow {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 16px;
}

.section-title {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 16px;
    color: var(--light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 28px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #22d3ee);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    border-color: rgba(8, 145, 178, 0.2);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-4px);
}

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

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--accent-dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.service-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 12px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
}

/* ===== ABOUT SECTION ===== */
.about {
    background: var(--white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.about-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content .section-eyebrow,
.about-content .section-title {
    text-align: left;
}

.about-lead {
    font-size: 17px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 28px;
}

.about-points {
    list-style: none;
    margin-bottom: 32px;
}

.about-points li {
    padding: 8px 0 8px 24px;
    position: relative;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
}

.about-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #22d3ee);
}

.about-visual {
    position: relative;
}

.about-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 16px;
    padding: 40px;
    color: white;
    position: relative;
    overflow: hidden;
}

.about-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, var(--accent-glow) 0%, transparent 60%);
    pointer-events: none;
}

.about-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
}

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

.about-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
}

.about-card p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 24px;
}

.about-expertise {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.expertise-tag {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.expertise-tag .tag-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #22d3ee;
    flex-shrink: 0;
}

/* ===== APPROACH SECTION ===== */
.approach {
    padding: 100px 48px;
    max-width: 1400px;
    margin: 0 auto;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    counter-reset: approach-counter;
}

.approach-step {
    background: var(--white);
    border-radius: 14px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    position: relative;
    counter-increment: approach-counter;
    transition: all 0.3s ease;
}

.approach-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.approach-step .step-num {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 36px;
    font-weight: 700;
    color: rgba(8, 145, 178, 0.12);
    margin-bottom: 16px;
    line-height: 1;
}

.approach-step h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 17px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 10px;
}

.approach-step p {
    font-size: 13px;
    color: var(--mid);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta {
    padding: 0 48px 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.cta-card {
    background: linear-gradient(135deg, var(--navy), var(--navy-light), #0f2035);
    border-radius: 20px;
    padding: 80px 60px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 100%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 0%, var(--purple-glow) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

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

.cta-card h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.cta-card p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 36px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-card .btn-primary {
    box-shadow: 0 4px 20px rgba(8, 145, 178, 0.4);
}

.cta-contact-info {
    margin-top: 28px;
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
}

.cta-contact-item {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    gap: 8px;
}

.cta-contact-item a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
}

.cta-contact-item a:hover {
    color: #22d3ee;
}

/* ===== SITE FOOTER ===== */
.site-footer {
    background: var(--navy);
    color: white;
    padding: 60px 48px 32px;
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 32px;
}

.footer-brand .footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 12px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.35);
    max-width: 300px;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    gap: 48px;
}

.footer-links-col h4 {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 16px;
}

.footer-links-col a {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    padding: 4px 0;
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: #22d3ee;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.25);
}

/* ===== PAGE TEMPLATES ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 160px 48px 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, var(--accent-glow) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, var(--purple-glow) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
}

.page-hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.page-hero h1 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.page-hero p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.7;
}

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 48px;
}

/* About Page */
.about-page-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.about-page-text h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
    margin-top: 40px;
}

.about-page-text h2:first-child {
    margin-top: 0;
}

.about-page-text p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-page-text ul {
    margin-bottom: 16px;
    padding-left: 0;
    list-style: none;
}

.about-page-text ul li {
    padding: 6px 0 6px 20px;
    position: relative;
    font-size: 14px;
    color: var(--mid);
    line-height: 1.6;
}

.about-page-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
}

.about-sidebar {
    position: sticky;
    top: 120px;
}

.about-info-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 28px;
}

.about-info-card + .about-info-card {
    margin-top: 20px;
}

.about-info-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 20px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item .info-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-item .info-icon svg {
    width: 16px;
    height: 16px;
    stroke: var(--accent-dark);
    fill: none;
    stroke-width: 1.5;
}

.info-item .info-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light);
}

.info-item .info-value {
    font-size: 14px;
    color: var(--slate);
    font-weight: 500;
}

/* Services Detail Page */
.services-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 40px;
}

.service-detail-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-detail-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--accent), #22d3ee);
}

.service-detail-card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.service-detail-card h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 14px;
}

.service-detail-card p {
    font-size: 14px;
    color: var(--mid);
    line-height: 1.7;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 28px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.contact-info > p {
    font-size: 15px;
    color: var(--mid);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.contact-method:hover {
    border-color: rgba(8, 145, 178, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
}

.contact-method .method-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--accent-light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method .method-icon svg {
    width: 20px;
    height: 20px;
    stroke: var(--accent-dark);
    fill: none;
    stroke-width: 1.5;
}

.contact-method .method-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light);
}

.contact-method .method-value {
    font-size: 15px;
    color: var(--navy);
    font-weight: 500;
}

.contact-method .method-value a {
    color: var(--navy);
    text-decoration: none;
}

.contact-method .method-value a:hover {
    color: var(--accent);
}

.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 14px;
    padding: 36px;
}

.contact-form-wrap h3 {
    font-family: 'Fraunces', Georgia, serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--light);
    display: block;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: var(--slate);
    background: var(--bg);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.1);
}

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

/* ===== SCROLL ANIMATIONS ===== */
.fade-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 140px 24px 80px;
    }

    .hero-visual {
        max-width: 500px;
    }

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

    .about-inner {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 80px 24px;
    }

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

    .about-page-grid {
        grid-template-columns: 1fr;
    }

    .services-detail-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-top {
        flex-direction: column;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .header-inner {
        padding: 16px 20px;
    }

    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(12, 24, 37, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 8px;
        z-index: 999;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav a {
        font-size: 20px;
        padding: 12px 32px;
    }

    .menu-toggle {
        display: block;
    }

    .hero-content {
        padding: 120px 20px 60px;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .services {
        padding: 60px 20px;
    }

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

    .approach {
        padding: 60px 20px;
    }

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

    .cta {
        padding: 0 20px 60px;
    }

    .cta-card {
        padding: 50px 24px;
    }

    .page-hero {
        padding: 120px 20px 60px;
    }

    .page-content {
        padding: 40px 20px;
    }

    .site-footer {
        padding: 40px 20px 24px;
    }

    .footer-links {
        flex-direction: column;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .trust-bar {
        padding: 24px 20px;
    }

    .trust-inner {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}
