/* ============================================
   BASE RESET & GLOBALS
   ============================================ */

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  font-family: 'Roboto', sans-serif;
  background: #FFFFFF;
  color: #0B1110;
}

img { max-width: 100%; height: auto; display: block; }

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

/* ============================================
   NAVIGATION
   ============================================ */

.sk-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  background: #000000;
  border-bottom: 1px solid rgba(168,124,58,0.18);
}

.sk-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.sk-nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.sk-nav-logo img { height: 36px; width: auto; }

.sk-nav-logo-text {
  font-family: 'Roboto', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #0B1110;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.sk-nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex: 1;
}

.sk-nav-links a {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.2s;
}

.sk-nav-links a:hover,
.sk-nav-links a.active { color: #A87C3A; }

.sk-nav-cta {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0B1110;
  background: #FFFFFF;
  border: 1px solid #FFFFFF;
  padding: 0.75rem 1.6rem;
  text-decoration: none;
  transition: background 0.3s, color 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}

.sk-nav-cta:hover { background: rgba(255,255,255,0.88); color: #0B1110; }

/* Language switcher */
.sk-lang-switch {
  position: relative;
  flex-shrink: 0;
}
.sk-lang-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  cursor: pointer;
  color: rgba(255,255,255,0.8);
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.03em;
  padding: 0.45rem 1.1rem;
  transition: border-color 0.2s, color 0.2s;
  white-space: nowrap;
  min-width: 128px;
}
.sk-lang-btn:hover {
  border-color: #A87C3A;
  color: #A87C3A;
}
.sk-lang-chevron {
  transition: transform 0.25s;
  flex-shrink: 0;
  opacity: 0.7;
}
.sk-lang-switch.open .sk-lang-chevron { transform: rotate(180deg); }
.sk-lang-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: #111111;
  border: 1px solid rgba(168,124,58,0.3);
  min-width: 148px;
  z-index: 300;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.sk-lang-switch.open .sk-lang-dropdown { display: block; }
.sk-lang-option {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.65rem 1rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-size: 13px;
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.15s, color 0.15s;
}
.sk-lang-option:last-child { border-bottom: none; }
.sk-lang-option:hover {
  background: rgba(168,124,58,0.1);
  color: #A87C3A;
}
.sk-lang-option.active { color: #A87C3A; font-weight: 500; }

.sk-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  margin-left: auto;
  flex-shrink: 0;
  flex-direction: column;
  gap: 5px;
}

.sk-nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #FFFFFF;
  transition: all 0.3s;
}

@media (max-width: 768px) {
  .sk-nav-inner { flex-wrap: wrap; padding: 1rem 1.5rem; gap: 0; }
  .sk-nav-logo { flex: 1; }
  .sk-nav-toggle { display: flex; }
  .sk-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }
  .sk-nav-links.open { display: flex; }
  .sk-nav-cta { display: none; }

  /* --- FULL-SCREEN OVERLAY MENU --- */
  .sk-nav:has(.sk-nav-links.open) {
    position: fixed;
    inset: 0;
    z-index: 100;
    overflow-y: auto;
  }
  .sk-nav:has(.sk-nav-links.open) .sk-nav-inner {
    min-height: 100vh;
    flex-wrap: nowrap;
    flex-direction: column;
    padding: 1rem 1.5rem 2rem;
  }
  .sk-nav:has(.sk-nav-links.open) .sk-nav-logo {
    align-self: flex-start;
  }
  .sk-nav:has(.sk-nav-links.open) .sk-nav-toggle {
    position: absolute;
    top: 1.15rem;
    right: 1.5rem;
  }
  .sk-nav-links.open {
    flex: 1;
    justify-content: center;
  }
  .sk-nav-links.open a {
    font-size: 24px;
    font-weight: 300;
    color: rgba(255,255,255,0.85);
  }
  .sk-nav-links.open a:hover,
  .sk-nav-links.open a.active { color: #A87C3A; }

  /* Hide lang button, show flags inline at bottom */
  .sk-nav:has(.sk-nav-links.open) .sk-lang-btn { display: none; }
  .sk-nav:has(.sk-nav-links.open) .sk-lang-dropdown {
    display: flex !important;
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
    background: transparent;
    border: none;
    box-shadow: none;
    min-width: auto;
    justify-content: center;
    gap: 0.3rem;
    margin-top: 1rem;
    padding: 0 1rem;
  }
  .sk-nav:has(.sk-nav-links.open) .sk-lang-option {
    border-bottom: none;
    padding: 0.5rem 1rem;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
  }
  .sk-nav:has(.sk-nav-links.open) .sk-lang-option:hover { color: #A87C3A; }
  .sk-nav:has(.sk-nav-links.open) .sk-lang-option.active { color: #A87C3A; }

  /* Hamburger → X animation */
  .sk-nav:has(.sk-nav-links.open) .sk-nav-toggle span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .sk-nav:has(.sk-nav-links.open) .sk-nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  .sk-nav:has(.sk-nav-links.open) .sk-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }
}

/* ============================================
   FOOTER
   ============================================ */

.sk-footer {
  background: #0B1110;
  padding: 4rem 2rem 2rem;
}

.sk-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem;
}

