/* Adsprospect theme styles — ported from the original static landing page. */

* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --bg: #060b14;
  --bg2: #0a1220;
  --card: #0e1726;
  --border: rgba(255,255,255,0.08);
  --teal: #2dd4bf;
  --blue: #38bdf8;
  --grad: linear-gradient(135deg, #38bdf8 0%, #2dd4bf 100%);
  --text: #e6edf5;
  --text-dim: #8b9bb0;
  --text-dimmer: #5a6b80;
}
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.screen-reader-text { position: absolute !important; clip: rect(1px,1px,1px,1px); overflow: hidden; height: 1px; width: 1px; }

/* Background glow */
.glow {
  position: fixed;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(56,189,248,0.12) 0%, rgba(45,212,191,0.06) 40%, transparent 70%);
  pointer-events: none;
  z-index: 0;
  animation: pulse 8s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }

/* Nav */
nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(6,11,20,0.7);
  border-bottom: 1px solid var(--border);
}
nav .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
}
.logo {
  font-size: 20px; font-weight: 800; letter-spacing: -0.5px;
  display: flex; align-items: center; gap: 8px;
  text-decoration: none; color: var(--text);
}
.logo .dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--grad);
  box-shadow: 0 0 16px rgba(56,189,248,0.8);
  flex-shrink: 0;
}
.logo img.custom-logo { max-height: 32px; width: auto; }
.navlinks { display: flex; gap: 32px; list-style: none; }
.navlinks li { display: block; }
.navlinks a {
  color: var(--text-dim); text-decoration: none; font-size: 14.5px; font-weight: 500;
  transition: color 0.2s;
}
.navlinks a:hover, .navlinks .current-menu-item > a { color: var(--text); }
.nav-cta {
  background: var(--grad);
  color: #03161a; font-weight: 700; font-size: 14px;
  padding: 10px 20px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.nav-cta:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(56,189,248,0.35); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 36px; height: 36px; padding: 0; background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span {
  display: block; width: 100%; height: 2px; border-radius: 2px;
  background: var(--text); transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .navlinks {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: rgba(6,11,20,0.98); backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    max-height: 0; overflow: hidden; opacity: 0;
    transition: max-height 0.3s ease, opacity 0.3s ease;
  }
  .navlinks.nav-open { max-height: 400px; opacity: 1; }
  .navlinks li { width: 100%; }
  .navlinks a { display: block; padding: 16px 24px; border-top: 1px solid var(--border); }
}

/* Hero */
.hero {
  position: relative; z-index: 1;
  padding: 110px 24px 90px;
  text-align: center;
}
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(45,212,191,0.1);
  border: 1px solid rgba(45,212,191,0.3);
  color: var(--teal);
  font-size: 13px; font-weight: 600;
  padding: 7px 16px; border-radius: 100px;
  margin-bottom: 28px;
  animation: fadeUp 0.8s ease both;
}
.badge .pulse-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--teal);
  box-shadow: 0 0 8px var(--teal);
  animation: blink 1.6s infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

h1.hero-title {
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 800; line-height: 1.08; letter-spacing: -1.5px;
  max-width: 880px; margin: 0 auto 24px;
  animation: fadeUp 0.8s ease 0.1s both;
}
h1.hero-title .grad-text {
  background: var(--grad);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero-sub {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-dim);
  max-width: 620px; margin: 0 auto 40px;
  line-height: 1.6;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.3s both;
  margin-bottom: 64px;
}
.btn-primary {
  background: var(--grad); color: #03161a; font-weight: 700; font-size: 15.5px;
  padding: 16px 32px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(56,189,248,0.4); }
.btn-secondary {
  background: transparent; color: var(--text); font-weight: 600; font-size: 15.5px;
  padding: 16px 32px; border-radius: 100px; border: 1px solid var(--border); cursor: pointer;
  transition: all 0.2s;
  text-decoration: none; display: inline-block;
}
.btn-secondary:hover { border-color: var(--teal); background: rgba(45,212,191,0.06); }

