:root {
  --warm-cream: #FAF7F2;
  --warm-white: #FFFFFF;
  --bark: #2C2418;
  --bark-soft: #4A3D2E;
  --copper: #C4733B;
  --copper-light: #D4915E;
  --copper-glow: rgba(196, 115, 59, 0.12);
  --sage: #5B7A5E;
  --sage-light: #7A9E7D;
  --slate: #64605A;
  --stone: #B5AFA7;
  --stone-light: #D6D1CA;
  --cloud: #F0ECE6;
  --serif: 'DM Serif Display', Georgia, serif;
  --sans: 'Source Sans 3', 'Segoe UI', sans-serif;
  --shadow-sm: 0 1px 3px rgba(44, 36, 24, 0.06);
  --shadow-md: 0 4px 16px rgba(44, 36, 24, 0.08);
  --shadow-lg: 0 12px 40px rgba(44, 36, 24, 0.10);
  --radius: 12px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--bark);
  background: var(--warm-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--stone-light);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 0 32px; height: 72px;
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--serif); font-size: 1.5rem; color: var(--bark);
  text-decoration: none; letter-spacing: -0.02em;
}
.logo span { color: var(--copper); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--slate);
  text-decoration: none; transition: color 0.2s;
  letter-spacing: 0.02em;
}
.nav-links a:hover { color: var(--copper); }
.nav-cta {
  background: var(--copper) !important; color: var(--warm-white) !important;
  padding: 10px 24px !important; border-radius: 8px;
  font-weight: 600 !important; transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--copper-light) !important; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  padding: 160px 32px 100px;
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.hero-text h1 {
  font-family: var(--serif); font-size: 3.2rem; line-height: 1.15;
  color: var(--bark); margin-bottom: 24px; letter-spacing: -0.02em;
}
.hero-text h1 em {
  font-style: italic; color: var(--copper);
}
.hero-text p {
  font-size: 1.15rem; color: var(--slate); max-width: 480px;
  margin-bottom: 36px; line-height: 1.7;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--copper); color: var(--warm-white);
  padding: 14px 32px; border-radius: 8px; font-weight: 600;
  text-decoration: none; font-size: 1rem;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(196, 115, 59, 0.25);
}
.btn-primary:hover {
  background: var(--copper-light); transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(196, 115, 59, 0.3);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--bark); padding: 14px 24px;
  text-decoration: none; font-weight: 600; font-size: 1rem;
  border: 2px solid var(--stone-light); border-radius: 8px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-secondary:hover { border-color: var(--copper); color: var(--copper); }

/* Hero visual */
.hero-visual {
  position: relative;
  display: flex; justify-content: center; align-items: center;
}
.hero-card {
  background: var(--warm-white); border-radius: 20px;
  padding: 40px; box-shadow: var(--shadow-lg);
  width: 100%; max-width: 440px;
  border: 1px solid var(--cloud);
  position: relative; overflow: hidden;
}
.hero-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--sage));
}
.stat-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
}
.stat { text-align: center; }
.stat-number {
  font-family: var(--serif); font-size: 2.4rem; color: var(--copper);
  line-height: 1.1;
}
.stat-label {
  font-size: 0.82rem; color: var(--slate); margin-top: 4px;
  font-weight: 500; text-transform: uppercase; letter-spacing: 0.06em;
}
.stat-divider {
  grid-column: 1 / -1; height: 1px; background: var(--cloud);
}
.hero-badge {
  position: absolute; top: -12px; right: -12px;
  background: var(--sage); color: white;
  padding: 8px 16px; border-radius: 20px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  box-shadow: var(--shadow-md);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--warm-white); border-top: 1px solid var(--cloud);
  border-bottom: 1px solid var(--cloud);
  padding: 28px 32px;
}
.trust-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  gap: 48px; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--slate); font-size: 0.88rem; font-weight: 500;
}
.trust-icon {
  width: 36px; height: 36px; border-radius: 8px;
  background: var(--copper-glow);
  display: flex; align-items: center; justify-content: center;
}
.trust-icon svg { width: 18px; height: 18px; color: var(--copper); }