/* Flag images in language switcher */
.sk-flag-img { width: 20px; height: 15px; border-radius: 2px; flex-shrink: 0; }
#sk-lang-name { white-space: nowrap; }

/* Footer brand block — centered logo below columns */
.sk-footer-brand {
  text-align: center;
  padding: 3rem 0 0.5rem;
  margin-top: 2.5rem;
  border-top: 1px solid rgba(168,124,58,0.18);
}
.sk-footer-logo-lg { height: 56px; width: auto; display: inline-block; }

.sk-footer-name {
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  display: block;
  margin-bottom: 0.6rem;
}

.sk-footer-addr {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255,255,255,0.45);
  display: block;
  margin-bottom: 0.8rem;
}

.sk-footer-email {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #A87C3A;
  text-decoration: none;
  display: inline-block;
}

.sk-footer-email:hover { color: #D4A574; }

.sk-footer-col-title {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  display: block;
  margin-bottom: 1rem;
}

.sk-footer-col a {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  display: block;
  margin-bottom: 0.6rem;
  transition: color 0.2s;
}

.sk-footer-col a:hover { color: #A87C3A; }

.sk-footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 0 1rem;
  border-top: none;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.25);
  text-align: center;
}

@media (max-width: 768px) {
  .sk-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
}

/* ============================================
   GOOGLE FONT IMPORT
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400&family=Roboto+Mono:wght@400&display=swap');

/* ============================================
   ZONE 1: HERO — WHITE
   ============================================ */

.sk-hero {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  min-height: 0 !important;
}

.sk-hero .sk-inner {
  width: 100% !important;
  padding: 5rem 2rem !important;
  animation: skFadeIn 0.8s ease-out !important;
}

.sk-hero .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.22em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
}

.sk-hero h1 {
  font-family: 'Roboto', sans-serif !important;
  font-size: 52px !important;
  font-weight: 300 !important;
  line-height: 1.1 !important;
  color: #0B1110 !important;
  margin-bottom: 1.5rem !important;
}

.sk-hero h1 em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-hero .sk-body {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  line-height: 1.7 !important;
  color: #5A5A4F !important;
  margin-bottom: 2.5rem !important;
  display: block !important;
  max-width: 680px !important;
}

.sk-hero .sk-actions {
  display: flex !important;
  gap: 1rem !important;
  flex-wrap: wrap !important;
}

.sk-hero .sk-btn {
  display: inline-block !important;
  padding: 1.1rem 2.2rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  background: #A87C3A !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
}

.sk-hero .sk-btn:hover {
  background: #D4A574 !important;
}

@keyframes skFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Hero 2-column layout (index.html with video) */
.sk-hero-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 4rem !important;
  align-items: center !important;
}

.sk-hero-text { }

.sk-hero-media {
  position: relative;
}

.sk-hero-media video,
.sk-hero-media iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: none;
  background: #0B1110;
}

@media (max-width: 900px) {
  .sk-hero-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* ============================================
   ZONE 2: DOES THIS SOUND FAMILIAR — BLACK
   ============================================ */

.sk-familiar {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-familiar .sk-inner {
  padding: 4rem 2rem !important;
}

.sk-familiar .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-familiar .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 3rem !important;
}

.sk-familiar .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-familiar .sk-cards {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.5rem !important;
  margin-bottom: 3rem !important;
}

.sk-familiar .sk-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(168,124,58,0.15) !important;
  padding: 2.5rem !important;
  transition: border-color 0.3s, background 0.3s !important;
}

.sk-familiar .sk-card:hover {
  border-color: #A87C3A !important;
  background: rgba(168,124,58,0.08) !important;
}

.sk-familiar .sk-card-quote {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  line-height: 1.5 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-familiar .sk-card-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  font-weight: 300 !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.7 !important;
  display: block !important;
}

.sk-familiar .sk-closer {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  display: block !important;
  text-align: center !important;
  margin-top: 3rem !important;
}

@media (max-width: 768px) {
  .sk-familiar .sk-cards { grid-template-columns: 1fr !important; }
  .sk-familiar .sk-title { font-size: 32px !important; }
}

/* ============================================
   ZONE 3: RESULTS — WHITE
   ============================================ */

.sk-results {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-results .sk-inner {
  padding: 4rem 2rem !important;
}

.sk-results .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-results .sk-grid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 0 !important;
  border: 1px solid rgba(168,124,58,0.12) !important;
  margin-top: 2rem !important;
  overflow: hidden !important;
}

.sk-results .sk-result {
  padding: 2.5rem 2rem !important;
  border-right: 1px solid rgba(168,124,58,0.12) !important;
  transition: background 0.3s !important;
}

