/*
Theme Name: SquadX Theme
Theme URI: https://squadx.in
Author: SquadX
Author URI: https://squadx.in
Description: A custom WordPress theme for SquadX with a premium blockchain-focused landing page and content templates.
Version: 1.0.5
Text Domain: squadx-theme
*/

:root {
  --bg: #EAF2FC;
  --bg-2: #DCEAFB;
  --panel: #FFFFFF;
  --indigo: #3E7BFA;
  --violet: #4FA6F7;
  --text: #10233F;
  --muted: #5D7290;
  --line: rgba(16, 35, 63, 0.09);
  --glass-fill: rgba(255, 255, 255, 0.45);
  --glass-fill-strong: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.7);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(600px 500px at 15% -10%, rgba(62, 123, 250, 0.22), transparent 60%),
    radial-gradient(700px 600px at 90% 15%, rgba(79, 166, 247, 0.20), transparent 60%),
    radial-gradient(500px 500px at 50% 110%, rgba(62, 123, 250, 0.14), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
.display {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  letter-spacing: -0.01em;
}

a {
  color: inherit;
  text-decoration: none;
}

main,
footer,
header {
  position: relative;
  z-index: 1;
}

.wrap,
.section-row,
.footer-inner,
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
}

.wrap {
  padding: 0 32px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.nav {
  position: relative;
  z-index: 50;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(18px) saturate(140%);
  -webkit-backdrop-filter: blur(18px) saturate(140%);
  border-bottom: 1px solid var(--line);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 28px 32px 20px;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 220px;
}

.logo-image {
  width: 130px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-links a,
.nav-dropdown-toggle {
  color: rgba(16, 35, 63, 0.9);
  font-size: 16px;
  font-weight: 500;
  transition: color .15s ease;
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
}

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

.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 16px;
  color: rgba(16, 35, 63, 0.9);
}

.caret {
  font-size: 24px;
  display: inline-block;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0px);
  left: 0;
  min-width: 180px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(16, 35, 63, 0.08);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(15, 30, 58, 0.08);
  padding: 10px 12px;
  display: none;
  z-index: 50;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu {
  display: block;
}

.nav-dropdown-menu a {
  display: block;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 14px;
}

.nav-dropdown-menu a:hover {
  background: rgba(62, 123, 250, 0.06);
}

.nav-cta {
  padding: 10px 20px;
  border-radius: 10px;
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  font-size: 14px;
  font-weight: 500;
  transition: background .15s ease, border-color .15s ease;
}

.nav-cta:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(62, 123, 250, 0.35);
}

.nav-toggle {
  display: none;
}

.nav-mobile-panel {
  display: none;
}

.top-notice {
  position: relative;
  z-index: 10;
  background: #f5a623;
  color: #111827;
  text-align: center;
  padding: 18px 28px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}

.top-notice strong {
  font-weight: 700;
}

.hero {
  position: relative;
  padding: 120px 32px 100px;
  display: flex;
  justify-content: center;
  z-index: 1;
  background-image: url(https://squadx.in/wp-content/uploads/2026/09/intro-bg.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 760px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-inner h1 {
  font-size: 52px;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.hero-inner p {
  max-width: 520px;
  color: var(--muted);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.btn-primary,
.btn-ghost,
.submit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  transition: transform .15s ease;
}

.btn-primary {
  padding: 13px 26px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  box-shadow: 0 8px 30px rgba(62, 123, 250, 0.35);
}

.btn-ghost {
  padding: 13px 26px;
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
  font-weight: 500;
}

.section {
  position: relative;
  z-index: 1;
  padding: 80px 32px;
}

.section-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.section-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.section-row.reverse .col-text {
  order: 2;
}

.section-row.reverse .col-panel {
  order: 1;
}

.kicker {
  font-size: 14px;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 14px;
}

.col-text h2 {
  font-size: 32px;
  margin-bottom: 18px;
  line-height: 1.2;
}

.col-text p {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
}

.col-text p + p {
  margin-top: 14px;
}

.glass-panel {
  background: var(--glass-fill);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: 24px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.glass-panel::before {
  content: "";
  position: absolute;
  top: -40%;
  left: -20%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(62, 123, 250, 0.18), transparent 70%);
  pointer-events: none;
}

.equation {
  display: flex;
  flex-direction: column;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.eq-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 14px;
}

.eq-row .sym {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 22px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  min-width: 72px;
  text-align: center;
}

.eq-row .def {
  font-size: 15px;
  color: var(--text);
}

.eq-row .def span {
  color: var(--muted);
}

.services-section {
  padding: 80px 32px 60px;
}

.services-header {
  max-width: 1040px;
  margin: 0 auto 42px;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  font-weight: 600;
}

.services-grid {
  max-width: 1220px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 34px 28px;
}

.service-card {
  position: relative;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  padding: 28px 24px 22px;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  box-shadow: 0 22px 48px rgba(16, 35, 63, 0.05);
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--text);
}

.service-card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 340px;
}

