/* ===================================================
   ROOT / RESET
=================================================== */
:root {
  --red:      #e53935;
  --red-dark: #c62828;
  --dark:     #1e1e2a;
  --infobar:  #2d2d3e;
  --footer:   #1a1a28;
  --text:     #777;
  --light-bg: #f5f5f5;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  font-size: 14px;
  overflow-x: hidden;
}
a { text-decoration: none; transition: color .25s; }
img { max-width: 100%; display: block; }

/* ===================================================
   NAVBAR
=================================================== */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 72px;
  background: var(--dark);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.nav-logo-box {
  background: var(--red);
  color: #fff;
  padding: 0 22px;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo-box:hover { color: #fff; opacity: .92; }
.nav-right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 20px;
}
.nav-menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0; padding: 0;
}
.nav-menu li a {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: #ccc;
  padding: 8px 12px;
  display: block;
}
.nav-menu li a:hover,
.nav-menu li.active a { color: var(--red); }
.nav-btn-cta {
  background: var(--red);
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 11px 24px;
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.nav-btn-cta:hover { background: var(--red-dark); color: #fff; }

/* ===================================================
   HERO
=================================================== */
.hero {
  margin-top: 0;
  position: relative;
  height: 640px;
  background:
    linear-gradient(rgba(0,0,0,.72), rgba(0,0,0,.72)),
    url('https://images.unsplash.com/photo-1577412647305-991150c7d163?w=1600&h=700&fit=crop') center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  padding-top: 72px;
}
.hero-prev, .hero-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.12);
  border: 2px solid rgba(255,255,255,.35);
  border-radius: 50%;
  color: #fff;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.hero-prev { left: 30px; }
.hero-next { right: 30px; }
.hero-inner { max-width: 700px; padding: 0 20px; }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  opacity: .7;
  margin-bottom: 14px;
}
.hero h1 {
  font-family: 'Raleway', sans-serif;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 18px;
}
.hero h1 em { font-style: italic; color: var(--red); }
.hero-desc {
  font-size: 15px;
  line-height: 1.85;
  opacity: .8;
  max-width: 560px;
  margin: 0 auto 32px;
}
.hero-ctas { display: flex; gap: 16px; justify-content: center; align-items: center; flex-wrap: wrap; }
.btn-hero-primary {
  display: inline-block;
  padding: 14px 38px;
  background: var(--red);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-hero-primary:hover { background: var(--red-dark); color: #fff; }
.btn-watch {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border: 2px solid rgba(255,255,255,.5);
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  transition: all .3s;
}
.btn-watch .watch-circle {
  width: 30px; height: 30px;
  border: 2px solid rgba(255,255,255,.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.btn-watch:hover { background: var(--red); border-color: var(--red); color: #fff; }

/* ===================================================
   INFO BAR
=================================================== */
.info-bar { background: var(--infobar); padding: 12px 0; }
.info-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.info-contacts { display: flex; gap: 24px; }
.info-contacts a {
  color: #aaa;
  font-size: 12px;
  display: flex; align-items: center; gap: 8px;
}
.info-contacts a:hover { color: #fff; }
.info-contacts a i { color: var(--red); font-size: 12px; }
.info-socials { display: flex; gap: 14px; }
.info-socials a { color: #888; font-size: 14px; }
.info-socials a:hover { color: var(--red); }

/* ===================================================
   SECTIONS SHARED
=================================================== */
.sec { padding: 90px 0; }
.sec-header { text-align: center; margin-bottom: 55px; }
.sec-divider { width: 1px; height: 52px; background: #ccc; margin: 0 auto 20px; }
.sec-title {
  font-family: 'Raleway', sans-serif;
  font-size: 36px;
  font-weight: 800;
  color: #222;
  margin-bottom: 12px;
}
.sec-title span { color: var(--red); }
.sec-sub { font-size: 14px; color: #aaa; max-width: 520px; margin: 0 auto; line-height: 1.8; }

/* ===================================================
   FEATURES / STRENGTH
=================================================== */
.strength-sec { background: #fff; }
.tab-nav { display: flex; justify-content: center; align-items: stretch; margin-bottom: 45px; }
.tab-arr {
  width: 38px;
  background: #ececec;
  border: none;
  color: #888;
  font-size: 20px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
  flex-shrink: 0;
}
.tab-arr:hover { background: #ddd; }
.tab-list { display: flex; flex-wrap: wrap; }
.tab-item {
  padding: 11px 18px;
  background: #f0f0f0;
  border: none;
  border-right: 1px solid #e0e0e0;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: .5px;
  display: flex; align-items: center; gap: 7px;
  transition: all .25s;
}
.tab-item:hover { background: #e5e5e5; }
.tab-item.active { background: var(--red); color: #fff; border-right-color: var(--red-dark); }
.tab-content-panel { animation: fadeIn .3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; } }
.strength-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: #222;
  line-height: 1.45;
  margin-bottom: 18px;
}
.strength-body { font-size: 14px; line-height: 1.85; color: #888; margin-bottom: 28px; }
.prog-row { margin-bottom: 16px; }
.prog-labels { display: flex; justify-content: space-between; font-size: 13px; font-weight: 600; color: #444; margin-bottom: 6px; }
.prog-track { height: 4px; background: #eee; }
.prog-fill { height: 100%; background: var(--red); transition: width 1s ease; }
.btn-read {
  display: inline-block;
  margin-top: 26px;
  padding: 12px 30px;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-read:hover { background: var(--red); color: #fff; }
.str-img-wrap { position: relative; }
.str-img-wrap img { width: 100%; height: 310px; object-fit: cover; }
.feature-icon-over {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 68px; height: 68px;
  background: rgba(229,57,53,.9);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 26px;
  box-shadow: 0 5px 25px rgba(0,0,0,.25);
}
.video-bar {
  display: block;
  background: var(--red);
  color: #fff;
  text-align: right;
  padding: 14px 18px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.video-bar:hover { background: var(--red-dark); color: #fff; }

/* ===================================================
   TIMELINE
=================================================== */
.timeline-sec { background: #f5f5f5; padding: 65px 0; }
.tl-wrap { position: relative; }
.tl-line { position: absolute; top: 38px; left: 10%; right: 10%; height: 2px; background: #ddd; z-index: 0; }
.tl-line-red { position: absolute; top: 38px; left: 10%; width: 11%; height: 2px; background: var(--red); z-index: 1; }
.tl-arrow {
  position: absolute; top: 30px; left: calc(10% - 14px);
  width: 0; height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-right: 14px solid var(--red);
  z-index: 2;
}
.tl-item { text-align: center; position: relative; z-index: 2; padding: 0 10px; }
.tl-date { font-size: 12px; font-weight: 700; color: #333; margin-bottom: 10px; }
.tl-dot {
  width: 16px; height: 16px;
  background: #ccc;
  border-radius: 50%;
  margin: 0 auto 18px;
  border: 3px solid #f5f5f5;
  box-shadow: 0 0 0 2px #ccc;
}
.tl-dot.active { background: var(--red); box-shadow: 0 0 0 2px var(--red); }
.tl-cat { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .8px; color: var(--red); margin-bottom: 10px; }
.tl-txt { font-size: 13px; color: #aaa; line-height: 1.65; }

/* ===================================================
   PRICING (ersetzt Gallery)
=================================================== */
.gallery-sec { background: #fff; }
.filter-row { display: flex; justify-content: center; gap: 5px; flex-wrap: wrap; margin-bottom: 36px; }
.filter-btn {
  padding: 8px 22px;
  border: 2px solid #ddd;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #555;
  transition: all .25s;
}
.filter-btn:hover, .filter-btn.active { background: var(--red); border-color: var(--red); color: #fff; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pricing-card {
  border: 2px solid #eee;
  padding: 38px 28px;
  text-align: center;
  transition: all .3s;
  position: relative;
  background: #fff;
}
.pricing-card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,.1); border-color: #ddd; }
.pricing-card.featured { border-color: var(--red); background: var(--red); color: #fff; }
.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  padding: 5px 16px;
  text-transform: uppercase;
  white-space: nowrap;
}
.pricing-plan {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--red);
  margin-bottom: 12px;
}
.pricing-card.featured .pricing-plan { color: rgba(255,255,255,.85); }
.pricing-price {
  font-family: 'Raleway', sans-serif;
  font-size: 58px;
  font-weight: 900;
  color: #222;
  line-height: 1;
  margin-bottom: 4px;
  position: relative;
}
.pricing-card.featured .pricing-price { color: #fff; }
.pricing-period { font-size: 12px; color: #aaa; margin-bottom: 20px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.7); }
.pricing-divider { height: 1px; background: #eee; margin: 22px 0; }
.pricing-card.featured .pricing-divider { background: rgba(255,255,255,.3); }
.pricing-features { list-style: none; padding: 0; text-align: left; margin-bottom: 28px; }
.pricing-features li {
  font-size: 13px;
  color: #555;
  padding: 7px 0;
  display: flex; align-items: center; gap: 10px;
  border-bottom: 1px solid #f5f5f5;
}
.pricing-card.featured .pricing-features li { color: rgba(255,255,255,.92); border-bottom-color: rgba(255,255,255,.15); }
.pricing-features li::before { content: '✓'; color: var(--red); font-weight: 800; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { color: #fff; }
.pricing-features li.not-included { opacity: .45; }
.pricing-features li.not-included::before { content: '–'; }
.pricing-btn {
  display: block;
  padding: 13px 0;
  background: var(--dark);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  transition: background .25s;
}
.pricing-btn:hover { background: var(--red); color: #fff; }
.pricing-btn-light { background: #fff; color: var(--red); }
.pricing-btn-light:hover { background: var(--dark); color: #fff; }

/* ===================================================
   CTA / STATS
=================================================== */
.vol-sec {
  background-color: #efefef;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1000 500'%3E%3Cellipse cx='500' cy='250' rx='460' ry='220' fill='none' stroke='%23d0d0d0' stroke-width='1.5'/%3E%3Cellipse cx='500' cy='250' rx='340' ry='162' fill='none' stroke='%23d0d0d0' stroke-width='1'/%3E%3Cellipse cx='500' cy='250' rx='220' ry='105' fill='none' stroke='%23d0d0d0' stroke-width='1'/%3E%3Cellipse cx='500' cy='250' rx='110' ry='52' fill='none' stroke='%23d0d0d0' stroke-width='1'/%3E%3Cline x1='40' y1='250' x2='960' y2='250' stroke='%23d0d0d0' stroke-width='1'/%3E%3Cline x1='500' y1='28' x2='500' y2='472' stroke='%23d0d0d0' stroke-width='1'/%3E%3C/svg%3E");
  background-size: 65%;
  background-position: center;
  background-repeat: no-repeat;
  padding: 90px 0;
  text-align: center;
}
.vol-eyebrow { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 3px; color: #aaa; margin-bottom: 16px; }
.vol-title { font-family: 'Raleway', sans-serif; font-size: 46px; font-weight: 900; color: #222; margin-bottom: 14px; }
.vol-title span { color: var(--red); }
.vol-sub { font-size: 14px; color: #999; max-width: 500px; margin: 0 auto 30px; line-height: 1.85; }
.btn-join {
  display: inline-block;
  padding: 14px 44px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 65px;
}
.btn-join:hover { background: var(--red-dark); color: #fff; }
.stats-row {
  display: flex;
  background: #fff;
  border: 1px solid #e0e0e0;
  max-width: 780px;
  margin: 0 auto;
}
.stat-box {
  flex: 1;
  padding: 30px 15px;
  text-align: center;
  border-right: 1px solid #e0e0e0;
}
.stat-box:last-child { border-right: none; }
.stat-num { font-family: 'Raleway', sans-serif; font-size: 38px; font-weight: 900; color: #222; line-height: 1; }
.stat-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: #aaa; margin-top: 8px; }

/* ===================================================
   NEWS / MUSTER-REPORT
=================================================== */
.news-sec { background: #fff; }
.news-card { display: flex; gap: 18px; align-items: flex-start; margin-bottom: 28px; padding-bottom: 24px; border-bottom: 1px solid #f0f0f0; }
.news-card:last-child { border-bottom: none; }
.news-thumb-icon {
  width: 60px; height: 60px;
  background: var(--red);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 22px;
  flex-shrink: 0;
}
.news-meta { font-size: 11px; color: #c0c0c0; margin-bottom: 7px; }
.news-meta .cat { color: var(--red); font-weight: 700; }
.news-title { font-family: 'Raleway', sans-serif; font-size: 14px; font-weight: 700; color: #222; line-height: 1.5; }

/* ===================================================
   NEWSLETTER BAR
=================================================== */
.nl-sec { background: #2a2a38; padding: 65px 0; }
.nl-sec .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 50px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}
.nl-heading { font-family: 'Raleway', sans-serif; font-size: 34px; font-weight: 900; color: #fff; line-height: 1.2; white-space: nowrap; }
.nl-heading .underline { border-bottom: 3px solid var(--red); padding-bottom: 3px; }
.nl-form { display: flex; flex: 1; max-width: 440px; }
.nl-form input {
  flex: 1;
  padding: 15px 18px;
  background: #3a3a4e;
  border: none;
  color: #fff;
  font-size: 13px;
  font-family: 'Open Sans', sans-serif;
  outline: none;
}
.nl-form input::placeholder { color: #777; }
.nl-form button {
  padding: 15px 22px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  font-family: 'Open Sans', sans-serif;
}
.nl-form button:hover { background: var(--red-dark); }

/* ===================================================
   FOOTER
=================================================== */
.site-footer { background: var(--footer); padding: 65px 0 0; }
.footer-logo { font-family: 'Raleway', sans-serif; font-size: 28px; font-weight: 900; color: #fff; letter-spacing: -1px; margin-bottom: 16px; }
.footer-about { font-size: 13px; color: #666; line-height: 1.85; margin-bottom: 22px; }
.footer-soc { display: flex; gap: 8px; }
.footer-soc a {
  width: 34px; height: 34px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px;
}
.footer-soc a:hover { opacity: .85; }
.soc-li { background: #0077b5; }
.soc-xi { background: #026466; }
.soc-tw { background: #333; }
.footer-col-title {
  font-family: 'Raleway', sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 22px;
  padding-bottom: 12px;
  position: relative;
}
.footer-col-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 35px; height: 2px; background: var(--red); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #666; font-size: 13px; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '\203A'; color: var(--red); font-size: 18px; line-height: 1; }
.footer-links a:hover { color: #ccc; }
.footer-bottom { background: #141420; margin-top: 50px; padding: 18px 0; text-align: center; font-size: 13px; color: #555; }

/* ===================================================
   SUBSCRIBE PAGE
=================================================== */
.page-wrap { padding: 120px 0 80px; min-height: 100vh; background: var(--light-bg); }
.form-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  padding: 48px 40px;
  max-width: 560px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,.08);
}
.form-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #222;
  margin-bottom: 6px;
}
.form-card-sub { font-size: 14px; color: #999; margin-bottom: 32px; line-height: 1.7; }
.plan-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  padding: 6px 16px;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 20px; }
.form-label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #444; margin-bottom: 8px; display: block; }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid #eee;
  background: #fafafa;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
  color: #333;
  outline: none;
  transition: border-color .25s;
}
.form-control:focus { border-color: var(--red); background: #fff; }
.form-select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M6 8L0 0h12z' fill='%23999'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.btn-submit {
  width: 100%;
  padding: 15px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 8px;
}
.btn-submit:hover { background: var(--red-dark); }
.alert-error {
  background: #fff0f0;
  border-left: 4px solid var(--red);
  padding: 14px 18px;
  font-size: 13px;
  color: #c62828;
  margin-bottom: 24px;
}
.form-hint { font-size: 12px; color: #aaa; text-align: center; margin-top: 18px; line-height: 1.7; }

/* ===================================================
   PORTAL
=================================================== */
.portal-wrap { padding: 100px 0 80px; min-height: 100vh; background: var(--light-bg); }
.portal-header {
  background: var(--dark);
  color: #fff;
  padding: 32px 40px;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.portal-header h1 { font-family: 'Raleway', sans-serif; font-size: 24px; font-weight: 800; }
.portal-card { background: #fff; border: 1px solid #e8e8e8; padding: 36px 40px; margin-bottom: 24px; }
.portal-card-title {
  font-family: 'Raleway', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: #222;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid #f0f0f0;
}
.status-badge {
  display: inline-block;
  padding: 4px 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
}
.status-active { background: #e8f5e9; color: #2e7d32; }
.status-grace  { background: #fff3e0; color: #e65100; }
.status-cancelled { background: #fce4ec; color: #c62828; }

/* ===================================================
   SUBSCRIBE PAGE – NEW LAYOUT
=================================================== */
.sub-page { padding: 100px 0 80px; min-height: 100vh; background: var(--light-bg); }
.sub-layout {
  max-width: 1060px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 800px) {
  .sub-layout { grid-template-columns: 1fr; gap: 0; }
  .sub-left { display: none; }
}

/* Left column */
.sub-eyebrow {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--red);
  margin-bottom: 14px;
}
.sub-heading {
  font-family: 'Raleway', sans-serif;
  font-size: 38px;
  font-weight: 900;
  color: #222;
  line-height: 1.2;
  margin-bottom: 18px;
}
.sub-desc { font-size: 14px; color: #888; line-height: 1.85; margin-bottom: 30px; }
.sub-benefits { list-style: none; padding: 0; margin: 0 0 30px; }
.sub-benefits li {
  font-size: 14px;
  color: #555;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
  gap: 12px;
}
.sub-benefits li i { color: var(--red); font-size: 13px; flex-shrink: 0; }
.sub-trust { display: flex; flex-direction: column; gap: 10px; margin-bottom: 32px; }
.sub-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: #666;
}
.sub-trust-item i { color: var(--red); width: 16px; text-align: center; }
.sub-quote {
  background: #fff;
  border-left: 4px solid var(--red);
  padding: 18px 22px;
  margin-top: 8px;
}
.sub-quote p { font-size: 14px; color: #555; font-style: italic; line-height: 1.7; margin-bottom: 8px; }
.sub-quote span { font-size: 12px; color: #aaa; font-weight: 600; }

/* Plan selector */
.plan-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.plan-option {
  border: 2px solid #e8e8e8;
  padding: 14px 10px;
  text-align: center;
  cursor: pointer;
  transition: all .2s;
  position: relative;
  background: #fafafa;
}
.plan-option:hover { border-color: #ccc; background: #fff; }
.plan-option.active { border-color: var(--red); background: #fff3f2; }
.plan-option-badge {
  position: absolute;
  top: -10px; left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 3px 10px;
  white-space: nowrap;
}
.plan-option-name {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: #555;
  margin-bottom: 6px;
}
.plan-option.active .plan-option-name { color: var(--red); }
.plan-option-price {
  font-family: 'Raleway', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: #222;
  line-height: 1;
  margin-bottom: 4px;
}
.plan-option-price span { font-size: 12px; font-weight: 400; color: #aaa; }
.plan-option-hint { font-size: 11px; color: #aaa; }

/* Google button */
.btn-google-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 13px 20px;
  border: 2px solid #ddd;
  background: #fff;
  color: #444;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 18px;
  transition: border-color .2s, box-shadow .2s;
}
.btn-google-sub:hover { border-color: #bbb; box-shadow: 0 2px 8px rgba(0,0,0,.08); color: #222; }

/* Divider */
.sub-divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
  color: #ccc;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.sub-divider::before, .sub-divider::after { content: ''; flex: 1; height: 1px; background: #eee; }

/* btn-cta for login page */
.btn-cta {
  display: inline-block;
  padding: 13px 28px;
  background: var(--red);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Open Sans', sans-serif;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: background .2s;
  text-decoration: none;
}
.btn-cta:hover { background: var(--red-dark); color: #fff; }

/* ===================================================
   SUCCESS PAGE
=================================================== */
.success-wrap { padding: 120px 0 80px; text-align: center; }
.success-icon { font-size: 72px; color: var(--red); margin-bottom: 28px; }
.success-title { font-family: 'Raleway', sans-serif; font-size: 38px; font-weight: 900; color: #222; margin-bottom: 16px; }
.success-sub { font-size: 16px; color: #888; max-width: 500px; margin: 0 auto 32px; line-height: 1.8; }
