:root {
  color-scheme: light;
  --text: #0b1220;
  --muted: #475569;
  --primary: #0f172a;
  --primary-dark: #111827;
  --accent: #bfa36b;
  --secondary: #334155;
  --bg: #f7f7f8;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.12);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1160px, 92%);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--primary);
  border-bottom: 1px solid rgba(191, 163, 107, 0.25);
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand a {
  display: inline-block;
  transition: opacity 0.2s ease;
}

.brand a:hover {
  opacity: 0.8;
}

.brand-logo {
  width: 180px;
  height: auto;
  display: block;
}

.brand-title {
  font-size: 1.05rem;
  font-weight: 700;
}

.brand-subtitle {
  font-size: 0.85rem;
  color: var(--muted);
}

.main-nav {
  display: flex;
  gap: 18px;
  font-weight: 500;
  color: #e2e8f0;
}

.main-nav a:hover {
  color: #ffffff;
}

.hero {
  padding: 32px 0 40px;
  background: linear-gradient(120deg, #f8fafc 0%, #f5f5f4 55%, #f1f5f9 100%);
}

.hero-premium {
  border-bottom: 1px solid var(--border);
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
  align-items: center;
}

.hero-content {
  padding-top: 6px;
  max-width: 560px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 8px;
}

h1 {
  font-size: clamp(2rem, 2.7vw, 2.8rem);
  line-height: 1.15;
  margin-bottom: 12px;
}

.lead {
  color: var(--muted);
  margin-bottom: 18px;
}

.cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn.primary {
  background: var(--primary);
  color: var(--white);
}

.btn.primary:hover {
  background: var(--primary-dark);
}

.btn.ghost {
  border-color: var(--primary);
  color: var(--primary);
}

.btn.ghost:hover {
  background: rgba(29, 78, 216, 0.08);
}

.btn.light {
  background: var(--white);
  border-color: var(--border);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.hero-metrics h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.hero-metrics p {
  font-size: 0.9rem;
  color: var(--muted);
}

.hero-card {
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-visual {
  display: grid;
  gap: 20px;
}

.hero-image {
  background: var(--white);
  border-radius: 20px;
  padding: 12px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  position: relative;
}

.hero-image img {
  width: 100%;
  height: auto;
  max-height: 320px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.hero-image-caption {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 28px;
  color: #0f172a;
  font-size: 0.9rem;
  text-align: left;
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.hero-card h2 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}

.hero-card ul {
  list-style: none;
  margin: 18px 0;
}

.hero-card li {
  padding-left: 20px;
  margin-bottom: 8px;
  position: relative;
  color: var(--muted);
}

.hero-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

.section {
  padding: 60px 0;
}

.section.soft {
  background: var(--white);
}

.section-plain {
  background: var(--bg);
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 36px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.section-title p {
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.service-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 18px;
  padding: 26px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
  border: 1px solid rgba(191, 163, 107, 0.25);
  display: grid;
  grid-template-rows: minmax(2.6em, auto) minmax(3.2em, auto)
    minmax(4.2em, auto) 170px auto;
  gap: 10px;
  height: 100%;
}

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  min-height: 2.6em;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 14px;
  min-height: 3.2em;
}

.service-card ul {
  list-style: none;
  color: var(--muted);
  display: grid;
  gap: 6px;
  min-height: 4.2em;
}

.service-card .btn {
  margin-top: auto;
  width: fit-content;
  justify-self: start;
}

.service-card .btn.ghost {
  border-color: rgba(191, 163, 107, 0.45);
  color: var(--primary);
}

.service-card .btn.ghost:hover {
  background: rgba(191, 163, 107, 0.12);
}

.card-media {
  margin-top: 6px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  height: 170px;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.detail-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.detail-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.detail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.detail-card h3 {
  margin-bottom: 16px;
  font-size: 1.25rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-card h3::before {
  content: '';
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  flex-shrink: 0;
}

.detail-card p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

/* Feature Cards */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--border);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

.feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(191, 163, 107, 0.1), rgba(15, 23, 42, 0.05));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--accent);
}

.feature-card h4 {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.feature-card p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Process Steps */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 32px;
  position: relative;
}

.process-step {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  border: 2px solid var(--border);
  position: relative;
  text-align: center;
}

.process-step::before {
  content: attr(data-step);
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 4px 12px rgba(191, 163, 107, 0.3);
}

.process-step h4 {
  margin-top: 16px;
  margin-bottom: 12px;
  color: var(--primary);
  font-size: 1.1rem;
}

.process-step p {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Benefits Section */
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--border);
}

.benefit-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.5rem;
}

.benefit-item h5 {
  font-size: 1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.benefit-item p {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

/* Service CTA */
.service-cta {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: white;
  padding: 48px 32px;
  border-radius: 24px;
  text-align: center;
  margin-top: 48px;
}

.service-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: white;
}

.service-cta p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 24px;
  font-size: 1.1rem;
}

.service-cta .btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
}

.service-cta .btn:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191, 163, 107, 0.4);
}

