/* =========================================================
   GLOBAL TYPOGRAPHY — STANDARDIZED
========================================================= */
* {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --twg-font-body: 16px;
  --twg-h1-size: 42px;
  --twg-h2-size: 32px;
  --twg-h3-size: 19px;
  --twg-h4-size: 17px;
  --header-bg: linear-gradient(135deg, #f5f7ff 0%, #e3eeff 50%, #d2e3ff 100%);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
  font-size: 16px;
  line-height: 1.7;
}
p {
  font-size: 16px !important;
  line-height: 1.7;
}
main h1,
main h2,
main h3,
main h4 {
  font-family: inherit;
  line-height: 1.2;
}
main h1 {
  font-size: var(--twg-h1-size) !important;
}
main h2 {
  font-size: var(--twg-h2-size) !important;
}
main h3 {
  font-size: var(--twg-h3-size) !important;
}
main h4 {
  font-size: var(--twg-h4-size) !important;
}
small {
  font-size: 12px;
}
@media (max-width: 760px) {
  :root {
    --twg-h1-size: 30px;
    --twg-h2-size: 27px;
    --twg-h3-size: 18px;
    --twg-h4-size: 16px;
  }
}
@media (max-width: 480px) {
  :root {
    --twg-h1-size: 28px;
    --twg-h2-size: 25px;
    --twg-h3-size: 17px;
    --twg-h4-size: 15px;
  }
}
small {
  font-size: 16px;
}

/* ============Header Styles============= */
.twg-header {
  --twg-primary: #6d28d9;
  --twg-primary-dark: #4c1d95;
  --twg-secondary: #2563eb;
  --twg-accent: #06b6d4;
  --twg-text: #172033;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.16);
  --twg-white: #ffffff;
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: var(--header-bg);
  border-bottom: 1px solid var(--twg-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(15, 23, 42, 0.04);
}
/* Main Container */
.twg-nav-container {
  width: min(1180px, calc(100% - 32px));
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
/* Logo */
.twg-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--twg-text);
  text-decoration: none;
  flex-shrink: 0;
}
.twg-logo:hover {
  text-decoration: none;
}
.twg-logo-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: #ffffff;
  font-size: 20px;
  background: linear-gradient(
    135deg,
    var(--twg-primary),
    var(--twg-secondary),
    var(--twg-accent)
  );
  box-shadow: 0 7px 18px rgba(109, 40, 217, 0.22);
}
.twg-logo strong {
  display: block;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.4px;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-logo small {
  display: block;
  margin-top: 3px;
  color: var(--twg-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  letter-spacing: 0.1px;
}
/* NAVIGATION  */
.twg-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}
.twg-nav > a:not(.twg-nav-cta) {
  position: relative;
  padding: 10px 12px;
  color: #475569;
  text-decoration: none;
  font-size: 16px;
  font-weight: 650;
  border-radius: 9px;
  transition:
    color 0.2s ease,
    background 0.2s ease;
}
.twg-nav > a:not(.twg-nav-cta):hover {
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.06);
  text-decoration: none;
}
/* CTA Button */
.twg-nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-left: 7px;
  padding: 11px 17px;
  color: #ffffff !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 750;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  box-shadow: 0 7px 18px rgba(79, 70, 229, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-nav-cta:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 11px 25px rgba(79, 70, 229, 0.28);
}
/* MOBILE MENU BUTTON */
.twg-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--twg-border);
  border-radius: 10px;
  background: #ffffff;
  cursor: pointer;
}
.twg-menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  border-radius: 10px;
  background: #334155;
  transition:
    transform 0.2s ease,
    opacity 0.2s ease;
}
/* Tablet */
@media (max-width: 900px) {
  .twg-nav {
    gap: 2px;
  }
  .twg-nav > a:not(.twg-nav-cta) {
    padding: 9px 8px;
    font-size: 13px;
  }
  .twg-nav-cta {
    padding: 10px 13px;
  }
}
/* Responsive For Mobile */
@media (max-width: 760px) {
  .twg-nav-container {
    min-height: 68px;
  }
  .twg-logo-icon {
    width: 37px;
    height: 37px;
    border-radius: 10px;
    font-size: 18px;
  }
  .twg-logo strong {
    font-size: 16px;
  }
  .twg-logo small {
    font-size: 11px;
  }
  .twg-menu-toggle {
    display: block;
  }
  .twg-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 10px;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid var(--twg-border);
    border-radius: 14px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition:
      opacity 0.2s ease,
      visibility 0.2s ease,
      transform 0.2s ease;
  }
  .twg-nav.twg-nav-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .twg-nav > a:not(.twg-nav-cta) {
    width: 100%;
    padding: 12px 13px;
    font-size: 14px;
  }
  .twg-nav-cta {
    width: 100%;
    margin: 5px 0 0;
    padding: 13px;
  }
}
@media (max-width: 420px) {
  .twg-nav-container {
    width: min(100% - 22px, 1180px);
  }
  .twg-logo small {
    display: none;
  }
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .twg-header *,
  .twg-header *::before,
  .twg-header *::after {
    transition: none !important;
  }
}
/* ============Hero Styles============= */
.twg-hero {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-cyan: #06b6d4;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.16);
  position: relative;
  overflow: hidden;
  padding: 80px 20px 90px;
  background:
    radial-gradient(
      circle at 8% 20%,
      rgba(139, 92, 246, 0.12),
      transparent 32%
    ),
    radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.1), transparent 32%),
    linear-gradient(135deg, #ffffff 0%, #f8faff 48%, #f5f3ff 100%);
}
/* Decorative background */
.twg-hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -220px;
  right: -150px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.08),
    rgba(37, 99, 235, 0.03)
  );
  pointer-events: none;
}
.twg-hero-container {
  position: relative;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns:
    minmax(0, 0.95fr)
    minmax(0, 1.05fr);
  align-items: center;
  gap: 70px;
}
/*  LEFT PRODUCT VISUAL */
.twg-hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.twg-visual-glow {
  position: absolute;
  width: 370px;
  height: 370px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.18) 0%,
    rgba(37, 99, 235, 0.09) 42%,
    transparent 72%
  );
  filter: blur(5px);
}
/* Product Card */
.twg-product-card {
  position: relative;
  z-index: 2;
  width: min(470px, 92%);
  padding: 17px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    0 25px 70px rgba(30, 41, 59, 0.15),
    0 5px 20px rgba(109, 40, 217, 0.08);
  backdrop-filter: blur(12px);
  transform: rotate(-1.2deg);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.twg-product-card:hover {
  transform: rotate(0deg) translateY(-5px);
  box-shadow:
    0 32px 80px rgba(30, 41, 59, 0.18),
    0 7px 24px rgba(109, 40, 217, 0.1);
}
/* Product Image */
.twg-product-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: contain;
  border-radius: 14px;
  background: linear-gradient(135deg, #f8fafc, #eef2ff);
}
/* Product Badge */
.twg-product-badge {
  position: absolute;
  top: -15px;
  left: -15px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  padding: 7px 11px;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.1px;
  box-shadow: 0 6px 16px rgba(79, 70, 229, 0.25);
}
/* Image Caption */
.twg-image-caption {
  position: absolute;
  left: 0;
  bottom: -28px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 13px 4px 2px;
  color: var(--twg-muted);
  font-size: 12px;
  font-weight: 650;
}
.twg-caption-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.1);
}
/* FLOATING CARDS */
.twg-floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  backdrop-filter: blur(12px);
}
.twg-floating-top {
  top: -42px;
  right: -5px;
}
.twg-floating-bottom {
  bottom: -45px;
  right: -5px;
}
.twg-floating-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: linear-gradient(135deg, #ede9fe, #dbeafe);
  font-size: 16px;
}
.twg-floating-card strong {
  display: block;
  color: var(--twg-dark);
  font-size: 13px;
  font-weight: 750;
}
.twg-floating-card small {
  display: block;
  margin-top: 2px;
  color: var(--twg-muted);
  font-size: 13px;
}
/*  RIGHT CONTENT */
.twg-hero-content {
  position: relative;
  z-index: 3;
}
/* Eyebrow */
.twg-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.06);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.2px;
}
.twg-eyebrow span {
  color: #f59e0b;
}
.twg-hero h1 {
  max-width: 680px;
  margin: 0 0 20px;
  color: var(--twg-dark);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -1.7px;
  font-weight: 850;
}
.twg-hero h1 span {
  display: block;
  margin-top: 5px;
  background: linear-gradient(
    90deg,
    var(--twg-primary),
    var(--twg-secondary),
    var(--twg-cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-hero-description {
  max-width: 650px;
  margin: 0 0 23px;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 450;
}

.twg-hero-highlights {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}
.twg-highlight {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #334155;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 600;
}
.twg-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.2);
}

/* CTA BUTTONS */
.twg-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 25px;
}
.twg-primary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 52px;
  padding: 0 20px;
  border-radius: 11px;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 14px;
  font-weight: 750;
  box-shadow: 0 10px 24px rgba(79, 70, 229, 0.23);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-primary-cta strong {
  font-size: 19px;
  line-height: 1;
}
.twg-primary-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(79, 70, 229, 0.3);
}
.twg-secondary-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border: 1px solid rgba(100, 116, 139, 0.2);
  border-radius: 11px;
  color: #475569 !important;
  background: #ffffff;
  text-decoration: none !important;
  font-size: 14px;
  font-weight: 700;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.twg-secondary-cta:hover {
  color: var(--twg-primary) !important;
  border-color: rgba(109, 40, 217, 0.3);
  transform: translateY(-2px);
  text-decoration: none !important;
}
/* TRUST ROW */
.twg-hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--twg-muted);
  font-size: 12px;
  font-weight: 600;
}
.twg-trust-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.twg-trust-item span:first-child {
  font-size: 12px;
}
.twg-trust-divider {
  width: 1px;
  height: 13px;
  background: rgba(100, 116, 139, 0.22);
}
/* Responsive for TABLET */
@media (max-width: 950px) {
  .twg-hero {
    padding: 65px 20px 75px;
  }
  .twg-hero-container {
    grid-template-columns: 1fr;
    gap: 45px;
  }
  .twg-hero-visual {
    min-height: 430px;
  }
  .twg-product-card {
    width: min(500px, 88%);
  }
  .twg-product-badge {
    font-size: 12px;
  }
  .twg-image-caption{
    font-size: 12px;
  }
  .twg-hero-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }
  .twg-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }
  .twg-hero h1,
  .twg-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .twg-hero-highlights {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }
  .twg-hero-actions {
    justify-content: center;
  }
  .twg-hero-trust {
    justify-content: center;
  }
  .twg-floating-top {
    right: max(1%, calc((100% - 540px) / 2));
  }
  .twg-floating-bottom {
    left: max(1%, calc((100% - 540px) / 2));
  }
}
/* Responsive for MOBILE */
@media (max-width: 600px) {
  .twg-hero {
    padding: 48px 15px 60px;
  }
  .twg-hero-container {
    gap: 30px;
  }
  .twg-hero-visual {
    min-height: 350px;
  }
  .twg-product-card {
    width: 94%;
    padding: 11px;
    border-radius: 17px;
  }
  .twg-product-image {
    min-height: 210px;
    border-radius: 10px;
  }
  .twg-product-badge {
    top: 19px;
    left: 19px;
    padding: 6px 9px;
    font-size: 9px;
  }
  .twg-image-caption {
    padding-top: 9px;
    font-size: 10px;
  }
  .twg-floating-card {
    padding: 9px 10px;
    gap: 7px;
    border-radius: 10px;
  }
  .twg-floating-top {
    top: 5px;
    right: 0;
  }
  .twg-floating-bottom {
    bottom: 5px;
    left: 0;
  }
  .twg-floating-icon {
    width: 28px;
    height: 28px;
    font-size: 13px;
  }
  .twg-floating-card strong {
    font-size: 10px;
  }
  .twg-floating-card small {
    font-size: 8px;
  }
  .twg-eyebrow {
    font-size: 10px;
  }
  .twg-hero h1 {
    font-size: clamp(30px, 9vw, 40px);
    letter-spacing: -1px;
  }
  .twg-hero-description {
    font-size: 15px;
    line-height: 1.7;
  }
  .twg-highlight {
    font-size: 13px;
  }
  .twg-hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .twg-primary-cta,
  .twg-secondary-cta {
    width: 100%;
  }
  .twg-hero-trust {
    gap: 8px;
    font-size: 9px;
  }
  .twg-trust-divider {
    height: 11px;
  }
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .twg-hero *,
  .twg-hero *::before,
  .twg-hero *::after {
    transition: none !important;
    transform: none !important;
  }
}

