/*!
Theme Name: Retention10
Theme URI: https://retention10.com
Description: A modern, responsive WordPress theme for Retention10
Version: 1.0.0
Author: Manav Gautam
Author URI: https://www.linkedin.com/in/digitalmanav/
License: GPL v2 or later
Text Domain: retention10
Domain Path: /languages
*/

/* ====================================
   Retention10 MAIN & BASE STYLES
   ==================================== */

/* ── VARIABLES ── */
:root {
  --bg: #0a0a0a;
  --bg2: #111111;
  --bg3: #161616;
  --card: #141414;
  --card2: #1a1a1a;
  --border: #222222;
  --accent: #f25954;
  --accent2: #ff6b4a;
  --text: #f0f0f0;
  --muted: #888888;
  --muted2: #555555;
  --white: #ffffff;
  --green: #4ade80;
  --gold: #ffc570;
  --gold-dark: #ffbd5b;
}

/* ── RESET ── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  margin-top: 0 !important; /* Fixes mobile address bar space */
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

@font-face {
  font-family: "Retention10";
  src:
    url(/Retention10/assets/fonts/Anton-Regular.ttf) format("woff"),
    url(/Retention10/assets/fonts/Anton-Regular.ttf) format("woff2");
}

h1,
h2,
h3,
h4,
h5 {
  font-family: "Syne", sans-serif;
  line-height: 1.15;
}

a {
  text-decoration: none;
  color: inherit;
}
img {
  max-width: 100%;
  display: block;
}

/* ── LAYOUT ── */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(10, 10, 10, 0.85);
  backdrop-filter: blur(14px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  width: 100%;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.nav-logo img {
  width: 186.96px;
  height: 44.77px;
}

/* ── DESKTOP NAV LINKS ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 22px;
  letter-spacing: 0;
  text-align: center;
  color: var(--muted);
  transition: color 0.2s;
}

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

/* ── BUTTONS ── */
.btn-primary {
  background: var(--gold);
  color: var(--bg);
  padding: 10px 22px;
  border-radius: 20px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

.btn-outline {
  border: 1px solid var(--border);
  color: var(--text);
  padding: 10px 22px;
  border-radius: 6px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* ── HAMBURGER — hidden on desktop ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}

/* ── MOBILE MENU — hidden by default ── */
.mobile-menu {
  display: none;
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(16px);
  z-index: 998;
  overflow-y: auto;
  flex-direction: column;
}

/* Mobile menu open state */
.mobile-menu.is-open {
  display: flex !important;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  padding: 48px 24px 40px;
  min-height: 100%;
}

.mobile-menu-inner a {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
  text-align: center;
}

.mobile-menu-inner a:hover {
  color: var(--accent);
}

.mobile-cta {
  font-size: 15px !important;
  padding: 12px 36px !important;
  width: 100%;
  text-align: center;
}

.mobile-menu-social {
  display: flex;
  gap: 16px;
  align-items: center;
}

.mobile-menu-social .footer-social-btn {
  width: 48px;
  height: 48px;
}

.mobile-menu-contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  width: 100%;
  margin-top: auto;
}

.mobile-menu-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "DM Sans", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: var(--text) !important;
  cursor: pointer;
  transition: color 0.2s !important;
}

.mobile-menu-contact a:hover {
  color: var(--accent) !important;
}

/* ── MOBILE ONLY ── */
@media (max-width: 768px) {
  /* Hide desktop elements */
  .nav-links,
  .nav-cta,
  .btn-primary {
    display: none !important;
  }

  /* Show hamburger */
  .hamburger {
    display: flex;
  }

  /* Hamburger → X animation */
  .hamburger.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.is-active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* ── SINGLE POST ── */
.single-hero {
  padding-top: 100px;
}

.single-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 48px 0 32px;
  text-align: center;
}

.cat-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.single-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 24px;
}

.single-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 13px;
  color: var(--muted);
  flex-wrap: wrap;
}

.meta-dot {
  color: var(--muted2);
}

.btn-share {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 13px;
  cursor: pointer;
  transition:
    border-color 0.2s,
    color 0.2s;
}

.btn-share:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.single-featured-image {
  width: 100%;
  max-height: 500px;
  overflow: hidden;
  margin-top: 32px;
}

.single-featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── POST CONTENT ── */
.single-content-section {
  padding: 60px 0;
}

.single-content-inner {
  max-width: 800px;
  margin: 0 auto;
}

.post-content {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
}

.post-content h2 {
  font-size: 28px;
  margin: 40px 0 16px;
  color: var(--white);
}

.post-content h3 {
  font-size: 22px;
  margin: 32px 0 12px;
  color: var(--white);
}

.post-content p {
  margin-bottom: 20px;
  color: var(--white);
  font-family: Inter;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
}

.post-content ul,
.post-content ol {
  margin: 20px 0 20px 24px;
  color: var(--muted);
}

.post-content li {
  margin-bottom: 8px;
}

.post-content img {
  width: 100%;
  border-radius: 8px;
  margin: 32px 0;
}

