/* Perfect Assignment Creator - Master Responsive CSS System */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Poppins', sans-serif;
  
  --bg-dark: #070913;
  --bg-surface: #0e1222;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --border-glass: rgba(255, 255, 255, 0.12);
  --border-glass-glow: rgba(207, 6, 150, 0.45);

  /* Logo Palette */
  --logo-blue: #0d38bd;
  --logo-blue-bright: #1c53f4;
  --logo-magenta: #cf0696;
  --logo-magenta-bright: #e61093;
  --logo-gold: #ffd700;
  
  --gradient-logo-magenta: linear-gradient(135deg, #e61093 0%, #bd007c 100%);
  --gradient-logo-blue: linear-gradient(135deg, #0d38bd 0%, #1c53f4 100%);
  --gradient-logo-combined: linear-gradient(135deg, #cf0696 0%, #1c53f4 100%);

  --text-white: #ffffff;
  --text-sub: #94a3b8;
  --text-muted: #64748b;

  --shadow-glow-magenta: 0 10px 30px rgba(207, 6, 150, 0.35);
  --shadow-glow-blue: 0 10px 30px rgba(28, 83, 244, 0.35);
  --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-full: 9999px;
}

/* Reset & Core */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glow */
.ambient-glow {
  position: fixed;
  width: 550px;
  height: 550px;
  border-radius: 50%;
  filter: blur(150px);
  pointer-events: none;
  z-index: 0;
  opacity: 0.28;
}
.ambient-1 { top: -120px; left: -120px; background: var(--logo-magenta); }
.ambient-2 { top: 40%; right: -150px; background: var(--logo-blue-bright); }
.ambient-3 { bottom: 10%; left: 20%; background: var(--logo-gold); opacity: 0.15; }

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.section {
  padding: 85px 0;
  position: relative;
  overflow: visible;
}

.text-gradient {
  background: var(--gradient-logo-magenta);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: var(--gradient-logo-blue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 50px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(207, 6, 150, 0.12);
  border: 1px solid rgba(207, 6, 150, 0.35);
  color: var(--logo-magenta-bright);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 15px;
  color: var(--text-sub);
}

/* TOP CONTACT HEADER BAR */
.top-contact-bar {
  background: rgba(13, 56, 189, 0.22);
  border-bottom: 1px solid var(--border-glass);
  padding: 8px 0;
  font-size: 13px;
  color: var(--text-sub);
}

.top-bar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.contact-info-group {
  display: flex;
  align-items: center;
  gap: 20px;
}

.contact-info-group a {
  color: var(--text-white);
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color 0.3s ease;
}

.contact-info-group a:hover {
  color: var(--logo-magenta-bright);
}

/* DESKTOP NAVBAR HEADER */
.navbar {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(7, 9, 19, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-glass);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 15px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.brand-logo-img,
.custom-logo,
.custom-logo-link img,
.brand-logo img {
  height: 54px !important;
  max-height: 54px !important;
  width: auto !important;
  max-width: 260px !important;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(207, 6, 150, 0.4));
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
  line-height: 1;
}

.logo-text span {
  color: var(--logo-magenta-bright);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-sub);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text-white);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gradient-logo-magenta);
  border-radius: var(--radius-full);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* NAVBAR SEARCH TOGGLE BUTTON */
.nav-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-size: 16px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
}

.nav-search-toggle:hover {
  border-color: var(--logo-magenta);
  color: var(--logo-magenta-bright);
  background: rgba(207, 6, 150, 0.15);
  box-shadow: 0 0 15px rgba(207, 6, 150, 0.35);
  transform: translateY(-1px);
}

.nav-search-toggle.active {
  background: var(--gradient-logo-magenta);
  border-color: var(--logo-magenta);
  color: #ffffff;
  box-shadow: var(--shadow-glow-magenta);
}

/* EXPANDABLE NAVBAR SEARCH OVERLAY */
.navbar-search-wrapper {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: rgba(14, 18, 34, 0.98);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--border-glass-glow);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.7);
  padding: 18px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 999;
}