.sk-results .sk-result:last-child { border-right: none !important; }
.sk-results .sk-result:hover { background: rgba(168,124,58,0.04) !important; }

.sk-results .sk-num {
  font-family: 'Roboto', sans-serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  color: #A87C3A !important;
  line-height: 1 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.sk-results .sk-result-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 11px !important;
  letter-spacing: 0.12em !important;
  color: #5A5A4F !important;
  text-transform: uppercase !important;
  margin-bottom: 1.3rem !important;
  display: block !important;
}

.sk-results .sk-result-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  color: #5A5A4F !important;
  line-height: 1.7 !important;
  display: block !important;
}

@media (max-width: 768px) {
  .sk-results .sk-grid { grid-template-columns: 1fr 1fr !important; }
  .sk-results .sk-result { padding: 1.5rem 1.2rem !important; }
  .sk-results .sk-num { font-size: 28px !important; }
  .sk-results .sk-result-text { font-size: 14px !important; }
  .sk-results .sk-result:nth-child(2n) { border-right: none !important; }
  .sk-results .sk-result:nth-child(n+3) { border-top: 1px solid rgba(168,124,58,0.12) !important; }
}

/* ============================================
   ZONE 4: HOW WE WORK — BLACK
   ============================================ */

.sk-how {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-how .sk-inner { padding: 4rem 2rem !important; }

.sk-how .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-how .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
}

.sk-how .sk-intro {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  margin-bottom: 3rem !important;
  display: block !important;
}

.sk-how .sk-flow {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  padding-left: 60px !important;
  margin-bottom: 3rem !important;
}

.sk-how .sk-flow::before {
  content: '' !important;
  position: absolute !important;
  left: 20px !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: #A87C3A !important;
}

.sk-how .sk-flow-step {
  position: relative !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(168,124,58,0.15) !important;
  padding: 2.5rem !important;
  margin-bottom: 2rem !important;
  transition: border-color 0.3s !important;
}

.sk-how .sk-flow-step:last-child { margin-bottom: 0 !important; }

.sk-how .sk-flow-step:hover {
  border-color: #A87C3A !important;
  background: rgba(168,124,58,0.06) !important;
}

.sk-how .sk-flow-step::before {
  content: '' !important;
  position: absolute !important;
  left: -49px !important;
  top: 2.5rem !important;
  width: 16px !important;
  height: 16px !important;
  background: #A87C3A !important;
  border-radius: 50% !important;
  border: 3px solid #000000 !important;
}

.sk-how .sk-step-num {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.18em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
  font-weight: 500 !important;
  display: block !important;
}

.sk-how .sk-step-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-how .sk-step-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.8 !important;
  display: block !important;
}

.sk-how .sk-note {
  font-family: 'Roboto', sans-serif !important;
  font-size: 18px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  padding-top: 2.5rem !important;
  border-top: 1px solid rgba(168,124,58,0.12) !important;
  display: block !important;
  text-align: center !important;
  margin-top: 2rem !important;
}

.sk-how .sk-note strong {
  color: #FFFFFF !important;
  font-weight: 500 !important;
}

@media (max-width: 900px) {
  .sk-how .sk-title { font-size: 32px !important; }
}

/* ============================================
   ZONE 5: THREE WAYS TO START — WHITE
   ============================================ */

.sk-ways {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-ways .sk-inner { padding: 4rem 2rem !important; }

.sk-ways .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-ways .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 3.5rem !important;
}

.sk-ways .sk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.sk-ways .sk-way {
  background: #FFFFFF !important;
  padding: 2.5rem !important;
  border: 1px solid rgba(168,124,58,0.12) !important;
  transition: all 0.3s !important;
}

.sk-ways .sk-way:hover {
  border-color: #A87C3A !important;
  box-shadow: 0 8px 24px rgba(168,124,58,0.1) !important;
}

.sk-ways .sk-way-num {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #A87C3A !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 1.2rem !important;
  font-weight: 500 !important;
  display: block !important;
}

.sk-ways .sk-way-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-ways .sk-way-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 1.8rem !important;
  display: block !important;
}

.sk-ways .sk-way-link {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  display: inline-block !important;
}

.sk-ways .sk-way-link:hover {
  color: #D4A574 !important;
}

@media (max-width: 768px) {
  .sk-ways .sk-grid { grid-template-columns: 1fr !important; }
  .sk-ways .sk-title { font-size: 32px !important; }
}

/* ============================================
   ZONE 6: ABOUT / WHO WE ARE — BLACK
   ============================================ */

.sk-about {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-about .sk-inner { padding: 4rem 2rem !important; }

.sk-about .sk-grid {
  display: grid !important;
  grid-template-columns: 1.5fr 1fr !important;
  gap: 4rem !important;
}

.sk-about .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-about .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 2rem !important;
}

.sk-about .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-about .sk-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 18px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.85 !important;
  margin-bottom: 1.3rem !important;
  display: block !important;
}

