/* ============================================================
   IPTV da Tuga — main.css  Premium Neon Portugal
   Prefix: .dt-
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #0A0E1A;
  color: #FFFFFF;
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ---------- Tokens ---------- */
:root {
  --green: #00A859;
  --green-light: #00D96F;
  --red: #DA291C;
  --dark-1: #0A0E1A;
  --dark-2: #0F1420;
  --dark-3: #050810;
  --text-muted: #B8C1D1;
  --text-dim: #6B7690;
  --border-dark: rgba(255,255,255,0.08);
  --border-card: rgba(255,255,255,0.06);
}

/* ---------- Container ---------- */
.dt-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ---------- Badge pill ---------- */
.dt-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,168,89,0.1);
  border: 1px solid rgba(0,168,89,0.3);
  padding: 9px 18px;
  border-radius: 999px;
  color: #00A859;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 24px;
}
.dt-badge-pill-red {
  background: rgba(218,41,28,0.1);
  border-color: rgba(218,41,28,0.3);
  color: #DA291C;
}
.dt-badge-pill svg { flex-shrink: 0; }

/* ---------- Headings ---------- */
.dt-h1-line1 {
  display: block;
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  color: #00A859;
  text-shadow: 0 0 40px rgba(0,168,89,0.4);
  line-height: 1.1;
}
.dt-h1-line2 {
  display: block;
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.dt-h2-line1-dark {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #FFFFFF;
}
.dt-h2-line2-dark {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #00A859;
  text-shadow: 0 0 40px rgba(0,168,89,0.35);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.dt-h2-line1-light {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: #0F172A;
}
.dt-h2-line2-light {
  display: block;
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #00A859;
  text-shadow: 0 0 40px rgba(0,168,89,0.35);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.dt-h1-page { font-size: clamp(32px, 5vw, 56px); font-weight: 800; line-height: 1.15; letter-spacing: -0.02em; }
.dt-subtitle-dark { font-size: clamp(16px, 2vw, 20px); font-weight: 500; color: var(--text-muted); line-height: 1.6; }
.dt-subtitle-light { font-size: clamp(15px, 1.5vw, 17px); font-weight: 400; color: #475569; line-height: 1.7; }

/* ---------- Section header centered ---------- */
.dt-section-header { text-align: center; margin-bottom: 56px; }
.dt-section-header-sub { font-size: clamp(15px, 1.5vw, 17px); color: var(--text-muted); max-width: 640px; margin: 14px auto 0; line-height: 1.7; }
.dt-section-header-sub-light { font-size: clamp(15px, 1.5vw, 17px); color: #475569; max-width: 640px; margin: 14px auto 0; line-height: 1.7; }

/* ---------- Buttons ---------- */
.dt-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 18px 36px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.25s;
  border: none;
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}
.dt-btn-primary {
  background: #00A859;
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(0,168,89,0.35);
}
.dt-btn-primary:hover {
  background: #00D96F;
  box-shadow: 0 8px 48px rgba(0,168,89,0.55);
  transform: translateY(-1px);
}
.dt-btn-outline-dark {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255,255,255,0.2);
}
.dt-btn-outline-dark:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}
.dt-btn-outline-light {
  background: transparent;
  color: #0F172A;
  border: 1px solid #CBD5E1;
}
.dt-btn-outline-light:hover { background: #F8FAFC; }
.dt-btn-wa {
  background: #25D366;
  color: #FFFFFF;
  box-shadow: 0 8px 32px rgba(37,211,102,0.35);
}
.dt-btn-wa:hover {
  background: #1da851;
  box-shadow: 0 8px 48px rgba(37,211,102,0.5);
  transform: translateY(-1px);
}
.dt-btn-lg { font-size: 17px; padding: 22px 44px; }

/* ---------- Floating WhatsApp ---------- */
.dt-wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}
.dt-wa-float:hover { transform: scale(1.08); box-shadow: 0 12px 32px rgba(37,211,102,0.55); }

/* ---------- Navigation ---------- */
.dt-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10,14,26,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.dt-nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.06);
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
}
.dt-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.dt-nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  flex-shrink: 0;
}
.dt-nav-logo-icon {
  width: 32px;
  height: 32px;
  background: rgba(0,168,89,0.15);
  border: 1px solid rgba(0,168,89,0.3);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dt-nav-links { display: flex; align-items: center; gap: 28px; }
.dt-nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.dt-nav-links a:hover,
.dt-nav-links a[aria-current="page"] { color: #00A859; }
.dt-nav-cta { flex-shrink: 0; }

/* Burger */
.dt-burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.dt-burger span { display: block; width: 24px; height: 2px; background: #FFFFFF; border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.dt-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.dt-burger.open span:nth-child(2) { opacity: 0; }
.dt-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.dt-mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: #0A0E1A;
  z-index: 99;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
}
.dt-mobile-nav.open { display: flex; }
.dt-mobile-nav a { font-size: 22px; font-weight: 700; color: #FFFFFF; transition: color 0.2s; }
.dt-mobile-nav a:hover { color: #00A859; }

/* ---------- Sections ---------- */
.dt-section { padding: 96px 0; position: relative; }
.dt-section-dark { background: #0A0E1A; }
.dt-section-light { background: #FFFFFF; }
.dt-section-gray { background: #F8FAFC; }

/* ---------- Hero ---------- */
.dt-hero {
  background: #0A0E1A;
  padding: 96px 0 80px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.dt-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.dt-hero-content { position: relative; z-index: 1; }
.dt-hero-desc {
  font-size: clamp(15px, 1.5vw, 17px);
  color: var(--text-dim);
  max-width: 720px;
  margin: 12px auto 36px;
  line-height: 1.7;
}
.dt-hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }

/* Mini-cards under hero CTA */
.dt-mini-cards { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.dt-mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 16px 20px;
  text-align: left;
  flex: 1;
  min-width: 190px;
  max-width: 260px;
}
.dt-mini-card-icon {
  width: 38px;
  height: 38px;
  background: rgba(0,168,89,0.12);
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.dt-mini-card-title { font-size: 14px; font-weight: 600; color: #FFFFFF; display: block; margin-bottom: 2px; }
.dt-mini-card-desc { font-size: 12px; color: var(--text-dim); display: block; }

/* ---------- Stats ---------- */
.dt-stats-title { text-align: center; font-size: 13px; font-weight: 600; color: var(--text-dim); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 48px; }
.dt-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.dt-stat-item { text-align: center; padding: 32px 16px; border-right: 1px solid rgba(255,255,255,0.06); }
.dt-stat-item:last-child { border-right: none; }
.dt-stat-num { font-size: clamp(36px, 5vw, 56px); font-weight: 800; color: #00A859; text-shadow: 0 0 32px rgba(0,168,89,0.4); display: block; line-height: 1; margin-bottom: 8px; }
.dt-stat-label { font-size: 14px; font-weight: 500; color: var(--text-muted); }

/* ---------- 2-col with feature list ---------- */
.dt-two-col { display: grid; grid-template-columns: 58% 42%; gap: 64px; align-items: center; }
.dt-feature-list { display: flex; flex-direction: column; gap: 24px; margin: 28px 0; }
.dt-feature-row { display: flex; gap: 14px; align-items: flex-start; }
.dt-feature-icon {
  width: 42px; height: 42px;
  background: rgba(0,168,89,0.1);
  border: 1px solid rgba(0,168,89,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.dt-feature-text h3 { font-size: 16px; font-weight: 700; color: #0F172A; margin-bottom: 5px; }
.dt-feature-text p { font-size: 15px; color: #475569; line-height: 1.65; }

/* Stats cards 2x2 */
.dt-stats-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.dt-stat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dt-stat-card:hover { border-color: rgba(0,168,89,0.3); box-shadow: 0 4px 24px rgba(0,168,89,0.1); }
.dt-stat-card-icon { width: 42px; height: 42px; background: rgba(0,168,89,0.08); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; }
.dt-stat-card-num { font-size: 34px; font-weight: 800; color: #00A859; display: block; line-height: 1; margin-bottom: 6px; }
.dt-stat-card-label { font-size: 13px; font-weight: 500; color: #94A3B8; }
.dt-link-green { color: #00A859; font-weight: 500; font-size: 15px; display: inline-flex; align-items: center; gap: 6px; transition: gap 0.2s; }
.dt-link-green:hover { gap: 10px; }

/* ---------- Offer card ---------- */
.dt-offer-wrap { display: flex; justify-content: center; padding: 20px 0; }
.dt-offer-card {
  background: #0A0E1A;
  border: 2px solid #00A859;
  border-radius: 20px;
  padding: 44px 36px 36px;
  max-width: 480px;
  width: 100%;
  position: relative;
  box-shadow: 0 0 60px rgba(0,168,89,0.3), 0 0 120px rgba(0,168,89,0.12);
}
.dt-offer-badge {
  position: absolute;
  top: -17px;
  left: 50%;
  transform: translateX(-50%);
  background: #00A859;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  padding: 7px 22px;
  border-radius: 999px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(0,168,89,0.4);
}
.dt-offer-title { font-size: 22px; font-weight: 700; color: #FFFFFF; text-align: center; margin-bottom: 4px; }
.dt-offer-subtitle { font-size: 14px; color: var(--text-muted); text-align: center; margin-bottom: 20px; }
.dt-offer-price-num { display: block; font-size: clamp(64px, 10vw, 80px); font-weight: 800; color: #00A859; text-shadow: 0 0 40px rgba(0,168,89,0.5); line-height: 1; text-align: center; }
.dt-offer-price-note { font-size: 13px; color: var(--text-muted); text-align: center; margin: 6px 0 20px; line-height: 1.5; }
.dt-offer-divider { height: 1px; background: rgba(255,255,255,0.08); margin: 18px 0; }
.dt-offer-checks { display: flex; flex-direction: column; gap: 9px; margin-bottom: 24px; }
.dt-offer-check { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-muted); }
.dt-offer-check svg { flex-shrink: 0; }
.dt-offer-reassure { text-align: center; font-size: 12px; font-style: italic; color: var(--text-dim); margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 6px; }
.dt-offer-footer-links { display: flex; gap: 20px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }
.dt-offer-footer-link { display: flex; align-items: center; gap: 6px; font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ---------- Feature cards (dark) ---------- */
.dt-features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.dt-feat-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  padding: 28px 24px;
  transition: border-color 0.2s, background 0.2s;
}
.dt-feat-card:hover { background: rgba(255,255,255,0.05); border-color: rgba(0,168,89,0.2); }
.dt-feat-card-icon { width: 46px; height: 46px; background: rgba(0,168,89,0.12); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.dt-feat-card h3 { font-size: 17px; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; }
.dt-feat-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---------- Compat cards (light) ---------- */
.dt-compat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.dt-compat-card {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 12px;
  padding: 22px 16px;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.dt-compat-card:hover { border-color: rgba(0,168,89,0.35); box-shadow: 0 4px 20px rgba(0,168,89,0.1); }
.dt-compat-icon { width: 44px; height: 44px; margin: 0 auto 10px; background: #F8FAFC; border-radius: 10px; display: flex; align-items: center; justify-content: center; }
.dt-compat-name { font-size: 14px; font-weight: 600; color: #0F172A; }

/* ---------- FAQ (dark) ---------- */
.dt-faq-list { display: flex; flex-direction: column; gap: 10px; }
.dt-faq-item { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.dt-faq-item.open { border-color: rgba(0,168,89,0.25); }
.dt-faq-q { width: 100%; background: none; border: none; color: #FFFFFF; font-family: 'Inter', sans-serif; font-size: 16px; font-weight: 600; text-align: left; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; transition: color 0.2s; }
.dt-faq-q:hover { color: #00A859; }
.dt-faq-icon { width: 26px; height: 26px; border: 1px solid rgba(0,168,89,0.4); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; color: #00A859; transition: transform 0.3s, background 0.2s; font-size: 17px; font-weight: 300; line-height: 1; }
.dt-faq-item.open .dt-faq-icon { transform: rotate(45deg); background: rgba(0,168,89,0.12); }
.dt-faq-a { display: none; padding: 0 22px 20px; font-size: 15px; color: var(--text-muted); line-height: 1.75; }
.dt-faq-item.open .dt-faq-a { display: block; }

/* ---------- Steps ---------- */
.dt-steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.dt-step-card { background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.06); border-radius: 14px; padding: 28px 20px; }
.dt-step-num { font-size: 44px; font-weight: 800; color: rgba(0,168,89,0.2); line-height: 1; display: block; margin-bottom: 14px; }
.dt-step-title { font-size: 16px; font-weight: 700; color: #FFFFFF; margin-bottom: 8px; display: block; }
.dt-step-desc { font-size: 14px; color: var(--text-muted); line-height: 1.65; }

/* ---------- Table ---------- */
.dt-table-wrap { overflow-x: auto; }
.dt-table { width: 100%; border-collapse: collapse; min-width: 480px; }
.dt-table th { padding: 13px 16px; text-align: left; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-dim); border-bottom: 1px solid rgba(255,255,255,0.06); }
.dt-table td { padding: 14px 16px; font-size: 15px; color: var(--text-muted); border-bottom: 1px solid rgba(255,255,255,0.04); }
.dt-table.light th { color: #94A3B8; border-bottom-color: #E2E8F0; }
.dt-table.light td { color: #475569; border-bottom-color: #F1F5F9; }
.dt-td-yes { color: #00A859 !important; font-weight: 600; }
.dt-td-main { color: #FFFFFF !important; font-weight: 600; }
.dt-table.light .dt-td-main { color: #0F172A !important; }

/* ---------- CTA dark section ---------- */
.dt-cta-section { padding: 110px 0; background: #0A0E1A; position: relative; overflow: hidden; text-align: center; }
.dt-cta-glow { position: absolute; inset: 0; background: radial-gradient(circle at center, rgba(218,41,28,0.15) 0%, transparent 60%); pointer-events: none; }
.dt-cta-section .dt-container { position: relative; z-index: 1; }
.dt-cta-h2-line1 { display: block; font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #FFFFFF; line-height: 1.1; }
.dt-cta-h2-line2 { display: block; font-size: clamp(32px, 5vw, 56px); font-weight: 900; color: #00A859; text-shadow: 0 0 40px rgba(0,168,89,0.4); line-height: 1.1; }

/* ---------- Hero short ---------- */
.dt-hero-short { background: #0A0E1A; padding: 80px 0; position: relative; overflow: hidden; }
.dt-hero-short .dt-container { position: relative; z-index: 1; max-width: 820px; }
.dt-hero-short-subtitle { font-size: 18px; color: var(--text-muted); line-height: 1.7; margin: 14px 0 32px; }

/* ---------- Footer ---------- */
.dt-footer { background: #050810; padding-top: 64px; }
.dt-footer-grid { max-width: 1200px; margin: 0 auto; padding: 0 24px 56px; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; }
.dt-footer-logo { font-size: 20px; font-weight: 800; color: #FFFFFF; display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.dt-footer-desc { font-size: 14px; color: var(--text-muted); line-height: 1.7; margin-bottom: 16px; max-width: 260px; }
.dt-footer-wa { display: inline-flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; color: #25D366; }
.dt-footer-col h4 { font-size: 12px; font-weight: 600; color: #FFFFFF; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 16px; }
.dt-footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.dt-footer-col ul a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.dt-footer-col ul a:hover { color: #00A859; }
.dt-footer-bottom { max-width: 1200px; margin: 0 auto; padding: 20px 24px; border-top: 1px solid rgba(255,255,255,0.05); font-size: 12px; color: var(--text-dim); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }

/* ---------- Legal ---------- */
.dt-legal h2 { font-size: 22px; font-weight: 700; color: #0F172A; margin: 32px 0 10px; }
.dt-legal h3 { font-size: 17px; font-weight: 600; color: #0F172A; margin: 22px 0 8px; }
.dt-legal p { font-size: 15px; color: #475569; line-height: 1.75; margin-bottom: 10px; }
.dt-legal ul { font-size: 15px; color: #475569; line-height: 1.75; padding-left: 22px; list-style: disc; margin-bottom: 10px; }
.dt-legal a { color: #00A859; }
.dt-legal table { width: 100%; border-collapse: collapse; margin-bottom: 18px; }
.dt-legal table th { background: #F8FAFC; padding: 11px 14px; text-align: left; font-size: 12px; color: #94A3B8; border-bottom: 1px solid #E2E8F0; font-weight: 600; }
.dt-legal table td { padding: 11px 14px; font-size: 14px; color: #475569; border-bottom: 1px solid #F1F5F9; }

/* ---------- Article cols (light bg) ---------- */
.dt-article-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.dt-article-cols p { font-size: 16px; color: #475569; line-height: 1.75; margin-bottom: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .dt-two-col { grid-template-columns: 1fr; gap: 48px; }
  .dt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-stats-grid .dt-stat-item:nth-child(2) { border-right: none; }
  .dt-stats-grid .dt-stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.06); }
  .dt-features-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-steps-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .dt-article-cols { grid-template-columns: 1fr; gap: 24px; }
}
@media (max-width: 768px) {
  .dt-section { padding: 72px 0; }
  .dt-container { padding: 0 16px; }
  .dt-nav-inner { padding: 0 16px; }
  .dt-nav-links { display: none; }
  .dt-nav-cta { display: none; }
  .dt-burger { display: flex; }
  .dt-hero { padding: 72px 0 56px; }
  .dt-hero-ctas { flex-direction: column; align-items: center; }
  .dt-mini-card { min-width: unset; max-width: unset; flex: none; width: 100%; }
  .dt-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-stats-grid .dt-stat-item { border-right: 1px solid rgba(255,255,255,0.06); }
  .dt-stats-grid .dt-stat-item:nth-child(2n) { border-right: none; }
  .dt-features-grid { grid-template-columns: 1fr; }
  .dt-compat-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-steps-grid { grid-template-columns: 1fr; }
  .dt-footer-grid { grid-template-columns: 1fr; gap: 28px; padding-bottom: 40px; }
  .dt-footer-bottom { flex-direction: column; text-align: center; }
  .dt-wa-float { bottom: 20px; right: 20px; width: 56px; height: 56px; }
  .dt-btn-lg { font-size: 15px; padding: 18px 28px; }
  .dt-cta-section { padding: 80px 0; }
}
@media (max-width: 480px) {
  .dt-compat-grid { grid-template-columns: repeat(2, 1fr); }
  .dt-offer-card { padding: 36px 20px 28px; }
  .dt-stats-cards { grid-template-columns: 1fr 1fr; }
}

/* ---------- Step timeline (vertical) ---------- */
.dt-step { display: flex; gap: 20px; align-items: flex-start; }
.dt-step .dt-step-num {
  width: 44px; height: 44px; min-width: 44px;
  border-radius: 50%;
  background: rgba(0,168,89,0.12);
  border: 1px solid rgba(0,168,89,0.3);
  font-size: 18px; font-weight: 800; color: #00A859;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 0; flex-shrink: 0;
}
.dt-step-body h3 { font-size: 17px; font-weight: 700; color: #0F172A; margin-bottom: 6px; }
.dt-step-body p { font-size: 15px; color: #475569; line-height: 1.65; }

/* ---------- Feature card light variant ---------- */
.dt-feat-card-light { background: #FFFFFF; border-color: #E2E8F0; }
.dt-feat-card-light:hover { background: #F8FAFC; border-color: rgba(0,168,89,0.25); box-shadow: 0 4px 16px rgba(0,168,89,0.08); }
.dt-feat-card-light h3 { color: #0F172A; }
.dt-feat-card-light p { color: #475569; }

/* ---------- Inline link ---------- */
.dt-inline-link { color: #00A859; text-decoration: underline; }
.dt-inline-link:hover { color: #00D96F; }

/* ---------- Contact cards ---------- */
.dt-contact-card {
  display: flex; align-items: center; gap: 20px;
  padding: 22px 28px;
  background: #FFFFFF; border: 1px solid #E2E8F0; border-radius: 14px;
  transition: border-color 0.2s, box-shadow 0.2s; cursor: pointer;
  text-decoration: none; color: #0F172A;
}
.dt-contact-card:hover { border-color: rgba(0,168,89,0.3); box-shadow: 0 4px 20px rgba(0,168,89,0.1); }
.dt-contact-card-primary { background: #00A859; border-color: #00A859; color: #FFFFFF; }
.dt-contact-card-primary:hover { background: #00C067; border-color: #00C067; box-shadow: 0 4px 24px rgba(0,168,89,0.35); }
.dt-contact-card-primary .dt-contact-card-title { color: #FFFFFF; }
.dt-contact-card-primary .dt-contact-card-sub { color: rgba(255,255,255,0.8); }
.dt-contact-card-icon {
  width: 52px; height: 52px; min-width: 52px;
  border-radius: 12px;
  background: rgba(0,168,89,0.1); border: 1px solid rgba(0,168,89,0.2);
  display: flex; align-items: center; justify-content: center; color: #00A859;
}
.dt-contact-card-primary .dt-contact-card-icon { background: rgba(255,255,255,0.2); border-color: rgba(255,255,255,0.3); color: #FFFFFF; }
.dt-contact-card-body { flex: 1; }
.dt-contact-card-title { font-size: 16px; font-weight: 700; color: #0F172A; display: block; margin-bottom: 3px; }
.dt-contact-card-sub { font-size: 14px; color: #64748B; display: block; }

/* ---------- Contact info box ---------- */
.dt-contact-info-box { background: #F8FAFC; border: 1px solid #E2E8F0; border-radius: 14px; padding: 28px; display: flex; flex-direction: column; gap: 20px; }
.dt-contact-info-row { display: flex; gap: 14px; align-items: flex-start; }
.dt-contact-info-icon { width: 38px; height: 38px; min-width: 38px; background: rgba(0,168,89,0.08); border-radius: 9px; display: flex; align-items: center; justify-content: center; }
.dt-contact-info-label { font-size: 12px; font-weight: 600; color: #94A3B8; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 2px; }
.dt-contact-info-val { font-size: 15px; font-weight: 500; color: #0F172A; }

/* ---------- 404 ---------- */
.dt-404-section { min-height: calc(100vh - 70px); display: flex; align-items: center; justify-content: center; padding: 80px 0; text-align: center; position: relative; overflow: hidden; }
.dt-404-num { font-size: clamp(120px, 20vw, 200px); font-weight: 900; color: #00A859; text-shadow: 0 0 60px rgba(0,168,89,0.5), 0 0 120px rgba(0,168,89,0.2); line-height: 1; display: block; }
.dt-404-title { font-size: clamp(24px, 4vw, 36px); font-weight: 800; color: #FFFFFF; margin: 8px 0 16px; }
.dt-404-desc { font-size: 17px; color: var(--text-muted); max-width: 440px; margin: 0 auto 36px; line-height: 1.7; }
.dt-404-links { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
