/**
 * Spek World Limited — Design System
 * Converted from Lovable/Tailwind project
 */

:root {
  --radius: 0.5rem;
  --navy: #0B1F3A;
  --navy-foreground: #fafbfc;
  --brand: #1074BC;
  --brand-foreground: #ffffff;
  --gold: #D4A017;
  --gold-foreground: #0B1F3A;
  --ink: #231F20;
  --background: #ffffff;
  --foreground: var(--ink);
  --primary: var(--navy);
  --primary-foreground: #ffffff;
  --secondary: #f5f7fa;
  --secondary-foreground: var(--navy);
  --muted: #f3f4f6;
  --muted-foreground: #5c6570;
  --accent: #faf6eb;
  --accent-foreground: var(--navy);
  --destructive: #dc2626;
  --border: #e5e9ef;
  --input: #e5e9ef;
  --font-display: "Fraunces", Georgia, serif;
  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --container-max: 1200px;
  --transition: 0.2s ease;
}

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

html { scroll-behavior: smooth; }

body.spek-body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin: 0;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.spek-skip-link:focus {
  position: fixed; top: 0; left: 0; z-index: 9999;
  width: auto; height: auto; padding: 1rem; margin: 0;
  clip: auto; background: var(--primary); color: var(--primary-foreground);
}

.spek-site { display: flex; flex-direction: column; min-height: 100dvh; }
.spek-main { flex: 1; }

/* Container */
.container-x {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: 1.25rem;
}

/* Eyebrow */
.eyebrow,
.spek-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand);
}
.eyebrow--gold, .spek-eyebrow--gold { color: var(--gold); }

/* Buttons */
.spek-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: var(--radius);
  padding: 0.875rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
}
.spek-btn--primary { background: var(--primary); color: var(--primary-foreground); }
.spek-btn--primary:hover { background: var(--brand); }
.spek-btn--gold { background: var(--gold); color: var(--gold-foreground); }
.spek-btn--gold:hover { transform: translateY(-2px); }
.spek-btn--outline {
  background: rgba(255,255,255,0.05);
  color: var(--primary-foreground);
  border: 1px solid rgba(255,255,255,0.25);
  backdrop-filter: blur(8px);
}
.spek-btn--outline:hover { background: rgba(255,255,255,0.1); }

.spek-link { font-size: 0.875rem; font-weight: 600; display: inline-flex; align-items: center; gap: 0.5rem; transition: gap var(--transition); }
.spek-link--brand { color: var(--brand); }
.spek-link--brand:hover { gap: 0.75rem; }
.spek-link--gold { color: var(--gold); }

