/* WordPress system font stack */
:root {
  --font: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --green: #00854b;
  --green-dark: #006837;
  --green-light: rgba(0,133,75,0.07);
  --text: #151515;
  --text-sec: #555;
  --text-light: #888;
  --bg: #f7f7f7;
  --white: #fff;
  --border: #e0e0e0;
  --border-light: #eee;
  --shadow: 0 2px 8px rgba(0,0,0,0.08);
  --r1: 8px;
  --r2: 14px;
  --r3: 20px;
}
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 70px; }
body { font-family: var(--font); font-size: 17px; line-height: 1.6; color: var(--text); background: var(--bg); -webkit-font-smoothing: antialiased; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }
input, select, textarea { font-family: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
:focus-visible { outline: 2px solid var(--green); outline-offset: 2px; }

/* HEADER */
.site-header { background: var(--white); border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 100; }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; gap: 24px; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 20px; font-weight: 900; color: var(--green); }
.logo-icon { width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
.logo-icon svg { width: 18px; height: 18px; fill: white; }
.logo-sub { display: block; font-size: 10px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.5px; }
.main-nav { display: flex; gap: 2px; }
.main-nav a { padding: 8px 14px; font-size: 15px; font-weight: 500; color: var(--text-sec); border-radius: var(--r1); transition: all 0.2s; }
.main-nav a:hover, .main-nav a.active { background: var(--green-light); color: var(--green); }
.header-right { display: flex; align-items: center; gap: 12px; }
.lang-toggle { display: flex; background: var(--bg); border: 1px solid var(--border); border-radius: 30px; overflow: hidden; }
.lang-toggle button { padding: 5px 11px; font-size: 12px; font-weight: 700; border: none; background: transparent; color: var(--text-light); cursor: pointer; transition: all 0.2s; }
.lang-toggle button.active { background: var(--green); color: white; }
.btn { display: inline-flex; align-items: center; gap: 6px; padding: 10px 20px; border-radius: 40px; font-size: 15px; font-weight: 600; border: none; cursor: pointer; transition: all 0.2s; white-space: nowrap; }
.btn-primary { background: var(--green); color: white; }
.btn-primary:hover { background: var(--green-dark); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--text); }
.btn-ghost:hover { border-color: var(--green); color: var(--green); }
.btn-white { background: white; color: var(--green); }
.btn-white:hover { background: #f0fdf4; }
.btn-outlinew { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.4); }
.btn-outlinew:hover { background: rgba(255,255,255,0.1); border-color: white; }
.menu-toggle { display: none; flex-direction: column; gap: 5px; width: 38px; height: 38px; padding: 8px; background: transparent; border: none; border-radius: 6px; cursor: pointer; }
.menu-toggle:hover { background: var(--bg); }
.menu-toggle span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: 0.2s; }
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* HERO — asymmetric 42/58 */
.hero { background: var(--white); padding: 64px 0 56px; border-bottom: 1px solid var(--border-light); }
.hero-inner { display: grid; grid-template-columns: 42% 1fr; gap: 48px; align-items: center; }
.hero-text h1 { font-size: clamp(1.9rem, 3.5vw, 2.8rem); font-weight: 900; line-height: 1.15; margin-bottom: 16px; letter-spacing: -0.5px; }
.hero-text h1 .hl { color: var(--green); }
.hero-text p { font-size: 17px; color: var(--text-sec); line-height: 1.75; margin-bottom: 24px; max-width: 420px; }
.hero-btns { display: flex; gap: 10px; flex-wrap: wrap; }
.hero-meta { margin-top: 32px; padding-top: 24px; border-top: 1px solid var(--border-light); display: flex; gap: 32px; }
.hero-stat strong { display: block; font-size: 26px; font-weight: 900; color: var(--text); }
.hero-stat span { font-size: 13px; color: var(--text-light); }
.hero-img { border-radius: var(--r3); overflow: hidden; box-shadow: var(--shadow); }
.hero-img img { width: 100%; height: 380px; object-fit: cover; }