.post-content blockquote {
  border-left: 3px solid var(--accent);
  padding: 16px 24px;
  margin: 32px 0;
  background: var(--card);
  border-radius: 0 8px 8px 0;
  color: var(--text);
  font-style: italic;
}

.single-share-bottom {
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}

/* ── AUTHOR BOX ── */
.author-section {
  padding: 40px 0;
  border-top: 1px solid var(--border);
}

.author-box {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px;
}

.author-avatar img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
}

.author-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}
.author-designation {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.author-bio {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 4px;
}

.author-role {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* CF7 Form Styling */
.newsletter-form .wpcf7-form {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

.newsletter-form .wpcf7-email {
  flex: 1;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  min-width: 250px;
}

.newsletter-form .wpcf7-email::placeholder {
  color: var(--muted2);
}

.newsletter-form .wpcf7-email:focus {
  border-color: var(--accent);
}

.newsletter-form .wpcf7-submit {
  background: var(--gold);
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
}

.newsletter-form .wpcf7-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* CF7 validation messages */
.newsletter-form .wpcf7-not-valid-tip {
  color: var(--accent);
  font-size: 12px;
}

.newsletter-form .wpcf7-response-output {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid var(--border);
  color: var(--muted);
  width: 100%;
}

/* Mobile */
@media (max-width: 768px) {
  .newsletter-form .wpcf7-form {
    flex-direction: column;
  }

  .newsletter-form .wpcf7-email {
    width: 100%;
  }

  .newsletter-form .wpcf7-submit {
    width: 100%;
  }
}

/* ── NEWSLETTER SECTION ── */
.newsletter-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.newsletter-inner {
  max-width: 800px;
  margin: 0 auto;
}

.newsletter-text {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* CF7 Form Styling */
.newsletter-form .wpcf7-form {
  display: flex !important;
  flex-direction: row !important;
  gap: 16px;
  align-items: flex-start;
}

.newsletter-form .wpcf7-form p {
  margin: 0 !important;
  padding: 0 !important;
}

/* Email field wrapper */
.newsletter-form .wpcf7-form p:first-child {
  flex: 1;
}

.newsletter-form .wpcf7-email {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.newsletter-form .wpcf7-email::placeholder {
  color: var(--muted2);
}

.newsletter-form .wpcf7-email:focus {
  border-color: var(--gold);
}

/* Submit button */
.newsletter-form .wpcf7-submit {
  background: var(--gold);
  color: var(--bg);
  padding: 12px 28px;
  border-radius: 8px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
  white-space: nowrap;
  height: 46px;
}

.newsletter-form .wpcf7-submit:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* Validation */
.newsletter-form .wpcf7-not-valid-tip {
  color: var(--accent);
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.newsletter-form .wpcf7-response-output {
  margin-top: 12px;
  padding: 10px 16px;
  border-radius: 6px;
  font-size: 13px;
  border: 1px solid var(--border);
  color: var(--muted);
}

/* Mobile */
@media (max-width: 768px) {
  .newsletter-form .wpcf7-form {
    flex-direction: column !important;
  }

  .newsletter-form .wpcf7-submit {
    width: 100%;
  }
}

/* ── RELATED POSTS ── */
.related-posts-section {
  padding: 60px 0;
  border-top: 1px solid var(--border);
}

.related-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 32px;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
  display: block;
}

.related-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.related-card-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
}

.related-card-body {
  padding: 16px;
}

.related-card-body h4 {
  font-size: 14px;
  color: var(--text);
  line-height: 1.4;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .author-box {
    flex-direction: column;
    text-align: center;
  }

  .single-meta {
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 480px) {
  .related-grid {
    grid-template-columns: 1fr;
  }
}

/* ── FOOTER ── */
/* ── CRM AUDIT FORM ── */
.crm-form-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.crm-form-row {
  display: flex;
  gap: 20px;
}

.crm-form-row.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.crm-form-row.one-col {
  display: flex;
  flex-direction: column;
}

.crm-form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.crm-form-field label {
  font-size: 13px;
  color: var(--muted);
  font-family: "DM Sans", sans-serif;
}

.crm-form-field input {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}

.crm-form-field input:focus {
  border-color: var(--accent);
}

.crm-form-field input::placeholder {
  color: var(--muted2);
}

/* Submit Button */
.crm-form-grid .wpcf7-submit {
  width: 100%;
  background: var(--accent);
  color: var(--white);
  padding: 16px;
  border-radius: 8px;
  font-family: "Syne", sans-serif;
  font-weight: 600;
  font-size: 16px;
  border: none;
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.15s;
}

.crm-form-grid .wpcf7-submit:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* Validation */
.crm-form-grid .wpcf7-not-valid-tip {
  color: var(--accent);
  font-size: 12px;
  margin-top: 4px;
}

.crm-form-grid .wpcf7-response-output {
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 13px;
  border: 1px solid var(--border);
  color: var(--muted);
  margin-top: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .crm-form-row.two-col {
    grid-template-columns: 1fr;
  }
}

/* ── BLOG HERO ── */
.blog-hero {
  padding-top: 80px;
  text-align: center;
}

.blog-hero-inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 60px 0 0;
}

.blog-cat-label {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.blog-hero-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 5vw, 48px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 32px;
}

.blog-hero-image {
  width: 100%;
  max-height: 400px;
  overflow: hidden;
  border-radius: 12px;
  margin-bottom: 32px;
}

.blog-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-hero-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.8;
  max-width: 600px;
  margin: 0 auto;
}

/* ── BLOG GRID ── */
.blog-grid-section {
  padding: 60px 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition:
    border-color 0.2s,
    transform 0.2s;
  display: flex;
  flex-direction: column;
}

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

.blog-card-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}

.blog-card-no-image {
  width: 100%;
  height: 100%;
  background: var(--bg2);
}

.blog-card-cat {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: var(--white);
  font-size: 10px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.blog-card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}

.blog-card-title {
  font-family: "Syne", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--text);
  flex: 1;
}

.blog-card-title a {
  color: var(--text);
  transition: color 0.2s;
}

.blog-card-title a:hover {
  color: var(--accent);
}

.blog-card-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  transition: background 0.2s;
  font-family: "Syne", sans-serif;
}