@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* Trust bar */
.trust-bar {
  display: flex; justify-content: center; gap: 56px; flex-wrap: wrap;
  padding-top: 24px; border-top: 1px solid var(--border);
  animation: fadeUp 0.8s ease 0.4s both;
}
.trust-item { text-align: center; }
.trust-num {
  font-size: 28px; font-weight: 800;
  background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent;
}
.trust-label { font-size: 13px; color: var(--text-dimmer); margin-top: 4px; }

/* Section headers */
.section { position: relative; z-index: 1; padding: 90px 24px; }
.section-tag {
  color: var(--teal); font-size: 13px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 14px; text-align: center;
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px;
  text-align: center; margin-bottom: 18px;
}
.section-sub {
  color: var(--text-dim); text-align: center; max-width: 580px;
  margin: 0 auto 56px; font-size: 16px; line-height: 1.6;
}

/* Services grid */
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 30px 26px; transition: transform 0.3s, border-color 0.3s, background 0.3s;
  cursor: default;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(45,212,191,0.4);
  background: linear-gradient(160deg, #0e1726 0%, #111d2e 100%);
}
.service-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(56,189,248,0.1); border: 1px solid rgba(56,189,248,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; margin-bottom: 18px;
}
.service-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.service-card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }

/* Founders / "Rooted in Jewellery" section */
.founders-stack {
  display: flex; flex-direction: column; gap: 24px;
  max-width: 900px; margin: 0 auto;
}
.founder-card {
  display: grid; grid-template-columns: 220px 1fr; gap: 44px; align-items: center;
  background: var(--card); border: 1px solid var(--border); border-radius: 24px;
  padding: 44px;
}
@media (max-width: 700px) { .founder-card { grid-template-columns: 1fr; text-align: center; } }
.founder-photo {
  width: 180px; height: 180px; border-radius: 50%; overflow: hidden; margin: 0 auto;
  background: var(--grad); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border);
}
.founder-photo img { width: 100%; height: 100%; object-fit: cover; }
.founder-photo .founder-initials { font-size: 42px; font-weight: 800; color: #03161a; }
.founder-bio p.bio-text { color: var(--text-dim); font-size: 15px; line-height: 1.75; margin-bottom: 18px; }
.founder-bio .founder-name { font-size: 17px; font-weight: 700; }
.founder-bio .founder-role { font-size: 13.5px; color: var(--text-dimmer); }

/* "Why this segment" reason block nested inside each niche card */
.niche-card-reason {
  margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--border);
}
.niche-card-reason h4 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.niche-card-reason p.body-text { color: var(--text-dim); font-size: 14px; line-height: 1.7; margin-bottom: 14px; }
.niche-card-reason p.point-text {
  color: var(--text); font-size: 13.5px; line-height: 1.6;
  border-left: 3px solid var(--teal); padding-left: 14px;
}
.niche-card-reason p.point-text strong { color: var(--teal); }

/* Niche split (jewellery segments) */
.niche-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 24px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 760px) { .niche-grid { grid-template-columns: 1fr; } }
.niche-card {
  border-radius: 20px; padding: 36px;
  border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.niche-card.accent-a { background: linear-gradient(160deg, rgba(56,189,248,0.08), transparent); }
.niche-card.accent-b { background: linear-gradient(160deg, rgba(45,212,191,0.08), transparent); }
.niche-emoji { font-size: 36px; margin-bottom: 16px; display: block; }
.niche-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 12px; }
.niche-card p { color: var(--text-dim); line-height: 1.7; font-size: 15px; margin-bottom: 16px; }
.niche-list { list-style: none; }
.niche-list li {
  color: var(--text); font-size: 14px; padding: 6px 0 6px 24px; position: relative;
}
.niche-list li::before {
  content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 800;
}

/* Process */
.process-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .process-row { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-row { grid-template-columns: 1fr; } }
.process-step { position: relative; padding: 28px 22px; }
.process-num {
  font-size: 42px; font-weight: 800; opacity: 0.15; line-height: 1;
  margin-bottom: 8px;
}
.process-step h4 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.process-step p { color: var(--text-dim); font-size: 14px; line-height: 1.6; }