.service-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 170px;
  max-width: 100%;
  padding: 14px 18px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  border: 1px solid rgba(62, 123, 250, 0.18);
  border-radius: 12px;
  color: #fff;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  box-shadow: 0 14px 28px rgba(62, 123, 250, 0.18);
  margin-top: auto;
}

.service-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(62, 123, 250, 0.22);
}

.belief {
  padding: 100px 32px;
  text-align: center;
}

.belief-inner {
  max-width: 720px;
  margin: 0 auto;
}

.belief blockquote {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.4;
  color: var(--text);
}

.belief .accent {
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.gallery-page {
  padding: 80px 32px 120px;
  background: #dfeaf8;
}

.gallery-hero {
  max-width: 1200px;
  margin: 0 auto 28px;
  text-align: center;
}

.gallery-hero-inner {
  max-width: 860px;
  margin: 0 auto;
}

.gallery-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 1.06;
  letter-spacing: -0.05em;
  color: var(--text);
  margin-bottom: 18px;
}

.gallery-hero p {
  font-size: clamp(1rem, 1.6vw, 1.5rem);
  line-height: 1.6;
  color: var(--muted);
}

.gallery-section {
  max-width: 1280px;
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 48px rgba(16, 35, 63, 0.05);
  min-height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

/* .gallery-item:nth-child(2n) {
  transform: translateY(24px);
}

.gallery-item:nth-child(3n) {
  transform: translateY(-12px);
} */

.about-page {
  background: #dfeaf8;
  color: var(--text);
  padding: 80px 32px 120px;
}

.about-section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 0 42px;
}

.about-hero {
  position: relative;
  max-width: 1500px;
  margin: 0 auto;
  padding: 40px 32px 40px;
  text-align: center;
}

.about-hero-inner {
  max-width: 980px;
  margin: 0 auto;
}

.about-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.3rem, 3.8vw, 4.1rem);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--text);
  margin-bottom: 16px;
}

.about-hero p {
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.45rem);
  line-height: 1.6;
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 36px;
  align-items: center;
}

.about-story-copy h2,
.leaders-header h2,
.about-values h2,
.about-vision h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 14px;
}

.about-story-copy p,
.value-card p,
.leader-meta p,
.about-vision p {
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
  line-height: 1.7;
  margin-bottom: 12px;
}

.about-vision {
  padding-top: 12px;
}

.about-vision h2 {
  max-width: 1040px;
}

.about-panel {
  padding: 28px 24px;
}

.about-stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  align-items: center;
  gap: 16px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 14px;
  padding: 18px 20px;
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 3vw, 3.8rem);
  line-height: 1;
  letter-spacing: -0.05em;
  color: var(--indigo);
  font-weight: 700;
}

.plus {
  color: var(--indigo);
}

.stat-label {
  font-size: 0.96rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
}

.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px;
  margin-top: 18px;
}

.leader-card {
  display: flex;
  align-items: center;
  gap: 24px;
  background: rgba(255, 255, 255, 0.22);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  padding: 18px;
  box-shadow: 0 18px 48px rgba(16, 35, 63, 0.04);
}

.leader-portrait {
  width: 170px;
  min-width: 170px;
  height: 170px;
  overflow: hidden;
  border-radius: 18px;
  background: #dfeaf8;
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.leader-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}

.leader-meta {
  flex: 1;
}

.leader-meta h3 {
  font-size: clamp(1.5rem, 2vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--text);
  margin-bottom: 6px;
}

