/* ================================================
   Octi Site Redesign v2 — Psychology Edition
   ================================================ */

:root {
  --primary:       #0984a1;
  --primary-dark:  #066a80;
  --primary-light: #07b5d8;
  --primary-bg:    #f0fbff;
  --text-dark:     #1a202c;
  --text-medium:   #4a5568;
  --text-light:    #718096;
  --white:         #ffffff;
  --border:        #e2e8f0;
  --warm:          #f97316;
  --warm-bg:       #fff7ed;
  --danger:        #e84a5f;
  --success:       #16a34a;
  --radius:        12px;
  --shadow-sm:     0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:     0 4px 20px rgba(9,132,161,0.12);
  --shadow-lg:     0 8px 32px rgba(9,132,161,0.2);
}

/* ================================================
   PULSE DOT ANIMATION
   ================================================ */

.pulse-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  position: relative;
  flex-shrink: 0;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: rgba(9,132,161,0.35);
  animation: pulse 1.6s ease-out infinite;
}

.pulse-dot.pulse-green { background: #16a34a; }
.pulse-dot.pulse-green::after { background: rgba(22,163,74,0.35); }

@keyframes pulse {
  0%   { transform: scale(1);   opacity: 1; }
  100% { transform: scale(2.4); opacity: 0; }
}

/* ================================================
   HERO V2
   ================================================ */

.hero-v2 {
  position: relative;
  padding: 140px 0 80px;
  background: linear-gradient(150deg, #ffffff 0%, #f0fbff 55%, #ddf0f7 100%);
  overflow: hidden;
  z-index: 1;
}

.hero-v2::before {
  content: '';
  position: absolute;
  top: -120px; right: -150px;
  width: 640px; height: 640px;
  background: radial-gradient(circle, rgba(9,132,161,0.07) 0%, transparent 68%);
  z-index: 0; pointer-events: none;
}

.hero-v2 .container { position: relative; z-index: 1; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(9,132,161,0.08);
  color: var(--primary);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.2px;
  margin-bottom: 22px;
  border: 1px solid rgba(9,132,161,0.16);
}

.hero-v2 h1 {
  font-size: 50px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 22px;
}

.hero-desc {
  font-size: 19px;
  color: var(--text-medium);
  line-height: 1.65;
  margin-bottom: 36px;
  max-width: 500px;
}

.hero-typewriter {
  color: var(--primary);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 2px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  align-items: center;
}

.btn-primary-v2 {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--primary);
  color: #fff !important;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 18px rgba(9,132,161,0.34);
  white-space: nowrap;
}

.btn-primary-v2:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(9,132,161,0.44);
}

.btn-sm-v2 {
  padding: 11px 22px !important;
  font-size: 14px !important;
}

.btn-secondary-v2 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--primary) !important;
  padding: 15px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  border: 2px solid rgba(9,132,161,0.35);
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
}