.sk-about .sk-text strong {
  color: #FFFFFF !important;
  font-weight: 500 !important;
}

.sk-about .sk-cred {
  padding: 1rem 0 !important;
  border-top: 1px solid rgba(168,124,58,0.12) !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.6 !important;
  display: block !important;
}

.sk-about .sk-cred:first-child {
  border-top: none !important;
  padding-top: 0 !important;
}

@media (max-width: 900px) {
  .sk-about .sk-grid { grid-template-columns: 1fr !important; gap: 3rem !important; }
  .sk-about .sk-title { font-size: 32px !important; }
}

/* ============================================
   ZONE 7: CTA FINAL — WHITE
   ============================================ */

.sk-cta {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-cta .sk-inner {
  padding: 6rem 2rem !important;
  text-align: center !important;
}

.sk-cta .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 52px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 1.5rem !important;
}

.sk-cta .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-cta .sk-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 2.5rem !important;
  display: block !important;
}

.sk-cta .sk-btn {
  display: inline-block !important;
  padding: 1.1rem 2.5rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  background: #A87C3A !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
}

.sk-cta .sk-btn:hover {
  background: #D4A574 !important;
}

@media (max-width: 768px) {
  .sk-cta .sk-title { font-size: 36px !important; }
}

/* ============================================
   SERVICES PAGE
   ============================================ */

.sk-srv-hero {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-srv-hero .sk-inner { padding: 4rem 2rem !important; }

.sk-srv-hero .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-srv-hero .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 1.5rem !important;
}

.sk-srv-hero .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-srv-hero .sk-intro {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  display: block !important;
  max-width: 680px !important;
}

.sk-srv-entry {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-srv-entry .sk-inner { padding: 4rem 2rem !important; }

.sk-srv-entry .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-srv-entry .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 1rem !important;
}

.sk-srv-entry .sk-subtitle {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.8 !important;
  margin-bottom: 3rem !important;
  display: block !important;
}

.sk-srv-entry .sk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.sk-srv-entry .sk-card {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(168,124,58,0.2) !important;
  padding: 2.5rem !important;
  transition: all 0.3s !important;
}

.sk-srv-entry .sk-card:hover {
  border-color: #A87C3A !important;
  background: rgba(168,124,58,0.08) !important;
}

.sk-srv-entry .sk-card-tag {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #A87C3A !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 1.2rem !important;
  font-weight: 500 !important;
  display: block !important;
}

.sk-srv-entry .sk-card-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.2rem !important;
  display: block !important;
}

.sk-srv-entry .sk-card-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.8 !important;
  display: block !important;
}

@media (max-width: 900px) {
  .sk-srv-entry .sk-grid { grid-template-columns: 1fr !important; }
  .sk-srv-entry .sk-title { font-size: 32px !important; }
}

.sk-srv-core {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-srv-core .sk-inner { padding: 4rem 2rem !important; }

.sk-srv-core .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-srv-core .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 1rem !important;
}