/* SECTIONS */
.section { padding: 60px 0; }
.section-alt { background: var(--white); }
.section-alt2 { background: var(--bg); }
.section-header { margin-bottom: 36px; }
.section-label { display: inline-block; background: var(--green-light); color: var(--green); padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; margin-bottom: 10px; border: 1px solid rgba(0,133,75,0.12); }
.section-title { font-size: clamp(1.5rem, 2.5vw, 1.9rem); font-weight: 800; margin-bottom: 10px; letter-spacing: -0.3px; }
.section-intro { font-size: 16px; color: var(--text-sec); max-width: 600px; line-height: 1.7; }

/* TESTS — asymmetric 2-col layout */
.tests-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 20px; }
.test-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r2); padding: 28px 24px; transition: box-shadow 0.2s, transform 0.2s; }
.test-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.test-card.tall { padding: 32px 28px; }
.test-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.test-icon svg { width: 20px; height: 20px; fill: var(--green); }
.test-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.test-card p { font-size: 14px; color: var(--text-sec); line-height: 1.65; margin-bottom: 12px; }
.test-note { font-size: 12px; color: var(--green); font-weight: 600; display: flex; align-items: center; gap: 5px; }
.test-note svg { width: 12px; height: 12px; fill: var(--green); }

/* SIDEBAR */
.tests-layout { display: grid; grid-template-columns: 1fr 270px; gap: 28px; align-items: start; }
.tests-sidebar { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r2); padding: 24px; position: sticky; top: 84px; }
.tests-sidebar h4 { font-size: 13px; font-weight: 800; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--text); }
.tests-sidebar ul li { margin-bottom: 10px; padding-bottom: 10px; border-bottom: 1px solid var(--border-light); }
.tests-sidebar ul li:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.tests-sidebar ul li a { font-size: 14px; color: var(--text-sec); font-weight: 500; transition: color 0.2s; }
.tests-sidebar ul li a:hover { color: var(--green); }
.tests-sidebar .cta-box { background: var(--green-light); border-radius: var(--r2); padding: 16px; margin-top: 16px; text-align: center; }
.tests-sidebar .cta-box p { font-size: 13px; color: var(--text-sec); margin-bottom: 10px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 55% 1fr; gap: 56px; align-items: center; }
.about-img { border-radius: var(--r3); overflow: hidden; box-shadow: var(--shadow); }
.about-img img { width: 100%; height: 400px; object-fit: cover; }
.about-text h2 { font-size: 1.7rem; font-weight: 800; margin-bottom: 14px; letter-spacing: -0.3px; }
.about-text p { font-size: 15px; color: var(--text-sec); line-height: 1.8; margin-bottom: 14px; }
.about-list { margin: 20px 0 24px; display: flex; flex-direction: column; gap: 10px; }
.about-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; font-weight: 500; }
.about-list li .ch { width: 24px; height: 24px; background: var(--green-light); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.about-list li .ch svg { width: 12px; height: 12px; fill: var(--green); }

/* VIDEO — left 55% */
.video-section { background: #111; padding: 64px 0; }
.video-grid { display: grid; grid-template-columns: 55% 1fr; gap: 48px; align-items: center; }
.video-wrap { border-radius: var(--r3); overflow: hidden; aspect-ratio: 16/9; background: #000; }
.video-wrap video { width: 100%; height: 100%; object-fit: cover; }
.video-text { display: flex; flex-direction: column; gap: 20px; }
.video-item { display: flex; gap: 14px; align-items: flex-start; padding-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.video-item:last-child { border-bottom: none; }
.video-item .num { font-size: 22px; font-weight: 900; color: var(--green); opacity: 0.5; line-height: 1; flex-shrink: 0; width: 36px; }
.video-item h4 { font-size: 15px; font-weight: 700; color: white; margin-bottom: 4px; }
.video-item p { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.6; }

/* LOCATIONS */
.locs-grid { display: grid; grid-template-columns: 1.2fr 0.9fr 1fr; gap: 20px; }
.loc-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r2); overflow: hidden; }
.loc-map { height: 160px; background: var(--bg); }
.loc-map iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%); }
.loc-info { padding: 20px; }
.loc-info h3 { font-size: 15px; font-weight: 800; margin-bottom: 6px; }
.loc-info p { font-size: 13px; color: var(--text-sec); line-height: 1.5; margin-bottom: 4px; }
.loc-info .tel { color: var(--green); font-weight: 600; font-size: 13px; }
.loc-hours { display: flex; align-items: center; gap: 5px; font-size: 12px; color: var(--green); font-weight: 600; margin-top: 8px; }
.loc-hours svg { width: 12px; height: 12px; fill: var(--green); }