.btn-secondary-v2:hover {
  background: var(--primary);
  color: #fff !important;
  border-color: var(--primary);
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.hero-trust span {
  font-size: 14px;
  color: var(--text-medium);
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.hero-trust span::before {
  content: '✓';
  color: var(--primary);
  font-weight: 800;
  font-size: 13px;
}

.hero-img-v2 {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-img-v2 img {
  max-width: 340px;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 24px 48px rgba(9,132,161,0.22));
  animation: heroFloat 4s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

@media (max-width: 1199px) {
  .hero-v2 h1 { font-size: 42px; }
  .hero-img-v2 img { max-width: 280px; }
}

@media (max-width: 991px) {
  .hero-v2 { padding: 110px 0 60px; }
  .hero-v2 h1 { font-size: 36px; }
  .hero-img-v2 { margin-top: 48px; }
  .hero-img-v2 img { max-width: 220px; }
}

@media (max-width: 767px) {
  .hero-v2 { padding: 90px 0 50px; }
  .hero-v2 h1 { font-size: 30px; }
  .hero-desc { font-size: 16px; }
  .hero-actions { flex-direction: column; }
  .btn-primary-v2, .btn-secondary-v2 { width: 100%; justify-content: center; }
  .hero-img-v2 img { max-width: 180px; animation: none; }
}

/* ================================================
   TRUST BAR
   ================================================ */

.trust-bar {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.trust-bar-items {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
  white-space: nowrap;
}

.trust-bar-item i {
  color: var(--primary);
  font-size: 16px;
}

@media (max-width: 767px) {
  .trust-bar-items { gap: 20px; }
  .trust-bar-item  { font-size: 12px; }
}

/* ================================================
   STATS STRIP
   ================================================ */

.stats-strip {
  background: var(--primary);
  padding: 28px 0;
}

.stat-strip-item { text-align: center; }

.stat-strip-item strong {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 4px;
}

.stat-strip-item span {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  font-weight: 500;
}

@media (max-width: 767px) {
  .stat-strip-item strong { font-size: 26px; }
}

/* ================================================
   SHARED SECTION HELPERS
   ================================================ */

.section-label {
  display: inline-block;
  background: rgba(9,132,161,0.09);
  color: var(--primary);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 12px;
  border: 1px solid rgba(9,132,161,0.16);
}

.section-label-warm {
  background: var(--warm-bg) !important;
  color: var(--warm) !important;
  border-color: rgba(249,115,22,0.2) !important;
}

.section-label-light {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.14);
  color: rgba(255,255,255,0.9);
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 14px;
}

.section-title-v2 {
  font-size: 38px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}

.section-subtitle {
  font-size: 17px;
  color: var(--text-medium);
  line-height: 1.6;
  margin-bottom: 0;
}

.mb-60 { margin-bottom: 60px !important; }

@media (max-width: 767px) {
  .section-title-v2 { font-size: 26px; }
  .section-subtitle  { font-size: 15px; }
}

/* ================================================
   PAIN POINTS
   ================================================ */

.pain-section {
  padding: 88px 0 60px;
  background: #f8fafb;
}

.pain-card {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 32px 28px;
  height: 100%;
  transition: all 0.3s;
}

.pain-card:hover {
  border-color: rgba(249,115,22,0.25);
  box-shadow: 0 6px 24px rgba(249,115,22,0.08);
  transform: translateY(-4px);
}

.pain-emoji {
  font-size: 38px;
  margin-bottom: 18px;
  display: block;
}

.pain-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.pain-card p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.6;
}

.pain-bridge {
  margin-top: 52px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}

.pain-bridge span {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.pain-bridge i {
  font-size: 22px;
  color: var(--primary);
  animation: bounceDown 1.4s ease infinite;
}

@keyframes bounceDown {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(7px); }
}

/* ================================================
   CATEGORIES
   ================================================ */

.categories-v2 {
  padding: 88px 0;
  background: #fff;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

@media (max-width: 1199px) { .category-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .category-grid { grid-template-columns: repeat(3, 1fr); gap: 10px; } }
@media (max-width: 480px)  { .category-grid { grid-template-columns: repeat(2, 1fr); } }

.category-card {
  background: var(--primary-bg);
  border-radius: 14px;
  padding: 22px 10px 18px;
  text-align: center;
  transition: all 0.28s;
  border: 1.5px solid transparent;
  cursor: default;
}

.category-card:hover {
  border-color: rgba(9,132,161,0.25);
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.category-emoji {
  font-size: 30px;
  display: block;
  margin-bottom: 8px;
  line-height: 1.2;
}

.cat-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-dark);
  display: block;
  line-height: 1.3;
}

.categories-more {
  margin-top: 36px;
  text-align: center;
}

.categories-more a {
  color: var(--primary);
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 22px;
  border-radius: 8px;
  background: var(--primary-bg);
  border: 1px solid rgba(9,132,161,0.18);
  transition: all 0.3s;
}

.categories-more a:hover {
  background: var(--primary);
  color: #fff !important;
}

/* ================================================
   COMPARISON
   ================================================ */

.comparison-section {
  padding: 88px 0;
  background: #f8fafb;
}

.comparison-wrapper {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  gap: 0;
  align-items: stretch;
  max-width: 860px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.08);
}

@media (max-width: 767px) {
  .comparison-wrapper {
    grid-template-columns: 1fr;
    border-radius: 16px;
  }
  .comparison-vs { padding: 12px 0; }
}

.comparison-col {
  padding: 36px 32px;
}

.col-bad {
  background: #f4f6f8;
}

.col-good {
  background: linear-gradient(145deg, #0984a1, #066a80);
}

.comparison-vs {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #e2e8f0;
  font-size: 13px;
  font-weight: 800;
  color: var(--text-light);
  letter-spacing: 1px;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

@media (max-width: 767px) {
  .comparison-vs { writing-mode: horizontal-tb; }
}

.comparison-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.comp-icon { font-size: 22px; }

.col-bad .comparison-header strong {
  font-size: 18px;
  font-weight: 800;
  color: var(--text-medium);
}

.col-good .comparison-header strong {
  font-size: 18px;
  font-weight: 800;
  color: #fff;
}

.comparison-list {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}

.comparison-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  margin-bottom: 13px;
}

.col-bad .comparison-list li {
  color: var(--text-medium);
}

.col-bad .comparison-list li i {
  color: #e84a5f;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

.col-good .comparison-list li {
  color: rgba(255,255,255,0.9);
}

.col-good .comparison-list li i {
  color: #7ee8a2;
  font-size: 14px;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ================================================
   HOW IT WORKS
   ================================================ */

.howto-v2 {
  padding: 88px 0;
  background: linear-gradient(135deg, #f6fdff 0%, var(--primary-bg) 100%);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  position: relative;
}

.steps-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(16.66% + 24px);
  right: calc(16.66% + 24px);
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(9,132,161,0.2));
  z-index: 0;
}

@media (max-width: 767px) {
  .steps-grid { grid-template-columns: 1fr; gap: 36px; }
  .steps-grid::before { display: none; }
}

.step-item {
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-number {
  width: 72px; height: 72px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: 800;
  margin: 0 auto 22px;
  box-shadow: 0 8px 24px rgba(9,132,161,0.3);
}

.step-item h4 {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.step-item p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.55;
  max-width: 220px;
  margin: 0 auto;
}

/* ================================================
   FEATURES V2
   ================================================ */

.features-v2 {
  padding: 88px 0;
  background: #fff;
}

.feature-card-v2 {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 36px 28px;
  height: 100%;
  transition: all 0.3s;
}

.feature-card-v2:hover {
  border-color: rgba(9,132,161,0.28);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.feature-icon-v2 {
  width: 58px; height: 58px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.feature-icon-v2.teal   { background: rgba(9,132,161,0.1);  color: var(--primary); }
.feature-icon-v2.yellow { background: rgba(255,200,87,0.14); color: #a16207; }
.feature-icon-v2.red    { background: rgba(255,91,91,0.1);  color: #e84a5f; }

.feature-card-v2 h4 {
  font-size: 19px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 10px;
}

.feature-card-v2 p {
  font-size: 15px; color: var(--text-medium); line-height: 1.6;
}

/* ================================================
   FOR PROVIDERS — FOMO
   ================================================ */

.providers-v2 {
  padding: 88px 0;
  background: linear-gradient(135deg, #0984a1 0%, #055f75 100%);
  position: relative;
  overflow: hidden;
}

.providers-v2::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 360px; height: 360px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%; pointer-events: none;
}

.providers-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 18px;
}

.providers-v2 h2 {
  color: #fff;
  font-size: 38px;
  font-weight: 800;
  margin-bottom: 18px;
  line-height: 1.2;
}

.fomo-warning {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  background: rgba(255,200,0,0.12);
  border: 1px solid rgba(255,200,0,0.25);
  border-radius: 10px;
  padding: 12px 16px;
  font-size: 15px;
  color: #ffe066 !important;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.45;
}

.fomo-warning i { font-size: 16px; flex-shrink: 0; margin-top: 1px; }

.providers-v2 > .container > .row > .col-lg-7 > p:not(.fomo-warning) {
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}

.providers-bullets {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
}

.providers-bullets li {
  color: rgba(255,255,255,0.88);
  font-size: 15px;
  margin-bottom: 12px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.45;
}

.providers-bullets li::before {
  content: '✓';
  min-width: 22px; height: 22px;
  background: rgba(255,255,255,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px; font-weight: 700;
  flex-shrink: 0; margin-top: 1px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--primary) !important;
  padding: 15px 30px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.14);
}

.btn-white:hover {
  background: rgba(255,255,255,0.92);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.18);
}

.btn-sub-note {
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.btn-sub-note i { font-size: 13px; }

.providers-img {
  display: flex; justify-content: center; align-items: center;
}

.providers-img img {
  max-width: 320px; width: 100%;
  opacity: 0.9;
  filter: drop-shadow(0 16px 36px rgba(0,0,0,0.22));
}

@media (max-width: 991px) {
  .providers-v2 h2 { font-size: 30px; }
  .providers-img  { margin-top: 48px; }
  .providers-img img { max-width: 220px; }
}

/* ================================================
   FAQ
   ================================================ */

.faq-v2 {
  padding: 88px 0;
  background: #fff;
}

.faq-list {
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid var(--border);
}

.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 22px 28px;
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background 0.2s;
  line-height: 1.4;
}

.faq-question:hover { background: var(--primary-bg); }

.faq-item.open .faq-question {
  background: var(--primary-bg);
  color: var(--primary);
}

.faq-icon {
  font-size: 16px;
  flex-shrink: 0;
  color: var(--primary);
  transition: transform 0.3s;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 28px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 4px 28px 22px;
}

.faq-answer p {
  font-size: 15px;
  color: var(--text-medium);
  line-height: 1.65;
  margin: 0;
}

/* ================================================
   TESTIMONIALS
   ================================================ */

.testimonial-section.pt-80 { padding-top: 80px; }
.testimonial-section.pb-80 { padding-bottom: 80px; }

/* ================================================
   BLOG (fix debug bg)
   ================================================ */

.blog-slider-list {
  background: transparent !important;
  min-height: 0 !important;
}

.blog-slider-btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--primary-bg);
  border: 1.5px solid rgba(9,132,161,0.2);
  color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s;
  font-size: 16px;
}

.blog-slider-btn:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ================================================
   DOWNLOAD V2
   ================================================ */

.download-v2 {
  padding: 100px 0;
  background: linear-gradient(160deg, #f0fbff 0%, #fff 60%);
}

.download-v2 h2 {
  font-size: 44px;
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 14px;
  line-height: 1.15;
}

.download-v2 > .container > .row > div > p {
  font-size: 17px;
  color: var(--text-medium);
  margin-bottom: 44px;
}

.download-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.store-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  border-radius: 12px;
  background: #1a202c;
  color: #fff !important;
  text-decoration: none;
  transition: all 0.3s;
  min-width: 200px;
  border: none;
  cursor: pointer;
}

.store-btn:hover {
  background: #2d3748;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.store-btn.disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.store-btn.disabled:hover {
  transform: none; box-shadow: none; background: #1a202c;
}

.store-icon { font-size: 30px; }
.store-text { text-align: left; line-height: 1.3; }
.store-text small { display: block; font-size: 11px; opacity: 0.65; }
.store-text strong { display: block; font-size: 16px; font-weight: 700; }

.download-note {
  font-size: 13px !important;
  color: var(--text-light) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .download-v2 h2 { font-size: 30px; }
  .download-buttons { flex-direction: column; align-items: center; }
  .store-btn { width: 100%; max-width: 280px; justify-content: center; }
}

/* ================================================
   FOOTER V2
   ================================================ */

.footer-v2 {
  background: #111827;
  padding: 64px 0 0;
}

.footer-brand img {
  max-width: 72px;
  border-radius: 14px;
  margin-bottom: 16px;
}

.footer-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.4);
  margin-bottom: 24px;
  max-width: 230px;
  line-height: 1.65;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  font-size: 15px;
  transition: all 0.3s;
  text-decoration: none;
}

.footer-social a:hover { background: var(--primary); color: #fff; }

.footer-v2 h5 {
  color: #fff;
  font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.7px;
  margin-bottom: 20px; margin-top: 0;
}

.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 11px; }
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 14px; text-decoration: none;
  transition: color 0.25s; line-height: 1;
}
.footer-links a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  margin-top: 52px;
  text-align: center;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* ================================================
   SOCIAL PROOF TOAST
   ================================================ */