.sk-srv-core .sk-subtitle {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-srv-core .sk-questions {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
  margin-bottom: 3rem !important;
  padding-bottom: 3rem !important;
  border-bottom: 1px solid rgba(168,124,58,0.12) !important;
}

.sk-srv-core .sk-q {
  padding: 1.5rem !important;
  border-left: 2px solid #A87C3A !important;
}

.sk-srv-core .sk-q-num {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #A87C3A !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 0.8rem !important;
  display: block !important;
}

.sk-srv-core .sk-q-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.sk-srv-core .sk-q-sub {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
  font-style: italic !important;
  color: #5A5A4F !important;
  display: block !important;
}

.sk-srv-core .sk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.sk-srv-core .sk-card {
  border: 1px solid rgba(168,124,58,0.12) !important;
  padding: 2.5rem !important;
  transition: all 0.3s !important;
}

.sk-srv-core .sk-card:hover {
  border-color: #A87C3A !important;
  box-shadow: 0 8px 24px rgba(168,124,58,0.1) !important;
}

.sk-srv-core .sk-card-tag {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 11px !important;
  color: #A87C3A !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 1.2rem !important;
  font-weight: 500 !important;
  display: block !important;
}

.sk-srv-core .sk-card-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.sk-srv-core .sk-card-question {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  font-style: italic !important;
  color: #A87C3A !important;
  margin-bottom: 1.2rem !important;
  display: block !important;
}

.sk-srv-core .sk-card-for {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-srv-core .sk-card-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
}

.sk-srv-core .sk-card-output {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #5A5A4F !important;
  border-top: 1px solid rgba(168,124,58,0.12) !important;
  padding-top: 1rem !important;
  display: block !important;
}

.sk-srv-core .sk-card-link {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  letter-spacing: 0.1em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  font-weight: 500 !important;
  display: inline-block !important;
  margin-top: 1.5rem !important;
}

.sk-srv-core .sk-card-link:hover { color: #D4A574 !important; }

@media (max-width: 900px) {
  .sk-srv-core .sk-grid, .sk-srv-core .sk-questions { grid-template-columns: 1fr !important; }
  .sk-srv-core .sk-title { font-size: 32px !important; }
}

.sk-srv-cta {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-srv-cta .sk-inner {
  padding: 6rem 2rem !important;
  text-align: center !important;
}

.sk-srv-cta .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
}

.sk-srv-cta .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-srv-cta .sk-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  margin-bottom: 2.5rem !important;
  display: block !important;
}

.sk-srv-cta .sk-btn {
  display: inline-block !important;
  padding: 1.1rem 2.5rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  background: #A87C3A !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
}

.sk-srv-cta .sk-btn:hover {
  background: #D4A574 !important;
}

/* ============================================
   INDIVIDUAL SERVICE PAGES
   ============================================ */

.sk-svc-hero {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-hero .sk-inner { padding: 4rem 2rem !important; }

.sk-svc-hero .sk-tag {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-hero .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 52px !important;
  font-weight: 400 !important;
  line-height: 1.15 !important;
  color: #0B1110 !important;
  margin-bottom: 1.5rem !important;
}

.sk-svc-hero .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-svc-hero .sk-subtitle {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  display: block !important;
  max-width: 680px !important;
}

.sk-svc-hero .sk-for {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #A87C3A !important;
  letter-spacing: 0.15em !important;
  margin-top: 2rem !important;
  display: block !important;
}

.sk-svc-problem {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-problem .sk-inner { padding: 4rem 2rem !important; }

.sk-svc-problem .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-svc-problem .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
}

.sk-svc-problem .sk-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  margin-bottom: 3rem !important;
  display: block !important;
}

.sk-svc-problem .sk-flags {
  display: flex !important;
  flex-direction: column !important;
  gap: 0 !important;
}

.sk-svc-problem .sk-flag {
  padding: 1.5rem 0 !important;
  border-top: 1px solid rgba(168,124,58,0.15) !important;
  display: flex !important;
  gap: 1.5rem !important;
  align-items: flex-start !important;
}

.sk-svc-problem .sk-flag-icon {
  color: #A87C3A !important;
  font-size: 1.2rem !important;
  flex-shrink: 0 !important;
  margin-top: 0.2rem !important;
}

.sk-svc-problem .sk-flag-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.7 !important;
  display: block !important;
}

.sk-svc-problem .sk-flag-text strong {
  color: #FFFFFF !important;
  font-weight: 500 !important;
}

.sk-svc-framework {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-framework .sk-inner { padding: 4rem 2rem !important; }

.sk-svc-framework .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-svc-framework .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 1.5rem !important;
}

.sk-svc-framework .sk-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 3rem !important;
  display: block !important;
}

.sk-svc-framework .sk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.sk-svc-framework .sk-grid-2 {
  grid-template-columns: repeat(2, 1fr) !important;
}

.sk-svc-framework .sk-fcard {
  border: 1px solid rgba(168,124,58,0.12) !important;
  padding: 2.5rem !important;
  border-top: 3px solid #A87C3A !important;
  transition: box-shadow 0.3s !important;
}

.sk-svc-framework .sk-fcard:hover {
  box-shadow: 0 8px 24px rgba(168,124,58,0.1) !important;
}

.sk-svc-framework .sk-fcard-num {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #A87C3A !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-framework .sk-fcard-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-framework .sk-fcard-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-framework .sk-fcard-q {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
  font-style: italic !important;
  color: #A87C3A !important;
  display: block !important;
}

@media (max-width: 900px) {
  .sk-svc-framework .sk-grid { grid-template-columns: 1fr !important; }
  .sk-svc-framework .sk-grid-2 { grid-template-columns: 1fr !important; }
}

.sk-svc-how {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-how .sk-inner { padding: 4rem 2rem !important; }

.sk-svc-how .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-svc-how .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 3rem !important;
}

.sk-svc-how .sk-flow {
  display: flex !important;
  flex-direction: column !important;
  position: relative !important;
  padding-left: 60px !important;
}

.sk-svc-how .sk-flow::before {
  content: '' !important;
  position: absolute !important;
  left: 20px !important;
  top: 0 !important;
  bottom: 0 !important;
  width: 2px !important;
  background: #A87C3A !important;
}

.sk-svc-how .sk-flow-step {
  position: relative !important;
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(168,124,58,0.15) !important;
  padding: 2.5rem !important;
  margin-bottom: 2rem !important;
  transition: border-color 0.3s !important;
}

.sk-svc-how .sk-flow-step:last-child { margin-bottom: 0 !important; }

.sk-svc-how .sk-flow-step:hover {
  border-color: #A87C3A !important;
  background: rgba(168,124,58,0.06) !important;
}

.sk-svc-how .sk-flow-step::before {
  content: '' !important;
  position: absolute !important;
  left: -49px !important;
  top: 2.5rem !important;
  width: 16px !important;
  height: 16px !important;
  background: #A87C3A !important;
  border-radius: 50% !important;
  border: 3px solid #000000 !important;
}