/* CONTACT */
.contact-section { background: var(--white); }
.contact-inner { display: grid; grid-template-columns: 1fr 1.4fr; gap: 48px; align-items: start; }
.contact-locs { background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--r2); padding: 28px; }
.contact-locs h3 { font-size: 16px; font-weight: 800; margin-bottom: 16px; }
.contact-loc-item { padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.contact-loc-item:last-child { border-bottom: none; }
.contact-loc-item strong { display: block; font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.contact-loc-item span { font-size: 13px; color: var(--text-sec); line-height: 1.5; }
.form-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r3); padding: 36px; box-shadow: var(--shadow); }
.form-card h3 { font-size: 18px; font-weight: 800; margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-sec); margin-bottom: 5px; }
.form-group input, .form-group select, .form-group textarea { width: 100%; padding: 11px 14px; background: var(--bg); border: 1.5px solid var(--border); border-radius: var(--r1); font-size: 15px; color: var(--text); transition: border-color 0.2s, box-shadow 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--green); box-shadow: 0 0 0 3px var(--green-light); background: var(--white); }
.form-group input::placeholder { color: var(--text-light); }
.form-group textarea { resize: vertical; min-height: 80px; }
.form-submit { margin-top: 6px; }
.form-submit .btn { width: 100%; justify-content: center; }