.social-toast {
  position: fixed;
  bottom: 110px;
  left: 20px;
  z-index: 9997;
  max-width: 310px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.14);
  border-left: 4px solid var(--primary);
  padding: 14px 16px;
  animation: toastIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  transition: opacity 0.35s, transform 0.35s;
}

.social-toast.toast-hide {
  opacity: 0;
  transform: translateX(-30px);
}

@keyframes toastIn {
  from { transform: translateX(-120%); opacity: 0; }
  to   { transform: translateX(0);     opacity: 1; }
}

.social-toast-inner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.social-toast-avatar {
  font-size: 20px;
  width: 38px; height: 38px;
  background: var(--primary-bg);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.social-toast-text strong {
  display: block; font-size: 13px; font-weight: 700;
  color: var(--text-dark); margin-bottom: 2px;
}

.social-toast-text span {
  display: block; font-size: 12px;
  color: var(--text-medium); margin-bottom: 3px;
}

.social-toast-text small {
  display: block; font-size: 11px; color: var(--text-light);
}

.social-toast-close {
  background: none; border: none;
  color: var(--text-light); cursor: pointer;
  font-size: 18px; padding: 0;
  margin-left: auto; flex-shrink: 0;
  line-height: 1;
}

.social-toast-close:hover { color: var(--text-dark); }

@media (max-width: 480px) {
  .social-toast { max-width: calc(100vw - 32px); bottom: 90px; }
}
