/* =============================================================
   theme.css — Dark theme override for mirshafi.com
   Loaded after main.css. Do not edit main.css.
   ============================================================= */

/* ── 1. Root color variables ── */
:root {
  --background-color: #0a0a0a;
  --surface-color: #141414;
  --default-color: #cccccc;
  --heading-color: #ffffff;
  --accent-color: #4ade80;
  --contrast-color: #000000;
  --nav-color: #cccccc;
  --nav-hover-color: #4ade80;
  --nav-mobile-background-color: #111111;
  --nav-dropdown-background-color: #141414;
  --nav-dropdown-color: #aaaaaa;
  --nav-dropdown-hover-color: #4ade80;
  --footer-background-color: #0a0a0a;
}

.light-background {
  --background-color: #111111;
  --surface-color: #1a1a1a;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #cccccc;
  --heading-color: #ffffff;
  --accent-color: #4ade80;
  --surface-color: #141414;
  --contrast-color: #000000;
}

/* ── 2. Header & Nav ── */
.header {
  --background-color: rgba(10, 10, 10, 0.85) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid #1f1f1f;
}

.scrolled .header {
  border-bottom: 1px solid #1f1f1f;
}

.scrolled .header::before {
  background: rgba(10, 10, 10, 0.92) !important;
}

.header .logo h1 {
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
}

/* Nav CTA pill button */
.nav-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #4ade80;
  color: #000000 !important;
  font-family: var(--nav-font);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 10px 22px;
  border-radius: 50px;
  text-decoration: none !important;
  transition: background 0.2s, transform 0.2s;
  margin-left: 1.5rem;
  white-space: nowrap;
}

.nav-cta-btn:hover {
  background: #22c55e;
  color: #000000 !important;
  transform: translateY(-1px);
}

/* ── 3. Hero section ── */
.hero {
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

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

.hero .ticker-wrap {
  position: relative;
  z-index: 1;
}

.hero .hero-content h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  line-height: 1.15;
  letter-spacing: -1px;
}

.hero .hero-content p {
  color: #999999;
}

.hero .hero-content h1 .hero-line-light {
  color: #aaaaaa;
  font-weight: 500;
}

.hero .hero-content h1 .hero-line-green {
  color: #4ade80;
  font-weight: 800;
}

.hero .hero-content h1 .hero-line-bold {
  color: #ffffff;
  font-weight: 800;
}

.hero .hero-cta {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.hero .hero-cta .btn-primary {
  border-radius: 50px;
  font-weight: 700;
  padding: 14px 36px;
  font-size: 1rem;
}

.hero .hero-cta .btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1e1e1e;
  color: #ffffff;
  border: 1px solid #333333;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.hero .hero-cta .btn-explore:hover {
  background: #2a2a2a;
  border-color: #4ade80;
  color: #ffffff;
}

.hero .hero-social-proof {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #888888;
  font-size: 0.875rem;
}

.hero .hero-social-proof .stars {
  color: #facc15;
  font-size: 1rem;
  letter-spacing: 2px;
}

.hero .hero-image .floating-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6);
}

.hero .hero-image .floating-card .card-content h5 {
  color: #ffffff;
}

.hero .hero-image .floating-card .card-content .growth-percentage {
  color: #4ade80;
}

.hero .hero-image .floating-card .card-icon i {
  color: #4ade80;
}

/* ── 4. Scrolling ticker ── */
.ticker-wrap {
  overflow: hidden;
  padding: 12px 0;
  margin-top: 2rem;
  position: relative;
}

.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}