/* Header */
.spek-header {
  position: sticky; top: 0; z-index: 100;
  border-bottom: 1px solid rgba(229,233,239,0.6);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
}
.spek-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; min-height: 4rem; height: 4rem;
}
.spek-header__brand { flex-shrink: 1; min-width: 0; }
.spek-header__brand img,
.spek-header__brand .custom-logo { max-height: 2.5rem; width: auto; height: auto; }
.spek-header__logo-text { font-size: 1rem; font-weight: 700; color: var(--primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.spek-header__cta--desktop { display: none; }
.spek-header__toggle {
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  width: 2.75rem; height: 2.75rem; background: none; border: none; cursor: pointer;
  z-index: 101;
}
.spek-header__toggle-icon {
  display: block; width: 1.5rem; height: 2px; background: var(--foreground);
  position: relative; transition: background 0.2s ease;
}
.spek-header__toggle-icon::before,
.spek-header__toggle-icon::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 2px; background: inherit;
  transition: transform 0.2s ease, top 0.2s ease;
}
.spek-header__toggle-icon::before { top: -7px; }
.spek-header__toggle-icon::after { top: 7px; }
.spek-header.is-menu-open .spek-header__toggle-icon { background: transparent; }
.spek-header.is-menu-open .spek-header__toggle-icon::before { top: 0; transform: rotate(45deg); }
.spek-header.is-menu-open .spek-header__toggle-icon::after { top: 0; transform: rotate(-45deg); }

.spek-nav--desktop { display: none; }
.spek-nav__list { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; align-items: center; gap: 1.75rem; }
.spek-nav__list > li,
.spek-nav__list > .menu-item { margin: 0; padding: 0; list-style: none; }
.spek-nav__list a { font-size: 0.875rem; font-weight: 500; color: rgba(35,31,32,0.75); transition: color var(--transition); text-decoration: none; }
.spek-nav__list a:hover,
.spek-nav__list .current-menu-item > a,
.spek-nav__list .current_page_item > a { color: var(--primary); }
.spek-nav__notice { margin: 0; font-size: 0.8125rem; color: var(--muted-foreground); }
.spek-nav__notice a { color: var(--brand); }

/* Mobile menu panel */
.spek-nav--mobile {
  display: none;
  position: absolute;
  left: 0; right: 0; top: 100%;
  z-index: 99;
  max-height: calc(100dvh - 4rem);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  border-top: 1px solid var(--border);
  background: var(--background);
  box-shadow: 0 12px 32px rgba(11, 31, 58, 0.12);
}
.spek-header.is-menu-open .spek-nav--mobile { display: block; }
.spek-nav--mobile .container-x { padding-block: 0.5rem 1.25rem; }
.spek-nav--mobile .spek-nav__list { flex-direction: column; align-items: stretch; gap: 0; padding: 0.5rem 0; }
.spek-nav--mobile .spek-nav__list a {
  display: block; padding: 0.875rem 0; font-size: 1rem;
  border-bottom: 1px solid var(--border);
}
.spek-nav--mobile .spek-nav__list li:last-child a { border-bottom: none; }
.spek-nav--mobile .spek-header__cta { width: 100%; margin-top: 0.75rem; justify-content: center; }

body.spek-menu-open { overflow: hidden; }

/* Elementor must not clip the mobile dropdown */
.elementor-widget-spek_world_header,
.elementor-widget-spek_world_header .elementor-widget-container,
.elementor-element:has(.spek-header),
.e-con:has(.spek-header),
.e-con-inner:has(.spek-header) {
  overflow: visible !important;
}

@media (min-width: 1024px) {
  .spek-header__inner { height: 5rem; min-height: 5rem; }
  .spek-header__toggle,
  .spek-nav--mobile { display: none !important; }
  .spek-nav--desktop,
  .spek-header__cta--desktop { display: flex; }
  body.spek-menu-open { overflow: auto; }
}

/* Section backgrounds */
.spek-section { position: relative; }
.spek-section--bg { background: var(--background); }
.spek-section--secondary { background: rgba(245,247,250,0.6); }
.spek-section--primary { background: var(--primary); color: var(--primary-foreground); }
.spek-section--py { padding-block: 5rem; }
@media (min-width: 768px) { .spek-section--py { padding-block: 6rem; } }

/* Hero */
.spek-hero {
  position: relative; isolation: isolate; overflow: hidden;
  background: var(--primary); color: var(--primary-foreground);
}
.spek-hero__bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.55;
}
.spek-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, var(--primary), rgba(11,31,58,0.85) 50%, rgba(11,31,58,0.4));
}
.spek-hero__inner { position: relative; padding-block: 6rem; }
@media (min-width: 768px) { .spek-hero__inner { padding-block: 8rem; } }
@media (min-width: 1024px) { .spek-hero__inner { padding-block: 10rem; } }

.spek-hero__title {
  margin-top: 1rem; max-width: 56rem;
  font-size: clamp(2.25rem, 5vw, 4.5rem); line-height: 1.05;
}
.spek-hero__title span, .text-gold { color: var(--gold); }
.spek-hero__text {
  margin-top: 1.5rem; max-width: 42rem;
  font-size: 1.125rem; line-height: 1.7; color: rgba(255,255,255,0.85);
}
.spek-hero__actions { margin-top: 2.25rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

/* Stats */
.spek-stats {
  margin-top: 4rem; padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem 2rem; max-width: 48rem;
}
@media (min-width: 640px) { .spek-stats { grid-template-columns: repeat(4, 1fr); } }
.spek-stats__value { font-family: var(--font-display); font-size: 1.875rem; color: var(--gold); }
.spek-stats__label { margin-top: 0.25rem; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.7); }