/* CTA */
.cta-section { background: linear-gradient(135deg, var(--green), #034c1f); padding: 64px 0; text-align: center; color: white; }
.cta-section h2 { font-size: clamp(1.5rem, 2.5vw, 2rem); font-weight: 900; margin-bottom: 10px; }
.cta-section p { font-size: 16px; opacity: 0.85; margin-bottom: 24px; }
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* FOOTER */
.site-footer { background: #111; color: white; padding: 52px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
.footer-brand .logo { color: white; margin-bottom: 14px; }
.footer-brand .logo span { color: rgba(255,255,255,0.35); }
.footer-brand .logo-icon { background: white; border-radius: 8px; padding: 5px; width: 34px; height: 34px; display: flex; align-items: center; justify-content: center; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-bottom: 16px; }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 34px; height: 34px; background: rgba(255,255,255,0.07); border-radius: 6px; display: flex; align-items: center; justify-content: center; transition: background 0.2s; }
.footer-social a:hover { background: var(--green); }
.footer-social svg { width: 15px; height: 15px; fill: rgba(255,255,255,0.6); }
.footer-social a:hover svg { fill: white; }
.footer-col h4 { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.8px; color: rgba(255,255,255,0.9); margin-bottom: 16px; }
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-col ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; color: rgba(255,255,255,0.3); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }
.footer-badges { display: flex; gap: 8px; }
.footer-badge { display: flex; align-items: center; gap: 5px; padding: 4px 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: 5px; font-size: 11px; color: rgba(255,255,255,0.5); font-weight: 600; }
.footer-badge svg { width: 11px; height: 11px; fill: var(--green); }

/* CONTENT PAGES (Legal, Portal, etc.) */
.content-page { background: var(--white); padding: 60px 0; min-height: 60vh; }
.content-page .container { max-width: 800px; }
.content-header { margin-bottom: 36px; padding-bottom: 24px; border-bottom: 1px solid var(--border-light); }
.content-header h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 900; margin-bottom: 8px; letter-spacing: -0.3px; }
.content-header p { font-size: 15px; color: var(--text-sec); }
.content-body { font-size: 15px; line-height: 1.8; color: var(--text-sec); }
.content-body h2 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin: 28px 0 12px; }
.content-body h3 { font-size: 1rem; font-weight: 700; color: var(--text); margin: 20px 0 8px; }
.content-body p { margin-bottom: 14px; }
.content-body ul, .content-body ol { margin: 0 0 14px 20px; }
.content-body li { margin-bottom: 6px; list-style: disc; }
.content-body ol li { list-style: decimal; }
.content-body a { color: var(--green); text-decoration: underline; }
.content-body a:hover { color: var(--green-dark); }
.content-body .last-updated { font-size: 13px; color: var(--text-light); margin-bottom: 24px; padding: 12px 16px; background: var(--bg); border-radius: var(--r1); border: 1px solid var(--border-light); }
.content-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin: 20px 0; }
.content-card { background: var(--bg); border: 1px solid var(--border-light); border-radius: var(--r2); padding: 24px; }
.content-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.content-card p { font-size: 14px; margin-bottom: 0; }
.content-card .card-icon { width: 44px; height: 44px; background: var(--green-light); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.content-card .card-icon svg { width: 20px; height: 20px; fill: var(--green); }
.portal-hero { background: linear-gradient(135deg, var(--green), #034c1f); padding: 64px 0; text-align: center; color: white; }
.portal-hero h1 { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 900; margin-bottom: 12px; }
.portal-hero p { font-size: 17px; opacity: 0.9; margin-bottom: 24px; }
.portal-hero .btn { margin-top: 8px; }
.portal-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 32px; }
.portal-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r2); padding: 28px; text-align: center; transition: box-shadow 0.2s, transform 0.2s; }
.portal-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.portal-card .icon { width: 56px; height: 56px; background: var(--green-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.portal-card .icon svg { width: 26px; height: 26px; fill: var(--green); }
.portal-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.portal-card p { font-size: 14px; color: var(--text-sec); margin-bottom: 16px; line-height: 1.6; }
.portal-section { padding: 60px 0; }
.portal-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 32px; }
.portal-feature { display: flex; gap: 14px; align-items: flex-start; }
.portal-feature .icon { width: 40px; height: 40px; background: var(--green-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.portal-feature .icon svg { width: 18px; height: 18px; fill: var(--green); }
.portal-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; color: var(--text); }
.portal-feature p { font-size: 14px; color: var(--text-sec); line-height: 1.6; }
.jobs-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.job-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--r2); padding: 24px; display: flex; justify-content: space-between; align-items: center; gap: 20px; transition: box-shadow 0.2s; }
.job-card:hover { box-shadow: var(--shadow); }
.job-info h3 { font-size: 17px; font-weight: 700; margin-bottom: 6px; color: var(--text); }
.job-info span { font-size: 14px; color: var(--text-sec); display: flex; align-items: center; gap: 6px; }
.job-info span svg { width: 14px; height: 14px; fill: var(--text-light); }
.job-meta { display: flex; gap: 12px; align-items: center; flex-shrink: 0; }
.job-tag { font-size: 12px; font-weight: 700; padding: 4px 10px; background: #fff5e6; color: #c2410c; border-radius: 20px; text-transform: uppercase; letter-spacing: 0.3px; }

/* Breadcrumb */
.breadcrumb { background: var(--bg); padding: 14px 0; border-bottom: 1px solid var(--border-light); }
.breadcrumb-list { display: flex; gap: 8px; align-items: center; font-size: 13px; color: var(--text-light); }
.breadcrumb-list a { color: var(--text-sec); transition: color 0.2s; }
.breadcrumb-list a:hover { color: var(--green); }
.breadcrumb-list .sep { color: var(--text-light); }
.breadcrumb-list .current { color: var(--text); font-weight: 600; }

/* RESPONSIVE */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-text { text-align: center; }
  .hero-text p { margin: 0 auto 24px; }
  .hero-btns { justify-content: center; }
  .hero-meta { justify-content: center; }
  .hero-img { max-width: 600px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .video-grid { grid-template-columns: 1fr; gap: 36px; }
  .tests-layout { grid-template-columns: 1fr; }
  .tests-sidebar { position: static; }
  .contact-inner { grid-template-columns: 1fr; }
  .locs-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .locs-grid { grid-template-columns: 1fr; }
  .tests-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portal-grid { grid-template-columns: 1fr; }
  .portal-features { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .main-nav { display: none; position: fixed; top: 68px; left: 0; right: 0; bottom: 0; background: var(--white); flex-direction: column; padding: 20px; gap: 4px; border-top: 1px solid var(--border); overflow-y: auto; }
  .main-nav.active { display: flex; }
  .main-nav a { padding: 12px 16px; font-size: 16px; }
  .menu-toggle { display: flex; }
  .header-right .btn { display: none; }
  .hero-meta { flex-direction: column; gap: 16px; align-items: center; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .content-grid { grid-template-columns: 1fr; }
  .job-card { flex-direction: column; text-align: center; }
  .job-meta { justify-content: center; }
  .job-info span { justify-content: center; }
}