.sk-svc-how .sk-step-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 22px !important;
  font-weight: 500 !important;
  color: #FFFFFF !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-how .sk-step-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: rgba(255,255,255,0.75) !important;
  line-height: 1.8 !important;
  display: block !important;
}

.sk-svc-output {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-output .sk-inner { padding: 4rem 2rem !important; }

.sk-svc-output .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-svc-output .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 2rem !important;
}

.sk-svc-output .sk-desc {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 3rem !important;
  display: block !important;
}

.sk-svc-output .sk-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.5rem !important;
}

.sk-svc-output .sk-ocard {
  border: 1px solid rgba(168,124,58,0.12) !important;
  padding: 2.5rem !important;
  border-top: 3px solid #A87C3A !important;
}

.sk-svc-output .sk-ocard-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-output .sk-ocard-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  display: block !important;
}

@media (max-width: 900px) {
  .sk-svc-output .sk-grid { grid-template-columns: 1fr !important; }
}

.sk-svc-case {
  width: 100% !important;
  background: #000000 !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-case .sk-inner { padding: 4rem 2rem !important; }

.sk-svc-case .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-svc-case .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #FFFFFF !important;
  margin-bottom: 1.5rem !important;
}

.sk-svc-case .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-svc-case .sk-scenario {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  margin-bottom: 2rem !important;
  display: block !important;
}

.sk-svc-case .sk-finding {
  background: rgba(255,255,255,0.04) !important;
  border: 1px solid rgba(168,124,58,0.15) !important;
  padding: 2.5rem !important;
  margin-bottom: 2rem !important;
}

.sk-svc-case .sk-finding-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  color: #A87C3A !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  margin-bottom: 1rem !important;
  display: block !important;
}

.sk-svc-case .sk-finding-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  color: rgba(255,255,255,0.85) !important;
  line-height: 1.8 !important;
  display: block !important;
}

.sk-svc-case .sk-finding-text strong {
  color: #FFFFFF !important;
  font-weight: 500 !important;
}

.sk-svc-case .sk-impact {
  font-family: 'Roboto', sans-serif !important;
  font-size: 24px !important;
  font-weight: 500 !important;
  color: #A87C3A !important;
  margin-top: 2rem !important;
  display: block !important;
}

.sk-svc-cta {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-svc-cta .sk-inner {
  padding: 6rem 2rem !important;
  text-align: center !important;
}

.sk-svc-cta .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 1.5rem !important;
}

.sk-svc-cta .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-svc-cta .sk-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 19px !important;
  color: #5A5A4F !important;
  line-height: 1.8 !important;
  margin-bottom: 2.5rem !important;
  display: block !important;
}

.sk-svc-cta .sk-btn {
  display: inline-block !important;
  padding: 1.1rem 2.5rem !important;
  font-family: 'Roboto', sans-serif !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  background: #A87C3A !important;
  color: #FFFFFF !important;
  text-decoration: none !important;
  transition: background 0.3s !important;
}

.sk-svc-cta .sk-btn:hover { background: #D4A574 !important; }

@media (max-width: 900px) {
  .sk-svc-hero .sk-title { font-size: 36px !important; }
  .sk-svc-problem .sk-title { font-size: 32px !important; }
  .sk-svc-framework .sk-title { font-size: 32px !important; }
  .sk-svc-how .sk-title { font-size: 32px !important; }
  .sk-svc-output .sk-title { font-size: 32px !important; }
  .sk-svc-case .sk-title { font-size: 32px !important; }
  .sk-svc-cta .sk-title { font-size: 32px !important; }
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */

.sk-testimonials {
  width: 100% !important;
  background: #FFFFFF !important;
  padding: 0 !important;
  margin: 0 !important;
}

.sk-testimonials .sk-inner {
  padding: 4rem 2rem !important;
}

.sk-testimonials .sk-label {
  font-family: 'Roboto Mono', monospace !important;
  font-size: 13px !important;
  letter-spacing: 0.24em !important;
  color: #A87C3A !important;
  text-transform: uppercase !important;
  margin-bottom: 2rem !important;
  font-weight: 400 !important;
  display: block !important;
}

.sk-testimonials .sk-title {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  font-weight: 400 !important;
  line-height: 1.2 !important;
  color: #0B1110 !important;
  margin-bottom: 3rem !important;
}

.sk-testimonials .sk-title em {
  font-style: normal !important;
  color: #A87C3A !important;
}

.sk-testimonials .sk-grid {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 1.5rem !important;
}

.sk-testimonials .sk-quote-card {
  border: 1px solid rgba(168,124,58,0.12) !important;
  padding: 2.5rem !important;
  transition: border-color 0.3s !important;
  position: relative !important;
}

.sk-testimonials .sk-quote-card:hover {
  border-color: #A87C3A !important;
}

.sk-testimonials .sk-quote-mark {
  font-family: 'Roboto', sans-serif !important;
  font-size: 48px !important;
  color: #A87C3A !important;
  line-height: 1 !important;
  margin-bottom: 1rem !important;
  display: block !important;
  opacity: 0.4 !important;
}

.sk-testimonials .sk-quote-text {
  font-family: 'Roboto', sans-serif !important;
  font-size: 17px !important;
  font-style: italic !important;
  color: #0B1110 !important;
  line-height: 1.7 !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
}

.sk-testimonials .sk-quote-name {
  font-family: 'Roboto', sans-serif !important;
  font-size: 15px !important;
  font-weight: 500 !important;
  color: #0B1110 !important;
  display: block !important;
  margin-bottom: 0.3rem !important;
}

.sk-testimonials .sk-quote-role {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  color: #5A5A4F !important;
  display: block !important;
}

@media (max-width: 768px) {
  .sk-testimonials .sk-grid { grid-template-columns: 1fr !important; }
  .sk-testimonials .sk-title { font-size: 32px !important; }
}

/* ============================================
   NEWSLETTER PAGE
   ============================================ */

.sk-newsletter {
  width: 100%;
  background: #FFFFFF;
  padding: 0;
  margin: 0;
}

.sk-newsletter .sk-inner {
  padding: 5rem 2rem;
  max-width: 680px;
}

.sk-newsletter .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.24em;
  color: #A87C3A;
  text-transform: uppercase;
  margin-bottom: 2rem;
  display: block;
}

.sk-newsletter .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: 48px;
  font-weight: 400;
  line-height: 1.2;
  color: #0B1110;
  margin-bottom: 1.5rem;
}