/* Testimonials */
.testi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform 0.3s;
}
.testi-card:hover { transform: translateY(-4px); }
.stars { color: #fbbf24; font-size: 14px; margin-bottom: 14px; letter-spacing: 2px; }
.testi-card p.quote { color: var(--text); font-size: 14.5px; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-person { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 38px; height: 38px; border-radius: 50%; background: var(--grad);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; color: #03161a; font-size: 14px; flex-shrink: 0;
  overflow: hidden;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 14px; font-weight: 700; }
.testi-role { font-size: 12.5px; color: var(--text-dimmer); }

/* CTA section */
.cta-section {
  max-width: 1000px; margin: 0 auto; text-align: center;
  background: linear-gradient(135deg, rgba(56,189,248,0.1), rgba(45,212,191,0.1));
  border: 1px solid rgba(56,189,248,0.25);
  border-radius: 28px; padding: 64px 40px;
  position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 30% 20%, rgba(56,189,248,0.15), transparent 50%);
}
.cta-section h2 { font-size: clamp(26px,4vw,38px); font-weight: 800; margin-bottom: 16px; position: relative; }
.cta-section p { color: var(--text-dim); margin-bottom: 32px; font-size: 16px; position: relative; }
.cta-section .cf7-wrap { position: relative; max-width: 480px; margin: 0 auto; }
.cta-section .cf7-notice {
  position: relative; text-align: left; background: rgba(255,255,255,0.06);
  border: 1px dashed var(--border); border-radius: 12px; padding: 16px 20px;
  font-size: 13.5px; color: var(--text-dim);
}

/* Contact Form 7 styling to match original .cta-form look */
.cta-section .wpcf7-form {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; max-width: 480px; margin: 0 auto;
}
.cta-section .wpcf7-form p { flex: 1; min-width: 200px; margin: 0; display: flex; }
.cta-section .wpcf7-form .wpcf7-form-control-wrap { flex: 1; display: flex; }
.cta-section .wpcf7-form input[type=email],
.cta-section .wpcf7-form input[type=text],
.cta-section .wpcf7-form input[type=tel] {
  flex: 1; min-width: 200px; width: 100%;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 100px; padding: 14px 20px; color: var(--text); font-size: 14.5px;
  outline: none; transition: border-color 0.2s;
}
.cta-section .wpcf7-form input:focus { border-color: var(--teal); }
.cta-section .wpcf7-form input::placeholder { color: var(--text-dimmer); }
.cta-section .wpcf7-form input[type=submit] {
  background: var(--grad); color: #03161a; font-weight: 700; font-size: 15.5px;
  padding: 16px 32px; border-radius: 100px; border: none; cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s; flex: none;
}
.cta-section .wpcf7-form input[type=submit]:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(56,189,248,0.4); }
.cta-section .wpcf7-response-output {
  margin: 16px auto 0; max-width: 480px; font-size: 14px; font-weight: 600;
  color: var(--teal); border-radius: 12px; border-color: var(--border) !important;
}
.cta-section .wpcf7-not-valid-tip { color: #fb7185; font-size: 12.5px; text-align: left; margin-top: 4px; }
.cta-section form.cta-form-fallback {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
  position: relative; max-width: 480px; margin: 0 auto;
}
.cta-section form.cta-form-fallback input[type=email] {
  flex: 1; min-width: 200px;
  background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 100px; padding: 14px 20px; color: var(--text); font-size: 14.5px;
  outline: none;
}

/* Footer */
footer {
  border-top: 1px solid var(--border); padding: 48px 24px 32px;
  position: relative; z-index: 1;
}
.footer-grid {
  display: flex; justify-content: space-between; align-items: flex-start;
  max-width: 1180px; margin: 0 auto; flex-wrap: wrap; gap: 32px;
}
.footer-brand p { color: var(--text-dimmer); font-size: 13.5px; margin-top: 10px; max-width: 280px; line-height: 1.6; }
.footer-cols { display: flex; gap: 56px; flex-wrap: wrap; }
.footer-col h5 { font-size: 13px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col a:hover { color: var(--teal); }
.footer-bottom {
  max-width: 1180px; margin: 40px auto 0; padding-top: 24px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  color: var(--text-dimmer); font-size: 13px;
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------------------------------- */
/* Blog / archive / single / page / case study / testimonial   */
/* ---------------------------------------------------------- */

.page-header { padding: 90px 24px 40px; text-align: center; position: relative; z-index: 1; }
.page-header .section-title { margin-bottom: 12px; }

.post-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 1180px; margin: 0 auto;
}
@media (max-width: 900px) { .post-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .post-grid { grid-template-columns: 1fr; } }

.post-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  overflow: hidden; transition: transform 0.3s, border-color 0.3s;
  display: flex; flex-direction: column;
}
.post-card:hover { transform: translateY(-6px); border-color: rgba(45,212,191,0.4); }
.post-card .post-thumb { aspect-ratio: 16/10; overflow: hidden; background: var(--bg2); }
.post-card .post-thumb img { width: 100%; height: 100%; object-fit: cover; }
.post-card .post-card-body { padding: 24px 22px; flex: 1; display: flex; flex-direction: column; }
.post-card .post-meta { font-size: 12.5px; color: var(--text-dimmer); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.post-cat { color: var(--teal); text-decoration: none; font-weight: 700; }
.post-cat:hover { text-decoration: underline; }

.blog-cat-filter {
  display: flex; gap: 10px; flex-wrap: wrap; justify-content: center;
  max-width: 900px; margin: 0 auto 48px;
}
.blog-cat-filter a {
  padding: 8px 18px; border-radius: 100px; border: 1px solid var(--border);
  color: var(--text-dim); font-size: 13.5px; font-weight: 600; text-decoration: none;
  transition: all 0.2s;
}
.blog-cat-filter a:hover { border-color: var(--teal); color: var(--text); }
.blog-cat-filter a.active { background: var(--grad); border-color: transparent; color: #03161a; }
.post-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; line-height: 1.35; }
.post-card h3 a { color: var(--text); text-decoration: none; }
.post-card h3 a:hover { color: var(--teal); }
.post-card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; margin-bottom: 14px; }
.post-card .read-more { color: var(--teal); font-size: 13.5px; font-weight: 700; text-decoration: none; margin-top: auto; }

.pagination {
  display: flex; justify-content: center; gap: 10px; margin: 56px auto 0; flex-wrap: wrap;
  max-width: 1180px;
}
.pagination a, .pagination span {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 14px; border-radius: 100px;
  border: 1px solid var(--border); color: var(--text-dim); text-decoration: none; font-size: 14px;
}
.pagination a:hover { border-color: var(--teal); color: var(--text); }
.pagination .current { background: var(--grad); color: #03161a; font-weight: 700; border-color: transparent; }

.single-wrap { max-width: 760px; margin: 0 auto; padding: 90px 24px 100px; position: relative; z-index: 1; }
.single-wrap .post-meta { font-size: 13px; color: var(--text-dimmer); text-align: center; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.single-wrap h1.entry-title { font-size: clamp(28px, 4vw, 42px); font-weight: 800; letter-spacing: -1px; text-align: center; margin-bottom: 32px; line-height: 1.2; }
.single-wrap .post-thumb { border-radius: 18px; overflow: hidden; margin-bottom: 40px; border: 1px solid var(--border); }

.entry-content { color: var(--text); font-size: 16px; line-height: 1.8; }
.entry-content p { margin-bottom: 22px; }
.entry-content h2 { font-size: 26px; font-weight: 800; margin: 40px 0 16px; letter-spacing: -0.5px; }
.entry-content h3 { font-size: 20px; font-weight: 700; margin: 32px 0 14px; }
.entry-content a { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; }
.entry-content ul, .entry-content ol { color: var(--text-dim); margin: 0 0 22px 24px; }
.entry-content li { margin-bottom: 8px; }
.entry-content blockquote {
  border-left: 3px solid var(--teal); padding: 4px 0 4px 20px; margin: 28px 0;
  color: var(--text-dim); font-style: italic;
}
.entry-content img { border-radius: 14px; margin: 24px 0; }
.entry-content figcaption { color: var(--text-dimmer); font-size: 13px; text-align: center; margin-top: -14px; margin-bottom: 24px; }

.page-content-wrap { max-width: 760px; margin: 0 auto; padding: 0 24px 100px; position: relative; z-index: 1; }

/* Case studies */
.case-study-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1180px; margin: 0 auto; }
@media (max-width: 900px) { .case-study-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .case-study-grid { grid-template-columns: 1fr; } }
.case-study-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 18px;
  padding: 28px; transition: transform 0.3s, border-color 0.3s; display: block; text-decoration: none;
}
.case-study-card:hover { transform: translateY(-6px); border-color: rgba(45,212,191,0.4); }
.case-study-card .cs-tag { color: var(--teal); font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px; }
.case-study-card h3 { color: var(--text); font-size: 19px; font-weight: 700; margin-bottom: 10px; }
.case-study-card p { color: var(--text-dim); font-size: 14.5px; line-height: 1.6; }
.case-study-card .cs-client { color: var(--text-dimmer); font-size: 13px; margin-top: 14px; }

.cs-stats-row {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  max-width: 760px; margin: 0 auto 48px;
}
@media (max-width: 560px) { .cs-stats-row { grid-template-columns: 1fr; } }
.cs-stat {
  background: var(--card); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; text-align: center;
}
.cs-stat .cs-stat-num { font-size: 30px; font-weight: 800; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.cs-stat .cs-stat-label { font-size: 13px; color: var(--text-dimmer); margin-top: 6px; }

/* Testimonial single */
.testimonial-single { max-width: 640px; margin: 0 auto; text-align: center; padding: 90px 24px 100px; position: relative; z-index: 1; }
.testimonial-single .stars { justify-content: center; display: flex; }
.testimonial-single .quote { font-size: 20px; line-height: 1.6; font-style: italic; margin: 24px 0 28px; }
.testimonial-single .testi-person { justify-content: center; }

/* Widget-area footer columns (Appearance > Widgets) */
.footer-col .widget { margin-bottom: 20px; }
.footer-col .widget-title { font-size: 13px; color: var(--text-dimmer); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.footer-col .widget ul { list-style: none; }
.footer-col .widget a { display: block; color: var(--text-dim); text-decoration: none; font-size: 14px; margin-bottom: 10px; transition: color 0.2s; }
.footer-col .widget a:hover { color: var(--teal); }

/* Comments */
.comments-area { max-width: 760px; margin: 56px auto 0; padding: 0 24px; position: relative; z-index: 1; }
.comments-title { font-size: 22px; font-weight: 800; margin-bottom: 24px; }
.comment-list { list-style: none; }
.comment-list .comment-body {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 20px 22px; margin-bottom: 16px;
}
.comment-list .comment-author .fn { font-weight: 700; font-size: 14px; font-style: normal; }
.comment-list .comment-metadata { font-size: 12.5px; margin-bottom: 10px; }
.comment-list .comment-metadata a { color: var(--text-dimmer); text-decoration: none; }
.comment-list .comment-content p { color: var(--text-dim); font-size: 14.5px; line-height: 1.7; }
.comment-list .children { list-style: none; margin-left: 28px; }
.comments-closed { color: var(--text-dim); }

#commentform { margin-top: 24px; }
#commentform p { margin-bottom: 16px; }
#commentform label { display: block; font-size: 13.5px; color: var(--text-dim); margin-bottom: 6px; }
#commentform input[type=text], #commentform input[type=email], #commentform input[type=url], #commentform textarea {
  width: 100%; background: rgba(255,255,255,0.06); border: 1px solid var(--border);
  border-radius: 12px; padding: 12px 16px; color: var(--text); font-size: 14.5px; outline: none;
  font-family: inherit;
}
#commentform input:focus, #commentform textarea:focus { border-color: var(--teal); }
#commentform .comment-form-cookies-consent { display: flex; align-items: center; gap: 8px; }
#commentform .comment-form-cookies-consent input { width: auto; }
.comment-reply-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