.detail-list {
  display: grid;
  gap: 14px;
}

.detail-list h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.detail-list p {
  color: var(--muted);
}

.solution-grid,
.training-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.solution-card,
.training-grid article {
  background: var(--white);
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.solution-card h3,
.training-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.solution-card p,
.training-grid p {
  color: var(--muted);
}

.training-grid article {
  display: grid;
  grid-template-rows: minmax(2.6em, auto) minmax(3.2em, auto) 160px;
  gap: 10px;
  height: 100%;
}

.kpi-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  background: #0f172a;
  color: #e2e8f0;
  padding: 22px;
  border-radius: 18px;
}

.kpi-label {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.solution-tags {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-tags span {
  background: var(--white);
  border: none;
  color: var(--secondary);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}


.training-grid article img {
  margin-top: 0;
  border-radius: 12px;
  width: 100%;
  height: 160px;
  object-fit: cover;
  border: 1px solid var(--border);
}

.image-strip {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.image-strip img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 32px;
  gap: 16px;
  padding: 24px;
  background: #f1f5f9;
  border-radius: 18px;
}

.cta-row p {
  font-weight: 600;
}

.location-card {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  background: var(--white);
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--border);
}

.map-placeholder {
  background: #f1f5f9;
  border-radius: 16px;
  padding: 20px;
  display: grid;
  place-content: center;
  text-align: center;
  gap: 10px;
}

.map-placeholder iframe {
  width: 100%;
  height: 220px;
  border: 0;
  border-radius: 12px;
}

.contact-form {
  display: grid;
  gap: 18px;
  background: var(--white);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-weight: 600;
  color: var(--text);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(29, 78, 216, 0.25);
  border-color: var(--primary);
}

.form-message {
  padding: 14px 18px;
  border-radius: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-message.success {
  background-color: #d1fae5;
  color: #065f46;
  border: 1px solid #6ee7b7;
}

.form-message.error {
  background-color: #fee2e2;
  color: #991b1b;
  border: 1px solid #fca5a5;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0b1220 100%);
  color: #e2e8f0;
  padding: 28px 0 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.site-footer .brand-title {
  color: #ffffff;
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.site-footer p {
  color: #cbd5f5;
}

.site-footer h4 {
  margin-bottom: 8px;
  color: #f8fafc;
}

.site-footer a {
  display: block;
  color: #cbd5f5;
  margin-bottom: 6px;
  transition: color 0.2s ease;
}

.site-footer a:hover {
  color: #ffffff;
}

.footer-bottom {
  margin-top: 24px;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  padding-top: 12px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
}

.trust-band {
  background: #0f172a;
  color: #e2e8f0;
  padding: 28px 0;
}

.trust-grid {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: center;
}

.trust-label {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  color: #94a3b8;
  margin-bottom: 6px;
}

.trust-grid h3 {
  font-size: 1.2rem;
}

.trust-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
  color: #cbd5f5;
}

/* About Page Styles */
.about-intro {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 32px 0;
}

.about-intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 24px;
}

.about-intro-highlight {
  font-size: 1.3rem;
  line-height: 1.8;
  color: var(--primary);
  font-weight: 600;
  padding: 24px;
  background: linear-gradient(135deg, rgba(191, 163, 107, 0.1), rgba(15, 23, 42, 0.05));
  border-radius: 16px;
  border-left: 4px solid var(--accent);
}

.about-cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 32px;
}

.about-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  border: 1px solid var(--border);
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.about-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
}

.about-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.12);
}

.about-card-icon {
  font-size: 3rem;
  margin-bottom: 20px;
  display: block;
}

.about-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.about-card > p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.about-card-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}

.about-card-list li {
  padding: 10px 0 10px 28px;
  position: relative;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.6;
}

.about-card-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
}

.about-card-note {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--muted);
  font-style: italic;
}

.about-vision {
  max-width: 900px;
  margin: 0 auto;
}

.about-vision-content {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  color: white;
  padding: 48px 40px;
  border-radius: 24px;
  text-align: center;
}

.about-vision-content h2 {
  font-size: 2rem;
  margin-bottom: 24px;
  color: white;
}

.vision-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.95);
  max-width: 700px;
  margin: 0 auto;
}

.about-cta {
  background: linear-gradient(135deg, rgba(191, 163, 107, 0.1), rgba(15, 23, 42, 0.05));
  padding: 48px 40px;
  border-radius: 24px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  border: 2px solid var(--accent);
}

.about-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.about-cta p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--muted);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.about-cta .btn {
  background: var(--accent);
  color: var(--primary);
  border: none;
  font-size: 1.05rem;
  padding: 14px 32px;
}

.about-cta .btn:hover {
  background: #d4b87a;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(191, 163, 107, 0.4);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
}

.approach-grid article {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 22px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.approach-grid h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.approach-grid p {
  color: var(--muted);
}

@media (max-width: 840px) {
  .main-nav {
    display: none;
  }

  .header-content {
    justify-content: center;
  }
}

