/* ==========================================================================
   TWL English Pages — Shared Stylesheet
   Dark theme: #0a0a0a bg | #c5a047 gold | #ffffff text
   ========================================================================== */

/* --- Reset / Base -------------------------------------------------------- */
.twl-en-page *,
.twl-en-page *::before,
.twl-en-page *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.twl-en-page {
  background-color: #0a0a0a;
  color: #ffffff;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

.twl-en-page a {
  color: #c5a047;
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.twl-en-page a:hover {
  color: #d4b560;
  text-decoration: underline;
}

.twl-en-page img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- Container ----------------------------------------------------------- */
.twl-en-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* --- Language Switcher --------------------------------------------------- */
.twl-en-lang-switch {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background-color: #111111;
  border-bottom: 1px solid #1e1e1e;
  font-size: 0.8125rem;
  letter-spacing: 0.04em;
}

.twl-en-lang-switch span {
  color: #888;
}

.twl-en-lang-switch a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #c5a047;
  font-weight: 600;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid #c5a047;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.twl-en-lang-switch a:hover {
  background-color: #c5a047;
  color: #0a0a0a;
  text-decoration: none;
}

.twl-en-lang-switch .twl-en-lang-current {
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* --- Hero ---------------------------------------------------------------- */
.twl-en-hero {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #0d0d0d;
  background-image:
    radial-gradient(ellipse at 50% 0%, rgba(197, 160, 71, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #111111 0%, #0a0a0a 100%);
  padding: 5rem 1.5rem 4rem;
  overflow: hidden;
}

.twl-en-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c5a047' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
  pointer-events: none;
}

.twl-en-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
}

.twl-en-hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #c5a047;
  border: 1px solid rgba(197, 160, 71, 0.4);
  padding: 0.3rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.twl-en-hero h1 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  letter-spacing: -0.02em;
  margin-bottom: 1.25rem;
}

.twl-en-hero h1 em {
  font-style: normal;
  color: #c5a047;
}

.twl-en-hero__tagline {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: #b0b0b0;
  max-width: 640px;
  margin: 0 auto 2.5rem;
}

/* --- Section ------------------------------------------------------------- */
.twl-en-section {
  padding: 5rem 1.5rem;
}

.twl-en-section--alt {
  background-color: #0f0f0f;
}

.twl-en-section--border-top {
  border-top: 1px solid #1e1e1e;
}

.twl-en-section__label {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #c5a047;
  margin-bottom: 0.75rem;
}

.twl-en-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  line-height: 1.2;
  color: #ffffff;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.twl-en-section__title em {
  font-style: normal;
  color: #c5a047;
}

.twl-en-section__intro {
  font-size: 1.05rem;
  color: #b0b0b0;
  max-width: 700px;
  margin-bottom: 3rem;
}

/* --- Grid ---------------------------------------------------------------- */
.twl-en-grid {
  display: grid;
  gap: 1.5rem;
}

.twl-en-grid--2 { grid-template-columns: repeat(2, 1fr); }
.twl-en-grid--3 { grid-template-columns: repeat(3, 1fr); }
.twl-en-grid--4 { grid-template-columns: repeat(4, 1fr); }
.twl-en-grid--auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* --- Card ---------------------------------------------------------------- */
.twl-en-card {
  background-color: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 2rem 1.75rem;
  transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.twl-en-card:hover {
  border-color: rgba(197, 160, 71, 0.45);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

.twl-en-card__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.twl-en-card__title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.twl-en-card__text {
  font-size: 0.9375rem;
  color: #909090;
  line-height: 1.65;
}

.twl-en-card__link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #c5a047;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.twl-en-card__link::after {
  content: ' →';
}

.twl-en-card--highlight {
  border-color: rgba(197, 160, 71, 0.3);
  background-color: #131005;
}

/* --- Spec Table ---------------------------------------------------------- */
.twl-en-spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
  margin-top: 1.5rem;
}

.twl-en-spec-table th,
.twl-en-spec-table td {
  padding: 0.875rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid #1e1e1e;
}

.twl-en-spec-table th {
  font-weight: 700;
  color: #c5a047;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: #0f0f0f;
}

.twl-en-spec-table td {
  color: #c8c8c8;
}

.twl-en-spec-table tr:last-child td {
  border-bottom: none;
}

.twl-en-spec-table tr:hover td {
  background-color: #111111;
}