.blog-card-btn:hover {
  background: var(--accent2);
  color: var(--white);
}

/* ── PAGINATION ── */
.blog-pagination {
  margin-top: 48px;
  display: flex;
  justify-content: center;
}

.blog-pagination .nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid var(--border);
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: all 0.2s;
}

.blog-pagination .page-numbers:hover,
.blog-pagination .page-numbers.current {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.blog-no-posts {
  text-align: center;
  color: var(--muted);
  padding: 60px 0;
  font-size: 16px;
}

/* ── BLOG FORM SECTION ── */
.blog-form-section {
  padding: 80px 0;
  border-top: 1px solid var(--border);
}

.blog-form-inner {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.blog-form-title {
  font-family: "Syne", sans-serif;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.blog-form-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 40px;
}

.blog-form-wrap {
  text-align: left;
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero-title {
    font-size: 28px;
  }
}
/* ── FOOTER ── */
#site-footer {
  background: var(--bg);
  margin-top: 60px;
}

.footer-top-border {
  height: 1px;
  1px solid var(--border)
  margin-bottom: 40px;
}

.footer-bottom-border {
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--accent2),
    #4f8ef7,
    transparent
  );
  margin-top: 40px;
}

.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-heading {
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
  margin: 0 0 20px;
  letter-spacing: 0.2px;
}

/* Contact */
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-icon {
  color: var(--muted);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.footer-contact-list a {
  font-size: 13px;
  color: var(--muted);
  transition: color 0.2s;
}

.footer-contact-list a:hover {
  color: var(--text);
}

/* Social */
.footer-social-icons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  transition:
    border-color 0.2s,
    color 0.2s;
}

.footer-social-btn:hover {
  border-color: var(--text);
  color: var(--text);
}

/* Copyright */
.footer-copyright {
  padding: 20px 24px;
  text-align: center;
}

.footer-copyright p {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}

/* Mobile */
@media (max-width: 768px) {
  #site-footer {
    box-shadow: inset 1px 0 0 rgba(79, 142, 247, 0.55), inset -1px 0 0 rgba(79, 142, 247, 0.55);
  }

  .footer-inner {
    flex-direction: column;
    gap: 0;
  }

  .footer-contact {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
    width: 100%;
  }

  .footer-social {
    padding-top: 28px;
    padding-bottom: 8px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 16px;
    width: 100%;
  }

  .footer-social .footer-heading {
    margin: 0;
    white-space: nowrap;
  }

  .footer-social .footer-heading::after {
    content: " :";
  }

  .footer-contact-list a,
  .footer-icon {
    font-size: 14px;
  }

  .footer-icon svg {
    width: 22px;
    height: 22px;
  }

  .footer-social-btn {
    width: 44px;
    height: 44px;
  }
}

/* ── SUCCESS STORIES ── */
.success-stories-section {
  padding: 80px 0;
}

.stories-heading {
  font-family: "Syne", sans-serif;
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 40px;
}

.stories-track-wrap {
  overflow: hidden;
  position: relative;
}

.stories-track {
  display: flex;
  gap: 20px;
  transition: transform 0.4s ease;
}

.story-card {
  flex: 0 0 220px;
  min-height: 200px;
  border-radius: 16px;
  padding: 28px 24px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  user-select: none;
}

.story-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.story-card-logo img {
  max-height: 48px;
  width: auto;
  object-fit: contain;
}

.story-card-tagline {
  font-size: 12px;
  margin: 8px 0 0;
  line-height: 1.4;
}

.story-card-cta {
  font-size: 13px;
  font-weight: 600;
  margin-top: 24px;
  font-family: "Syne", sans-serif;
}

/* Dots */
.stories-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.stories-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted2);
  cursor: pointer;
  transition:
    background 0.2s,
    transform 0.2s;
  border: none;
  padding: 0;
}

.stories-dot.active {
  background: var(--white);
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .story-card {
    flex: 0 0 180px;
  }
}