.navbar-search-wrapper.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.navbar-search-container {
  display: flex;
  align-items: center;
  justify-content: center;
}

.navbar-search-form {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 820px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 6px 10px 6px 22px;
  gap: 12px;
  box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.35);
  transition: all 0.3s ease;
}

.navbar-search-form:focus-within {
  border-color: var(--logo-magenta);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 25px rgba(207, 6, 150, 0.35), inset 0 2px 8px rgba(0, 0, 0, 0.35);
}

.search-icon-left {
  color: var(--logo-magenta-bright);
  font-size: 17px;
  flex-shrink: 0;
}

.navbar-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 8px 0;
}

.navbar-search-input::placeholder {
  color: var(--text-muted);
}

.navbar-search-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--gradient-logo-magenta);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(207, 6, 150, 0.4);
  flex-shrink: 0;
}

.navbar-search-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(207, 6, 150, 0.6);
}

.navbar-search-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-sub);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.navbar-search-close:hover {
  background: rgba(207, 6, 150, 0.2);
  color: #ffffff;
  border-color: var(--logo-magenta);
  transform: rotate(90deg);
}

.discount-pill {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: rgba(207, 6, 150, 0.15);
  border: 1px solid var(--logo-magenta);
  color: var(--logo-magenta-bright);
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(207, 6, 150, 0.3);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--gradient-logo-magenta);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow-magenta);
  transition: all 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(207, 6, 150, 0.5);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  border-color: var(--logo-magenta);
  background: rgba(207, 6, 150, 0.1);
}

.btn-blue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-full);
  background: var(--gradient-logo-blue);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-glow-blue);
  transition: all 0.3s ease;
}

.btn-blue:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(28, 83, 244, 0.5);
}

.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-size: 18px;
  cursor: pointer;
}

/* DEDICATED MOBILE NAVIGATION DRAWER & BACKDROP */
.mobile-nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.mobile-nav-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #0e1222;
  border-left: 1px solid var(--border-glass-glow);
  z-index: 2000;
  display: flex;
  flex-direction: column;
  padding: 24px;
  transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.8);
}

.mobile-nav-drawer.active {
  right: 0;
}

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-glass);
  margin-bottom: 18px;
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

/* MOBILE DRAWER SEARCH BOX */
.mobile-drawer-search {
  margin-bottom: 20px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border-glass);
}

.mobile-drawer-search-form {
  display: flex;
  align-items: center;
  position: relative;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  padding: 4px 6px 4px 14px;
  gap: 8px;
  transition: all 0.3s ease;
}

.mobile-drawer-search-form:focus-within {
  border-color: var(--logo-magenta);
  background: rgba(255, 255, 255, 0.09);
  box-shadow: 0 0 15px rgba(207, 6, 150, 0.3);
}

.mobile-drawer-search-icon {
  color: var(--logo-magenta-bright);
  font-size: 14px;
}

.mobile-drawer-search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 14px;
  padding: 6px 0;
}

.mobile-drawer-search-input::placeholder {
  color: var(--text-muted);
}

.mobile-drawer-search-btn {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: var(--gradient-logo-magenta);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.mobile-drawer-search-btn:hover {
  transform: scale(1.06);
}

/* GENERIC THEME SEARCH FORM (for widgets / searchform.php) */
.pac-search-form {
  width: 100%;
}

.pac-search-input-group {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-full);
  padding: 6px 8px 6px 18px;
  gap: 10px;
  transition: all 0.3s ease;
}

.pac-search-input-group:focus-within {
  border-color: var(--logo-magenta);
  box-shadow: 0 0 18px rgba(207, 6, 150, 0.35);
}

.pac-search-icon {
  color: var(--logo-magenta-bright);
  font-size: 15px;
}

.pac-search-field {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 14px;
  font-family: var(--font-body);
}

.pac-search-submit {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gradient-logo-magenta);
  color: #ffffff;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.pac-search-submit:hover {
  transform: scale(1.08);
}

