/* ============================================================
   911 PC Help — Sagacent-inspired Stylesheet
   Light blue + orange palette, clean and professional
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --blue:        #1a7bbf;
  --blue-mid:    #2196d3;
  --blue-light:  #29abe2;
  --blue-pale:   #e0f3fb;
  --orange:      #e87722;
  --orange-dark: #c4601a;
  --orange-pale: #fef3e8;
  --white:       #ffffff;
  --gray-50:     #f5f7fa;
  --gray-100:    #edf0f4;
  --gray-200:    #d8dde6;
  --gray-400:    #8a95a8;
  --gray-600:    #4a5568;
  --gray-800:    #1a2b3c;
  --text:        #1a2b3c;
  --text-muted:  #5a6a7e;
  --radius:      10px;
  --radius-lg:   18px;
  --shadow-sm:   0 2px 10px rgba(30,77,140,0.08);
  --shadow:      0 6px 28px rgba(30,77,140,0.12);
  --shadow-lg:   0 12px 48px rgba(30,77,140,0.18);
  --transition:  0.25s ease;
  --container:   1200px;
  --header-h:    76px;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--orange); }

h1,h2,h3,h4,h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--gray-800);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.2rem; }
p { color: var(--text-muted); }

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

/* ---------- Sections ---------- */
.section { padding: 5.5rem 0; }
.section-sm { padding: 3rem 0; }
.bg-gray { background: var(--gray-50); }
.bg-blue-pale { background: var(--blue-pale); }

.section-header { text-align: center; max-width: 680px; margin: 0 auto 3.5rem; }
.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(232,119,34,0.2);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.section-header h2 { color: var(--gray-800); margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(232,119,34,0.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}
.btn-blue:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  color: var(--white);
  transform: translateY(-1px);
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); border-bottom-color: transparent; }
.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--gray-800);
  letter-spacing: -0.02em;
}
.logo-911 { color: var(--orange); }
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--gray-600);
  border-radius: 6px;
  transition: color var(--transition), background var(--transition);
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 1rem; right: 1rem;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.main-nav a:hover { color: var(--blue); background: var(--gray-50); }
.main-nav a:hover::after { transform: scaleX(1); }
.main-nav a.active { color: var(--blue); font-weight: 600; }
.nav-cta { margin-left: 0.75rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gray-800); border-radius: 2px; transition: all var(--transition); }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  margin-top: var(--header-h);
  min-height: 620px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #1565a3 0%, #1a7bbf 40%, #2196d3 100%);
}

/* Geometric pattern overlay */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,0.07) 0%, transparent 60%),
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.03) 40px, rgba(255,255,255,0.03) 80px);
  pointer-events: none;
}

