:root {
  --bg: #050505;
  --bg-2: #0b0b0b;
  --card: #151515;
  --card-2: #1c1c1c;
  --orange: #ff790f;
  --orange-2: #ff8a24;
  --green: #22c55e;
  --white: #f7f7f7;
  --text: #d7d7d7;
  --muted: #9c9c9c;
  --border: rgba(255,255,255,.18);
  --orange-border: rgba(255,121,15,.8);
  --blue: #0a91cc;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--white);
  font-family: Inter, Arial, sans-serif;
}

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

.page {
  width: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 0%, rgba(255,121,15,.15), transparent 28%),
    linear-gradient(180deg, #020202 0%, #070707 100%);
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.navbar {
  border-bottom: 1px solid rgba(255,255,255,.08);
  left: 0;
  right: 0;
}

.nav-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
  letter-spacing: -.5px;
}

.logo-mark {
  width: 76px;
  height: 58px;
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 46px;
  line-height: 1;
}

.logo-text strong {
  display: block;
  font-size: 28px;
  line-height: .85;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-style: italic;
  font-weight: 700;
  color: #0a91cc;
}

.logo-text span {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 3px;
  font-weight: 900;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  transition: color .2s ease;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}

.nav-links a:hover { color: var(--orange); }
.nav-links a:hover::after,
.nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--orange); }

.top-whatsapp {
  border: 1px solid var(--orange-border);
  border-radius: 4px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,0,0,.28);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 650px;
  display: grid;
  align-items: center;
  padding: 148px 0 70px;
  background: #0a0a0a;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.96) 0%, rgba(0,0,0,.88) 38%, rgba(0,0,0,.18) 100%);
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right top;
  z-index: 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr .92fr;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
}

.hero-copy { max-width: 650px; }

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-style: italic;
  font-weight: 600;
  margin: 0;
}

h1 {
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  max-width: 650px;
  font-weight: 600;
}

.orange { color: var(--orange); }

.hero-sub {
  margin: 28px 0 20px;
  color: var(--text);
  font-size: 20px;
  line-height: 1.45;
  max-width: 600px;
  font-weight: 600;
}

.check-list {
  display: grid;
  gap: 14px;
  margin: 0 0 34px;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.check-list li { display: flex; align-items: center; gap: 12px; }
.check, .xicon {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  flex: 0 0 21px;
  color: #050505;
  font-weight: 900;
  font-size: 13px;
  background: var(--orange);
}

.xicon { background: transparent; color: var(--orange); font-size: 18px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 7px;
  padding: 18px 30px;
  background: var(--blue);
  color: #fff;
  font-weight: 900;
  text-transform: uppercase;
  font-size: 16px;
  box-shadow: 0 12px 30px rgba(10,145,204,.24);
  transition: transform .22s ease, background .22s ease, color .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.btn:hover {
  background: #fff;
  color: #111;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(255,255,255,.16);
}

.btn-outline {
  background: transparent;
  border: 1px solid rgba(255,255,255,.85);
  box-shadow: none;
}

.btn-outline:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  box-shadow: 0 12px 30px rgba(10,145,204,.24);
}

.btn-note {
  display: block;
  margin-top: 12px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  padding-left: 62px;
}

.hero-person-placeholder {
  min-height: 500px;
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,0)),
    repeating-linear-gradient(45deg, rgba(255,255,255,.05) 0 1px, transparent 1px 16px),
    linear-gradient(135deg, #111, #281707);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.34);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.problem {
  padding: 88px 0;
  background: #202020;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.problem-grid {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 56px;
  align-items: center;
}

.problem-image-placeholder {
  min-height: 390px;
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.1), rgba(0,0,0,.42)),
    var(--problem-image, linear-gradient(135deg, #111, #3a3a3a));
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.36);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.problem-copy { max-width: 650px; padding: 20px 0; }
.section-title { font-size: clamp(34px, 4vw, 50px); line-height: 1.04; text-align: center; font-weight: 600; }
.section-title.left { text-align: left; }

.problem-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-size: 17px;
  font-weight: 600;
}