/* TRUST SECTION */
.twg-trust-section {
  --twg-primary: #6d28d9;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #475569;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.15);
  position: relative;
  padding: 30px 20px 34px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
}
/* Container */
.twg-trust-container {
  width: min(1180px, 100%);
  margin: 0 auto;
}
/* HEADING */
.twg-trust-heading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 22px;
  color: var(--twg-dark);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.8px;
}
.twg-trust-line {
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(240, 240, 24, 0.99));
}
.twg-trust-line:last-child {
  background: linear-gradient(90deg, rgba(148, 255, 7, 0.77), transparent);
}
/* TRUST GRID */
.twg-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 13px;
}
/* Trust Box */
.twg-trust-box {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 72px;
  padding: 12px 14px;
  border: 1px solid var(--twg-border);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 5px 20px rgba(15, 23, 42, 0.035);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.twg-trust-box:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 40, 217, 0.18);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.07);
}
/* ICON */
.twg-trust-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.1),
    rgba(37, 99, 235, 0.08)
  );
}
.twg-trust-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: var(--twg-primary);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
/* TEXT */
.twg-trust-content {
  min-width: 0;
}
.twg-trust-content strong {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-dark);
  font-size: 14px;
  line-height: 1.3;
  font-weight: 750;
}
.twg-trust-content span {
  display: block;
  color: var(--twg-muted);
  font-size: 12px;
  line-height: 1.45;
}
/* DISCLOSURE */
.twg-trust-disclosure {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  max-width: 850px;
  margin: 19px auto 0;
  color: #94a3b8;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.twg-trust-disclosure > span:first-child {
  flex-shrink: 0;
  color: #94a3b8;
}
/* Responsive For Tablet */
@media (max-width: 900px) {
  .twg-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .twg-trust-heading h2 {
    font-size: 17px;
   }
  .twg-trust-disclosure {
    font-size: 10px;
  }
}
/* Responsive For Mobile */
@media (max-width: 560px) {
  .twg-trust-section {
    padding: 25px 15px 30px;
  }
  .twg-trust-grid {
    grid-template-columns: 1fr;
    gap: 9px;
  }
  .twg-trust-box {
    min-height: 65px;
  }
  .twg-trust-line {
    width: 25px;
  }
  .twg-trust-content strong {
    font-size: 14px;
  }
  .twg-trust-content span {
    font-size: 14px;
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .twg-trust-section *,
  .twg-trust-section *::before,
  .twg-trust-section *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ============ OVERVIEW + REVIEW SUMMARY Styles============= */

.twg-overview-section {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-cyan: #06b6d4;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.15);
  position: relative;
  padding: 78px 20px 82px;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
}
/* Background Glow */
.twg-overview-section::before {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  left: -170px;
  top: 90px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
/* CONTAINER */
.twg-overview-container {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 25px;
  align-items: stretch;
}
/* COMMON CARD */
.twg-overview-card,
.twg-review-card {
  border: 1px solid var(--twg-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.055);
}
/* LEFT CARD */
.twg-overview-card {
  padding: 34px 35px;
}
.twg-section-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  color: var(--twg-primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-label-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.11),
    rgba(37, 99, 235, 0.09)
  );
  font-size: 12px;
}
.twg-overview-card h2,
.twg-review-card h2 {
  margin: 0 0 16px;
  color: var(--twg-dark);
  font-size: clamp(25px, 3vw, 32px);
  line-height: 1.18;
  letter-spacing: -0.7px;
  font-weight: 820;
}
.twg-overview-card > p {
  margin: 0 0 16px;
  color: var(--twg-text);
  font-size: 15px;
  line-height: 1.75;
}
.twg-overview-card > p strong {
  color: var(--twg-dark);
  font-weight: 750;
}
/* FACTS GRID */
.twg-facts-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-top: 25px;
}
.twg-fact {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px;
  border: 1px solid rgba(100, 116, 139, 0.12);
  border-radius: 12px;
  background: linear-gradient(135deg, #b4d6e2, #f8f7ff);
}
.twg-fact-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 99px;
  background: #ffffff;
  box-shadow: 0 3px 10px rgba(15, 23, 42, 0.06);
  font-size: 15px;
}
.twg-fact small {
  display: block;
  margin-bottom: 2px;
  color: #94a3b8;
  font-size: 12px;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}