/* ── SECTION COMMON ── */
section { padding: 100px 32px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--copper); margin-bottom: 12px;
}
.section-title {
  font-family: var(--serif); font-size: 2.4rem; color: var(--bark);
  margin-bottom: 16px; letter-spacing: -0.02em; line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--slate); max-width: 560px;
  line-height: 1.7;
}

/* ── SERVICES ── */
.services { background: var(--warm-white); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-subtitle { margin: 0 auto; }
.service-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.service-card {
  background: var(--warm-cream); border-radius: var(--radius);
  padding: 36px 32px; transition: transform 0.25s, box-shadow 0.25s;
  border: 1px solid transparent;
  position: relative; overflow: hidden;
}
.service-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
  border-color: var(--stone-light);
}
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon.managed { background: linear-gradient(135deg, var(--copper-glow), rgba(196,115,59,0.2)); }
.service-icon.cyber { background: linear-gradient(135deg, rgba(91,122,94,0.12), rgba(91,122,94,0.22)); }
.service-icon.consult { background: linear-gradient(135deg, rgba(44,36,24,0.08), rgba(44,36,24,0.14)); }
.service-icon svg { width: 24px; height: 24px; }
.service-card h3 {
  font-family: var(--serif); font-size: 1.35rem; margin-bottom: 12px;
  color: var(--bark);
}
.service-card p {
  font-size: 0.95rem; color: var(--slate); line-height: 1.65;
  margin-bottom: 20px;
}
.service-link {
  font-size: 0.88rem; font-weight: 600; color: var(--copper);
  text-decoration: none; display: inline-flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }

/* ── WHY US ── */
.why-us { background: var(--warm-cream); }
.why-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
  margin-top: 48px;
}
.why-list { display: flex; flex-direction: column; gap: 28px; }
.why-item {
  display: flex; gap: 20px; align-items: flex-start;
}
.why-marker {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: var(--copper-glow);
  display: flex; align-items: center; justify-content: center;
  margin-top: 2px;
}
.why-marker svg { width: 20px; height: 20px; color: var(--copper); }
.why-item h4 {
  font-family: var(--serif); font-size: 1.15rem; margin-bottom: 6px;
  color: var(--bark);
}
.why-item p { font-size: 0.92rem; color: var(--slate); line-height: 1.6; }
.why-visual {
  background: var(--warm-white); border-radius: 20px; padding: 48px;
  box-shadow: var(--shadow-md); border: 1px solid var(--cloud);
  position: relative;
}
.why-visual::after {
  content: ''; position: absolute; top: -20px; right: -20px;
  width: 80px; height: 80px; border-radius: 50%;
  background: var(--copper-glow); z-index: 0;
}
.quote-text {
  font-family: var(--serif); font-size: 1.4rem; color: var(--bark);
  line-height: 1.5; margin-bottom: 24px; position: relative; z-index: 1;
}
.quote-text::before {
  content: '\201C'; font-size: 4rem; color: var(--copper); opacity: 0.3;
  position: absolute; top: -24px; left: -8px; line-height: 1;
}
.quote-author { display: flex; align-items: center; gap: 14px; position: relative; z-index: 1; }
.quote-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--sage));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem;
}
.quote-name { font-weight: 600; font-size: 0.92rem; }
.quote-role { font-size: 0.82rem; color: var(--slate); }

/* ── PROCESS ── */
.process { background: var(--bark); color: var(--warm-cream); }
.process .section-label { color: var(--copper-light); }
.process .section-title { color: var(--warm-cream); }
.process .section-subtitle { color: var(--stone); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 0;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 12%; right: 12%;
  height: 2px; background: var(--bark-soft);
}
.step {
  text-align: center; position: relative; padding: 0 16px;
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--bark-soft); border: 2px solid var(--copper);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.5rem; color: var(--copper);
  position: relative; z-index: 1;
}
.step h4 {
  font-family: var(--serif); font-size: 1.1rem; margin-bottom: 8px;
  color: var(--warm-cream);
}
.step p { font-size: 0.88rem; color: var(--stone); line-height: 1.55; }