.problem-list li { display: flex; gap: 12px; align-items: center; }
.result-line { margin-top: 18px; color: var(--white); font-weight: 900; }
.different { margin-top: 14px; color: var(--orange); font-size: 20px; font-weight: 900; }

.section { padding: 78px 0; }

.benefit-section { padding: 78px 0 54px; }
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: linear-gradient(180deg, rgba(31,31,31,.94), rgba(13,13,13,.94));
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  margin-top: 26px;
}

.benefit {
  text-align: center;
  padding: 0 24px 32px;
  border-right: 1px solid rgba(255,255,255,.16);
  overflow: hidden;
}

.benefit-image {
  width: calc(100% + 48px);
  margin: 0 -24px 28px;
  aspect-ratio: 4 / 3;
  background:
    linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.38)),
    var(--benefit-image, linear-gradient(135deg, #2a170b, #111));
  background-size: cover;
  background-position: top center;
  border-bottom: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.34);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 900;
}
.benefit:last-child { border-right: 0; }

.icon {
  color: var(--orange);
  font-size: 46px;
  line-height: 1;
  margin-bottom: 14px;
  font-weight: 900;
}

.icon-svg {
  width: 54px;
  height: 54px;
  margin: 0 0 14px;
  stroke: var(--orange);
  color: var(--orange);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit .icon-svg { margin-left: auto; margin-right: auto; }

.benefit h3 {
  font-size: 25px;
  line-height: 1.08;
  margin-bottom: 10px;
  font-weight: 600;
}

.benefit p { margin: 0; color: var(--text); line-height: 1.45; }

.testimonials { padding-top: 12px; }
.testimonial-viewport { overflow: hidden; margin-top: 26px; touch-action: pan-y; cursor: grab; user-select: none; }
.testimonial-viewport:active { cursor: grabbing; }
.testimonial-track { display: flex; transition: transform .45s ease; }
.testimonial-page { min-width: 100%; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

.testimonial-card {
  background: linear-gradient(180deg, rgba(32,32,32,.95), rgba(17,17,17,.95));
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 22px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 18px;
  min-height: 150px;
}

.avatar {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: linear-gradient(135deg, #313131, #f0d2b0);
  border: 2px solid rgba(255,255,255,.2);
}

.stars { color: #ffb000; letter-spacing: 2px; font-size: 14px; }
.testimonial-card h4 { margin: 8px 0 6px; font-size: 14px; }
.testimonial-card p { margin: 0; color: var(--text); font-size: 13px; line-height: 1.55; }

.carousel-dots { display: flex; justify-content: center; gap: 12px; margin-top: 20px; }
.carousel-dot { width: 9px; height: 9px; border: 0; border-radius: 50%; background: rgba(255,255,255,.38); cursor: pointer; padding: 0; }
.carousel-dot.active { background: var(--orange); }

.team-section { padding: 78px 0; background: var(--bg-2); border-top: 1px solid rgba(255,255,255,.08); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
.team-card {
  background: linear-gradient(180deg, rgba(28,28,28,.98), rgba(14,14,14,.98));
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 14px;
  overflow: hidden;
  text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 50px rgba(0,0,0,.5);
}
.team-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  background-size: cover;
  background-position: center top;
}
.team-info { padding: 22px 20px 26px; }
.team-name {
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  margin: 0 0 4px;
  line-height: 1.05;
}
.team-role {
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0 0 16px;
}
.team-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}
.team-tag {
  background: rgba(255,121,15,.1);
  border: 1px solid rgba(255,121,15,.35);
  color: var(--orange);
  font-size: 11px;
  font-weight: 800;
  border-radius: 4px;
  padding: 5px 11px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
}

.service-card {
  min-height: 360px;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.18);
  position: relative;
  background: #111;
  display: flex;
  align-items: flex-end;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0,0,0,.22), rgba(0,0,0,.92)),
    var(--service-image, linear-gradient(135deg, #302010, #090909));
  background-size: cover;
  background-position: center;
  filter: saturate(.9);
}

.service-body {
  position: relative;
  z-index: 1;
  padding: 18px 24px 24px;
  width: 100%;
}

.service-body h3 { font-size: 27px; line-height: 1.05; margin: 8px 0 14px; }
.service-body p { margin: 0 0 18px; color: var(--text); line-height: 1.45; }
.service-body .icon-svg { width: 44px; height: 44px; margin-bottom: 6px; }
.service-btn { padding: 12px 18px; font-size: 13px; width: 100%; }

.plans { padding-top: 20px; }
.plans-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 28px;
  align-items: stretch;
}

.plan-card {
  background: linear-gradient(180deg, rgba(48,48,48,.9), rgba(13,13,13,.96));
  border: 1px solid rgba(255,255,255,.45);
  border-radius: 4px;
  padding: 36px 28px 28px;
  position: relative;
  min-height: 360px;
  display: flex;
  flex-direction: column;
}

.plan-card.featured {
  border: 2px solid var(--orange);
  box-shadow: 0 0 0 1px rgba(255,121,15,.25), 0 20px 42px rgba(255,121,15,.12);
}

.badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange);
  padding: 7px 28px;
  border-radius: 0 0 4px 4px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  white-space: nowrap;
}