.mobile-drawer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: auto;
}

.mobile-drawer-links a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  transition: background 0.3s ease;
}

.mobile-drawer-links a:hover {
  background: rgba(207, 6, 150, 0.15);
  color: var(--logo-magenta-bright);
}

.mobile-drawer-footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

/* HERO SECTION */
.hero-section {
  padding: 50px 0 70px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-slider-wrapper {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 40px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-card);
  min-height: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.slides-container {
  position: relative;
  flex-grow: 1;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s ease;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.slide-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--logo-magenta-bright);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.slide-title {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 18px;
}

.slide-desc {
  font-size: 15px;
  color: var(--text-sub);
  margin-bottom: 24px;
  line-height: 1.7;
}

.slide-features {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 30px;
}

.feature-pill {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-white);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 6px;
}

.feature-pill i {
  color: var(--logo-magenta-bright);
}

.slide-cta-group {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.slider-dots {
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  width: 28px;
  border-radius: var(--radius-full);
  background: var(--logo-magenta-bright);
}

.slider-nav-btns {
  display: flex;
  gap: 8px;
}

.nav-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.nav-btn:hover {
  background: var(--logo-magenta);
  border-color: var(--logo-magenta);
}

/* INSTANT CALCULATOR CARD */
.quote-calculator-card {
  background: #0e1222;
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-glow-magenta);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.calc-header h3 {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.calc-header .badge {
  font-size: 11px;
  font-weight: 700;
  background: rgba(207, 6, 150, 0.2);
  color: var(--logo-magenta-bright);
  padding: 4px 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--logo-magenta);
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-sub);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.word-count-badge {
  color: var(--logo-magenta-bright);
  font-weight: 700;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-glass);
  color: var(--text-white);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--logo-magenta-bright);
  box-shadow: 0 0 15px rgba(207, 6, 150, 0.3);
  background: rgba(255, 255, 255, 0.08);
}

.form-control option {
  background: #0e1222;
  color: #fff;
}

.range-slider {
  width: 100%;
  accent-color: var(--logo-magenta-bright);
  cursor: pointer;
}

.price-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid var(--border-glass);
  border-bottom: 1px solid var(--border-glass);
  margin: 10px 0;
}

.original-price {
  font-size: 16px;
  color: var(--text-sub);
  text-decoration: line-through;
  margin-right: 8px;
}

.final-price {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 800;
  color: #00d2ff;
}

.guarantee-note {
  font-size: 12px;
  color: var(--text-sub);
  display: flex;
  align-items: center;
  gap: 6px;
}

.guarantee-note i {
  color: var(--logo-magenta-bright);
}

/* TRUST BAR */
.trust-bar-section {
  background: rgba(255, 255, 255, 0.02);
  border-y: 1px solid var(--border-glass);
  padding: 24px 0;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-icon-box {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(207, 6, 150, 0.15);
  border: 1px solid rgba(207, 6, 150, 0.3);
  color: var(--logo-magenta-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.trust-score {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
}

.stars {
  color: var(--logo-gold);
  font-size: 12px;
  margin: 2px 0;
}

.trust-label {
  font-size: 12px;
  color: var(--text-sub);
}

/* PORTRAIT VIDEO TESTIMONIALS SLIDER */
.video-testimonials-section {
  background: var(--bg-dark);
}

.video-slider-header-controls {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 35px;
}

.video-slider-nav {
  display: flex;
  gap: 10px;
}

.video-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-glass);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.video-nav-btn:hover {
  background: var(--logo-magenta);
  border-color: var(--logo-magenta);
  box-shadow: 0 0 15px rgba(207, 6, 150, 0.5);
}

.video-slider-viewport {
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 10px 0 20px;
}

.video-slider-viewport::-webkit-scrollbar {
  display: none;
}

.video-slider-track {
  display: flex;
  gap: 24px;
  width: max-content;
}

.portrait-video-card {
  position: relative;
  flex: 0 0 270px;
  height: 480px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-glass);
  cursor: pointer;
  transition: all 0.35s ease;
  box-shadow: var(--shadow-card);
}

.portrait-video-card:hover {
  transform: translateY(-8px);
  border-color: var(--logo-magenta);
  box-shadow: 0 20px 40px rgba(207, 6, 150, 0.35);
}

.portrait-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portrait-video-card:hover .portrait-thumb-img {
  transform: scale(1.05);
}

.portrait-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 9, 19, 0.3) 0%, rgba(7, 9, 19, 0.95) 100%);
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.portrait-top-badge {
  align-self: flex-start;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: var(--gradient-logo-magenta);
  color: #fff;
  box-shadow: 0 4px 12px rgba(207, 6, 150, 0.4);
}