/* Bottom wave */
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 5rem 0 6rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 0.3rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.25rem;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  line-height: 1.15;
}
.hero h1 span { color: #f8b44c; }
.hero-sub {
  color: rgba(255,255,255,0.78);
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 480px;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.hero-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
}
.hero-badge::before {
  content: '✓';
  color: #f8b44c;
  font-weight: 700;
}

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  animation: slideInRight 0.8s ease 0.3s both;
}
.hero-panel-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 1.5rem;
}
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hero-stat {
  background: rgba(255,255,255,0.18);
  border-radius: 10px;
  padding: 1.1rem;
  text-align: center;
}
.hero-stat .num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #f8b44c;
  line-height: 1;
  margin-bottom: 0.3rem;
}
.hero-stat .lbl {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
}
.hero-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
}
.status-dot {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 2.5rem 0;
  box-shadow: var(--shadow-sm);
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; text-align: center; }
.stat-item { padding: 1rem; }
.stat-item .num {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  color: var(--blue);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .label { font-size: 0.88rem; color: var(--text-muted); font-weight: 500; }

/* ---------- Service Cards ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  background: var(--orange-pale);
  border: 1px solid rgba(232,119,34,0.25);
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
  margin-bottom: 0.9rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all 0.3s ease;
  position: relative;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--gray-200);
}
.service-icon {
  width: 52px; height: 52px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}
.service-icon svg { width: 24px; height: 24px; stroke: var(--blue); }
.service-card h3 { color: var(--gray-800); margin-bottom: 0.6rem; font-size: 1.1rem; }
.service-card p { font-size: 0.93rem; color: var(--text-muted); margin-bottom: 1.25rem; }
.learn-more {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--orange);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap var(--transition);
}
.learn-more:hover { color: var(--orange-dark); gap: 0.6rem; }
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ---------- Why Section ---------- */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.why-list { display: flex; flex-direction: column; gap: 1.75rem; }
.why-item { display: flex; gap: 1rem; }
.why-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.why-item h4 { color: var(--gray-800); margin-bottom: 0.3rem; font-size: 1rem; }
.why-item p { font-size: 0.92rem; }

/* Commitment card on the right */
.commitment-card {
  background: var(--blue);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}
.commitment-card h3 { color: var(--white); margin-bottom: 1.5rem; font-size: 1.3rem; }
.commitment-steps { display: flex; flex-direction: column; gap: 1rem; }
.commitment-step { display: flex; gap: 0.9rem; align-items: flex-start; }
.step-num {
  width: 32px; height: 32px;
  background: var(--orange);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
  flex-shrink: 0;
}
.commitment-step h5 { color: var(--white); margin-bottom: 0.2rem; font-size: 0.95rem; }
.commitment-step p { color: rgba(255,255,255,0.7); font-size: 0.85rem; }

/* ---------- Testimonials ---------- */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow); }
.stars { color: var(--orange); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.quote-mark { font-size: 3.5rem; line-height: 0.5; color: var(--orange); opacity: 0.25; font-family: Georgia, serif; display: block; margin-bottom: 0.5rem; }
.testimonial-card blockquote { font-size: 0.93rem; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 1.25rem; }
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 40px; height: 40px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--blue);
  font-size: 0.9rem;
  flex-shrink: 0;
}
.reviewer strong { display: block; font-size: 0.9rem; color: var(--gray-800); }
.reviewer span { font-size: 0.8rem; color: var(--text-muted); }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, #1565a3 0%, #1a7bbf 60%, #2196d3 100%);
  padding: 5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.cta-banner .container { position: relative; z-index: 1; }
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 520px; margin: 0 auto 2rem; }
.cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ---------- Footer ---------- */
.site-footer {
  background: #0d2e48;
  color: rgba(255,255,255,0.65);
  padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: 0.9rem; margin-top: 1rem; max-width: 240px; }
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: 1.25rem;
}
.footer-phone:hover { color: #f0a050; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.55); font-size: 0.9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--orange); }
.footer-address { font-size: 0.88rem; line-height: 1.7; }
.footer-address strong { color: var(--white); display: block; margin-bottom: 0.2rem; margin-top: 0.75rem; }
.footer-address strong:first-child { margin-top: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.85rem; }
.footer-bottom a { color: rgba(255,255,255,0.4); font-size: 0.85rem; }
.footer-bottom a:hover { color: var(--orange); }

/* ---------- Animations ---------- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(32px); }
  to   { opacity: 1; transform: none; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.92); }
  to   { opacity: 1; transform: none; }
}

/* Hero animations */
.hero-content { animation: slideInLeft 0.8s ease both; }
.hero-panel   { animation: slideInRight 0.8s ease 0.25s both; }

/* Stats bar */
.stat-item:nth-child(1) { animation: fadeUp 0.6s ease 0.05s both; }
.stat-item:nth-child(2) { animation: fadeUp 0.6s ease 0.15s both; }
.stat-item:nth-child(3) { animation: fadeUp 0.6s ease 0.25s both; }
.stat-item:nth-child(4) { animation: fadeUp 0.6s ease 0.35s both; }

/* Service cards */
.service-card:nth-child(1) { animation: fadeUp 0.6s ease 0.05s both; }
.service-card:nth-child(2) { animation: fadeUp 0.6s ease 0.15s both; }
.service-card:nth-child(3) { animation: fadeUp 0.6s ease 0.25s both; }
.service-card:nth-child(4) { animation: fadeUp 0.6s ease 0.3s both; }
.service-card:nth-child(5) { animation: fadeUp 0.6s ease 0.35s both; }
.service-card:nth-child(6) { animation: fadeUp 0.6s ease 0.4s both; }

/* Testimonials */
.testimonial-card:nth-child(1) { animation: fadeUp 0.6s ease 0.1s both; }
.testimonial-card:nth-child(2) { animation: fadeUp 0.6s ease 0.22s both; }
.testimonial-card:nth-child(3) { animation: fadeUp 0.6s ease 0.34s both; }

/* Why items */
.why-item:nth-child(1) { animation: slideInLeft 0.6s ease 0.1s both; }
.why-item:nth-child(2) { animation: slideInLeft 0.6s ease 0.2s both; }
.why-item:nth-child(3) { animation: slideInLeft 0.6s ease 0.3s both; }
.why-item:nth-child(4) { animation: slideInLeft 0.6s ease 0.4s both; }
.commitment-card       { animation: slideInRight 0.7s ease 0.2s both; }

/* Section headers */
.section-header { animation: fadeUp 0.7s ease both; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 2rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  .main-nav { display: none; flex-direction: column; position: absolute; top: var(--header-h); left: 0; right: 0; background: var(--white); box-shadow: var(--shadow); padding: 1rem; border-top: 1px solid var(--gray-100); }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.75rem 1rem; border-radius: 6px; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .hero-inner { padding: 3.5rem 0 4.5rem; }
  .hero h1 { font-size: 2rem; }
  .hero-ctas { flex-direction: column; }
  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ---------- Inner Page Hero ---------- */
.page-hero {
  margin-top: var(--header-h);
  background: linear-gradient(135deg, #1565a3 0%, #1a7bbf 60%, #2196d3 100%);
  padding: 4rem 0 4.5rem;
  position: relative;
  overflow: hidden;
  text-align: left;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; max-width: 640px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; max-width: 580px; }
.bg-gray .page-hero { background: var(--gray-50); }

/* ---------- Service Detail (services.php) ---------- */
.service-detail { padding: 4.5rem 0; border-bottom: 1px solid var(--gray-100); }
.service-detail:last-of-type { border-bottom: none; }
.service-detail:nth-child(even) { background: var(--gray-50); }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 4rem;
  align-items: center;
}
.service-detail-content h2 { margin-bottom: 1rem; color: var(--gray-800); }
.service-detail-content p { margin-bottom: 1rem; }
.feature-list { list-style: none; margin: 1.5rem 0; display: flex; flex-direction: column; gap: 0.6rem; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}
.service-visual-box {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  text-align: center;
}
.service-visual-box h3 { color: var(--white); margin-bottom: 0.5rem; }
.service-visual-icon {
  width: 80px; height: 80px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}
.service-visual-icon svg { width: 36px; height: 36px; stroke: white; }
.highlight-num {
  font-size: 3rem;
  font-weight: 800;
  color: #f8b44c;
  line-height: 1;
  margin: 0.75rem 0 0.25rem;
}
.highlight-label { font-size: 0.85rem; color: rgba(255,255,255,0.65); }

/* ---------- About Page ---------- */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 4rem;
  align-items: start;
}
.story-content p { margin-bottom: 1rem; }
.story-milestones { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; margin-top: 2rem; }
.milestone {
  background: var(--gray-50);
  border-left: 3px solid var(--orange);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.25rem;
}
.milestone .year { display: block; font-size: 1.2rem; font-weight: 800; color: var(--blue); margin-bottom: 0.25rem; }
.milestone p { font-size: 0.88rem; margin: 0; }
.about-visual {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 2rem;
  color: var(--white);
  position: sticky;
  top: calc(var(--header-h) + 2rem);
}
.about-visual h3 { color: var(--white); margin-bottom: 0.5rem; }
.values-list { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
.value-item { display: flex; gap: 0.75rem; align-items: flex-start; }
.value-icon {
  width: 34px; height: 34px;
  background: var(--orange);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.value-icon svg { width: 16px; height: 16px; stroke: white; }
.value-text h5 { color: var(--white); margin-bottom: 0.2rem; font-size: 0.92rem; }
.value-text p { color: rgba(255,255,255,0.65); font-size: 0.83rem; }

/* Team section */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.team-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 2rem;
  transition: box-shadow var(--transition);
}
.team-card:hover { box-shadow: var(--shadow); }
.team-avatar {
  width: 64px; height: 64px;
  background: var(--blue-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; font-weight: 800; color: var(--blue);
  margin-bottom: 1rem;
}
.team-card h3 { color: var(--gray-800); font-size: 1.05rem; margin-bottom: 0.2rem; }
.team-role { font-size: 0.8rem; color: var(--orange); font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.75rem; }
.team-since { font-size: 0.8rem; color: var(--gray-400); margin-bottom: 0.6rem; }
.team-card p { font-size: 0.88rem; }

/* ---------- Contact Page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 4rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 0.75rem; }
.contact-info > p { margin-bottom: 2rem; }
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon {
  width: 44px; height: 44px;
  background: var(--blue-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 20px; height: 20px; stroke: var(--blue); }
.contact-detail h4 { color: var(--gray-800); font-size: 0.9rem; margin-bottom: 0.2rem; }
.contact-detail a, .contact-detail p { font-size: 0.92rem; color: var(--text-muted); }
.contact-detail a:hover { color: var(--orange); }

.contact-form-box {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}
.contact-form-box h3 { margin-bottom: 1.5rem; color: var(--gray-800); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--gray-800); margin-bottom: 0.4rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--blue-light);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.thank-you-message { display: none; text-align: center; padding: 2rem; }
.thank-you-message.show { display: block; }
.thank-you-message h3 { color: var(--blue); margin-bottom: 0.5rem; }

/* ---------- Responsive: inner pages ---------- */
@media (max-width: 1024px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-visual-box { display: none; }
  .about-story-grid { grid-template-columns: 1fr; }
  .about-visual { position: static; }
  .story-milestones { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .story-milestones { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Contact thank-you message ---------- */
.thank-you-msg { display: none; text-align: center; padding: 2.5rem 1rem; }
.thank-you-msg.show { display: block; }
.thank-you-icon {
  width: 72px; height: 72px;
  background: #dcfce7;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
}
.thank-you-icon svg { width: 32px; height: 32px; stroke: #16a34a; }
.thank-you-msg h3 { color: var(--blue); margin-bottom: 0.5rem; }
.thank-you-msg p { color: var(--text-muted); }