.sk-newsletter .sk-title em {
  font-style: normal;
  color: #A87C3A;
}

.sk-newsletter .sk-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 19px;
  color: #5A5A4F;
  line-height: 1.8;
  margin-bottom: 3rem;
  display: block;
}

.sk-newsletter .sk-form {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.sk-newsletter .sk-input {
  flex: 1;
  min-width: 240px;
  padding: 1rem 1.2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  border: 1px solid rgba(168,124,58,0.3);
  color: #0B1110;
  outline: none;
  transition: border-color 0.3s;
}

.sk-newsletter .sk-input:focus {
  border-color: #A87C3A;
}

.sk-newsletter .sk-submit {
  padding: 1rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  background: #A87C3A;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  transition: background 0.3s;
}

.sk-newsletter .sk-submit:hover { background: #D4A574; }

/* ============================================
   KANTO PAGE (define-your-problem.html)
   ============================================ */

.sk-kanto-hero {
  padding: 6rem 2rem 5rem;
  background: #0B1110;
}

.sk-kanto-hero .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 1.5rem;
}

.sk-kanto-hero .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}

.sk-kanto-hero .sk-title em {
  font-style: normal;
  color: #A87C3A;
}

.sk-kanto-hero .sk-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  display: block;
  max-width: 640px;
  margin-bottom: 2rem;
}

.sk-kanto-hero .sk-subtitle strong {
  color: #A87C3A;
  font-weight: 500;
}

.sk-kanto-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.sk-kanto-meta span {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.sk-kanto-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #A87C3A;
  color: #0B1110;
  padding: 1rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s;
}

.sk-kanto-cta:hover { background: #D4A574; }

.sk-kanto-how {
  padding: 5rem 2rem;
  background: #F5F4F0;
}

.sk-kanto-how .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 1rem;
}

.sk-kanto-how .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #0B1110;
  margin: 0 0 1rem;
}

.sk-kanto-how .sk-title em {
  font-style: normal;
  color: #A87C3A;
}

.sk-kanto-how .sk-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #5A5A4F;
  display: block;
  max-width: 640px;
  margin-bottom: 3rem;
}

/* ============================================
   DIAGNOSIS TOOL PAGE (diagnosis-tool.html)
   ============================================ */

.sk-diag-hero {
  padding: 6rem 2rem 5rem;
  background: #0B1110;
}

.sk-diag-hero .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 1.5rem;
}

.sk-diag-hero .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  line-height: 1.15;
  color: #FFFFFF;
  margin: 0 0 1.5rem;
}

.sk-diag-hero .sk-title em {
  font-style: normal;
  color: #A87C3A;
}

.sk-diag-hero .sk-subtitle {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  display: block;
  max-width: 640px;
  margin-bottom: 2rem;
}

.sk-diag-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.sk-diag-hero .sk-btn {
  display: inline-block;
  padding: 1.1rem 2.5rem;
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
  font-weight: 500;
  background: #A87C3A;
  color: #FFFFFF;
  text-decoration: none;
  transition: background 0.3s;
}

.sk-diag-hero .sk-btn:hover {
  background: #D4A574;
}

.sk-diag-meta span {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.sk-diag-output {
  padding: 5rem 2rem;
  background: #F5F4F0;
}

.sk-diag-output .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 1rem;
}

.sk-diag-output .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #0B1110;
  margin: 0 0 1rem;
}