.portrait-play-center {
  align-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(207, 6, 150, 0.85);
  border: 2px solid #fff;
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(207, 6, 150, 0.8);
  transition: transform 0.3s ease;
}

.portrait-video-card:hover .portrait-play-center {
  transform: scale(1.15);
}

.portrait-student-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.portrait-uni {
  font-size: 12px;
  color: var(--logo-magenta-bright);
  margin-bottom: 6px;
}

.portrait-quote {
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.5;
  font-style: italic;
}

/* FULLSCREEN VIDEO MODAL */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(16px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-card {
  background: #0e1222;
  border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 440px;
  height: 80vh;
  max-height: 750px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.9);
}

.modal-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-glass);
  color: #fff;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
}

.video-container-box {
  flex-grow: 1;
  background: #000;
}

/* SERVICES SECTION */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: all 0.35s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--logo-magenta);
  box-shadow: 0 20px 40px rgba(207, 6, 150, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: rgba(207, 6, 150, 0.15);
  border: 1px solid rgba(207, 6, 150, 0.3);
  color: var(--logo-magenta-bright);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 24px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}

.service-desc {
  font-size: 14px;
  color: var(--text-sub);
  margin-bottom: 20px;
  line-height: 1.6;
}

.service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
}

.service-list li {
  font-size: 13px;
  color: var(--text-white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-list li i {
  color: var(--logo-magenta-bright);
}

.service-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
}

.service-price {
  font-size: 12px;
  color: var(--text-sub);
}

.service-price span {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  display: block;
}

/* HOW IT WORKS SECTION */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 42px 24px 28px;
  text-align: center;
  position: relative;
  overflow: visible;
  transition: all 0.35s ease;
  backdrop-filter: blur(12px);
}

.step-card:hover {
  transform: translateY(-6px);
  border-color: var(--logo-magenta);
  box-shadow: 0 15px 35px rgba(207, 6, 150, 0.2);
}

.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-logo-magenta);
  color: #ffffff;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(207, 6, 150, 0.5);
  z-index: 5;
}

.step-icon {
  font-size: 34px;
  color: var(--logo-blue-bright);
  margin: 12px 0 18px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 10px;
}

.step-desc {
  font-size: 13px;
  color: var(--text-sub);
  line-height: 1.6;
}

/* FAQ ACCORDION SECTION */
.faq-container {
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: rgba(207, 6, 150, 0.4);
}

.faq-header {
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
  gap: 16px;
}

.faq-question {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-align: left;
  line-height: 1.4;
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #ffffff;
  transition: transform 0.35s ease, background 0.35s ease, border-color 0.35s ease;
}

.faq-item.active {
  border-color: var(--logo-magenta);
  background: rgba(255, 255, 255, 0.06);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--logo-magenta);
  border-color: var(--logo-magenta);
  color: #ffffff;
}

.faq-body {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1), opacity 0.3s ease, padding 0.3s ease;
  padding: 0 28px;
  color: var(--text-sub);
  font-size: 14px;
  line-height: 1.7;
  text-align: left;
}

.faq-item.active .faq-body {
  max-height: 300px;
  opacity: 1;
  padding: 0 28px 24px;
}