/* Page Hero */
.spek-page-hero {
  position: relative; overflow: hidden;
  background: var(--primary); color: var(--primary-foreground);
}
.spek-page-hero__gradient {
  position: absolute; inset: 0; opacity: 0.3; pointer-events: none;
  background:
    radial-gradient(900px 400px at 80% 20%, rgba(16,116,188,0.7), transparent 60%),
    radial-gradient(700px 300px at 10% 90%, rgba(212,160,23,0.3), transparent 60%);
}
.spek-page-hero__inner { position: relative; padding-block: 5rem; }
@media (min-width: 768px) { .spek-page-hero__inner { padding-block: 7rem; } }
.spek-page-hero__title { margin-top: 0.75rem; max-width: 56rem; font-size: clamp(2.25rem, 4vw, 3.75rem); }
.spek-page-hero__subtitle { margin-top: 1.25rem; max-width: 42rem; font-size: 1.125rem; color: rgba(255,255,255,0.8); }

/* Two-column intro */
.spek-intro-grid {
  display: grid; gap: 3rem; padding-block: 5rem;
}
@media (min-width: 1024px) {
  .spek-intro-grid { grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
}
.spek-intro-grid__title { margin-top: 0.75rem; font-size: clamp(1.875rem, 3vw, 3rem); }
.spek-intro-grid__content { font-size: 1rem; line-height: 1.7; color: var(--muted-foreground); }
.spek-intro-grid__content p + p { margin-top: 1.25rem; }
@media (min-width: 768px) { .spek-intro-grid__content { font-size: 1.125rem; } }

/* Section header */
.spek-section-header { margin-bottom: 3rem; }
.spek-section-header--flex {
  display: flex; flex-direction: column; gap: 1rem;
}
@media (min-width: 768px) {
  .spek-section-header--flex { flex-direction: row; align-items: flex-end; justify-content: space-between; }
}
.spek-section-header__title { margin-top: 0.75rem; font-size: clamp(1.875rem, 3vw, 3rem); max-width: 42rem; }

/* Cards */
.spek-card {
  display: flex; flex-direction: column;
  border-radius: 0.75rem; border: 1px solid var(--border);
  background: var(--background); padding: 1.75rem;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.spek-card:hover {
  transform: translateY(-4px);
  border-color: rgba(16,116,188,0.4);
  box-shadow: 0 20px 40px rgba(11,31,58,0.05);
}
.spek-card__icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: var(--primary); color: var(--primary-foreground);
  transition: background var(--transition), color var(--transition);
}
.spek-card:hover .spek-card__icon { background: var(--gold); color: var(--gold-foreground); }
.spek-card__icon svg { width: 1.5rem; height: 1.5rem; }
.spek-card__title { margin-top: 1.25rem; font-size: 1.25rem; font-weight: 600; }
.spek-card__desc { margin-top: 0.75rem; flex: 1; font-size: 0.875rem; line-height: 1.6; color: var(--muted-foreground); }
.spek-card__link { margin-top: 1.25rem; font-size: 0.875rem; font-weight: 600; color: var(--brand); display: inline-flex; align-items: center; gap: 0.375rem; }

.spek-cards-grid { display: grid; gap: 1.5rem; }
@media (min-width: 768px) { .spek-cards-grid--2 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spek-cards-grid--3 { grid-template-columns: repeat(3, 1fr); } .spek-cards-grid--4 { grid-template-columns: repeat(4, 1fr); } }

/* Feature cards (no hover lift) */
.spek-feature-card {
  border-radius: 0.75rem; border: 1px solid var(--border);
  background: var(--background); padding: 1.75rem;
}
.spek-feature-card__icon {
  display: grid; place-items: center;
  width: 2.75rem; height: 2.75rem; border-radius: 0.5rem;
  background: var(--accent); color: var(--primary);
}
.spek-feature-card__icon svg { width: 1.25rem; height: 1.25rem; }
.spek-feature-card__title { margin-top: 1.25rem; font-size: 1.125rem; font-weight: 600; }
.spek-feature-card__desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* Industries grid */
.spek-industries-grid {
  display: grid; gap: 1px; overflow: hidden; border-radius: 0.75rem; background: rgba(255,255,255,0.1);
}
@media (min-width: 640px) { .spek-industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spek-industries-grid { grid-template-columns: repeat(3, 1fr); } }
.spek-industry-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1.5rem; background: var(--primary);
  transition: background var(--transition);
}
.spek-industry-item:hover { background: rgba(11,31,58,0.6); }
.spek-industry-item__icon {
  display: grid; place-items: center;
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: rgba(255,255,255,0.1); color: var(--gold);
}
.spek-industry-item__icon svg { width: 1.5rem; height: 1.5rem; }