/* ── INDUSTRIES ── */
.industries { background: var(--warm-white); }
.industries-header { text-align: center; margin-bottom: 56px; }
.industries-header .section-subtitle { margin: 0 auto; }
.industry-pills {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 14px;
}
.pill {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--warm-cream); border: 1px solid var(--stone-light);
  padding: 14px 24px; border-radius: 100px;
  font-size: 0.92rem; font-weight: 500; color: var(--bark);
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}
.pill:hover {
  border-color: var(--copper); background: var(--copper-glow);
  transform: translateY(-2px);
}
.pill svg { width: 18px; height: 18px; color: var(--copper); }

/* ── CTA BAND ── */
.cta-band {
  background: linear-gradient(135deg, var(--copper) 0%, #A85C2F 100%);
  padding: 80px 32px; text-align: center;
}
.cta-band h2 {
  font-family: var(--serif); font-size: 2.2rem; color: white;
  margin-bottom: 16px;
}
.cta-band p {
  font-size: 1.05rem; color: rgba(255,255,255,0.85);
  margin-bottom: 32px; max-width: 500px; margin-left: auto; margin-right: auto;
}
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: white; color: var(--copper);
  padding: 16px 36px; border-radius: 8px; font-weight: 700;
  text-decoration: none; font-size: 1rem;
  transition: transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* ── FOOTER ── */
footer {
  background: var(--bark); color: var(--stone); padding: 64px 32px 32px;
}
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid var(--bark-soft);
}
.footer-brand .logo { font-size: 1.3rem; display: block; margin-bottom: 16px; color: var(--warm-cream); }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; max-width: 280px; }
.footer-col h5 {
  font-family: var(--serif); font-size: 1rem; color: var(--warm-cream);
  margin-bottom: 16px;
}
.footer-col a {
  display: block; font-size: 0.88rem; color: var(--stone);
  text-decoration: none; margin-bottom: 10px; transition: color 0.2s;
}
.footer-col a:hover { color: var(--copper-light); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto; padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: var(--stone); text-decoration: none; }

/* ── LOCATION ACCENT ── */
.location-badge {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.82rem; color: var(--sage); font-weight: 500;
  margin-top: 12px;
}
.location-badge svg { width: 14px; height: 14px; }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-text { animation: fadeUp 0.7s ease-out; }
.hero-visual { animation: fadeUp 0.7s ease-out 0.15s both; }
.service-card { animation: fadeUp 0.5s ease-out both; }
.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }

/* ── INNER PAGE STYLES ── */

/* Page hero (used on About, Services, Contact) */
.page-hero {
  padding: 140px 32px 64px;
  text-align: center;
  background: var(--warm-white);
  border-bottom: 1px solid var(--cloud);
}
.page-hero .section-label { margin-bottom: 12px; }
.page-hero h1 {
  font-family: var(--serif); font-size: 2.8rem; color: var(--bark);
  margin-bottom: 16px; letter-spacing: -0.02em;
}
.page-hero p {
  font-size: 1.1rem; color: var(--slate); max-width: 600px;
  margin: 0 auto; line-height: 1.7;
}

/* Team cards */
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px; margin-top: 48px;
}
.team-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 40px 32px; border: 1px solid var(--cloud);
  transition: transform 0.25s, box-shadow 0.25s;
}
.team-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.team-card .team-avatar {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--copper), var(--sage));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 1.3rem;
  margin-bottom: 20px;
}
.team-card h3 {
  font-family: var(--serif); font-size: 1.35rem; color: var(--bark);
  margin-bottom: 4px;
}
.team-card .team-role {
  font-size: 0.88rem; color: var(--copper); font-weight: 600;
  margin-bottom: 16px;
}
.team-card p {
  font-size: 0.92rem; color: var(--slate); line-height: 1.65;
}