.plan-title { font-size: 26px; text-align: center; margin-bottom: 28px; }
.price { display: flex; align-items: flex-start; justify-content: center; gap: 7px; margin-bottom: 28px; }
.currency { font-size: 18px; font-weight: 900; padding-top: 11px; }
.amount { font-size: 58px; font-weight: 900; letter-spacing: -2px; }
.month { color: var(--text); padding-top: 38px; font-weight: 700; }

.plan-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  display: grid;
  gap: 10px;
  color: var(--text);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
}
.plan-features li { display: flex; align-items: center; gap: 10px; }
.plan-features .check { flex-shrink: 0; width: 18px; height: 18px; font-size: 11px; }
.plan-features strong { color: var(--white); }
.plan-card .btn { margin-top: auto; width: 100%; padding: 14px 16px; font-size: 13px; border-radius: 3px; }

.help-bar {
  margin: 26px auto 0;
  width: min(650px, 100%);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  border-radius: 6px;
  padding: 14px 22px;
  text-align: center;
  font-weight: 800;
  display: block;
}
.help-bar span { color: var(--orange); }

.final-cta {
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,.14);
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: var(--orange);
  color: #fff;
}

.final-cta .orange { color: #111; }
.final-cta .final-copy p { color: #111; }
.final-cta .btn { background: #111; color: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.24); }
.final-cta .btn:hover { background: #fff; color: #111; }
.final-cta .btn-note { color: #111; }

.final-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 54px;
  align-items: center;
  padding: 40px 0;
}

.studio-placeholder {
  height: 250px;
  background:
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.45)),
    var(--studio-image, linear-gradient(135deg, #231409, #101010));
  border-radius: 4px;
  border: 1px solid rgba(255,255,255,.12);
  display: grid;
  place-items: center;
  color: rgba(255,255,255,.32);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 900;
}

.final-copy h2 { text-align: left; }
.final-copy p { color: var(--text); font-size: 17px; font-weight: 600; }

footer {
  background: #101010;
  padding: 38px 0 22px;
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .8fr;
  gap: 34px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding-bottom: 28px;
}

footer h4 {
  margin: 0 0 16px;
  color: #fff;
  font-family: 'Barlow Condensed', Impact, sans-serif;
  font-style: italic;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 20px;
}

footer p, footer li { margin: 0 0 9px; color: var(--text); line-height: 1.45; }
footer ul { list-style: none; padding: 0; margin: 0; }
.copyright {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  font-size: 12px;
  color: #8a8a8a;
  text-align: center;
}
.copyright-links { display: flex; gap: 6px; align-items: center; }
.copyright-links .sep { color: rgba(255,255,255,.18); user-select: none; }

/* Hamburger button */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 201;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* WhatsApp link shown only inside mobile menu */
.nav-whatsapp-mobile { display: none; }

@media (max-width: 960px) {
  .problem-grid { grid-template-columns: 1fr; }
  .hamburger { display: flex; }
  .top-whatsapp { display: none; }
  /* Hero mobile */
  .hero {
    min-height: 100svh;
    min-height: 100vh;
    padding: 88px 0 56px;
    align-items: center;
  }
  .hero::after {
    background: linear-gradient(180deg,
      rgba(0,0,0,.78) 0%,
      rgba(0,0,0,.52) 45%,
      rgba(0,0,0,.68) 100%);
  }
  .hero-bg { object-position: 70% top; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-copy h1 { text-shadow: 0 2px 18px rgba(0,0,0,.7); }
  .hero-copy .hero-sub { text-shadow: 0 1px 10px rgba(0,0,0,.65); }
  .hero-person-placeholder { display: none; }
  .nav-links {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: 76px;
    left: 0;
    right: 0;
    background: #111;
    border-bottom: 1px solid rgba(255,255,255,.12);
    padding: 8px 0 16px;
    gap: 0;
    font-size: 16px;
    z-index: 200;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform .32s ease, opacity .32s ease;
  }
  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .nav-links a::after { display: none; }
  .nav-whatsapp-mobile {
    display: block;
    margin: 12px 20px 0;
    padding: 13px 18px !important;
    background: rgba(37,211,102,.12);
    border: 1px solid rgba(37,211,102,.35) !important;
    border-radius: 6px;
    color: #25d366 !important;
    font-weight: 800;
    text-align: center;
  }
  .hero-grid, .final-grid { grid-template-columns: 1fr; }
  .hero-person-placeholder { min-height: 360px; }
  .benefit-grid, .services-grid, .plans-grid, .testimonial-page { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .nav-inner { min-height: 68px; }
  .nav-links { top: 68px; }
  .logo-mark { width: 54px; height: 42px; font-size: 34px; }
  .logo-text strong { font-size: 21px; }
  .hero { padding-top: 80px; }
  h1 { font-size: 43px; }
  .hero-sub { font-size: 16px; }
  .benefit-grid, .services-grid, .plans-grid, .testimonial-page, .footer-grid { grid-template-columns: 1fr; }
  .benefit { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.16); }
  .copyright { flex-direction: column; align-items: center; }
  .team-grid { grid-template-columns: 1fr; max-width: 360px; }
}

.legal-link {
  background: none;
  border: none;
  padding: 0;
  color: #8a8a8a;
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color .2s ease;
}
.legal-link:hover { color: var(--orange); }

.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  z-index: 100;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: #181818;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  width: min(720px, 100%);
  max-height: 82vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 18px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  flex-shrink: 0;
}
.modal-header h2 {
  font-size: 22px;
  color: var(--white);
  margin: 0;
}
.modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,.5);
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
  transition: color .2s ease;
}
.modal-close:hover { color: var(--orange); }

.modal-body {
  overflow-y: auto;
  padding: 24px 28px 32px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.7;
  scrollbar-width: thin;
  scrollbar-color: rgba(255,255,255,.18) transparent;
}
.modal-body h3 {
  font-size: 15px;
  color: var(--white);
  margin: 22px 0 6px;
  font-style: normal;
  text-transform: none;
  letter-spacing: 0;
}
.modal-body h3:first-child { margin-top: 0; }
.modal-body p { margin: 0 0 4px; }
.modal-updated {
  margin-top: 24px;
  padding-top: 14px;
  border-top: 1px solid rgba(255,255,255,.1);
  font-size: 12px;
  color: #666;
}