.sk-diag-output .sk-desc {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #5A5A4F;
  display: block;
  max-width: 640px;
  margin-bottom: 3rem;
}

.sk-diag-output .sk-title em {
  font-style: normal;
  color: #A87C3A;
}

.sk-diag-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 768px) {
  .sk-diag-cards { grid-template-columns: 1fr; }
}

.sk-diag-card {
  background: #FFFFFF;
  border: 1px solid rgba(168,124,58,0.12);
  border-top: 3px solid #A87C3A;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.sk-diag-card-num {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: #A87C3A;
  font-weight: 600;
}

.sk-diag-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: #1A1A18;
  display: block;
}

.sk-diag-card-text {
  font-family: 'Roboto', sans-serif;
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5A5A4F;
  display: block;
}

/* Secondary outlined button — used in service page CTAs alongside sk-btn */
.sk-btn-outline {
  display: inline-block;
  padding: 1rem 2rem;
  font-family: 'Roboto', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.4);
  text-decoration: none;
  margin-top: 1rem;
  transition: border-color 0.3s, color 0.3s;
}

.sk-btn-outline:hover {
  border-color: #A87C3A;
  color: #A87C3A;
}

.sk-svc-cta .sk-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.sk-nl-msg {
  display: block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  margin-top: 0.75rem;
  min-height: 1.2em;
}

.sk-nl-msg--ok  { color: #4CAF50; }
.sk-nl-msg--err { color: #E57373; }

.sk-newsletter .sk-privacy {
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  color: #5A5A4F;
  margin-top: 1rem;
  display: block;
}

/* ============================================
   NEWSLETTER ARTICLE PAGES
   ============================================ */

.sk-art-hero {
  padding: 6rem 2rem 4rem;
  background: #0B1110;
}

.sk-art-hero .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 1rem;
}

.sk-art-date {
  font-family: 'Roboto Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: #8A8A7F;
  display: block;
  margin-bottom: 1.5rem;
}

.sk-art-hero .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: #FFFFFF;
  margin: 0;
}

.sk-art-hero .sk-title em {
  font-style: normal;
  color: #A87C3A;
}

.sk-art-body {
  padding: 4rem 2rem 6rem;
  background: #FFFFFF;
}

.sk-art-section {
  max-width: 760px;
  margin: 0 auto 3rem;
}

.sk-art-section h2 {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A87C3A;
  margin: 0 0 1.2rem;
}

.sk-art-section p {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3A3A32;
  margin: 0 0 1.2rem;
}

.sk-art-section ul {
  margin: 0 0 1.2rem 1.5rem;
  padding: 0;
}

.sk-art-section li {
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  line-height: 1.85;
  color: #3A3A32;
  margin-bottom: 0.5rem;
}

.sk-art-highlight {
  border-left: 3px solid #A87C3A;
  padding: 1rem 1.5rem;
  background: #FAF8F3;
  margin: 1.5rem 0;
  font-family: 'Roboto', sans-serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.7;
  color: #0B1110;
}

/* Newsletter Archive Section (newsletter.html) */
.sk-nl-archive {
  padding: 5rem 2rem;
  background: #F5F4F0;
}

.sk-nl-archive .sk-label {
  font-family: 'Roboto Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 1rem;
}

.sk-nl-archive .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 300;
  color: #0B1110;
  margin: 0 0 3rem;
}

.sk-nl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
}

.sk-nl-card {
  display: block;
  background: #FFFFFF;
  padding: 2rem;
  text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: border-color 0.25s;
}

.sk-nl-card:hover { border-bottom-color: #A87C3A; }

.sk-nl-card-date {
  font-family: 'Roboto Mono', monospace;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #A87C3A;
  display: block;
  margin-bottom: 0.75rem;
}

.sk-nl-card-title {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #0B1110;
  display: block;
}

/* ============================================
   LEGAL PAGES (legal.html, privacy.html)
   ============================================ */

.sk-legal {
  padding: 5rem 2rem 6rem;
  background: #FFFFFF;
}

.sk-legal .sk-title {
  font-family: 'Roboto', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: #0B1110;
  margin: 0 0 3rem;
  line-height: 1.15;
}

.sk-legal-section {
  margin-bottom: 2.5rem;
  max-width: 800px;
}

.sk-legal-section h2 {
  font-family: 'Roboto', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #A87C3A;
  margin: 0 0 0.75rem;
}

.sk-legal-section p {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #3A3A32;
  margin: 0 0 1rem;
}

.sk-legal-section ul {
  margin: 0 0 1rem 1.5rem;
  padding: 0;
}

.sk-legal-section li {
  font-family: 'Roboto', sans-serif;
  font-size: 1rem;
  line-height: 1.75;
  color: #3A3A32;
  margin-bottom: 0.4rem;
}

.sk-legal-section a {
  color: #A87C3A;
  text-decoration: none;
}

.sk-legal-section a:hover { text-decoration: underline; }