.ticker-wrap::before {
  left: 0;
  background: linear-gradient(to right, #0a0a0a, transparent);
}

.ticker-wrap::after {
  right: 0;
  background: linear-gradient(to left, #0a0a0a, transparent);
}

.ticker-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: ticker-left 30s linear infinite;
}

.ticker-track.reverse {
  animation: ticker-right 35s linear infinite;
  margin-top: 10px;
}

.ticker-tag {
  display: inline-flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #aaaaaa;
  font-size: 0.82rem;
  font-family: var(--nav-font);
  font-weight: 500;
  padding: 6px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.ticker-tag.green {
  background: rgba(74, 222, 128, 0.08);
  border-color: rgba(74, 222, 128, 0.25);
  color: #4ade80;
}

@keyframes ticker-left {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

@keyframes ticker-right {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* ── 5. Section titles ── */
.section-title .subtitle {
  color: #4ade80;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title .subtitle::after {
  display: none;
}

.section-title h2 {
  font-weight: 800;
  letter-spacing: -0.5px;
}

/* ── 6. Value Proposition section ── */
.value-prop {
  background: #0d0d0d;
  padding: 5rem 0;
  border-top: 1px solid #1a1a1a;
  border-bottom: 1px solid #1a1a1a;
}

.value-prop-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.value-prop-headline h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 800;
  color: #ffffff;
  line-height: 1.25;
  letter-spacing: -0.5px;
  border-left: 4px solid #4ade80;
  padding-left: 1.5rem;
  margin: 0;
}

.value-prop-body p {
  font-size: 1.1rem;
  color: #999999;
  line-height: 1.85;
  margin: 0;
}

@media (max-width: 767px) {
  .value-prop-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ── 7. About section ── */
.about .stat-item .stat-number {
  color: #4ade80;
  font-weight: 800;
}

.about .floating-card {
  background: #141414;
  border: 1px solid #2a2a2a;
}

.about .floating-card h4,
.about .floating-card p {
  color: #ffffff;
}

.about .floating-card .icon i {
  color: #4ade80;
}

.about .btn-outline {
  border-color: #4ade80 !important;
  color: #4ade80 !important;
  border-radius: 50px;
  font-weight: 600;
  padding: 12px 28px;
}

.about .btn-outline:hover {
  background: #4ade80 !important;
  color: #000000 !important;
}

/* ── 7. Service cards ── */
.services .service-card {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  transition: border-color 0.3s, transform 0.3s;
}

.services .service-card:hover {
  border-color: #4ade80;
  transform: translateY(-4px);
}

.services .service-link {
  color: #4ade80 !important;
}

/* Green circle icon for service/benefit cards */
.services .service-icon {
  width: 56px;
  height: 56px;
  background: #4ade80;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.services .service-icon i {
  color: #000000 !important;
  font-size: 1.4rem;
}

.services .service-item {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 14px;
  padding: 2rem;
  transition: border-color 0.3s, transform 0.3s;
  height: 100%;
}

.services .service-item:hover {
  border-color: #4ade80;
  transform: translateY(-4px);
}

.services .service-item h3 {
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.services .service-item p {
  color: #888888;
  font-size: 0.95rem;
}

/* ── 8. Free resources cards (lead magnets) ── */
#free-resources .card {
  background: #141414 !important;
  border: 1px solid #2a2a2a !important;
  transition: border-color 0.3s, transform 0.3s;
}

#free-resources .card:hover {
  border-color: #4ade80 !important;
  transform: translateY(-4px);
}

#free-resources .card h4 {
  color: #ffffff;
}

#free-resources .card p {
  color: #888888;
}

#free-resources .bi {
  color: #4ade80 !important;
}

#free-resources .btn-outline-primary {
  border-color: #4ade80;
  color: #4ade80;
  border-radius: 50px;
  font-weight: 600;
}

#free-resources .btn-outline-primary:hover {
  background: #4ade80;
  color: #000000;
  border-color: #4ade80;
}

/* ── 9. FAQ accordion ── */
.faq .accordion-item {
  background: #141414;
  border: 1px solid #2a2a2a;
  border-radius: 8px !important;
  margin-bottom: 8px;
  overflow: hidden;
}

.faq .accordion-button {
  background: #141414;
  color: #ffffff;
  font-weight: 600;
  font-family: var(--nav-font);
}

.faq .accordion-button:not(.collapsed) {
  background: #1a1a1a;
  color: #4ade80;
  box-shadow: none;
}

.faq .accordion-button::after {
  filter: invert(1);
}

.faq .accordion-button:not(.collapsed)::after {
  filter: invert(58%) sepia(55%) saturate(500%) hue-rotate(90deg);
}