.twg-fact strong {
  display: block;
  color: var(--twg-dark);
  font-size: 13px;
  font-weight: 750;
}
/* RIGHT REVIEW CARD */
.twg-review-card {
  position: relative;
  overflow: hidden;
  padding: 34px 35px;
  background: linear-gradient(145deg, #ffffff 0%, #fbfaff 60%, #f7f9ff 100%);
}
.twg-review-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -85px;
  bottom: -90px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09), transparent 70%);
  pointer-events: none;
}
.twg-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.twg-summary-label {
  margin-bottom: 10px;
}
.twg-review-top h2 {
  margin-bottom: 0;
}
/* Review Label */
.twg-review-mark {
  flex-shrink: 0;
  padding: 6px 9px;
  border-radius: 7px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.07);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.7px;
}
/* SCORE BOX */
.twg-score-box {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 20px;
  padding: 14px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 13px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.055),
    rgba(37, 99, 235, 0.045)
  );
}
.twg-score-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 10px;
  color: #ffffff;
  background: linear-gradient(135deg, #7c3aed, #2563eb);
  font-size: 18px;
  font-weight: 800;
}
.twg-score-content strong {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-dark);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 780;
}
.twg-score-content span {
  display: block;
  color: var(--twg-muted);
  font-size: 13px;
  line-height: 1.5;
}
/* SUMMARY LIST */
.twg-summary-list {
  display: grid;
  gap: 14px;
}
.twg-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.twg-summary-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 12px;
  font-weight: 800;
}
.twg-summary-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--twg-dark);
  font-size: 14px;
  line-height: 1.4;
  font-weight: 750;
}
.twg-summary-item p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 13px;
  line-height: 1.55;
}
/* CTA Button */
.twg-summary-cta {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  margin-top: 25px;
  padding: 0 18px;
  border-radius: 10px;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 9px 22px rgba(79, 70, 229, 0.2);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-summary-cta span {
  font-size: 17px;
}
.twg-summary-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 27px rgba(79, 70, 229, 0.27);
}
/* Responsive ForTABLET */
@media (max-width: 900px) {
  .twg-overview-section {
    padding: 60px 20px 65px;
  }
  .twg-overview-container {
    grid-template-columns: 1fr;
    max-width: 700px;
  }
}
/* Responsive For MOBILE */
@media (max-width: 560px) {
  .twg-overview-section {
    padding: 48px 15px 55px;
  }
  .twg-overview-card,
  .twg-review-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  .twg-overview-card h2,
  .twg-review-card h2 {
    font-size: 25px;
  }
  .twg-overview-card > p {
    font-size: 15px;
    line-height: 1.7;
  }
  .twg-facts-grid {
    grid-template-columns: 1fr;
  }
  .twg-review-top {
    align-items: center;
  }
  .twg-score-box {
    padding: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .twg-overview-section *,
  .twg-overview-section *::before,
  .twg-overview-section *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ============ Problem + Solution Styles============= */
.twg-problem-solution {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-cyan: #06b6d4;
  --twg-danger: #dc2626;
  --twg-success: #16a34a;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.15);
  position: relative;
  overflow: hidden;
  padding: 82px 20px 85px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
/* Background Decoration */
.twg-problem-solution::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  top: -220px;
  left: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
.twg-problem-solution::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -220px;
  bottom: -220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07), transparent 70%);
  pointer-events: none;
}
/* Container */
.twg-ps-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}
/* Intro Header */
.twg-ps-intro {
  max-width: 780px;
  margin: 0 auto 45px;
  text-align: center;
}
.twg-ps-eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
  padding: 7px 12px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.055);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-ps-intro h2 {
  margin: 0 15px;
  color: var(--twg-dark);
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  font-weight: 850;
}
.twg-ps-intro h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-ps-intro > p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}
/* Main Grid */
.twg-ps-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 55px minmax(0, 1fr);
  align-items: stretch;
}
/* Problem & Solution Cards */
.twg-problem-card,
.twg-solution-card {
  position: relative;
  padding: 31px 30px;
  border-radius: 19px;
  background: #ffffff;
  box-shadow: 0 12px 38px rgba(15, 23, 42, 0.055);
}
.twg-problem-card {
  border: 1px solid rgba(220, 38, 38, 0.12);
}
.twg-solution-card {
  border: 1px solid rgba(109, 40, 217, 0.14);
  background: linear-gradient(145deg, #ffffff 0%, #fbfaff 100%);
}
/* Card Headings */
.twg-card-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 25px;
}
.twg-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 850;
}
.twg-problem-icon {
  color: var(--twg-danger);
  background: rgba(220, 38, 38, 0.08);
}
.twg-solution-icon {
  color: var(--twg-success);
  background: rgba(22, 163, 74, 0.09);
}
.twg-card-heading > div:last-child > span {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.twg-card-heading h3 {
  margin: 0;
  color: var(--twg-dark);
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: -0.4px;
  font-weight: 800;
}
/* Problem/Solution Lists */
.twg-problem-list,
.twg-solution-list {
  display: grid;
  gap: 19px;
}
.twg-problem-item,
.twg-solution-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.twg-x-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  color: var(--twg-danger);
  background: rgba(220, 38, 38, 0.08);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.twg-problem-item strong,
.twg-solution-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-dark);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 750;
}
.twg-problem-item p,
.twg-solution-item p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.6;
}
/* Center Connector */
.twg-ps-connector {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 7px;
}
.twg-connector-line {
  width: 1px;
  height: 100%;
  min-height: 20px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(109, 40, 217, 0.25),
    transparent
  );
}
.twg-connector-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 18px;
  font-weight: 800;
  box-shadow: 0 8px 22px rgba(79, 70, 229, 0.23);
}
/* Solution Specific Highlights */
.twg-solution-intro {
  margin: -5px 0 23px;
  color: var(--twg-text);
  font-size: 15px;
  line-height: 1.7;
}
.twg-solution-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, #22c55e, #16a34a);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.15);
}
.twg-solution-bottom {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  margin-top: 25px;
  padding: 13px 14px;
  border: 1px solid rgba(109, 40, 217, 0.1);
  border-radius: 11px;
  background: rgba(109, 40, 217, 0.045);
}
.twg-solution-lightning {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, #22c2c5, #16a34a);
  font-size: 11px;
  font-weight: 850;
  box-shadow: 0 4px 10px rgba(34, 197, 94, 0.15);
}
.twg-solution-bottom strong {
  display: block;
  margin-bottom: 2px;
  color: var(--twg-dark);
  font-size: 14px;
  font-weight: 780;
}
.twg-solution-bottom span {
  display: block;
  color: var(--twg-muted);
  font-size: 13px;
  line-height: 1.5;
}
/* Bottom Disclaimer/Note Area */
.twg-ps-bottom {
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: 900px;
  margin: 27px auto 0;
  padding: 14px 17px;
  border: 1px solid rgba(100, 116, 139, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.78);
}
.twg-bottom-icon {
  flex-shrink: 0;
  font-size: 18px;
}
.twg-ps-bottom p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 14px;
  line-height: 1.6;
}
.twg-ps-bottom strong {
  color: var(--twg-dark);
  font-weight: 750;
}
/* Responsive Design - Tablet */
@media (max-width: 850px) {
  .twg-problem-solution {
    padding: 65px 20px 70px;
  }
  .twg-ps-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .twg-ps-connector {
    flex-direction: row;
    height: 40px;
  }
  .twg-connector-line {
    width: 100%;
    height: 1px;
    min-height: 0;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(109, 40, 217, 0.25),
      transparent
    );
  }
  .twg-connector-arrow {
    transform: rotate(90deg);
  }
}
/* Responsive Design - Mobile */
@media (max-width: 560px) {
  .twg-problem-solution {
    padding: 50px 15px 55px;
  }
  .twg-ps-intro {
    margin-bottom: 32px;
  }
  .twg-ps-intro h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .twg-ps-intro > p {
    font-size: 15px;
    line-height: 1.7;
  }
  .twg-problem-card,
  .twg-solution-card {
    padding: 24px 20px;
    border-radius: 16px;
  }
  .twg-card-heading {
    gap: 10px;
  }
  .twg-card-icon {
    width: 37px;
    height: 37px;
    font-size: 16px;
  }
  .twg-card-heading h3 {
    font-size: 17px;
  }
  .twg-problem-item p,
  .twg-solution-item p {
    font-size: 13px;
  }
  .twg-ps-bottom {
    align-items: flex-start;
  }
}
/* Accessibility - Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .twg-problem-solution *,
  .twg-problem-solution *::before,
  .twg-problem-solution *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ============  FEATURES + BENEFITS Styles============= */
.twg-features-benefits {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-cyan: #06b6d4;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.15);
  position: relative;
  overflow: hidden;
  padding: 85px 20px 88px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
/* Background Decoration */
.twg-features-benefits::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -240px;
  right: -200px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.08),
    transparent 70%
  );
  pointer-events: none;
}
.twg-features-benefits::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  left: -220px;
  bottom: -250px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07), transparent 70%);
  pointer-events: none;
}
/* CONTAINER */
.twg-fb-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}
/* HEADER */
.twg-fb-header {
  max-width: 790px;
  margin: 0 auto 45px;
  text-align: center;
}
.twg-fb-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.055);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-fb-header h2 {
  margin: 0 0 15px;
  color: var(--twg-dark);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  font-weight: 850;
}
.twg-fb-header h2 span {
  display: block;
  background: linear-gradient(
    90deg,
    var(--twg-primary),
    var(--twg-secondary),
    var(--twg-cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-fb-header p {
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}
/* MAIN GRID */
.twg-fb-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 25px;
  align-items: stretch;
}
/* PANELS */
.twg-features-panel,
.twg-benefits-panel {
  padding: 32px;
  border: 1px solid var(--twg-border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
}
/* PANEL HEADING */
.twg-panel-heading {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
}
.twg-panel-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 800;
}
.twg-feature-panel-icon {
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.08);
}
.twg-benefit-panel-icon {
  color: #16a34a;
  background: rgba(22, 163, 74, 0.09);
}
.twg-panel-heading span {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.twg-panel-heading h3 {
  margin: 0;
  color: var(--twg-dark);
  font-size: 22px;
  line-height: 1.25;
  font-weight: 820;
}
/* FEATURE LIST */
.twg-feature-list {
  display: grid;
  gap: 20px;
}
.twg-feature-item {
  display: grid;
  grid-template-columns: 26px 40px 1fr;
  gap: 10px;
  align-items: flex-start;
}
.twg-feature-number {
  padding-top: 7px;
  color: #a78bfa;
  font-size: 13px;
  font-weight: 800;
}
.twg-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, #f5f3ff, #eff6ff);
  font-size: 17px;
}
.twg-feature-content h4 {
  margin: 0 0 4px;
  color: var(--twg-dark);
  font-size: 18px;
  line-height: 1.4;
  font-weight: 760;
}
.twg-feature-content p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.6;
}
/* BENEFITS INTRO */
.twg-benefits-intro {
  margin: -4px 0 22px;
  padding: 13px 14px;
  border-left: 3px solid var(--twg-primary);
  border-radius: 0 9px 9px 0;
  background: rgba(109, 40, 217, 0.045);
}
.twg-benefits-intro p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.65;
}
/* BENEFIT LIST */
.twg-benefit-list {
  display: grid;
  gap: 10px;
}
.twg-benefit-card {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  padding: 13px;
  border: 1px solid rgba(100, 116, 139, 0.11);
  border-radius: 12px;
  background: linear-gradient(135deg, #ffffff, #fafbff);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}
.twg-benefit-card:hover {
  transform: translateY(-2px);
  border-color: rgba(109, 40, 217, 0.15);
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
}
.twg-benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 9px;
  background: rgba(22, 163, 74, 0.08);
  font-size: 17px;
}
.twg-benefit-card h4 {
  margin: 0 0 3px;
  color: var(--twg-dark);
  font-size: 16px;
  line-height: 1.4;
  font-weight: 760;
}
.twg-benefit-card p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.55;
}
/* CTA */
.twg-fb-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  min-height: 48px;
  margin-top: 23px;
  border-radius: 10px;
  color: #ffffff !important;
  text-decoration: none !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 13px;
  font-weight: 750;
  box-shadow: 0 9px 22px rgba(79, 70, 229, 0.19);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-fb-cta span {
  font-size: 17px;
}
.twg-fb-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(79, 70, 229, 0.27);
}
/* TABLET RESPONSIVE */
@media (max-width: 850px) {
  .twg-features-benefits {
    padding: 65px 20px 70px;
  }
  .twg-fb-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}