.leader-meta span {
  display: inline-block;
  color: var(--indigo);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.leader-meta p {
  margin: 0;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

.about-values {
  padding-top: 48px;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 22px;
}

.value-card {
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 22px;
  padding: 24px 20px;
  min-height: 210px;
}

.value-card h3 {
  font-size: clamp(1.3rem, 1.8vw, 2rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
  color: var(--text);
}

.kicker {
  font-size: 14px;
  color: var(--indigo);
  font-weight: 500;
  margin-bottom: 14px;
}

@media (max-width: 900px) {
  .about-story-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .leadership-grid {
    grid-template-columns: 1fr;
  }

  .leader-card {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .about-page {
    padding-left: 18px;
    padding-right: 18px;
  }

  .about-hero {
    padding-left: 0;
    padding-right: 0;
  }

  .about-hero h1 {
    font-size: clamp(2.1rem, 9vw, 3.2rem);
  }

  .about-hero p {
    font-size: 1rem;
  }

  .stat-row {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .leader-portrait {
    width: 100%;
    min-width: 100%;
    height: 220px;
  }
}

.contact {
  padding: 100px 32px 120px;
}

.contact-panel {
  max-width: 640px;
  margin: 0 auto;
  background: var(--glass-fill-strong);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
}

.contact-panel h2 {
  font-size: 30px;
  margin-bottom: 10px;
}

.contact-panel p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 34px;
}

.form-row {
  display: flex;
  gap: 14px;
  margin-bottom: 14px;
}

.field {
  flex: 1;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 12px;
  padding: 14px 16px;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  font-size: 14.5px;
  width: 100%;
}

.field::placeholder {
  color: var(--muted);
}

.field:focus {
  outline: 2px solid var(--indigo);
  outline-offset: 2px;
  background: rgba(255, 255, 255, 0.85);
}

textarea.field {
  resize: vertical;
  min-height: 96px;
  font-family: 'Inter', sans-serif;
}

.submit-btn {
  margin-top: 8px;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  border: none;
  box-shadow: 0 8px 30px rgba(62, 123, 250, 0.3);
  font-family: 'Inter', sans-serif;
}

.submit-btn:hover {
  transform: translateY(-1px);
}

.submit-btn:focus-visible {
  outline: 2px solid var(--text);
  outline-offset: 2px;
}

footer {
  border-top: 1px solid var(--line);
  padding: 0;
}

.site-footer {
  background: rgba(255, 255, 255, 0.18);
}

/* was: display: none; on .footer-copy */
.footer-copy {
  display: block;
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.92rem;
}

/* was: grid-template-columns: 1.2fr 1.5fr 1.2fr; */
.footer-shell {
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 32px 44px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 2.2vw, 3rem);
  letter-spacing: -0.06em;
  color: var(--text);
  font-weight: 600;
  text-transform: lowercase;
}

.footer-logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  background: linear-gradient(135deg, var(--indigo), var(--violet));
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: 0 12px 24px rgba(62, 123, 250, 0.2);
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-col h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.5rem, 1.6vw, 2.2rem);
  line-height: 1.2;
  color: var(--text);
  font-weight: 500;
  margin: 0 0 8px;
}

.footer-col a {
  color: rgba(16, 35, 63, 0.88);
  font-size: 1.05rem;
  line-height: 1.6;
}

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

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

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 26px 32px 36px;
  text-align: center;
  color: rgba(16, 35, 63, 0.72);
  font-size: 0.96rem;
}

.footer-brand-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 22px;
}

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

.footer-social a {
  width: 42px;
  height: 42px;
}

.footer-social a svg {
  width: 40px;
  height: 40px;
}

.footer-social a svg path {
  fill: #3364cb;
}

.footer-social a:hover {
  transform: translateY(-2px);
}

::selection {
  background: var(--indigo);
  color: #fff;
}

@media (max-width: 900px) {
  .section-row,
  .section-row.reverse {
    grid-template-columns: 1fr;
  }

  .section-row.reverse .col-text,
  .section-row.reverse .col-panel {
    order: initial;
  }

  .about-story,
  .about-stats,
  .leadership-grid,
  .team-grid,
  .achievement-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    display: grid;
  }

  .gallery-item:nth-child(2n),
  .gallery-item:nth-child(3n) {
    transform: none;
  }
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .nav-mobile-panel {
    display: none;
    padding: 0 16px 16px;
    background: rgba(255, 255, 255, 0.75);
    border-top: 1px solid var(--line);
  }

  .nav-mobile-panel.is-open {
    display: block;
  }

  .nav-mobile-group {
    padding: 14px 0;
    border-bottom: 1px solid rgba(16, 35, 63, 0.08);
  }

  .nav-mobile-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 8px;
  }

  .nav-mobile-group a {
    display: block;
    padding: 6px 0;
    color: var(--text);
    font-size: 14px;
  }

  .nav-cta-mobile {
    display: inline-flex;
    margin-top: 16px;
  }

  .footer-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 780px) {
  .nav-inner {
    padding: 18px 16px 16px;
    gap: 12px;
  }

  .nav-toggle {
    width: 42px;
    height: 42px;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 10px 8px;
  }

  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--text);
    transition: transform .2s ease, opacity .2s ease;
  }

  .nav-toggle.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .nav-toggle.is-open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav-cta {
    padding: 8px 12px;
    font-size: 13px;
  }
}