/* SAMPLES GATED DOWNLOAD SECTION */
.samples-section { background: rgba(255, 255, 255, 0.015); }
.samples-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 28px; }
.sample-card {
  background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); padding: 28px; transition: all 0.3s ease;
  display: flex; flex-direction: column; justify-content: space-between;
}
.sample-card:hover { border-color: var(--logo-magenta); transform: translateY(-5px); box-shadow: 0 15px 35px rgba(207, 6, 150, 0.15); }
.sample-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.sample-type-tag { font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--radius-full); background: rgba(28, 83, 244, 0.15); border: 1px solid rgba(28, 83, 244, 0.3); color: var(--logo-blue-bright); }
.sample-grade { font-size: 12px; font-weight: 800; color: var(--logo-gold); display: flex; align-items: center; gap: 4px; }
.sample-title { font-family: var(--font-heading); font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.sample-snippet { font-size: 13px; color: var(--text-sub); margin-bottom: 20px; line-height: 1.6; background: rgba(0,0,0,0.2); padding: 12px; border-radius: var(--radius-sm); border-left: 3px solid var(--logo-magenta); }
.sample-meta { display: flex; align-items: center; justify-content: space-between; font-size: 12px; color: var(--text-muted); margin-bottom: 20px; }

/* GATED DOWNLOAD & GOOGLE SIGN-IN MODAL */
.gate-modal-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  padding: 20px; opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.gate-modal-overlay.active { opacity: 1; visibility: visible; }
.gate-modal-card {
  background: #0e1222; border: 1px solid var(--border-glass-glow);
  border-radius: var(--radius-lg); width: 100%; max-width: 480px;
  padding: 36px; box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
  position: relative; text-align: center;
}
.google-auth-btn {
  width: 100%; background: #ffffff; color: #1f2937;
  font-family: var(--font-heading); font-weight: 700; font-size: 15px;
  padding: 14px 20px; border-radius: var(--radius-full); border: none;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 20px 0; transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
}
.google-auth-btn:hover { background: #f3f4f6; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3); }
.divider-text { display: flex; align-items: center; margin: 20px 0; color: var(--text-muted); font-size: 12px; }
.divider-text::before, .divider-text::after { content: ''; flex: 1; height: 1px; background: var(--border-glass); }
.divider-text span { padding: 0 10px; }

/* BLOG SECTION */
.blog-section { background: var(--bg-dark); }
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 30px; }
.blog-card {
  background: var(--bg-card); border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg); overflow: hidden; transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); border-color: var(--logo-magenta); box-shadow: 0 15px 35px rgba(207, 6, 150, 0.2); }
.blog-thumb { height: 190px; width: 100%; object-fit: cover; }
.blog-body { padding: 24px; display: flex; flex-direction: column; gap: 12px; flex-grow: 1; }
.blog-cat { font-size: 11px; font-weight: 700; color: var(--logo-magenta-bright); text-transform: uppercase; letter-spacing: 0.5px; }
.blog-title { font-family: var(--font-heading); font-size: 19px; font-weight: 700; line-height: 1.3; }
.blog-excerpt { font-size: 13px; color: var(--text-sub); line-height: 1.6; }
.blog-footer { margin-top: auto; padding-top: 14px; border-top: 1px solid var(--border-glass); display: flex; justify-content: space-between; font-size: 12px; color: var(--text-muted); }