/* --- CTA ----------------------------------------------------------------- */
.twl-en-cta {
  background: linear-gradient(135deg, #111111 0%, #0d0d0d 100%);
  border: 1px solid rgba(197, 160, 71, 0.25);
  border-radius: 8px;
  padding: 3.5rem 2rem;
  text-align: center;
}

.twl-en-cta__title {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.twl-en-cta__text {
  font-size: 1rem;
  color: #909090;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.twl-en-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.9rem 2.25rem;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.twl-en-btn--gold {
  background-color: #c5a047;
  color: #0a0a0a;
}

.twl-en-btn--gold:hover {
  background-color: #d4b560;
  color: #0a0a0a;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(197, 160, 71, 0.35);
}

.twl-en-btn--outline {
  background-color: transparent;
  color: #c5a047;
  border: 2px solid #c5a047;
}

.twl-en-btn--outline:hover {
  background-color: #c5a047;
  color: #0a0a0a;
  text-decoration: none;
}

.twl-en-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}

/* --- Divider ------------------------------------------------------------- */
.twl-en-divider {
  border: none;
  border-top: 1px solid #1a1a1a;
  margin: 0;
}

.twl-en-gold-line {
  display: block;
  width: 48px;
  height: 3px;
  background-color: #c5a047;
  margin: 1rem 0 2rem;
}

/* --- Warranty specifics -------------------------------------------------- */
.twl-en-warranty-block {
  background-color: #111111;
  border-left: 3px solid #c5a047;
  border-radius: 0 6px 6px 0;
  padding: 1.75rem 2rem;
  margin-bottom: 1.25rem;
}

.twl-en-warranty-block__title {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.twl-en-warranty-block__text {
  font-size: 0.9375rem;
  color: #909090;
  line-height: 1.65;
}

.twl-en-warranty-block--excluded {
  border-left-color: #444;
}

.twl-en-warranty-steps {
  counter-reset: warranty-step;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.twl-en-warranty-steps li {
  counter-increment: warranty-step;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background-color: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 1.5rem;
}

.twl-en-warranty-steps li::before {
  content: counter(warranty-step);
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background-color: #c5a047;
  color: #0a0a0a;
  font-weight: 800;
  font-size: 0.9rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.1rem;
}

/* --- Team ---------------------------------------------------------------- */
.twl-en-team-card {
  background-color: #111111;
  border: 1px solid #1e1e1e;
  border-radius: 6px;
  padding: 2.25rem 1.75rem;
  text-align: center;
  transition: border-color 0.25s ease, transform 0.25s ease;
}

.twl-en-team-card:hover {
  border-color: rgba(197, 160, 71, 0.4);
  transform: translateY(-3px);
}

.twl-en-team-card__avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #1e1e1e;
  border: 2px solid rgba(197, 160, 71, 0.3);
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}

.twl-en-team-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.25rem;
}

.twl-en-team-card__role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #c5a047;
  margin-bottom: 0.875rem;
}

.twl-en-team-card__bio {
  font-size: 0.9rem;
  color: #888;
  line-height: 1.6;
}

/* --- Stats strip --------------------------------------------------------- */
.twl-en-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background-color: #1a1a1a;
  border: 1px solid #1a1a1a;
  border-radius: 6px;
  overflow: hidden;
  margin: 3rem 0;
}

.twl-en-stat {
  background-color: #0f0f0f;
  padding: 2rem 1.5rem;
  text-align: center;
}

.twl-en-stat__number {
  display: block;
  font-size: 2.25rem;
  font-weight: 800;
  color: #c5a047;
  line-height: 1;
  margin-bottom: 0.4rem;
  letter-spacing: -0.03em;
}

.twl-en-stat__label {
  font-size: 0.8rem;
  color: #666;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* --- Trust badges -------------------------------------------------------- */
.twl-en-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.twl-en-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 4px;
  padding: 0.5rem 1rem;
  font-size: 0.825rem;
  font-weight: 600;
  color: #c8c8c8;
}

.twl-en-badge svg,
.twl-en-badge span:first-child {
  color: #c5a047;
}

/* --- Breadcrumb ---------------------------------------------------------- */
.twl-en-breadcrumb {
  font-size: 0.8125rem;
  color: #555;
  padding: 1rem 1.5rem;
  background-color: #0d0d0d;
  border-bottom: 1px solid #161616;
}

.twl-en-breadcrumb a {
  color: #666;
}

.twl-en-breadcrumb a:hover {
  color: #c5a047;
}

.twl-en-breadcrumb span {
  margin: 0 0.4rem;
  color: #333;
}

/* --- Responsive ---------------------------------------------------------- */
@media (max-width: 1024px) {
  .twl-en-grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .twl-en-hero {
    min-height: 360px;
    padding: 3.5rem 1.25rem 3rem;
  }

  .twl-en-section {
    padding: 3.5rem 1.25rem;
  }

  .twl-en-grid--2,
  .twl-en-grid--3,
  .twl-en-grid--4 {
    grid-template-columns: 1fr;
  }

  .twl-en-cta {
    padding: 2.5rem 1.5rem;
  }

  .twl-en-cta__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .twl-en-btn {
    justify-content: center;
    text-align: center;
  }

  .twl-en-stats {
    grid-template-columns: repeat(2, 1fr);
  }

  .twl-en-lang-switch {
    padding: 0.6rem 1.25rem;
  }
}

@media (max-width: 480px) {
  .twl-en-stats {
    grid-template-columns: 1fr;
  }

  .twl-en-spec-table {
    font-size: 0.875rem;
  }

  .twl-en-spec-table th,
  .twl-en-spec-table td {
    padding: 0.7rem 0.875rem;
  }
}

/* --- Utilities ----------------------------------------------------------- */
.twl-en-text-gold  { color: #c5a047; }
.twl-en-text-muted { color: #666; }
.twl-en-text-sm    { font-size: 0.875rem; }
.twl-en-mt-1       { margin-top: 0.5rem; }
.twl-en-mt-2       { margin-top: 1rem; }
.twl-en-mt-3       { margin-top: 1.5rem; }
.twl-en-mb-1       { margin-bottom: 0.5rem; }
.twl-en-mb-2       { margin-bottom: 1rem; }
.twl-en-mb-3       { margin-bottom: 1.5rem; }
.twl-en-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