/* Process steps */
.spek-process-grid { display: grid; gap: 1.5rem; list-style: none; margin: 0; padding: 0; }
@media (min-width: 768px) { .spek-process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spek-process-grid { grid-template-columns: repeat(4, 1fr); } }
.spek-process-step {
  position: relative; border-radius: 0.75rem; border: 1px solid var(--border);
  background: var(--background); padding: 1.75rem;
}
.spek-process-step__num { font-family: var(--font-display); font-size: 3rem; color: rgba(212,160,23,0.8); }
.spek-process-step__title { margin-top: 0.75rem; font-size: 1.25rem; font-weight: 600; }
.spek-process-step__desc { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* CTA */
.spek-cta { background: var(--primary); color: var(--primary-foreground); }
.spek-cta__inner { position: relative; overflow: hidden; padding-block: 5rem; }
.spek-cta__glow {
  position: absolute; right: -6rem; top: -6rem;
  width: 18rem; height: 18rem; border-radius: 50%;
  background: var(--gold); opacity: 0.3; filter: blur(48px); pointer-events: none;
}
.spek-cta__grid {
  position: relative; display: grid; gap: 2rem; align-items: center;
}
@media (min-width: 768px) { .spek-cta__grid { grid-template-columns: 1.5fr auto; } }
.spek-cta__title { font-size: clamp(1.875rem, 3vw, 3rem); }
.spek-cta__text { margin-top: 1rem; max-width: 42rem; color: rgba(255,255,255,0.8); }

/* Footer */
.spek-footer { background: var(--primary); color: var(--primary-foreground); }
.spek-footer__grid {
  display: grid; gap: 3rem; padding-block: 4rem;
}
@media (min-width: 768px) { .spek-footer__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spek-footer__grid { grid-template-columns: repeat(4, 1fr); } }
.spek-footer__logo-wrap { display: inline-flex; padding: 0.5rem; border-radius: var(--radius); background: rgba(255,255,255,0.95); }
.spek-footer__desc { margin-top: 1.25rem; font-size: 0.875rem; line-height: 1.6; color: rgba(255,255,255,0.75); }
.spek-footer__heading { font-size: 0.875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--gold); }
.spek-footer__links { list-style: none; margin: 1.25rem 0 0; padding: 0; }
.spek-footer__links > li,
.spek-footer__links > .menu-item { margin: 0; padding: 0; list-style: none; }
.spek-footer__links li + li,
.spek-footer__links .menu-item + .menu-item { margin-top: 0.75rem; }
.spek-footer__links a { font-size: 0.875rem; color: rgba(255,255,255,0.8); transition: color var(--transition); }
.spek-footer__links a:hover { color: var(--gold); }
.spek-footer__social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.spek-footer__social a {
  display: grid; place-items: center; width: 2.5rem; height: 2.5rem;
  border-radius: 50%; border: 1px solid rgba(255,255,255,0.15);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}
.spek-footer__social a:hover { background: var(--gold); color: var(--gold-foreground); border-color: transparent; }
.spek-footer__social svg { width: 1rem; height: 1rem; }
.spek-footer__bottom {
  display: flex; flex-direction: column; gap: 0.75rem;
  padding-block: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.75rem; color: rgba(255,255,255,0.6);
}
@media (min-width: 640px) { .spek-footer__bottom { flex-direction: row; justify-content: space-between; align-items: center; } }