/* MOBILE RESPONSIVE */
@media (max-width: 560px) {
  .twg-features-benefits {
    padding: 50px 15px 55px;
  }
  .twg-fb-header {
    margin-bottom: 32px;
  }
  .twg-fb-header h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .twg-fb-header p {
    font-size: 15px;
    line-height: 1.7;
  }
  .twg-features-panel,
  .twg-benefits-panel {
    padding: 24px 19px;
    border-radius: 16px;
  }
  .twg-panel-heading {
    margin-bottom: 22px;
  }
  .twg-panel-heading h3 {
    font-size: 20px;
  }
  .twg-feature-item {
    grid-template-columns: 23px 36px 1fr;
    gap: 8px;
  }
  .twg-feature-icon {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
  .twg-feature-content h4 {
    font-size: 13px;
  }
  .twg-feature-content p {
    font-size: 12px;
  }
  .twg-benefit-card {
    padding: 11px;
  }
  .twg-fb-takeaway {
    align-items: flex-start;
    padding: 13px;
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .twg-features-benefits *,
  .twg-features-benefits *::before,
  .twg-features-benefits *::after {
    transition: none !important;
    transform: none !important;
  }
}

/* ============  PROS & CONS Styles============= */
.twg-pros-cons {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-green: #16a34a;
  --twg-red: #dc2626;
  --twg-border: rgba(100, 116, 139, 0.15);
  position: relative;
  overflow: hidden;
  padding: 85px 20px 88px;
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}
/* Background Decoration */
.twg-pros-cons::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  left: -250px;
  top: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.07),
    transparent 70%
  );
  pointer-events: none;
}
.twg-pros-cons::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  right: -220px;
  bottom: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.065),
    transparent 70%
  );
  pointer-events: none;
}
/* CONTAINER */
.twg-pc-container {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
}
/* HEADER */
.twg-pc-header {
  max-width: 770px;
  margin: 0 auto 44px;
  text-align: center;
}
.twg-pc-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.055);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-pc-header h2 {
  margin: 0 0 15px;
  color: var(--twg-dark);
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -1.1px;
  font-weight: 850;
}
.twg-pc-header h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-pc-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}
/* MAIN GRID */
.twg-pc-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 23px;
}
/* CARDS */
.twg-pros-card,
.twg-cons-card {
  position: relative;
  overflow: hidden;
  padding: 31px 30px;
  border-radius: 19px;
  background: #ffffff;
  box-shadow: 0 13px 38px rgba(15, 23, 42, 0.055);
}
.twg-pros-card {
  border: 1px solid rgba(22, 163, 74, 0.13);
}
.twg-cons-card {
  border: 1px solid rgba(220, 38, 38, 0.12);
}
/* Top Accent */
.twg-pros-card::before,
.twg-cons-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
.twg-pros-card::before {
  background: linear-gradient(90deg, #16a34a, #22c55e);
}
.twg-cons-card::before {
  background: linear-gradient(90deg, #dc2626, #f97316);
}
/* CARD HEADER */
.twg-pc-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 27px;
}
.twg-pc-header-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 11px;
  font-size: 18px;
  font-weight: 850;
}
.twg-pros-icon {
  color: var(--twg-green);
  background: rgba(22, 163, 74, 0.09);
}
.twg-cons-icon {
  color: var(--twg-red);
  background: rgba(220, 38, 38, 0.08);
}
.twg-pc-card-header span {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-muted);
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.twg-pc-card-header h3 {
  margin: 0;
  color: var(--twg-dark);
  font-size: 22px;
  line-height: 1.2;
  font-weight: 820;
}
/* LIST */
.twg-pc-list {
  display: grid;
  gap: 19px;
}
.twg-pc-item {
  display: flex;
  align-items: flex-start;
  gap: 11px;
}
.twg-pc-check,
.twg-pc-cross {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  margin-top: 1px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 850;
}
.twg-pc-check {
  color: var(--twg-green);
  background: rgba(22, 163, 74, 0.09);
}
.twg-pc-cross {
  color: var(--twg-red);
  background: rgba(220, 38, 38, 0.08);
}
.twg-pc-item strong {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-dark);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 760;
}
.twg-pc-item p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.6;
}
/* VERDICT STRIP */
.twg-pc-verdict {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 920px;
  margin: 27px auto 0;
  padding: 16px 18px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.045),
    rgba(37, 99, 235, 0.035)
  );
}
.twg-pc-verdict-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  border-radius: 10px;
  color: var(--twg-primary);
  background: #ffffff;
  font-size: 19px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}
.twg-pc-verdict-content > span {
  display: block;
  margin-bottom: 2px;
  color: var(--twg-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.twg-pc-verdict-content strong {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-dark);
  font-size: 15px;
  line-height: 1.45;
  font-weight: 780;
}
.twg-pc-verdict-content p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.55;
}
/* TABLET RESPONSIVE */
@media (max-width: 800px) {
  .twg-pros-cons {
    padding: 65px 20px 70px;
  }
  .twg-pc-grid {
    grid-template-columns: 1fr;
    max-width: 700px;
    margin: 0 auto;
  }
}
/* MOBILE RESPONSIVE */
@media (max-width: 560px) {
  .twg-pros-cons {
    padding: 50px 15px 55px;
  }
  .twg-pc-header {
    margin-bottom: 32px;
  }
  .twg-pc-header h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }
  .twg-pc-header p {
    font-size: 15px;
    line-height: 1.7;
  }
  .twg-pros-card,
  .twg-cons-card {
    padding: 25px 20px;
    border-radius: 16px;
  }
  .twg-pc-card-header {
    margin-bottom: 23px;
  }
  .twg-pc-header-icon {
    width: 39px;
    height: 39px;
    font-size: 16px;
  }
  .twg-pc-card-header h3 {
    font-size: 20px;
  }
  .twg-pc-item p {
    font-size: 12px;
  }
  .twg-pc-verdict {
    align-items: flex-start;
    padding: 14px;
  }
}
/* ACCESSIBILITY */
@media (prefers-reduced-motion: reduce) {
  .twg-pros-cons *,
  .twg-pros-cons *::before,
  .twg-pros-cons *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ============ Testimonials Styles============= */
.twg-testimonials {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-green: #16a34a;
  --twg-border: rgba(100, 116, 139, 0.15);
  position: relative;
  overflow: hidden;
  padding: 88px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
/* BACKGROUND DECORATION */
.twg-testimonials::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -230px;
  left: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.075),
    transparent 70%
  );
  pointer-events: none;
}
.twg-testimonials::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  right: -230px;
  bottom: -240px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.065),
    transparent 70%
  );
  pointer-events: none;
}
/* CONTAINER */
.twg-testimonials-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}
/* HEADER */
.twg-testimonials-header {
  max-width: 790px;
  margin: 0 auto 40px;
  text-align: center;
}
.twg-testimonials-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.055);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-testimonials-header h2 {
  margin: 0 0 15px;
  color: var(--twg-dark);
  font-size: clamp(29px, 4vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  font-weight: 850;
}
.twg-testimonials-header h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-testimonials-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}
/* RATING SUMMARY */
.twg-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 0 auto 30px;
  padding: 20px 25px;
  border: 1px solid var(--twg-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}
.twg-rating-score {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 100px;
}
.twg-rating-score strong {
  color: var(--twg-dark);
  font-size: 32px;
  line-height: 1;
  font-weight: 850;
}
.twg-rating-stars {
  margin: 6px 0 3px;
  color: #f59e0b;
  font-size: 25px;
  letter-spacing: 1px;
}
.twg-rating-score span {
  color: var(--twg-muted);
  font-size: 12px;
  font-weight: 650;
}
.twg-rating-divider {
  width: 1px;
  height: 45px;
  background: rgba(100, 116, 139, 0.15);
}
.twg-rating-stat {
  display: flex;
  align-items: center;
  flex-direction: column;
  min-width: 100px;
  text-align: center;
}
.twg-rating-stat strong {
  color: var(--twg-dark);
  font-size: 21px;
  line-height: 1.2;
  font-weight: 820;
}
.twg-rating-stat span {
  margin-top: 4px;
  color: var(--twg-muted);
  font-size: 12px;
  line-height: 1.2;
  font-weight: 650;
}
.twg-rating-badge {
  display: flex;
  align-items: center;
  gap: 9px;
}
.twg-warrior-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 19px;
  font-weight: 800;
}
.twg-rating-badge strong {
  display: block;
  color: var(--twg-dark);
  font-size: 15px;
  font-weight: 800;
}
.twg-rating-badge div span {
  display: block;
  margin-top: 2px;
  color: var(--twg-muted);
  font-size: 12px;
}

/* REVIEW GRID */
.twg-review-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

/* REVIEW CARD */
.twg-review-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 23px;
  border: 1px solid rgba(100, 116, 139, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 9px 27px rgba(15, 23, 42, 0.045);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.twg-review-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 40, 217, 0.16);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.075);
}

/* REVIEW USER */
.twg-review-header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.twg-review-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 14px;
  font-weight: 800;
}

.twg-review-user {
  min-width: 0;
  flex: 1;
}

.twg-review-user strong {
  display: block;
  overflow: hidden;
  color: var(--twg-dark);
  font-size: 16px;
  font-weight: 780;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.twg-review-user span {
  display: block;
  margin-top: 2px;
  color: var(--twg-muted);
  font-size: 11px;
}

.twg-verified {
  flex-shrink: 0;
  padding: 4px 6px;
  border-radius: 5px;
  color: var(--twg-green);
  background: rgba(22, 163, 74, 0.08);
  font-size: 11px;
  font-weight: 750;
}

/* REVIEW CONTENT */
.twg-review-stars {
  margin: 17px 0 7px;
  color: #f59e0b;
  font-size: 17px;
  letter-spacing: 1px;
}

.twg-review-card h3 {
  margin: 0 0 8px;
  color: var(--twg-dark);
  font-size: 17px;
  line-height: 1.35;
  font-weight: 800;
}

.twg-review-quote {
  margin: 0;
  color: var(--twg-text);
  font-size: 15px;
  line-height: 1.7;
}

/* REVIEW FOOTER */
.twg-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(100, 116, 139, 0.1);
}

.twg-review-footer span:first-child {
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--twg-muted);
  background: #f8fafc;
  font-size: 13px;
  font-weight: 650;
}

.twg-review-footer span:last-child {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* REVIEW HIGHLIGHT */
.twg-review-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.045),
    rgba(37, 99, 235, 0.035)
  );
}

.twg-highlight-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 11px;
  color: var(--twg-primary);
  background: #ffffff;
  font-family: Georgia, serif;
  font-size: 28px;
  box-shadow: 0 4px 13px rgba(15, 23, 42, 0.05);
}

.twg-highlight-content > span {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.twg-highlight-content strong {
  display: block;
  margin-bottom: 3px;
  color: var(--twg-dark);
  font-size: 16px;
  line-height: 1.45;
  font-weight: 780;
}

.twg-highlight-content p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.5;
}

/* TABLET RESPONSIVE */
@media (max-width: 900px) {
  .twg-testimonials {
    padding: 68px 20px 72px;
  }

  .twg-review-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .twg-rating-summary {
    gap: 20px;
  }
}

/* MOBILE RESPONSIVE */
@media (max-width: 600px) {
  .twg-testimonials {
    padding: 52px 15px 58px;
  }

  .twg-testimonials-header {
    margin-bottom: 30px;
  }

  .twg-testimonials-header h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .twg-testimonials-header p {
    font-size: 15px;
    line-height: 1.7;
  }

  .twg-rating-summary {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    padding: 18px;
  }

  .twg-rating-divider {
    display: none;
  }

  .twg-rating-score,
  .twg-rating-stat,
  .twg-rating-badge {
    min-width: 0;
  }

  .twg-rating-badge {
    justify-content: center;
  }

  .twg-review-grid {
    grid-template-columns: 1fr;
  }

  .twg-review-card {
    min-height: auto;
    padding: 22px 20px;
  }

  .twg-review-highlight {
    align-items: flex-start;
    padding: 15px;
  }

  .twg-review-source {
    text-align: left;
  }
}