.faq .accordion-body {
  background: #1a1a1a;
  color: #aaaaaa;
}

/* ── 10. Contact section ── */
#contact {
  background: #0a0a0a !important;
  padding: 80px 0;
}

/* Big glowing card (accwealth style) */
.contact-glow-card {
  position: relative;
  background: #0d1a0f;
  border: 1px solid #1e3a22;
  border-radius: 24px;
  overflow: hidden;
  padding: 4rem 3rem 3rem;
  text-align: center;
}

.contact-glow-card::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(74, 222, 128, 0.25) 0%, transparent 65%);
  pointer-events: none;
}

.contact-glow-card .contact-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 1.5rem;
}

.contact-glow-card .contact-pill::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #4ade80;
  border-radius: 50%;
  display: inline-block;
}

.contact-glow-card h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

.contact-glow-card .contact-desc {
  color: #888888;
  font-size: 1rem;
  max-width: 540px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

.contact-cta-row {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #1e1e1e;
  border: 1px solid #2e2e2e;
  color: #ffffff;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}

.btn-whatsapp:hover {
  background: #25D366;
  border-color: #25D366;
  color: #000000;
}

.btn-whatsapp i {
  font-size: 1.2rem;
  color: #25D366;
}

.btn-whatsapp:hover i {
  color: #000000;
}

.btn-book-session {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4ade80;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 28px;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
}

.btn-book-session:hover {
  background: #22c55e;
  color: #000000;
  transform: translateY(-2px);
}

.contact-social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin-bottom: 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid #1e2e1e;
}

.contact-social-links a {
  color: #666666;
  font-size: 1.3rem;
  text-decoration: none;
  transition: color 0.2s;
}

.contact-social-links a:hover {
  color: #4ade80;
}

.contact-social-links .divider {
  color: #333333;
}

/* Enquiry form inside the card */
.contact-form-inner {
  text-align: left;
  border-top: 1px solid #1e3a22;
  padding-top: 2rem;
}

.contact-form-inner .form-label-sm {
  color: #666666;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}

.contact-form-inner input,
.contact-form-inner textarea {
  background: #0f1f11 !important;
  border: 1px solid #1e3a22 !important;
  border-radius: 10px !important;
  color: #e0e0e0 !important;
  padding: 12px 16px !important;
  width: 100%;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  transition: border-color 0.2s;
}

.contact-form-inner input:focus,
.contact-form-inner textarea:focus {
  border-color: #4ade80 !important;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.1) !important;
  outline: none;
}

/* Submit button */
.submit-btn {
  background: #4ade80;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  padding: 13px 32px;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.submit-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

/* ── 11. Footer ── */
.footer {
  background: #060606;
  border-top: 1px solid #1a1a1a;
}

.footer .social-links a {
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  color: #aaaaaa;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.footer .social-links a:hover {
  background: #4ade80;
  color: #000000;
  border-color: #4ade80;
}

.footer .footer-links ul a:hover {
  color: #4ade80;
}

/* ── 12. Mobile nav adjustments ── */
@media (max-width: 1199px) {
  .nav-cta-btn {
    display: none !important;
  }

  .navmenu ul {
    background: #111111 !important;
    border: 1px solid #1f1f1f;
  }

  .navmenu a {
    color: #cccccc !important;
    border-bottom: 1px solid #1f1f1f !important;
  }

  .navmenu a:hover,
  .navmenu .active {
    color: #4ade80 !important;
  }

  .mobile-nav-toggle {
    color: #ffffff !important;
  }
}

/* ── 13. Scroll-top button ── */
.scroll-top {
  background: #4ade80;
}

.scroll-top:hover {
  background: #22c55e;
}

/* ── 14. About page stat boxes ── */
.about-page-stats .p-4 {
  background: #141414 !important;
  border: 1px solid #2a2a2a !important;
}

.about-page-stats h3 {
  color: #4ade80 !important;
}

/* ── 15. Lead capture modal ── */
.lead-modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.85);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.lead-modal-overlay.active {
  display: flex;
}

.lead-modal {
  background: #0d1a0f;
  border: 1px solid #1e3a22;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  max-width: 460px;
  width: 100%;
  position: relative;
  text-align: center;
}

.lead-modal::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(74,222,128,0.2) 0%, transparent 65%);
  pointer-events: none;
}