/* Contact */
.spek-contact-grid { display: grid; gap: 2.5rem; padding-block: 5rem; }
@media (min-width: 1024px) { .spek-contact-grid { grid-template-columns: 1fr 1.3fr; } }
.spek-contact-info__item {
  display: flex; gap: 1rem; padding: 1.25rem;
  border-radius: 0.75rem; border: 1px solid var(--border); background: var(--background);
}
.spek-contact-info__icon {
  display: grid; place-items: center; flex-shrink: 0;
  width: 2.75rem; height: 2.75rem; border-radius: 0.5rem;
  background: var(--primary); color: var(--primary-foreground);
}
.spek-contact-info__icon svg { width: 1.25rem; height: 1.25rem; }
.spek-contact-info__label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); }
.spek-contact-info__value { margin-top: 0.25rem; font-size: 0.875rem; }
.spek-contact-info__value a:hover { color: var(--brand); }

.spek-form-wrap { border-radius: 1rem; border: 1px solid var(--border); background: rgba(245,247,250,0.4); padding: 1.5rem; }
@media (min-width: 768px) { .spek-form-wrap { padding: 2.5rem; } }
.spek-form { display: grid; gap: 1.25rem; }
.spek-form__row { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .spek-form__row--2 { grid-template-columns: repeat(2, 1fr); } }
.spek-form__field label { display: block; font-size: 0.875rem; font-weight: 500; }
.spek-form__field input,
.spek-form__field select,
.spek-form__field textarea {
  margin-top: 0.375rem; width: 100%; border-radius: var(--radius);
  border: 1px solid var(--input); background: var(--background);
  padding: 0.625rem 0.875rem; font-size: 0.875rem; font-family: inherit;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.spek-form__field input:focus,
.spek-form__field select:focus,
.spek-form__field textarea:focus {
  outline: none; border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(16,116,188,0.3);
}
.spek-form__error { margin-top: 0.375rem; font-size: 0.75rem; color: var(--destructive); }
.spek-form__privacy { font-size: 0.75rem; color: var(--muted-foreground); }
.spek-form__success { text-align: center; padding-block: 2.5rem; }
.spek-form__success svg { width: 3rem; height: 3rem; margin-inline: auto; color: var(--brand); }

/* Map */
.spek-map__frame { overflow: hidden; border-radius: 1rem; border: 1px solid var(--border); box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
.spek-map__frame iframe { display: block; width: 100%; height: 450px; border: 0; }

/* Mission / Vision */
.spek-mv-card { border-radius: 1rem; border: 1px solid var(--border); padding: 2rem; }
.spek-mv-card--light { background: rgba(245,247,250,0.5); }
.spek-mv-card--dark { background: var(--primary); color: var(--primary-foreground); }
.spek-mv-card__label { display: flex; align-items: center; gap: 0.75rem; font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); }
.spek-mv-card--dark .spek-mv-card__label { color: var(--gold); }
.spek-mv-card__text { margin-top: 1rem; font-size: 1.125rem; line-height: 1.6; }

/* Portfolio */
.spek-portfolio-card__tag { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); }
.spek-portfolio-card__badge {
  display: inline-flex; margin-top: 1.25rem; padding: 0.25rem 0.75rem;
  border-radius: 999px; background: var(--secondary); font-size: 0.75rem; color: var(--muted-foreground);
}