/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .twg-testimonials *,
  .twg-testimonials *::before,
  .twg-testimonials *::after {
    transition: none !important;
    transform: none !important;
  }
}

/* ============================================
     SHARED VARIABLES & ROOT SCOPING
     ============================================ */
.twg-testimonials,
.twg-comparison {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-green: #16a34a;
  --twg-orange: #f59e0b;
  --twg-border: rgba(100, 116, 139, 0.14);

  position: relative;
  overflow: hidden;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

/* ============================================
     1. TESTIMONIALS STYLES
     ============================================ */
.twg-testimonials {
  padding: 88px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

.twg-testimonials::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -230px;
  left: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.075),
    transparent 70%
  );
  pointer-events: none;
}

.twg-testimonials-container {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.twg-testimonials-header {
  max-width: 790px;
  margin: 0 auto 40px;
  text-align: center;
}

.twg-rating-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin: 0 auto 30px;
  padding: 20px 25px;
  border: 1px solid var(--twg-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}
.twg-review-grid {
  /* display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px; */
}
.twg-review-card {
  display: flex;
  flex-direction: column;
  min-height: 285px;
  padding: 23px;
  border: 1px solid rgba(100, 116, 139, 0.14);
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 9px 27px rgba(15, 23, 42, 0.045);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.twg-review-header {
  display: flex;
  align-items: center;
  gap: 9px;
}

.twg-review-stars {
  margin: 17px 0 7px;
  color: #f59e0b;
  font-size: 13px;
  letter-spacing: 1px;
}

.twg-review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 17px;
  border-top: 1px solid rgba(100, 116, 139, 0.1);
}

.twg-review-highlight {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.045),
    rgba(37, 99, 235, 0.035)
  );
}

.twg-review-source {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
  max-width: 850px;
  margin: 15px auto 0;
  color: #94a3b8;
  text-align: center;
}

/* ==========COMPARISON STYLES============ */
.twg-comparison {
  padding: 88px 20px 90px;
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
.twg-comparison::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  top: -260px;
  right: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.07),
    transparent 70%
  );
  pointer-events: none;
}

.twg-comparison::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -260px;
  left: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}

.twg-comparison-container {
  position: relative;
  z-index: 2;
  width: min(1100px, 100%);
  margin: 0 auto;
}

.twg-comparison-header {
  max-width: 780px;
  margin: 0 auto 42px;
  text-align: center;
}

.twg-comparison-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.05);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.twg-comparison-header h2 {
  margin: 0 0 15px;
  color: var(--twg-dark);
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -1.1px;
  font-weight: 850;
}

.twg-comparison-header h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.twg-comparison-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}

.twg-table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--twg-border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.055);
}

.twg-comparison-table {
  width: 100%;
  min-width: 700px;
  border-collapse: separate;
  border-spacing: 0;
  color: var(--twg-text);
}
.twg-comparison-table,
thead,
tr,
th {
  font-size: 15px !important;
}
.twg-comparison-table th,
.twg-comparison-table td {
  padding: 15px 10px;
  border-bottom: 1px solid rgba(100, 116, 139, 0.09);
  text-align: center;
}

.twg-comparison-table tbody tr:last-child th,
.twg-comparison-table tbody tr:last-child td {
  border-bottom: none;
}

.twg-comparison-table thead th:first-child,
.twg-comparison-table tbody th {
  width: 34%;
  text-align: left;
}

.twg-comparison-table tbody th {
  color: var(--twg-dark);
  font-size: 15px;
  line-height: 1.4;
  font-weight: 700;
}

.twg-comparison-table thead th {
  padding: 19px 14px;
  color: #ffffff;
  background: #202942;
  font-size: 10px;
  line-height: 1.35;
  font-weight: 750;
}

.twg-comparison-table thead th:first-child {
  border-radius: 16px 0 0 0;
}

.twg-comparison-table thead th:last-child {
  border-radius: 0 16px 0 0;
}

.twg-comparison-table .twg-featured-column {
  position: relative;
  min-width: 190px;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
}

.twg-product-table-title {
  position: relative;
  padding-top: 1px;
  font-size: 15px;
  font-weight: 800;
}

.twg-table-badge {
  position: absolute;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 8px;
  border-radius: 999px;
  color: var(--twg-primary);
  background: #47c0ec;
  font-size: 9px;
  font-weight: 850;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  white-space: nowrap;
  margin-top: -13px;
}

.twg-featured-cell {
  background: rgba(109, 40, 217, 0.045);
  border-left: 1px solid rgba(109, 40, 217, 0.07);
  border-right: 1px solid rgba(109, 40, 217, 0.07);
}

.twg-check,
.twg-check-negative,
.twg-no,
.twg-partial,
.twg-important {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.twg-check {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--twg-green);
  background: rgba(22, 163, 74, 0.09);
  font-size: 12px;
  font-weight: 850;
}

.twg-check-negative {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.09);
  font-size: 12px;
  font-weight: 850;
}

.twg-no {
  color: #cbd5e1;
  font-size: 16px;
  font-weight: 700;
}

.twg-partial {
  color: var(--twg-orange);
  font-size: 12px;
}

.twg-important {
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--twg-muted);
  background: #f8fafc;
  font-size: 9px;
  font-weight: 700;
}

.twg-table-legend {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 17px;
  color: var(--twg-muted);
  font-size: 13px;
  font-weight: 600;
}

.twg-table-legend div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.twg-table-legend .twg-check {
  width: 18px;
  height: 18px;
  font-size: 9px;
}

.twg-table-legend .twg-partial {
  font-size: 9px;
}
.twg-comparison-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.twg-comparison-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 47px;
  padding: 0 23px;
  border-radius: 10px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  text-decoration: none !important;
  font-size: 17px;
  font-weight: 750;
  box-shadow: 0 9px 23px rgba(79, 70, 229, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.twg-comparison-cta span {
  font-size: 17px;
}

.twg-comparison-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(79, 70, 229, 0.26);
}

/* ============================================
     RESPONSIVE MEDIA QUERIES
     ============================================ */

/* Tablet */
@media (max-width: 900px) {
}

/* Mobile */
@media (max-width: 650px) {
  .twg-testimonials-header,
  .twg-comparison-header {
    margin-bottom: 30px;
  }

  .twg-testimonials-header h2,
  .twg-comparison-header h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .twg-testimonials-header p,
  .twg-comparison-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .twg-comparison {
    padding: 53px 15px 60px;
  }

  .twg-table-wrapper {
    border-radius: 14px;
  }

  .twg-comparison-table {
    min-width: 650px;
  }

  .twg-comparison-table th,
  .twg-comparison-table td {
    padding: 13px 11px;
  }

  .twg-comparison-takeaway {
    align-items: flex-start;
    padding: 14px;
  }

  .twg-table-legend {
    justify-content: flex-start;
  }
}
/* Accessibility / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .twg-testimonials *,
  .twg-testimonials *::before,
  .twg-testimonials *::after,
  .twg-comparison *,
  .twg-comparison *::before,
  .twg-comparison *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ==========How It Works Styles============ */
/* ============================================
     GLOBAL VARIABLES & BASE STYLING
     ============================================ */
.twg-how-it-works,
.twg-testimonials,
.twg-comparison {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-cyan: #06b6d4;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-green: #16a34a;
  --twg-orange: #f59e0b;
  --twg-border: rgba(100, 116, 139, 0.14);

  position: relative;
  overflow: hidden;
  padding: 88px 20px 90px;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

/* ============================================
     1. HOW IT WORKS STYLES
     ============================================ */
.twg-how-it-works {
  background: linear-gradient(180deg, #f8faff 0%, #ffffff 100%);
}

.twg-how-it-works::before {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  top: -270px;
  right: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.07),
    transparent 70%
  );
  pointer-events: none;
}

.twg-how-it-works::after {
  content: "";
  position: absolute;
  width: 400px;
  height: 400px;
  bottom: -250px;
  left: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.065),
    transparent 70%
  );
  pointer-events: none;
}

.twg-hiw-container {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.twg-hiw-header {
  max-width: 790px;
  margin: 0 auto 48px;
  text-align: center;
}
.twg-hiw-eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.05);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-hiw-header h2 {
  margin: 0 0 15px;
  color: var(--twg-dark);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  font-weight: 850;
}

.twg-hiw-header h2 span {
  display: inline-block;
  background: linear-gradient(
    90deg,
    var(--twg-primary),
    var(--twg-secondary),
    var(--twg-cyan)
  );
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.twg-hiw-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}

.twg-hiw-steps {
  display: grid;
  grid-template-columns: 1fr 45px 1fr 45px 1fr;
  align-items: center;
}

.twg-hiw-step {
  position: relative;
  min-height: 310px;
  padding: 27px 24px;
  border: 1px solid var(--twg-border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 13px 36px rgba(15, 23, 42, 0.05);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.twg-hiw-step:hover {
  transform: translateY(-4px);
  border-color: rgba(109, 40, 217, 0.16);
  box-shadow: 0 17px 38px rgba(15, 23, 42, 0.075);
}

.twg-hiw-step-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.twg-hiw-number {
  color: rgba(109, 40, 217, 0.25);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 1px;
}

.twg-hiw-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: linear-gradient(135deg, #f5f3ff, #eff6ff);
  font-size: 22px;
  box-shadow: inset 0 0 0 1px rgba(109, 40, 217, 0.06);
}

.twg-hiw-label {
  display: inline-block;
  margin-bottom: 6px;
  color: var(--twg-primary);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.twg-hiw-step h3 {
  margin: 0 0 10px;
  color: var(--twg-dark);
  font-size: 19px;
  line-height: 1.3;
  font-weight: 820;
}

.twg-hiw-step p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.7;
}

.twg-hiw-connector {
  display: flex;
  align-items: center;
  justify-content: center;
}

.twg-hiw-connector span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 31px;
  height: 31px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 50%;
  color: var(--twg-primary);
  background: #ffffff;
  font-size: 15px;
  box-shadow: 0 5px 14px rgba(15, 23, 42, 0.05);
}

.twg-hiw-workflow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  max-width: 940px;
  margin: 28px auto 0;
  padding: 16px 20px;
  border: 1px solid rgba(109, 40, 217, 0.11);
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(109, 40, 217, 0.045),
    rgba(37, 99, 235, 0.035)
  );
}