/* MARKETING POPUP */
.marketing-popup-overlay {
  position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(16px); z-index: 99999; display: flex;
  align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: all 0.4s ease;
}
.marketing-popup-overlay.active { opacity: 1; visibility: visible; }
.marketing-popup-card {
  background: linear-gradient(135deg, #0e1222 0%, #161c36 100%);
  border: 2px solid var(--logo-magenta); border-radius: var(--radius-lg);
  width: 100%; max-width: 520px; padding: 40px; text-align: center;
  position: relative; box-shadow: 0 25px 60px rgba(207, 6, 150, 0.5);
}

/* FLOATING WIDGET */
.floating-widget { position: fixed; bottom: 24px; right: 24px; z-index: 999; display: flex; flex-direction: column; gap: 12px; }
.whatsapp-btn {
  width: 54px; height: 54px; background: #25d366; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5); text-decoration: none; transition: transform 0.3s ease;
}
.whatsapp-btn:hover { transform: scale(1.1); }

/* FOOTER */
.footer { background: #04050b; border-top: 1px solid var(--border-glass); padding: 60px 0 30px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 36px; margin-bottom: 40px; }
.footer-col h4 { font-family: var(--font-heading); font-size: 17px; font-weight: 700; margin-bottom: 18px; color: var(--text-white); }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-sub); text-decoration: none; font-size: 14px; transition: color 0.3s ease; }
.footer-links a:hover { color: var(--logo-magenta-bright); }
.footer-bottom { text-align: center; padding-top: 24px; border-top: 1px solid var(--border-glass); color: var(--text-muted); font-size: 13px; }

/* MEDIA QUERIES FOR FULL RESPONSIVENESS */
@media (max-width: 992px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: flex; }
  .brand-logo-img { height: 44px; }
  .logo-text { font-size: 18px; }
  .nav-search-toggle { width: 40px; height: 40px; font-size: 15px; }
  .navbar-search-wrapper { padding: 14px 0; }
  .navbar-search-form { max-width: 100%; }
  .hero-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .order-grid { grid-template-columns: 1fr !important; }
  .single-post-grid { grid-template-columns: 1fr !important; }
}

@media (max-width: 768px) {
  .top-contact-bar { font-size: 12px; }
  .top-bar-container { justify-content: center; text-align: center; }
  .contact-info-group { flex-wrap: wrap; justify-content: center; gap: 10px; }
  
  .nav-container { height: 70px; padding: 0 14px; gap: 8px; }
  .brand-logo-img { height: 38px; }
  .logo-text { font-size: 16px; }
  
  .nav-actions { gap: 6px; }
  .nav-search-toggle { width: 36px; height: 36px; font-size: 14px; }
  .discount-pill { padding: 4px 8px; font-size: 11px; }
  .btn-primary { padding: 8px 14px; font-size: 12px; }
  .mobile-menu-btn { width: 36px; height: 36px; font-size: 16px; }

  .navbar-search-wrapper { padding: 10px 0; }
  .navbar-search-form { padding: 5px 8px 5px 14px; gap: 8px; }
  .navbar-search-input { font-size: 13px; }
  .navbar-search-submit { padding: 6px 14px; font-size: 12px; }
  .navbar-search-close { width: 32px; height: 32px; font-size: 13px; }

  .slide-title { font-size: 28px; }
  .section-title { font-size: 26px; }
  .hero-slider-wrapper { padding: 20px; min-height: auto; }
  .quote-calculator-card { padding: 20px; }
  
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .faq-header { padding: 18px 20px; }
  .faq-question { font-size: 15px; }

  .footer-grid { grid-template-columns: 1fr; }
  .portrait-video-card { flex: 0 0 240px; height: 430px; }
}

@media (max-width: 480px) {
  .nav-container { padding: 0 10px; gap: 6px; }
  .brand-logo { gap: 6px; }
  .brand-logo-img { height: 32px; }
  .logo-text { font-size: 14px; }
  .nav-actions { gap: 5px; }
  .nav-search-toggle { width: 32px; height: 32px; font-size: 13px; }
  .discount-pill { display: none; }
  .btn-primary { padding: 7px 10px; font-size: 11px; }
  .mobile-menu-btn { width: 32px; height: 32px; font-size: 14px; }

  .navbar-search-wrapper { padding: 8px 0; }
  .navbar-search-form { padding: 4px 6px 4px 10px; gap: 6px; }
  .navbar-search-input { font-size: 12px; }
  .navbar-search-submit { width: 30px; height: 30px; padding: 0; border-radius: 50%; justify-content: center; }
  .navbar-search-submit span { display: none; }
  .navbar-search-close { width: 28px; height: 28px; font-size: 12px; }
  .search-icon-left { font-size: 13px; }

  .slide-title { font-size: 24px; }
  .slide-cta-group { flex-direction: column; width: 100%; }
  .slide-cta-group a { width: 100%; justify-content: center; }
}