/* Award callout */
.award-callout {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--cloud);
  display: flex; gap: 24px; align-items: flex-start;
  margin-top: 48px;
}
.award-icon {
  width: 56px; height: 56px; min-width: 56px; border-radius: 12px;
  background: linear-gradient(135deg, var(--copper-glow), rgba(196,115,59,0.2));
  display: flex; align-items: center; justify-content: center;
}
.award-icon svg { width: 28px; height: 28px; color: var(--copper); }
.award-callout h4 {
  font-family: var(--serif); font-size: 1.15rem; color: var(--bark);
  margin-bottom: 8px;
}
.award-callout p {
  font-size: 0.92rem; color: var(--slate); line-height: 1.6;
}

/* Service detail blocks */
.service-detail {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: center; padding: 64px 0;
  border-bottom: 1px solid var(--cloud);
}
.service-detail:last-of-type { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-icon {
  width: 64px; height: 64px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-detail-icon svg { width: 32px; height: 32px; }
.service-detail h3 {
  font-family: var(--serif); font-size: 1.8rem; color: var(--bark);
  margin-bottom: 16px;
}
.service-detail p {
  font-size: 1rem; color: var(--slate); line-height: 1.7;
  margin-bottom: 16px;
}
.service-detail ul {
  list-style: none; padding: 0;
}
.service-detail ul li {
  font-size: 0.95rem; color: var(--slate); line-height: 1.6;
  padding: 6px 0 6px 24px; position: relative;
}
.service-detail ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--copper);
}
.service-detail-visual {
  background: var(--warm-white); border-radius: 20px;
  padding: 48px; box-shadow: var(--shadow-md);
  border: 1px solid var(--cloud); text-align: center;
}
.service-detail-visual .stat-number { margin-bottom: 8px; }

/* Platform tiers */
.platform-tiers {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 48px;
}
.tier-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 36px 28px; border: 1px solid var(--cloud);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.tier-card:hover {
  transform: translateY(-4px); box-shadow: var(--shadow-lg);
}
.tier-card h4 {
  font-family: var(--serif); font-size: 1.2rem; color: var(--bark);
  margin-bottom: 8px;
}
.tier-card .tier-label {
  font-size: 0.78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--copper); margin-bottom: 16px;
}
.tier-card p {
  font-size: 0.9rem; color: var(--slate); line-height: 1.6;
}

/* Contact form */
.contact-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px;
  align-items: start; margin-top: 48px;
}
.contact-info-card {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--cloud);
}
.contact-info-item {
  display: flex; gap: 16px; align-items: flex-start;
  margin-bottom: 28px;
}
.contact-info-item:last-child { margin-bottom: 0; }
.contact-info-icon {
  width: 44px; height: 44px; min-width: 44px; border-radius: 10px;
  background: var(--copper-glow);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-icon svg { width: 20px; height: 20px; color: var(--copper); }
.contact-info-item h4 {
  font-family: var(--serif); font-size: 1rem; color: var(--bark);
  margin-bottom: 4px;
}
.contact-info-item p { font-size: 0.92rem; color: var(--slate); }
.contact-info-item a {
  color: var(--copper); text-decoration: none; font-weight: 500;
}
.contact-info-item a:hover { color: var(--copper-light); }

.contact-form {
  background: var(--warm-white); border-radius: var(--radius);
  padding: 40px; border: 1px solid var(--cloud);
}
.contact-form h3 {
  font-family: var(--serif); font-size: 1.35rem; color: var(--bark);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: var(--bark); margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--stone-light); border-radius: 8px;
  font-family: var(--sans); font-size: 0.95rem;
  color: var(--bark); background: var(--warm-cream);
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--copper);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; padding: 120px 24px 64px; gap: 40px; }
  .hero-text h1 { font-size: 2.4rem; }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .nav-links a:not(.nav-cta) { display: none; }
  .page-hero h1 { font-size: 2.2rem; }
  .service-detail { grid-template-columns: 1fr; gap: 32px; }
  .service-detail.reverse { direction: ltr; }
  .platform-tiers { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .hero-text h1 { font-size: 2rem; }
  .section-title { font-size: 1.8rem; }
  .stat-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .trust-inner { gap: 24px; }
  .page-hero h1 { font-size: 1.8rem; }
  .page-hero { padding: 120px 24px 48px; }
  .form-row { grid-template-columns: 1fr; }
  .award-callout { flex-direction: column; }
}