.twg-hiw-workflow-item {
  display: flex;
  align-items: center;
  gap: 9px;
}

.twg-hiw-mini-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 9px;
  background: #ffffff;
  font-size: 19px;
  box-shadow: 0 4px 10px rgba(15, 23, 42, 0.04);
}

.twg-hiw-workflow-item strong {
  display: block;
  color: var(--twg-dark);
  font-size: 15px;
  font-weight: 780;
}
.twg-hiw-workflow-item span {
  display: block;
  margin-top: 2px;
  color: var(--twg-muted);
  font-size: 13px;
}
.twg-hiw-workflow-arrow {
  color: rgba(109, 40, 217, 0.35);
  font-size: 17px;
}

.twg-hiw-note {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  max-width: 850px;
  margin: 19px auto 0;
  padding: 11px 14px;
  border: 1px solid rgba(100, 116, 139, 0.1);
  border-radius: 10px;
  background: rgba(248, 250, 252, 0.75);
}

.twg-hiw-note-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.08);
  font-size: 13px;
  font-weight: 800;
}

.twg-hiw-note p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 13px;
  line-height: 1.55;
}

.twg-hiw-note strong {
  color: var(--twg-text);
}

.twg-hiw-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 23px;
}

.twg-hiw-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  text-decoration: none !important;
  font-size: 17px;
  font-weight: 760;
  box-shadow: 0 9px 23px rgba(79, 70, 229, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.twg-hiw-cta span {
  font-size: 17px;
}

.twg-hiw-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(79, 70, 229, 0.26);
}

/* ============================================
     2. TESTIMONIALS STYLES
     ============================================ */
.twg-testimonials {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}

/* ========== How It Works Styles================ */
.twg-comparison {
  background: linear-gradient(180deg, #ffffff 0%, #f8faff 100%);
}
/* Responsive For Tablet */
@media (max-width: 900px) {
  .twg-how-it-works,
  .twg-testimonials {
    padding: 68px 20px 72px;
  }

  .twg-hiw-steps {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 650px;
    margin: 0 auto;
  }

  .twg-hiw-step {
    min-height: auto;
  }

  .twg-hiw-connector {
    display: none;
  }

  .twg-hiw-workflow {
    max-width: 650px;
  }
}

/* Mobile */
@media (max-width: 650px) {
  .twg-how-it-works,
  .twg-testimonials,
  .twg-comparison {
    padding: 53px 15px 60px;
  }

  .twg-hiw-header,
  .twg-testimonials-header,
  .twg-comparison-header {
    margin-bottom: 30px;
  }

  .twg-hiw-header h2,
  .twg-testimonials-header h2,
  .twg-comparison-header h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .twg-hiw-header p,
  .twg-testimonials-header p,
  .twg-comparison-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .twg-hiw-step {
    padding: 23px 20px;
    border-radius: 15px;
  }

  .twg-hiw-step-top {
    margin-bottom: 20px;
  }

  .twg-hiw-icon {
    width: 48px;
    height: 48px;
    font-size: 20px;
  }

  .twg-hiw-step h3 {
    font-size: 18px;
  }

  .twg-hiw-step p {
    font-size: 12px;
  }

  .twg-hiw-workflow {
    align-items: stretch;
    flex-direction: column;
    gap: 11px;
    padding: 14px;
  }

  .twg-hiw-workflow-arrow {
    display: none;
  }

  .twg-hiw-workflow-item {
    padding: 5px 2px;
  }

  .twg-hiw-note {
    align-items: flex-start;
  }
}
/* Accessibility / Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .twg-how-it-works *,
  .twg-how-it-works *::before,
  .twg-how-it-works *::after,
  .twg-testimonials *,
  .twg-testimonials *::before,
  .twg-testimonials *::after,
  .twg-comparison *,
  .twg-comparison *::before,
  .twg-comparison *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ===========WHO IT'S FOR============== */
.twg-who {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-green: #16a34a;
  --twg-border: rgba(100, 116, 139, 0.14);

  position: relative;
  overflow: hidden;
  padding: 88px 20px 90px;
  background: #ffffff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}

/* BACKGROUND */
.twg-who::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  top: -260px;
  left: -230px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.065),
    transparent 70%
  );
  pointer-events: none;
}

.twg-who::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  bottom: -260px;
  right: -230px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}
/* CONTAINER= */
.twg-who-container {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}
/* HEADER */
.twg-who-header {
  max-width: 790px;
  margin: 0 auto 44px;
  text-align: center;
}
.twg-who-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.05);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-who-header h2 {
  margin: 0 15px;
  color: var(--twg-dark);
  font-size: clamp(29px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -1.1px;
  font-weight: 850;
}
.twg-who-header h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-who-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}
.twg-who-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
}
.twg-who-card {
  display: flex;
  gap: 13px;
  min-height: 205px;
  padding: 21px;
  border: 1px solid var(--twg-border);
  border-radius: 15px;
  background: #ffffff;
  box-shadow: 0 9px 28px rgba(15, 23, 42, 0.04);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.twg-who-card:hover {
  transform: translateY(-3px);
  border-color: rgba(109, 40, 217, 0.16);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.07);
}

/* ============================================
     ICON
     ============================================ */
.twg-who-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 43px;
  height: 43px;
  flex-shrink: 0;
  border-radius: 11px;
  background: linear-gradient(135deg, #f5f3ff, #eff6ff);
  font-size: 19px;
}
.twg-who-card-content {
  min-width: 0;
  flex: 1;
}
.twg-who-number {
  display: block;
  margin-bottom: 3px;
  color: rgba(109, 40, 217, 0.38);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.8px;
}
.twg-who-card h3 {
  margin: 0 7px;
  color: var(--twg-dark);
  font-size: 17px;
  line-height: 1.3;
  font-weight: 800;
}
.twg-who-card p {
  margin: 0 12px;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.65;
}
.twg-who-tag {
  display: inline-flex;
  padding: 4px 7px;
  border-radius: 5px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.055);
  font-size: 11px;
  font-weight: 750;
}
.twg-who-not-for {
  display: flex;
  align-items: flex-start;
  gap: 13px;
  max-width: 900px;
  margin: 28px auto 0;
  padding: 18px 20px;
  border: 1px solid rgba(245, 158, 11, 0.17);
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.045);
}

.twg-not-for-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 9px;
  color: #b45309;
  background: rgba(245, 158, 11, 0.12);
  font-size: 15px;
  font-weight: 850;
}

.twg-not-for-content > span {
  display: block;
  margin-bottom: 3px;
  color: #b45309;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.twg-not-for-content h3 {
  margin: 0 5px;
  color: var(--twg-dark);
  font-size: 17px;
  font-weight: 800;
}