@media (max-width: 600px) {
  .top-notice {
    padding: 12px 16px;
    font-size: 11px;
    line-height: 1.5;
  }

  .site-header {
    position: sticky;
  }

  .nav {
    background: rgba(255, 255, 255, 0.7);
  }

  .nav-inner {
    padding: 14px 16px;
  }

  .logo {
    min-width: auto;
  }

  .logo-image {
    width: 100px;
  }

  .hero {
    padding: 56px 18px 42px;
    background-size: contain;
  }

  .hero-inner {
    gap: 20px;
  }

  .hero-inner h1 {
    font-size: 32px;
    line-height: 1.08;
  }

  .hero-inner p {
    font-size: 14px;
  }

  .hero-actions {
    width: 100%;
  }

  .btn-primary,
  .btn-ghost {
    width: 100%;
    font-size: 14px;
  }

  .section {
    padding: 52px 18px;
  }

  .services-header {
    font-size: 1.8rem;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-card h3 {
    font-size: 1.25rem;
  }

  .service-card p {
    font-size: 14px;
  }

  .belief blockquote {
    font-size: 22px;
  }

  .col-text h2 {
    font-size: 26px;
  }

  .col-text p {
    font-size: 14px;
  }

  .form-row {
    flex-direction: column;
  }

  .footer-shell {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 42px 20px 20px;
    text-align: center;
  }
  .footer-brand {
    margin: 0 auto;
  }
  .footer-social {
    margin: 0 auto;
  }

  .footer-col h3 {
    font-size: 1.4rem;
  }

  .footer-col a {
    font-size: 0.9rem;
  }

  .footer-bottom-inner {
    padding-left: 20px;
    padding-right: 20px;
    font-size: 0.82rem;
  }

  .belief {
    padding: 40px 32px;
  }

  .contact {
    padding: 40px 32px 60px;
  }
  .contact-panel {
    padding: 32px 24px;
  }
  .addon-hero-panel {
    grid-template-columns: 1fr !important;
    padding: 32px 24px 36px !important;
    gap: 14px !important;
  }
  .addon-hero-visual {
    min-height: fit-content !important;
  }
  .about-page {
    padding: 40px 18px 60px;
  }
  .footer-col {
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}

.addon-page {
  position: relative;
  z-index: 1;
  padding: 0 0 80px;
}

.addon-hero {
  position: relative;
  padding: 78px 32px 44px;
  display: flex;
  justify-content: center;
  z-index: 1;
}

.addon-hero-panel {
  position: relative;
  z-index: 2;
  width: min(100%, 1280px);
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  padding: 42px 42px 46px;
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(420px, 1.3fr);
  gap: 36px;
  align-items: center;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
}

.addon-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.addon-hero-visual img {
  width: 100%;
  max-width: 540px;
  /* border-radius: 24px; */
  object-fit: cover;
  /* box-shadow: 0 24px 52px rgba(16, 35, 63, 0.12); */
}

.addon-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  color: #fff;
}

.addon-kicker {
  font-size: 15px;
  color: #222;
  font-weight: 500;
}

.addon-hero-inner h1 {
  font-size: clamp(2.8rem, 5vw, 5.2rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
  color: #222;
  margin: 0;
}

.addon-hero-inner p {
  max-width: 600px;
  font-size: clamp(1.05rem, 2vw, 1.7rem);
  color: #222;
  line-height: 1.42;
  margin: 0;
}

.addon-actions {
  display: flex;
  gap: 14px;
  margin-top: 8px;
  flex-wrap: wrap;
  justify-content: flex-start;
}

.addon-section {
  position: relative;
  z-index: 1;
  padding: 58px 32px 0;
}

.addon-row {
  max-width: 1160px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.addon-row.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.addon-row.reverse .addon-copy-block {
  order: 2;
}

.addon-row.reverse .addon-panel {
  order: 1;
}

.addon-copy-block h2 {
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.1;
  margin-bottom: 18px;
}

.addon-copy-block p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  max-width: 620px;
}

.addon-copy-block p + p {
  margin-top: 16px;
}

.addon-panel {
  position: relative;
  z-index: 1;
}

.addon-policy-strip {
  padding: 80px 32px 0;
}

.addon-policy-panel {
  max-width: 780px;
  margin: 0 auto;
  background: rgba(255,255,255,0.5);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  backdrop-filter: blur(24px) saturate(150%);
  -webkit-backdrop-filter: blur(24px) saturate(150%);
  padding: 48px 42px;
  text-align: center;
}

.addon-policy-panel h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 10px;
}

.addon-policy-panel p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 26px;
}