.lead-modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  color: #666;
  font-size: 1.5rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}

.lead-modal-close:hover { color: #ffffff; }

.lead-modal .modal-badge {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.lead-modal h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}

.lead-modal .modal-sub {
  color: #888888;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
  line-height: 1.6;
}

.lead-modal .modal-bullets {
  text-align: left;
  margin-bottom: 1.75rem;
  list-style: none;
  padding: 0;
}

.lead-modal .modal-bullets li {
  color: #cccccc;
  font-size: 0.875rem;
  padding: 4px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.lead-modal .modal-bullets li::before {
  content: '✓';
  color: #4ade80;
  font-weight: 700;
  flex-shrink: 0;
}

.lead-modal input {
  background: #0f2012 !important;
  border: 1px solid #1e3a22 !important;
  border-radius: 10px !important;
  color: #e0e0e0 !important;
  padding: 12px 16px !important;
  width: 100%;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.lead-modal input:focus {
  border-color: #4ade80 !important;
  outline: none;
  box-shadow: 0 0 0 3px rgba(74,222,128,0.1) !important;
}

.lead-modal input::placeholder { color: #444; }

.lead-modal .modal-privacy {
  font-size: 0.75rem;
  color: #555;
  margin-top: 0.75rem;
}

.lead-modal .btn-modal-submit {
  width: 100%;
  background: #4ade80;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.25rem;
}

.lead-modal .btn-modal-submit:hover { background: #22c55e; }
.lead-modal .btn-modal-submit:disabled { background: #2a5c38; color: #666; cursor: not-allowed; }

.lead-modal .modal-success {
  display: none;
}

.lead-modal .modal-success h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.lead-modal .modal-success p {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.lead-modal .btn-download {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #4ade80;
  color: #000000;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 32px;
  text-decoration: none;
  transition: background 0.2s;
}

.lead-modal .btn-download:hover { background: #22c55e; color: #000; }

/* ── 15. Form inputs ── */
input[type="text"],
input[type="email"],
textarea,
select {
  background: #1a1a1a !important;
  border-color: #2a2a2a !important;
  color: #e0e0e0 !important;
}

input[type="text"]::placeholder,
input[type="email"]::placeholder,
textarea::placeholder {
  color: #555555;
}

input[type="text"]:focus,
input[type="email"]:focus,
textarea:focus {
  border-color: #4ade80 !important;
  box-shadow: 0 0 0 3px rgba(74, 222, 128, 0.15) !important;
  outline: none;
}

label {
  color: #aaaaaa !important;
}

/* ── 16. Testimonials ── */
.testimonials {
  background: #0a0a0a;
}

.testimonial-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  padding: 2.5rem 2rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.testimonial-card:hover {
  border-color: #4ade80;
  transform: translateY(-4px);
}

.testimonial-quote {
  font-size: 5rem;
  line-height: 0.8;
  color: #4ade80;
  font-family: Georgia, serif;
  font-weight: 700;
  margin-bottom: 1.25rem;
  opacity: 0.9;
}

.testimonial-text {
  color: #cccccc;
  font-size: 1rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 1.5rem;
}

.testimonial-divider {
  height: 1px;
  background: #2a2a2a;
  margin-bottom: 1.25rem;
}

.testimonial-footer {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-stars {
  color: #facc15;
  font-size: 0.95rem;
  letter-spacing: 2px;
  flex-shrink: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-author .author-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
}

.testimonial-author .author-role {
  color: #555555;
  font-size: 0.8rem;
}

/* ── 17. Blog listing cards ── */
.blog-card {
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 16px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}

.blog-card:hover {
  border-color: #4ade80;
  transform: translateY(-4px);
}

.blog-card-header {
  background: linear-gradient(135deg, #0d1f10 0%, #111111 100%);
  padding: 2rem 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.blog-card-icon {
  font-size: 1.75rem;
  color: #4ade80;
}

.blog-card-body {
  padding: 1.5rem 1.75rem;
  flex: 1;
}

.blog-card-body h3 {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.blog-card-body h3 a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.2s;
}

.blog-card-body h3 a:hover {
  color: #4ade80;
}

.blog-card-body p {
  color: #888888;
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.blog-card-footer {
  padding: 1rem 1.75rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #1e1e1e;
}

.blog-date {
  color: #555555;
  font-size: 0.8rem;
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-read-more {
  color: #4ade80;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}

.blog-read-more:hover {
  color: #22c55e;
  gap: 10px;
}

.blog-tag {
  display: inline-flex;
  align-items: center;
  background: rgba(74, 222, 128, 0.08);
  border: 1px solid rgba(74, 222, 128, 0.25);
  color: #4ade80;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 14px;
  border-radius: 50px;
  text-transform: uppercase;
}

/* ── 18. Blog post pages ── */
.blog-post-hero {
  padding-top: 120px;
  padding-bottom: 4rem;
}

.blog-post-hero .back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.2s;
}

.blog-post-hero .back-to-blog:hover {
  color: #4ade80;
}

.blog-post-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  max-width: 820px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  color: #555555;
  font-size: 0.875rem;
}

.post-meta span {
  display: flex;
  align-items: center;
  gap: 6px;
}

.blog-post-content {
  padding-bottom: 5rem;
}

.post-body {
  max-width: 780px;
  margin: 0 auto;
}

.post-lead {
  font-size: 1.15rem;
  color: #cccccc;
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 400;
}

.post-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 3rem;
  margin-bottom: 1rem;
  letter-spacing: -0.3px;
}

.post-body h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.post-body p {
  color: #aaaaaa;
  line-height: 1.85;
  font-size: 1rem;
  margin-bottom: 1.25rem;
}

.post-body ul {
  color: #aaaaaa;
  line-height: 1.85;
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-body ul li {
  margin-bottom: 0.5rem;
}

.post-body strong {
  color: #e0e0e0;
}

.post-callout {
  background: rgba(74, 222, 128, 0.06);
  border-left: 3px solid #4ade80;
  border-radius: 0 8px 8px 0;
  padding: 1.25rem 1.75rem;
  margin: 2.5rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #cccccc;
  font-style: italic;
  line-height: 1.6;
}

/* Touch steps (numbered list style) */
.touch-step {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: #111111;
  border: 1px solid #2a2a2a;
  border-radius: 12px;
  transition: border-color 0.2s;
}

.touch-step:hover {
  border-color: #3a3a3a;
}

.touch-number {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4ade80;
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.touch-content {
  flex: 1;
}

.touch-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.touch-timing {
  font-size: 0.78rem;
  font-weight: 500;
  color: #555555;
}

.touch-content p {
  font-size: 0.93rem;
  color: #888888;
  margin: 0;
  line-height: 1.7;
}

/* Blog post CTA block */
.blog-post-cta {
  max-width: 780px;
  margin: 4rem auto 0;
}

.blog-cta-inner {
  background: #0d1a0f;
  border: 1px solid #1e3a22;
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  height: 300px;
  background: radial-gradient(ellipse at center, rgba(74,222,128,0.15) 0%, transparent 65%);
  pointer-events: none;
}

.blog-cta-badge {
  display: inline-block;
  background: rgba(74,222,128,0.1);
  border: 1px solid rgba(74,222,128,0.25);
  color: #4ade80;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.blog-cta-inner h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: -0.3px;
}

.blog-cta-inner p {
  color: #888888;
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.blog-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-cta-primary {
  background: #4ade80;
  color: #000000;
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 28px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.btn-cta-primary:hover {
  background: #22c55e;
  transform: translateY(-2px);
}

.btn-cta-secondary {
  background: transparent;
  color: #cccccc;
  border: 1px solid #333333;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-flex;
  align-items: center;
}

.btn-cta-secondary:hover {
  border-color: #4ade80;
  color: #4ade80;
}

.back-to-blog {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #555555;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s;
}

.back-to-blog:hover {
  color: #4ade80;
}