.twg-not-for-content p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 14px;
  line-height: 1.6;
}
.twg-who-cta-wrap {
  display: flex;
  justify-content: center;
  margin-top: 24px;
}
.twg-who-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  text-decoration: none !important;
  font-size: 17px;
  font-weight: 760;
  box-shadow: 0 9px 23px rgba(79, 70, 229, 0.18);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-who-cta span {
  font-size: 17px;
}
.twg-who-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-2px);
  box-shadow: 0 13px 28px rgba(79, 70, 229, 0.26);
}
@media (max-width: 900px) {
  .twg-who {
    padding: 68px 20px 72px;
  }

  .twg-who-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .twg-fit-check {
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .twg-fit-title {
    width: auto;
  }
}

/* ============================================
     MOBILE
     ============================================ */
@media (max-width: 600px) {
  .twg-who {
    padding: 53px 15px 60px;
  }

  .twg-who-header {
    margin-bottom: 30px;
  }

  .twg-who-header h2 {
    font-size: 28px;
    letter-spacing: -0.8px;
  }

  .twg-who-header p {
    font-size: 14px;
    line-height: 1.7;
  }

  .twg-who-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .twg-who-card {
    min-height: auto;
    padding: 19px;
  }

  .twg-who-card p {
    font-size: 11px;
  }

  .twg-who-not-for {
    padding: 15px;
  }

  .twg-fit-items {
    grid-template-columns: 1fr;
  }
}
/* ============================================
     REDUCED MOTION
     ============================================ */
@media (prefers-reduced-motion: reduce) {
  .twg-who *,
  .twg-who *::before,
  .twg-who *::after {
    transition: none !important;
    transform: none !important;
  }
}
/* ==============Price And Plans================ */

.tw-price,
.tw-price * {
  box-sizing: border-box;
}
.tw-price {
  --tw-text: #172033;
  --tw-muted: #667085;
  --tw-primary: #635bff;
  --tw-secondary: #8b5cf6;
  --tw-border: #e5e7ef;
  --tw-soft: #f7f8ff;
  --tw-green: #16805c;
  --tw-gold: #9a7410;
  padding: 82px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8ff 100%);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
.tw-price-container {
  width: min(1100px, 100%);
  margin: 0 auto;
}
/* =========================================================
   HEADER
========================================================= */
.tw-price-header {
  max-width: 760px;
  margin: 0 auto 43px;
  text-align: center;
}
.tw-price-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  color: var(--tw-primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tw-price-eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--tw-primary), var(--tw-secondary));
}
.tw-price-title {
  margin: 0;
  color: var(--tw-text);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  font-weight: 830;
}
.tw-price-title span {
  background: linear-gradient(135deg, var(--tw-primary), var(--tw-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.tw-price-intro {
  max-width: 680px;
  margin: 15px auto 0;
  color: var(--tw-muted);
  font-size: 16px;
  line-height: 1.7;
}
/* =========================================================
   PRICING GRID
========================================================= */
.tw-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}
/* =========================================================
   PLAN CARD
========================================================= */
.tw-plan {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 29px;
  background: #ffffff;
  border: 1px solid var(--tw-border);
  border-radius: 19px;
  box-shadow: 0 14px 40px rgba(32, 41, 70, 0.065);
}
.tw-plan.tw-plan-featured {
  border: 1.5px solid rgba(99, 91, 255, 0.35);
  box-shadow: 0 17px 45px rgba(99, 91, 255, 0.11);
}
/* =========================================================
   POPULAR BADGE
========================================================= */
.tw-plan-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 6px 11px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--tw-primary), var(--tw-secondary));
  border-radius: 7px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 6px 18px rgba(99, 91, 255, 0.2);
}
/* =========================================================
   PLAN NAME
========================================================= */
.tw-plan-name {
  margin: 0;
  color: var(--tw-text);
  font-size: 22px;
  line-height: 1.3;
  font-weight: 820;
  letter-spacing: -0.025em;
}
.tw-plan-description {
  margin: 6px 0 20px;
  color: var(--tw-muted);
  font-size: 15px;
  line-height: 1.55;
}
/* =========================================================
   PRICE
========================================================= */
.tw-plan-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 5px;
}
.tw-currency {
  color: var(--tw-text);
  font-size: 17px;
  font-weight: 800;
}
.tw-amount {
  color: var(--tw-text);
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.045em;
  font-weight: 850;
}
.tw-payment {
  color: var(--tw-muted);
  font-size: 15px;
  font-weight: 600;
}
.tw-plan-note {
  margin-bottom: 21px;
  color: var(--tw-green);
  font-size: 13px;
  font-weight: 750;
}
/* =========================================================
   FEATURE LIST
========================================================= */
.tw-plan-features {
  list-style: none;
  margin: 0 0 23px;
  padding: 18px 0 0;
  border-top: 1px solid #edf0f5;
  display: grid;
  gap: 11px;
}
.tw-plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: var(--tw-muted);
  font-size: 16px;
  line-height: 1.45;
}
.tw-plan-features li::before {
  content: "✓";
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--tw-green);
  background: #eaf8f2;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 900;
}
/* =========================================================
   PLAN CTA
========================================================= */
.tw-plan-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  padding: 11px 16px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--tw-primary), var(--tw-secondary));
  border-radius: 9px;
  text-decoration: none !important;
  font-size: 16px;
  font-weight: 800;
  box-shadow: 0 8px 21px rgba(99, 91, 255, 0.17);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.tw-plan-cta:hover {
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 12px 27px rgba(99, 91, 255, 0.24);
}
.tw-plan.tw-plan-basic .tw-plan-cta {
  color: var(--tw-primary) !important;
  background: #f0efff;
  box-shadow: none;
}
.tw-plan.tw-plan-basic .tw-plan-cta:hover {
  color: var(--tw-primary) !important;
  background: #e9e7ff;
  box-shadow: none;
}
/* =========================================================
   GUARANTEE AREA
========================================================= */
.tw-guarantee {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  margin-top: 21px;
  padding: 25px 28px;
  background: linear-gradient(135deg, #f5fff9, #ffffff);
  border: 1px solid #dcefe7;
  border-radius: 17px;
  box-shadow: 0 10px 30px rgba(30, 80, 60, 0.045);
}
/* =========================================================
   GUARANTEE ICON
========================================================= */
.tw-guarantee-seal {
  width: 90px;
  height: 90px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--tw-green);
  background: radial-gradient(circle, #ffffff 48%, #e8f8f1 49%, #e8f8f1 100%);
  border: 2px solid #bfe5d4;
  border-radius: 50%;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  text-align: center;
}
.tw-guarantee-content h3 {
  margin: 0 0 7px;
  color: var(--tw-text);
  font-size: 18px;
  font-weight: 820;
  letter-spacing: -0.02em;
}
.tw-guarantee-content p {
  margin: 0;
  color: var(--tw-muted);
  font-size: 15px;
  line-height: 1.65;
}
.tw-payment-signals {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 20px;
}
.tw-payment-signal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  color: #667085;
  background: #ffffff;
  border: 1px solid var(--tw-border);
  border-radius: 7px;
  font-size: 12px;
  font-weight: 700;
}
.tw-payment-signal span {
  color: var(--tw-green);
  font-weight: 900;
}
.tw-pricing-note {
  max-width: 820px;
  margin: 20px auto 0;
  color: #8a94a6;
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}
.tw-pricing-note strong {
  background: black;
  color: white;
  border-radius: 4px;
  padding: 1px 3px;
}
@media (max-width: 760px) {
  .tw-price {
    padding: 64px 20px;
  }
  .tw-price-grid {
    grid-template-columns: 1fr;
  }
  .tw-plan {
    max-width: 560px;
    width: 100%;
    margin: 0 auto;
  }
}
@media (max-width: 560px) {
  .tw-price {
    padding: 52px 14px 58px;
  }
  .tw-price-title {
    font-size: 30px;
  }
  .tw-price-intro {
    font-size: 14px;
  }
  .tw-plan {
    padding: 24px 21px;
  }
  .tw-amount {
    font-size: 40px;
  }
  .tw-guarantee {
    grid-template-columns: 1fr;
    text-align: center;
    padding: 22px 19px;
  }
  .tw-guarantee-seal {
    margin: 0 auto;
  }
  .tw-payment-signals {
    gap: 6px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .tw-price *,
  .tw-price *::before,
  .tw-price *::after {
    transition: none !important;
  }
}
/* ==============FAQ Styles================ */
.twg-faq {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-border: rgba(100, 116, 139, 0.14);
  position: relative;
  overflow: hidden;
  padding: 88px 20px 90px;
  background: #ffffff;
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
/* BACKGROUND */
.twg-faq::before {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  top: -320px;
  right: -270px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.065),
    transparent 70%
  );
  pointer-events: none;
}
.twg-faq::after {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  bottom: -280px;
  left: -260px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(37, 99, 235, 0.055),
    transparent 70%
  );
  pointer-events: none;
}
.twg-faq-container {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.twg-faq-header {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}
.twg-faq-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.05);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-faq-header h2 {
  margin: 0 15px;
  color: var(--twg-dark);
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.15;
  letter-spacing: -1.1px;
  font-weight: 850;
}
.twg-faq-header h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-faq-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}

/* ============================================
   TRUST
   ============================================ */

.twg-faq-trust {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 17px;
  padding-top: 16px;
  border-top: 1px solid rgba(100, 116, 139, 0.11);
}

.twg-faq-trust div {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--twg-muted);
  font-size: 8px;
}

.twg-faq-trust span {
  color: #16a34a;
  font-weight: 850;
}
.twg-faq-list {
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.twg-faq-item {
  overflow: hidden;
  border: 1px solid var(--twg-border);
  border-radius: 11px;
  background: #ffffff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-faq-item.active {
  border-color: rgba(109, 40, 217, 0.2);
  box-shadow: 0 7px 22px rgba(15, 23, 42, 0.045);
}
.twg-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
  padding: 17px 18px;
  border: 0;
  outline: none;
  color: var(--twg-dark);
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 780;
}

.twg-faq-question:focus-visible {
  box-shadow: inset 0 0 0 2px var(--twg-primary);
}

.twg-faq-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 23px;
  height: 23px;
  flex-shrink: 0;
  border-radius: 7px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.065);
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  transition:
    transform 0.25s ease,
    background 0.2s ease;
}

.twg-faq-item.active .twg-faq-plus {
  transform: rotate(45deg);
  background: rgba(109, 40, 217, 0.11);
}
.twg-faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s ease;
}
.twg-faq-answer > div {
  overflow: hidden;
}
.twg-faq-item.active .twg-faq-answer {
  grid-template-rows: 1fr;
}
.twg-faq-answer p {
  margin: 0 18px;
  padding-top: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.7;
}
@media (max-width: 850px) {
  .twg-faq {
    padding: 68px 20px 72px;
  }
  .twg-faq-intro {
    position: static;
  }
}
/* Responsive For MOBILE */
@media (max-width: 600px) {
  .twg-faq {
    padding: 53px 15px 60px;
  }

  .twg-faq-header {
    margin-bottom: 30px;
  }

  .twg-faq-header h2 {
    font-size: 28px;
  }

  .twg-faq-header p {
    font-size: 16px;
  }
  .twg-faq-intro {
    padding: 21px 18px;
  }
  .twg-faq-question {
    padding: 15px;
    font-size: 15px;
  }
  .twg-faq-answer p {
    margin: 0 15px;
    font-size: 14px;
  }
}

/*  REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .twg-faq *,
  .twg-faq *::before,
  .twg-faq *::after {
    transition: none !important;
  }
}
/* ==============Final Verdict Styles================ */
.twg-verdict {
  --twg-primary: #6d28d9;
  --twg-primary-light: #8b5cf6;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  --twg-text: #334155;
  --twg-muted: #64748b;
  --twg-green: #16a34a;
  --twg-orange: #d97706;
  --twg-border: rgba(100, 116, 139, 0.14);
  position: relative;
  overflow: hidden;
  padding: 90px 20px 85px;
  background: linear-gradient(180deg, #fafbff 0%, #ffffff 100%);
  font-family:
    Inter,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    Arial,
    sans-serif;
}
.twg-verdict::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -330px;
  left: -300px;
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.075),
    transparent 70%
  );
  pointer-events: none;
}
.twg-verdict::after {
  content: "";
  position: absolute;
  width: 450px;
  height: 450px;
  bottom: -290px;
  right: -280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06), transparent 70%);
  pointer-events: none;
}
.twg-verdict-container {
  position: relative;
  z-index: 2;
  width: min(1080px, 100%);
  margin: 0 auto;
}
.twg-verdict-header {
  max-width: 800px;
  margin: 0 auto 42px;
  text-align: center;
}

.twg-verdict-eyebrow {
  display: inline-flex;
  padding: 7px 12px;
  margin-bottom: 13px;
  border: 1px solid rgba(109, 40, 217, 0.12);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.05);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}

.twg-verdict-header h2 {
  margin: 0 15px;
  color: var(--twg-dark);
  font-size: clamp(30px, 4vw, 43px);
  line-height: 1.15;
  letter-spacing: -1.2px;
  font-weight: 850;
}