@media (max-width: 900px) {
  .addon-row,
  .addon-row.reverse {
    grid-template-columns: 1fr;
  }

  .addon-row.reverse .addon-copy-block,
  .addon-row.reverse .addon-panel {
    order: initial;
  }
}

@media (max-width: 640px) {
  .addon-hero {
    padding: 48px 18px 28px;
  }

  .addon-hero-glassmark {
    width: 100%;
    height: 220px;
    top: 42%;
  }

  .addon-hero-inner {
    gap: 14px;
  }

  .addon-actions {
    width: 100%;
  }

  .addon-actions .btn-primary,
  .addon-actions .btn-ghost {
    width: 100%;
  }

  .addon-section,
  .addon-policy-strip {
    padding-left: 18px;
    padding-right: 18px;
  }

  .addon-policy-panel {
    padding: 32px 20px;
  }
}

.page-shell {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 32px 120px;
}

.entry-content {
  display: grid;
  gap: 18px;
}

.entry-content h1,
.entry-content h2,
.entry-content h3 {
  color: var(--text);
}

.entry-content p,
.entry-content li {
  color: var(--muted);
}

.entry-content a {
  color: var(--indigo);
}

.entry-content img {
  border-radius: 24px;
}

.privacy-page {
  position: relative;
  padding: 0 32px 120px;
}

.privacy-hero {
  position: relative;
  padding: 80px 0 40px;
  text-align: center;
}

.privacy-hero-inner {
  max-width: 820px;
  margin: 0 auto;
}

.privacy-kicker {
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--indigo);
  font-weight: 700;
  margin-bottom: 14px;
}

.privacy-hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--text);
}

.privacy-hero p {
  max-width: 640px;
  margin: 18px auto 0;
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
}

.privacy-wrap {
  max-width: 1180px;
  margin: 0 auto;
  /* display: grid;
  grid-template-columns: minmax(0, 2.3fr) minmax(220px, 0.7fr);
  gap: 42px;
  align-items: start; */
}

.privacy-content {
  background: rgba(255, 255, 255, 0.38);
  border: 1px solid var(--glass-border);
  border-radius: 28px;
  padding: 32px 34px;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  box-shadow: 0 24px 56px rgba(62, 123, 250, 0.08);
}

.privacy-content-legal {
  padding-top: 26px;
}

.privacy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 32px;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 0.88rem;
}

.privacy-section {
  margin-top: 14px;
}

.privacy-section + .privacy-section {
  padding-top: 12px;
}

.privacy-section h3 {
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  color: var(--text);
  margin: 0 0 12px;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.privacy-section h4 {
  font-size: 1rem;
  color: var(--text);
  margin: 18px 0 8px;
  font-family: 'Space Grotesk', sans-serif;
}

.privacy-section p,
.privacy-section li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.privacy-section p + p {
  margin-top: 12px;
}

.privacy-section a {
  color: var(--indigo);
}

.legal-list {
  margin: 12px 0 0 0;
  padding-left: 22px;
  list-style: disc;
}

.legal-list li {
  margin-bottom: 10px;
}

.legal-list li:last-child {
  margin-bottom: 0;
}

.legal-subsection {
  margin-top: 18px;
  padding-top: 12px;
}

.legal-list-nested {
  margin-top: 10px;
  list-style: none;
  padding-left: 0;
}

.legal-list-nested li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 18px;
}

.legal-list-nested li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--text);
}

.legal-list-nested li > span {
  display: block;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 4px;
}

.legal-list-nested li p {
  margin: 0;
}

.privacy-sidebar {
  padding-top: 28px;
}

.privacy-card {
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid var(--glass-border);
  border-radius: 18px;
  padding: 22px 18px;
  box-shadow: 0 18px 48px rgba(62, 123, 250, 0.08);
}

.privacy-card-inner {
  display: flex;
  align-items: center;
  gap: 14px;
}