/* SINGLE POST & ARTICLE DESKTOP DESIGN (ORIGINAL UNCHANGED) */
.single-post-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.single-article-body {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 30px;
}

.article-title {
  font-family: var(--font-heading);
  font-size: 34px;
  font-weight: 800;
  line-height: 1.3;
  color: var(--text-white);
  margin-bottom: 16px;
}

.article-info-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  color: var(--text-sub);
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.article-featured-img {
  margin-bottom: 30px;
  border-radius: 14px;
  overflow: hidden;
}

.article-featured-img img {
  width: 100%;
  height: auto;
  display: block;
}

.entry-content {
  color: #e2e8f0;
  font-size: 16px;
  line-height: 1.8;
}

.entry-content h2 { font-size: 26px; font-weight: 800; border-bottom: 1px solid var(--border-glass); padding-bottom: 8px; margin: 24px 0 12px; color: #fff; }
.entry-content h3 { font-size: 22px; font-weight: 700; margin: 20px 0 10px; color: #fff; }
.entry-content h4 { font-size: 18px; font-weight: 700; margin: 16px 0 8px; color: #fff; }

.entry-content p { margin-bottom: 16px; }
.entry-content ul, .entry-content ol { margin: 0 0 16px 20px; }
.entry-content li { margin-bottom: 6px; }

.share-bar {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--border-glass);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.share-title { font-weight: 700; font-size: 14px; color: #fff; }
.share-btns { display: flex; gap: 10px; }
.share-btn { padding: 8px 16px; font-size: 12px; }

.sidebar-col {
  position: sticky;
  top: 100px;
  height: fit-content;
}

.sidebar-calc-card { margin-bottom: 30px; }
.sidebar-price-summary {
  background: rgba(255, 255, 255, 0.04);
  padding: 10px 14px;
  border-radius: 8px;
  margin-bottom: 14px;
  font-size: 12px;
}

.sidebar-related-box {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--border-glass);
  border-radius: 18px;
  padding: 20px;
}

.related-title {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 15px;
  border-bottom: 1px solid var(--border-glass);
  padding-bottom: 8px;
}

.related-item { margin-bottom: 12px; }
.related-link {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  display: block;
  transition: color 0.3s ease;
}
.related-link:hover { color: var(--logo-magenta-bright); }
.related-date { font-size: 11px; color: var(--text-sub); }

/* ISOLATED MOBILE DEDICATED DESIGN OVERRIDES */
@media (max-width: 992px) {
  html, body {
    overflow-x: hidden !important;
  }

  .single-post-grid {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    gap: 24px !important;
  }

  .single-article-body {
    padding: 20px 16px !important;
    border-radius: 14px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .article-title {
    font-size: 24px !important;
    line-height: 1.35 !important;
    word-break: break-word !important;
  }

  .article-info-bar {
    font-size: 12px !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
  }

  .entry-content {
    font-size: 15px !important;
    line-height: 1.7 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  .entry-content * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .entry-content [style*="width"] {
    max-width: 100% !important;
  }

  .entry-content table {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    border-collapse: collapse !important;
    margin: 16px 0 !important;
    border: 1px solid var(--border-glass) !important;
  }

  .entry-content th,
  .entry-content td {
    padding: 8px 12px !important;
    font-size: 13px !important;
    white-space: nowrap !important;
  }

  .entry-content img,
  .entry-content iframe,
  .entry-content video,
  .entry-content embed,
  .entry-content figure {
    max-width: 100% !important;
    height: auto !important;
  }

  .sidebar-col {
    position: static !important;
    width: 100% !important;
  }

  .share-bar {
    flex-direction: column !important;
    align-items: flex-start !important;
  }
}