.twg-verdict-header h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.twg-verdict-header p {
  margin: 0;
  color: var(--twg-text);
  font-size: 16px;
  line-height: 1.75;
}
.twg-verdict-main {
  display: grid;
  grid-template-columns: 225px 1fr;
  gap: 35px;
  align-items: center;
  padding: 31px;
  border: 1px solid rgba(109, 40, 217, 0.13);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 15px 42px rgba(15, 23, 42, 0.065);
}
.twg-verdict-score {
  display: flex;
  align-items: center;
  flex-direction: column;
  padding-right: 30px;
  border-right: 1px solid rgba(100, 116, 139, 0.11);
}
.twg-score-circle {
  display: flex;
  align-items: baseline;
  justify-content: center;
  width: 125px;
  height: 125px;
  margin-bottom: 13px;
  border: 8px solid rgba(109, 40, 217, 0.08);
  border-top-color: var(--twg-primary);
  border-right-color: var(--twg-secondary);
  border-radius: 50%;
  background: linear-gradient(145deg, #faf8ff, #f5f8ff);
}
.twg-score-number {
  margin-top: 39px;
  color: var(--twg-primary);
  font-size: 39px;
  line-height: 1;
  font-weight: 900;
}
.twg-score-total {
  margin-top: 45px;
  color: #94a3b8;
  font-size: 15px;
  font-weight: 700;
}

.twg-verdict-score > strong {
  color: var(--twg-dark);
  font-size: 15px;
  font-weight: 800;
}

.twg-verdict-score > span:last-child {
  margin-top: 3px;
  color: var(--twg-muted);
  font-size: 13px;
}
.twg-verdict-label {
  display: block;
  margin-bottom: 5px;
  color: var(--twg-primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-verdict-content h3 {
  margin: 0 0 13px;
  color: var(--twg-dark);
  font-size: 23px;
  line-height: 1.3;
  font-weight: 850;
}
.twg-verdict-content p {
  margin: 0 0 9px;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.7;
}
.twg-verdict-content p:last-child {
  margin-bottom: 0;
}
.twg-takeaways {
  margin-top: 24px;
}
.twg-takeaways-header {
  margin-bottom: 12px;
}
.twg-takeaways-header span {
  display: block;
  margin-bottom: 4px;
  color: var(--twg-primary);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.twg-takeaways-header h3 {
  margin: 0;
  color: var(--twg-dark);
  font-size: 178x;
  font-weight: 820;
}
.twg-takeaways-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}
.twg-takeaway-card {
  padding: 19px 21px;
  border: 1px solid var(--twg-border);
  border-radius: 13px;
  background: #ffffff;
}
.twg-takeaway-card.positive {
  border-color: rgba(22, 163, 74, 0.13);
}
.twg-takeaway-card.caution {
  border-color: rgba(217, 119, 6, 0.14);
}
.twg-takeaway-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.twg-takeaway-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 850;
}
.positive .twg-takeaway-icon {
  color: var(--twg-green);
  background: rgba(22, 163, 74, 0.09);
}
.caution .twg-takeaway-icon {
  color: var(--twg-orange);
  background: rgba(217, 119, 6, 0.09);
}
.twg-takeaway-top strong {
  color: var(--twg-dark);
  font-size: 16px;
  font-weight: 800;
}
.twg-takeaway-card ul {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.twg-takeaway-card li {
  position: relative;
  padding-left: 15px;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.5;
}
.twg-takeaway-card li::before {
  content: "•";
  position: absolute;
  left: 3px;
  top: 0;
  color: var(--twg-primary);
  font-weight: 900;
}
.twg-verdict-fit {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-top: 15px;
}
.twg-fit-box {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 19px 20px;
  border: 1px solid var(--twg-border);
  border-radius: 13px;
  background: #ffffff;
}
.twg-fit-box.best {
  border-color: rgba(22, 163, 74, 0.12);
}
.twg-fit-box.not-best {
  border-color: rgba(245, 158, 11, 0.13);
}
.twg-fit-box-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  border-radius: 99px;
  background: #f8fafc;
  font-size: 17px;
}
.twg-fit-box span {
  display: block;
  margin-bottom: 4px;
  font-size: 8px;
  font-weight: 850;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}
.best .twg-fit-box-content span {
  color: var(--twg-green);
  font-size: 11px;
}
.not-best .twg-fit-box-content span {
  font-size: 11px;
  color: var(--twg-orange);
}
.twg-fit-box h3 {
  margin: 0 0 6px;
  color: var(--twg-dark);
  font-size: 17px;
  line-height: 1.4;
  font-weight: 800;
}
.twg-fit-box p {
  margin: 0;
  color: var(--twg-muted);
  font-size: 15px;
  line-height: 1.55;
}
@media (max-width: 850px) {
  .twg-verdict {
    padding: 68px 20px 72px;
  }
  .twg-verdict-main {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .twg-verdict-score {
    padding: 0 0 25px;
    border-right: none;
    border-bottom: 1px solid rgba(100, 116, 139, 0.11);
  }
  .twg-verdict-content {
    text-align: left;
  }
}
@media (max-width: 600px) {
  .twg-verdict {
    padding: 53px 15px 60px;
  }
  .twg-verdict-header {
    margin-bottom: 30px;
  }
  .twg-verdict-header h2 {
    font-size: 28px;
  }
  .twg-verdict-header p {
    font-size: 14px;
  }
  .twg-verdict-main {
    padding: 22px 18px;
  }
  .twg-verdict-content h3 {
    font-size: 19px;
  }
  .twg-takeaways-grid,
  .twg-verdict-fit {
    grid-template-columns: 1fr;
  }
  .twg-final-summary {
    padding: 17px;
  }
  .twg-verdict-cta {
    align-items: stretch;
    flex-direction: column;
  }
  .twg-verdict-cta a {
    width: 100%;
  }
  .twg-verdict-disclosure {
    text-align: left;
  }
}
/* REDUCED MOTION */
@media (prefers-reduced-motion: reduce) {
  .twg-verdict *,
  .twg-verdict *::before,
  .twg-verdict *::after {
    transition: none !important;
  }
}
/* =============Final CTA Button Styles=============== */
.twg-strong-cta {
  --twg-primary: #6d28d9;
  --twg-secondary: #2563eb;
  --twg-dark: #172033;
  position: relative;
  overflow: hidden;
  padding: 82px 20px;
  background: linear-gradient(135deg, #faf8ff 0%, #f7faff 50%, #ffffff 100%);
}
.twg-strong-cta-bg::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  top: -310px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(
    circle,
    rgba(109, 40, 217, 0.12),
    transparent 68%
  );
}
.twg-strong-cta-bg::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  right: -180px;
  bottom: -190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.09), transparent 70%);
}
.twg-strong-cta-container {
  position: relative;
  z-index: 2;
  width: min(950px, 100%);
  margin: auto;
  text-align: center;
}
.twg-cta-badge {
  display: inline-flex;
  align-items: center;
  justify-items: center;
  gap: 7px;
  margin-bottom: 17px;
  padding: 7px 12px;
  border: 1px solid rgba(109, 40, 217, 0.14);
  border-radius: 999px;
  color: var(--twg-primary);
  background: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25px;
}

.bottom-image {
  display: flex;
  justify-content: center; /* horizontal center */
  align-items: center; /* vertical center */
  width: 100%;
}

.twg-product-card {
  display: flex;
  justify-content: center;
  align-items: center;
}
.twg-product-image {
  display: block;
  max-width: 100%;
  height: auto;
  margin-bottom: 8px;
}
.twg-cta-badge span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 17px;
  height: 17px;
  border-radius: 50%;
  color: #ffffff;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  font-size: 12px;
}
.twg-strong-cta h2 {
  max-width: 760px;
  margin: 0 auto 15px;
  color: var(--twg-dark);
  font-size: clamp(31px, 4.5vw, 46px);
  line-height: 1.13;
  letter-spacing: -1.3px;
  font-weight: 900;
}
.twg-strong-cta h2 span {
  display: block;
  background: linear-gradient(90deg, var(--twg-primary), var(--twg-secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.twg-cta-description {
  max-width: 650px;
  margin: 0 auto 23px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.75;
}
.twg-main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  min-height: 56px;
  padding: 0 25px;
  border-radius: 11px;
  color: #ffffff !important;
  background: linear-gradient(135deg, var(--twg-primary), var(--twg-secondary));
  text-decoration: none !important;
  box-shadow: 0 13px 30px rgba(79, 70, 229, 0.23);
  font-size: 17px;
  font-weight: 850;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.twg-main-cta:hover {
  color: #ffffff !important;
  text-decoration: none !important;
  transform: translateY(-3px);
  box-shadow: 0 17px 35px rgba(79, 70, 229, 0.29);
}
.twg-cta-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  border-radius: 7px;
  color: var(--twg-primary);
  background: #ffffff;
  font-size: 14px;
}
.twg-cta-note {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 13px;
  color: #94a3b8;
  font-size: 14px;
}
.twg-cta-note span:first-child {
  color: #16a34a;
  font-weight: 900;
}
.twg-cta-trust-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 860px;
  margin: 34px auto 0;
}
.twg-cta-trust-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 15px;
  border: 1px solid rgba(100, 116, 139, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.72);
  text-align: left;
}
.twg-cta-trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  flex-shrink: 0;
  border-radius: 8px;
  color: var(--twg-primary);
  background: rgba(109, 40, 217, 0.07);
  font-size: 16px;
  font-weight: 850;
}
.twg-cta-trust-item strong {
  display: block;
  margin-bottom: 2px;
  color: var(--twg-dark);
  font-size: 15px;
  font-weight: 800;
}
.twg-cta-trust-item span {
  display: block;
  color: #94a3b8;
  font-size: 14px;
  line-height: 1.4;
}

/* ========Footer Styles======= */
.site-footer {
  background: linear-gradient(135deg, #f5f7ff 0%, #eef2ff 50%, #e3eeff 100%);
  border-top: 1px solid #e5e7ef;
  padding: 22px 20px;
}
.footer-container {
  width: min(1100px, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-copy {
  margin: 0;
  color: #4b5563;
  font-size: 13px;
  font-weight: 500;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  position: relative;
  transition: color 0.2s ease;
}
.footer-links a:hover {
  color: #635bff;
  text-decoration: underline;
}
.footer-links a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: -9px;
  top: 50%;
  transform: translateY(-50%);
  width: 3px;
  height: 3px;
  background: #d0d5dd;
  border-radius: 50%;
}
@media (max-width: 640px) {
  .footer-container {
    flex-direction: column;
    text-align: center;
  }
  .footer-copy {
    font-size: 12px;
  }
  .footer-links a {
    font-size: 12px;
  }
}