/* Service detail */
.spek-service-detail__intro { max-width: 48rem; margin-inline: auto; text-align: center; font-size: 1.125rem; color: var(--muted-foreground); padding-block: 4rem; }
.spek-service-item {
  display: grid; gap: 2rem; border-radius: 1rem; border: 1px solid var(--border);
  background: var(--background); padding: 2rem;
}
@media (min-width: 768px) { .spek-service-item { grid-template-columns: 1.4fr 1fr; padding: 2.5rem; } }
.spek-service-item__num { font-family: var(--font-display); font-size: 1.875rem; color: var(--gold); }
.spek-service-item__divider { flex: 1; height: 1px; background: var(--border); }
.spek-service-item__header { display: flex; align-items: center; gap: 0.75rem; }
.spek-service-item__side { border-radius: 0.75rem; background: rgba(245,247,250,0.7); padding: 1.5rem; }
.spek-service-item__list { list-style: none; margin: 0.75rem 0 0; padding: 0; }
.spek-service-item__list li { display: flex; gap: 0.5rem; font-size: 0.875rem; padding: 0.25rem 0; }
.spek-service-item__list li::before { content: ""; margin-top: 0.5rem; width: 6px; height: 6px; border-radius: 50%; background: var(--brand); flex-shrink: 0; }
.spek-service-item__list--gold li::before { background: var(--gold); }

/* Industry detail */
.spek-industry-detail__dl { margin-top: 1.25rem; }
.spek-industry-detail__dt { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); }
.spek-industry-detail__dd { margin: 0.375rem 0 1rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; }

/* Process timeline */
.spek-timeline { position: relative; display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .spek-timeline { grid-template-columns: repeat(4, 1fr); } }
.spek-timeline__line {
  display: none;
}
@media (min-width: 1024px) {
  .spek-timeline__line {
    display: block; position: absolute; left: 0; right: 0; top: 1.75rem;
    height: 1px; background: linear-gradient(to right, transparent, var(--border), transparent);
  }
}
.spek-timeline__icon {
  display: grid; place-items: center;
  width: 3.5rem; height: 3.5rem; border-radius: 50%;
  background: var(--primary); color: var(--primary-foreground);
  box-shadow: 0 0 0 8px var(--background);
}
.spek-timeline__icon svg { width: 1.5rem; height: 1.5rem; }
.spek-timeline__step { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--brand); }

/* WhatsApp */
.spek-whatsapp {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 50;
  display: grid; place-items: center; width: 3.5rem; height: 3.5rem;
  border-radius: 50%; background: #25D366; color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  transition: transform var(--transition);
}
.spek-whatsapp:hover { transform: scale(1.05); }
.spek-whatsapp svg { width: 1.75rem; height: 1.75rem; }

/* Blog */
.spek-blog { padding-block: 4rem; }
.spek-blog__grid { display: grid; gap: 2rem; margin-top: 2rem; }
@media (min-width: 768px) { .spek-blog__grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .spek-blog__grid { grid-template-columns: repeat(3, 1fr); } }
.spek-blog-card { border-radius: 0.75rem; border: 1px solid var(--border); overflow: hidden; background: var(--background); }
.spek-blog-card__image img { width: 100%; aspect-ratio: 3/2; object-fit: cover; }
.spek-blog-card__body { padding: 1.5rem; }
.spek-blog-card__date { font-size: 0.75rem; color: var(--muted-foreground); }
.spek-blog-card__title { margin-top: 0.5rem; font-size: 1.25rem; }
.spek-blog-card__excerpt { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* 404 */
.spek-404 { display: flex; align-items: center; justify-content: center; min-height: 60vh; text-align: center; }
.spek-404__code { font-size: 5rem; font-weight: 700; color: var(--foreground); }
.spek-404__title { margin-top: 1rem; font-size: 1.25rem; }
.spek-404__text { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }
.spek-404 .spek-btn { margin-top: 1.5rem; }

/* Scroll animations — content stays visible unless JS opts in */
[data-spek-animate] {
  transition: opacity 0.6s ease, transform 0.6s ease;
}
html.spek-js [data-spek-animate]:not(.is-visible) {
  opacity: 0;
  transform: translateY(24px);
}
html.spek-js [data-spek-animate].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Elementor editor / preview must never hide widget output */
.elementor-editor-active [data-spek-animate],
.elementor-editor-preview [data-spek-animate],
body.elementor-editor-preview [data-spek-animate] {
  opacity: 1 !important;
  transform: none !important;
}

/* Elementor editor compatibility */
.elementor-editor-active .spek-header { pointer-events: none; }