.privacy-card-icon {
  width: 38px;
  height: 38px;
}

.privacy-card-copy {
  color: var(--muted);
  line-height: 1.5;
  font-size: 15px;
}

.privacy-card-copy a {
  color: var(--indigo);
  font-weight: 600;
}

/* @media (max-width: 900px) {
  .privacy-wrap {
    grid-template-columns: 1fr;
  }
} */

@media (max-width: 640px) {
  .privacy-page {
    padding-left: 20px;
    padding-right: 20px;
  }

  .privacy-hero {
    padding-top: 56px;
  }

  .privacy-content {
    padding: 22px 18px;
  }

  .privacy-meta {
    gap: 8px 18px;
    font-size: 0.8rem;
  }
}



/* =========================================
   Single Service page (single-service.php)
   Append to style.css
========================================= */

.service-single-page {
  position: relative;
  z-index: 1;
}

.service-single-hero {
  position: relative;
  padding: 100px 32px 70px;
  display: flex;
  justify-content: center;
  text-align: center;
}

.service-single-hero__inner {
  max-width: 760px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.service-single-hero__inner h1 {
  font-size: clamp(2.1rem, 4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-single-hero__inner p {
  max-width: 560px;
  color: var(--muted);
  font-size: 17px;
}

/* Intro: copy + stats panel (replaces image column) */
.service-single-intro__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}

.service-single-intro__content h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.18;
  margin: 6px 0 16px;
  color: var(--text);
}

.service-single-intro__content p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  max-width: 520px;
}

.service-single-intro__content p + p {
  margin-top: 12px;
}

.service-single-intro__content .btn-ghost {
  margin-top: 24px;
}

.service-single-proof-panel {
  padding: 32px 30px;
}

.service-single-proof-headline {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--indigo);
  margin-bottom: 8px;
}

.service-single-proof-panel > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 22px;
}

.service-single-stats {
  gap: 12px;
}

.service-single-stats .stat-row {
  grid-template-columns: 76px 1fr;
  padding: 12px 16px;
}

.service-single-stats .stat-number {
  font-size: clamp(1.6rem, 2vw, 2.2rem);
}

.service-single-stats .stat-label {
  font-size: 0.82rem;
}

/* Reasons / Benefits card grids */
.service-single-reasons h2,
.service-single-benefits h2,
.service-single-faq h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.service-single-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 26px;
}

.service-single-card {
  position: relative;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  padding: 26px 22px;
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(16, 35, 63, 0.05);
}

.service-single-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--indigo), var(--violet));
}

.service-single-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  line-height: 1.25;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
  color: var(--text);
}

.service-single-card p {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.7;
}

.service-single-centered {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

/* FAQ */
.service-single-faq {
  padding-bottom: 100px;
}

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 16px;
  padding: 4px 22px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 0;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-size: 1.4rem;
  color: var(--indigo);
  margin-left: 16px;
  transition: transform .2s ease;
}

.faq-item[open] summary::after {
  transform: rotate(45deg);
}

.faq-item__answer {
  padding: 0 0 20px;
}

.faq-item__answer p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 900px) {
  .service-single-intro__inner {
    grid-template-columns: 1fr;
  }

  .service-single-card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .service-single-hero {
    padding: 56px 18px 40px;
  }

  .service-single-hero__inner p {
    font-size: 14px;
  }

  .service-single-intro__content p {
    font-size: 14px;
  }

  .service-single-proof-panel {
    padding: 26px 20px;
  }

  .faq-item {
    padding: 2px 16px;
  }

  .faq-item summary {
    font-size: 0.95rem;
    padding: 14px 0;
  }
}

/* =========================================
   Services archive (archive-service.php)
   Append to style.css
========================================= */

.services-archive-grid-section {
  padding-top: 20px;
}

.services-archive-cta {
  padding: 20px 32px 100px;
}

.services-archive-cta__panel {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.services-archive-cta__panel h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.9rem);
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 6px;
}

.services-archive-cta__panel p {
  color: var(--muted);
  font-size: 15px;
  max-width: 440px;
}

@media (max-width: 640px) {
  .services-archive-cta {
    padding: 10px 18px 60px;
  }

  .services-archive-cta__panel {
    padding: 28px 24px;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .services-archive-cta__panel .btn-primary {
    width: 100%;
    text-align: center;
  }
}

.nav-dropdown-menu__all {
  display: block;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(16, 35, 63, 0.08);
  font-weight: 600;
  color: var(--indigo) !important;
}