/* ==================== STYLE FROM about.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

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

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 18px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.p-card p,
.p-card ul {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  list-style: none;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

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

.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.contact-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:860px) {
  .pricing-table {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 28px;
}

.price-card.featured {
  border-color: var(--accent-line);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #17181B;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-card h4 {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 6px;
}

.price-card .amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card .amount span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}

.price-card ul li::before {
  content: "✓ ";
  color: var(--eco);
}

/* ==================== STYLE FROM associations.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.desc {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.p-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
}

/* ==================== STYLE FROM contact.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

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

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 18px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.p-card p,
.p-card ul {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  list-style: none;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

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

.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.contact-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:860px) {
  .pricing-table {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 28px;
}

.price-card.featured {
  border-color: var(--accent-line);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #17181B;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-card h4 {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 6px;
}

.price-card .amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card .amount span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}

.price-card ul li::before {
  content: "✓ ";
  color: var(--eco);
}

/* ==================== STYLE FROM corporates.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.desc {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.p-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
}

/* ==================== STYLE FROM home.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --spring: #3EE8A0;
  --spring-soft: rgba(62, 232, 160, 0.09);
  --spring-line: rgba(62, 232, 160, 0.35);
  --red: #D6483F;
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --accent-text: var(--accent);
  --eco-text: var(--eco);
  --radius: 16px;
  --header-h: 82px;
  color-scheme: dark;
}

/* ---------- Light theme override (data-theme="light" on <html>) ---------- */
:root[data-theme="light"] {
  --ink: #FFFFFF;
  --charcoal: #F4F3EF;
  --charcoal-2: #EAE8E2;
  --white: #17181B;
  --muted: #53565D;
  --muted-2: #6E7178;
  --hairline: rgba(23, 24, 27, 0.10);
  --hairline-2: rgba(23, 24, 27, 0.18);
  --accent-text: #A35300;
  --eco-text: #166534;
  color-scheme: light;
}

:root[data-theme="light"] header {
  background: rgba(255, 255, 255, 0.85);
}

:root[data-theme="light"] .testi-card {
  box-shadow: 0 10px 26px -14px rgba(23, 24, 27, 0.18);
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background-color .25s ease, color .25s ease;
}

/* ---------- Accessibility: skip link ---------- */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 17px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

/* ---------- Accessibility: visible focus states ---------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Accessibility: reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* ---------- Theme toggle button ---------- */
.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal);
  color: var(--white);
  cursor: pointer;
  flex-shrink: 0;
}

.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-moon {
  display: none;
}

:root[data-theme="light"] .theme-toggle .icon-sun {
  display: none;
}

:root[data-theme="light"] .theme-toggle .icon-moon {
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

.mono {
  font-family: 'JetBrains Mono', monospace;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  position: relative;
  padding: 120px 0;
  scroll-margin-top: var(--header-h);
}

@media (max-width:768px) {
  section {
    padding: 72px 0;
  }
}

/* ---------- Growth line signature: runs down the page as a spine ---------- */
.growth-spine {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--eco-line) 15%, var(--eco-line) 85%, transparent);
  opacity: 0.5;
  z-index: 0;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-text);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

/* ---------- Nav ---------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 12px;
}

@media (max-width:420px) {
  .nav-controls {
    gap: 4px;
  }

  nav {
    padding: 14px 10px;
  }

  .logo {
    font-size: 15px;
    gap: 5px;
  }

  .gtranslate-wrap {
    max-width: 44px;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Google Translate widget — hide its verbose default text ("Select Language")
     and show a compact globe icon instead, styled to match the theme toggle button. */
.gtranslate-wrap {
  width: 38px;
  height: 38px;
  overflow: hidden;
  position: relative;
  border-radius: 50%;
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
}

.gtranslate-wrap::before {
  content: "🌐";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18px;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}

.gtranslate-wrap .goog-te-gadget,
.gtranslate-wrap .goog-te-gadget-simple,
.gtranslate-wrap .goog-te-gadget-simple span,
.gtranslate-wrap .goog-te-menu-value,
.gtranslate-wrap .goog-te-menu-value span {
  font-size: 0 !important;
  color: transparent !important;
  background: transparent !important;
  border: none !important;
}

.gtranslate-wrap .goog-te-gadget-simple {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  cursor: pointer;
  opacity: 0;
  z-index: 2;
}

.gtranslate-wrap img {
  display: none !important;
}

/* ---------- Language Dropdown ---------- */
.nav-lang-dropdown {
  position: relative;
  display: inline-block;
}

.nav-lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal);
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.nav-lang-btn:hover {
  border-color: var(--accent-line);
  background: var(--charcoal-2);
}

.nav-lang-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: 12px;
  padding: 6px;
  min-width: 160px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
  z-index: 110;
}

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

.nav-lang-panel a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 14px;
  color: var(--white);
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-lang-panel a:hover,
.nav-lang-panel a.active {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.nav-lang-panel a img {
  border-radius: 2px;
  object-fit: cover;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  text-decoration: none;
}

.logo:hover {
  color: var(--white);
}

.logo span {
  color: var(--accent-text);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.logo {
  min-width: 0;
  flex-shrink: 0;
}

.logo .logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-size: 16px;
  color: var(--muted);
}

.nav-links a {
  white-space: nowrap;
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown>a::after {
  content: " ▾";
  font-size: 11px;
}

.nav-dropdown-panel {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: 12px;
  padding: 8px;
  min-width: 220px;
  box-shadow: 0 16px 40px -12px rgba(0, 0, 0, 0.5);
  z-index: 110;
}

.nav-dropdown-panel::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
  background: transparent;
}

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

.nav-dropdown-panel a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  font-size: 15px;
  white-space: nowrap;
  color: var(--white);
}

.nav-dropdown-panel a:hover {
  background: var(--accent-soft);
  color: var(--accent-text);
}

.nav-links a:hover {
  color: var(--white);
}

nav {
  flex-wrap: nowrap;
}

.nav-cta {
  background: var(--accent);
  color: #1A1200;
  padding: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 16px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.nav-auth-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color .2s ease, background .2s ease;
}

.nav-auth-btn:hover {
  border-color: var(--accent-line);
  background: var(--charcoal-2);
}

.nav-auth-btn svg {
  width: 18px;
  height: 18px;
}

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

.nav-hamburger {
  display: none;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal);
  color: var(--white);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-hamburger svg {
  width: 18px;
  height: 18px;
}

@media (max-width:1320px) {
  .nav-hamburger {
    display: flex;
  }
}

.mobile-nav-panel {
  display: flex;
  flex-direction: column;
  gap: 4px;
  position: fixed;
  top: -100vh;
  left: 0;
  right: 0;
  height: 100vh;
  z-index: 99;
  background: rgba(23, 24, 27, 0.95);
  backdrop-filter: blur(24px);
  border-bottom: 1px solid var(--hairline);
  padding: 100px 24px 40px;
  transition: top 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
  opacity: 0;
  pointer-events: none;
  overflow-y: auto;
}

.mobile-nav-panel.is-open {
  top: 0;
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav-panel a {
  padding: 14px 10px;
  font-size: 19px;
  font-weight: 500;
  color: var(--white);
  border-bottom: 1px solid var(--hairline);
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s;
}

.mobile-nav-panel a:last-child {
  border-bottom: none;
}

.mobile-nav-panel.is-open a {
  transform: translateY(0);
  opacity: 1;
}

.mobile-nav-panel.is-open a:nth-child(1) {
  transition-delay: 0.04s;
}

.mobile-nav-panel.is-open a:nth-child(2) {
  transition-delay: 0.08s;
}

.mobile-nav-panel.is-open a:nth-child(3) {
  transition-delay: 0.12s;
}

.mobile-nav-panel.is-open a:nth-child(4) {
  transition-delay: 0.16s;
}

.mobile-nav-panel.is-open a:nth-child(5) {
  transition-delay: 0.20s;
}

.mobile-nav-panel.is-open a:nth-child(6) {
  transition-delay: 0.24s;
}

.mobile-nav-panel.is-open a:nth-child(7) {
  transition-delay: 0.28s;
}

.mobile-nav-panel.is-open a:nth-child(8) {
  transition-delay: 0.32s;
}

.mobile-nav-panel.is-open a:nth-child(9) {
  transition-delay: 0.36s;
}

.mobile-nav-panel.is-open a:nth-child(10) {
  transition-delay: 0.40s;
}

.mobile-nav-panel.is-open a:nth-child(11) {
  transition-delay: 0.44s;
}

.mobile-nav-panel.is-open a:nth-child(12) {
  transition-delay: 0.48s;
}

.nav-hamburger svg path {
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

.nav-hamburger[aria-expanded="true"] svg path:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-hamburger[aria-expanded="true"] svg path:nth-child(2) {
  opacity: 0;
}

.nav-hamburger[aria-expanded="true"] svg path:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

@media (max-width:520px) {
  .nav-cta {
    width: 38px;
    height: 38px;
  }
}

/* ---------- Hero ---------- */
.hero-home {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 140px;
  text-align: center;
  position: relative;
  background: radial-gradient(circle at 50% 20%, var(--spring-soft), transparent 55%);
}

.hero h1 {
  font-size: clamp(40px, 7vw, 84px);
  line-height: 1.02;
  font-weight: 700;
  max-width: 920px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent-text);
}

.hero .sub {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.4vw, 26px);
  color: var(--muted);
  font-weight: 500;
  margin-bottom: 26px;
}

.hero p.desc {
  max-width: 620px;
  margin: 0 auto 42px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.store-badge-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.store-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: 10px;
  padding: 9px 16px;
  color: var(--white);
}

.store-badge:hover {
  border-color: var(--accent-line);
}

.store-badge svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.store-badge span {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  text-align: left;
}

.store-badge small {
  font-size: 11px;
  color: var(--muted);
}

.store-badge strong {
  font-size: 16px;
  font-weight: 600;
}

.store-badge.coming-soon {
  opacity: 0.75;
  cursor: default;
  pointer-events: none;
}

.coming-soon-tag {
  display: inline-block;
  margin-left: 8px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-text);
  border: 1px solid var(--accent-line);
  padding: 3px 8px;
  border-radius: 999px;
  vertical-align: middle;
}

.store-badge .coming-soon-tag {
  margin-left: 0;
  margin-top: 4px;
  font-size: 10px;
  padding: 2px 6px;
}

.pillar-row {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.pillar-chip {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: var(--white);
  border: 1px solid var(--accent-line);
  padding: 9px 18px;
  border-radius: 999px;
  background: var(--accent-soft);
}

.audience-row {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  text-align: center;
}

@media (max-width:900px) {
  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width:560px) {
  .proof-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.proof-stat {
  padding: 12px 6px;
}

.proof-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(24px, 4vw, 34px);
  font-weight: 600;
  color: var(--white);
}

.proof-num.eco {
  color: var(--eco-text);
}

.proof-lbl {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.network-graphic {
  width: min(480px, 80%);
  height: auto;
  display: block;
  margin: 0 auto 36px;
}

.net-line {
  stroke: var(--spring-line);
  stroke-width: 1;
}

.net-line-faint {
  stroke: var(--spring-soft);
}

.net-node {
  fill: var(--spring);
  opacity: 0.85;
  animation: nodePulse 3.2s ease-in-out infinite;
}

.net-node-main {
  fill: var(--accent);
  opacity: 1;
}

@keyframes nodePulse {

  0%,
  100% {
    opacity: 0.6;
  }

  50% {
    opacity: 1;
  }
}

.audience-chip {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  color: var(--muted);
  border: 1px solid var(--hairline-2);
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--charcoal-2);
  text-decoration: none;
  transition: border-color .2s ease, color .2s ease, background .2s ease;
}

a.audience-chip:hover {
  border-color: var(--accent-line);
  color: var(--accent-text);
  background: var(--accent-soft);
}

.btn-primary {
  background: var(--accent);
  color: #1A1200;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  border: none;
  cursor: pointer;
  box-shadow: 0 0 0 0 rgba(245, 130, 12, 0.35);
  transition: transform .2s ease, box-shadow .2s ease;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px -8px var(--accent);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 17px;
  border: 1px solid var(--hairline-2);
  cursor: pointer;
  transition: border-color .2s ease, background .2s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

/* ---------- Hero transformation strip (signature element) ---------- */
.transform-strip {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 24px;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding: 20px 0 8px;
}

.t-stage {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 1;
  min-width: 0;
}

.t-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(9px, 2.2vw, 11px);
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: normal;
  text-align: center;
  max-width: 88px;
  line-height: 1.3;
}

.t-card {
  width: clamp(72px, 20vw, 110px);
  height: clamp(46px, 13vw, 70px);
  border-radius: 8px;
  background: linear-gradient(135deg, #e8e6df, #cfccc2);
  position: relative;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.45);
  animation: paperFloat 4s ease-in-out infinite;
}

.t-card::before {
  content: "";
  position: absolute;
  top: 17%;
  left: 11%;
  width: 36%;
  height: 7%;
  background: #0B0B0B;
  opacity: 0.3;
  border-radius: 2px;
}

.t-card::after {
  content: "";
  position: absolute;
  top: 34%;
  left: 11%;
  width: 54%;
  height: 6%;
  background: #0B0B0B;
  opacity: 0.2;
  border-radius: 2px;
}

.t-arrow {
  width: clamp(28px, 6vw, 60px);
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.14), var(--accent));
  position: relative;
  margin: 0 clamp(6px, 1.5vw, 14px);
  flex-shrink: 0;
  align-self: center;
  top: clamp(23px, 6.5vw, 35px);
}

.t-arrow::after {
  content: "";
  position: absolute;
  right: -1px;
  top: -4px;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--accent);
  border-right: 2px solid var(--accent);
  transform: rotate(45deg);
}

.t-id {
  width: clamp(96px, 24vw, 130px);
  height: clamp(60px, 15vw, 80px);
  border-radius: 10px;
  background: var(--charcoal);
  border: 1px solid var(--accent-line);
  position: relative;
  box-shadow: 0 0 40px -6px var(--accent-soft);
  animation: idGlow 2.4s ease-in-out infinite;
}

.t-id::before {
  content: "";
  position: absolute;
  top: 17%;
  left: 11%;
  width: 22%;
  height: 28%;
  border-radius: 50%;
  background: var(--accent);
  opacity: 0.8;
}

.t-id::after {
  content: "";
  position: absolute;
  top: 20%;
  left: 34%;
  width: 46%;
  height: 5%;
  background: rgba(255, 255, 255, 0.35);
  border-radius: 2px;
  box-shadow: 0 10px 0 -1px rgba(255, 255, 255, 0.15);
}

.t-qr {
  width: clamp(46px, 11vw, 64px);
  height: clamp(46px, 11vw, 64px);
  border-radius: 8px;
  position: relative;
  background: var(--charcoal);
  border: 1px solid var(--accent-line);
  box-shadow: 0 0 30px -8px var(--accent-soft);
  animation: qrPulse 2.4s ease-in-out infinite;
}

.t-qr-eye {
  position: absolute;
  width: 26%;
  height: 26%;
  border: 2px solid var(--accent);
  border-radius: 2px;
}

.t-qr-eye::after {
  content: "";
  position: absolute;
  inset: 28%;
  background: var(--accent);
}

.t-qr-eye.tl {
  top: 12%;
  left: 12%;
}

.t-qr-eye.tr {
  top: 12%;
  right: 12%;
}

.t-qr-eye.bl {
  bottom: 12%;
  left: 12%;
}

@keyframes paperFloat {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes idGlow {

  0%,
  100% {
    box-shadow: 0 0 40px -6px var(--accent-soft);
  }

  50% {
    box-shadow: 0 0 60px -4px var(--accent-soft);
  }
}

@keyframes qrPulse {

  0%,
  100% {
    opacity: 0.85;
  }

  50% {
    opacity: 1;
  }
}

.tree-row {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 8px;
  margin-top: 16px;
  opacity: 0.9;
  height: 16px;
}

.tree {
  width: 4px;
  height: 12px;
  background: var(--eco);
  border-radius: 2px;
  display: inline-block;
  animation: grow 3s ease-in-out infinite;
}

.tree:nth-child(2) {
  animation-delay: .3s;
}

.tree:nth-child(3) {
  animation-delay: .6s;
}

.tree:nth-child(4) {
  animation-delay: .9s;
}

.tree:nth-child(5) {
  animation-delay: 1.2s;
}

@keyframes grow {

  0%,
  100% {
    transform: scaleY(1);
    opacity: 0.6;
  }

  50% {
    transform: scaleY(1.15);
    opacity: 1;
  }
}


/* ---------- Section heading pattern ---------- */
.section-head {
  max-width: 680px;
  margin: 0 auto 56px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.7;
}

/* ---------- Event Sales Engine ---------- */
.loop-heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
}

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

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

.loop-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 28px;
  position: relative;
}

.loop-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  color: var(--muted-2);
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}

.loop-icon {
  font-size: 28px;
  margin-bottom: 14px;
}

.loop-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
}

.loop-card p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
}

.loop-card-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
}

.loop-card-whatsapp .loop-icon {
  color: #25D366;
}

.objection-block {
  max-width: 720px;
  margin: 64px auto 0;
  text-align: center;
  padding: 36px 32px;
  border-radius: 20px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
}

.objection-block p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.7;
  color: var(--white);
  font-weight: 500;
  font-style: italic;
}

/* ---------- Calculator ---------- */
.calc-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

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

.calc-inputs label {
  display: block;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 8px;
  margin-top: 20px;
}

.calc-inputs label:first-child {
  margin-top: 0;
}

.calc-inputs input[type=range] {
  width: 100%;
  accent-color: var(--eco);
}

.calc-val {
  font-family: 'JetBrains Mono', monospace;
  color: var(--eco-text);
  font-size: 17px;
  float: right;
}

.calc-val-input {
  font-family: 'JetBrains Mono', monospace;
  color: var(--eco-text);
  font-size: 17px;
  float: right;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  border-radius: 6px;
  width: 72px;
  text-align: right;
  padding: 3px 8px;
}

.calc-val-input:focus {
  outline: none;
  border-color: var(--eco-line);
}

/* Hide number input spinner arrows for a cleaner look */
.calc-val-input::-webkit-outer-spin-button,
.calc-val-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.calc-val-input[type=number] {
  -moz-appearance: textfield;
}

.calc-results {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.stat-box {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 18px;
}

.stat-box .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
}

.stat-box.eco .num {
  color: var(--eco-text);
}

.stat-box .lbl {
  font-size: 17px;
  color: var(--muted);
  margin-top: 4px;
}

.stat-box .stat-note {
  font-size: 12px;
  color: var(--muted-2);
  margin-top: 4px;
  line-height: 1.4;
}

.damage-callout {
  margin-top: 24px;
  padding: 16px 22px;
  border-radius: 14px;
  background: rgba(214, 72, 63, 0.08);
  border: 1px solid rgba(214, 72, 63, 0.35);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.damage-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
}

.damage-numbers {
  font-size: 17px;
  color: var(--red);
  font-weight: 600;
}

.damage-numbers strong {
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 19px;
}

.compare-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 56px;
}

@media (max-width:700px) {
  .compare-row {
    grid-template-columns: 1fr;
  }
}

.compare-col {
  border-radius: 16px;
  padding: 28px;
  border: 1px solid var(--hairline);
}

.compare-col.old {
  background: rgba(214, 72, 63, 0.08);
}

.compare-col.new {
  background: var(--eco-soft);
  border-color: var(--eco-line);
}

.compare-col h4 {
  font-size: 17px;
  margin-bottom: 14px;
}

.compare-col.old h4 {
  color: var(--red);
}

.compare-col.new h4 {
  color: var(--eco-text);
}

.compare-col ul {
  list-style: none;
  font-size: 17px;
  color: var(--muted);
  line-height: 2.1;
}

.compare-col.old ul li::before {
  content: "— ";
  color: var(--red);
}

.compare-col.new ul li::before {
  content: "— ";
  color: var(--eco-text);
}

/* ---------- Platform cards ---------- */
.grid-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

#platform .grid-cards {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width:860px) {
  #platform .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:560px) {
  #platform .grid-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width:900px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color .2s ease, transform .2s ease;
}

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

.p-card .icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--accent-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  color: var(--accent-text);
  font-size: 18px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 10px;
  min-height: 3.2em;
  display: flex;
  align-items: flex-start;
}

.p-card ul {
  list-style: none;
  font-size: 17px;
  color: var(--muted-2);
  line-height: 1.9;
}

.learn-more-link {
  display: inline-block;
  margin-top: 14px;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-text);
}

.learn-more-link:hover {
  text-decoration: underline;
}

/* ---------- MyCo ---------- */
.myco-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

@media (max-width:860px) {
  .myco-wrap {
    grid-template-columns: 1fr;
  }
}

.myco-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.myco-content {
  align-self: center;
}

.dash-frame-wrap {
  width: min(390px, 92vw);
  aspect-ratio: 390/844;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border-radius: 40px;
  box-shadow: 0 30px 80px -30px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.dash-frame-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 390px;
  height: 844px;
  border: none;
  transform-origin: top left;
  transform: scale(min(1, calc(92vw / 390)));
}

@media (min-width:860px) {
  .dash-frame-wrap iframe {
    transform: scale(min(1, calc(46vw / 390)));
  }
}

.dash-caption {
  text-align: center;
  font-family: 'JetBrains Mono', monospace;
  font-size: clamp(15px, 2.2vw, 20px);
  color: var(--muted);
  margin-top: 16px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}

.dash-caption strong {
  color: var(--accent-text);
  font-weight: 600;
  letter-spacing: 0.06em;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--hairline);
  font-size: 17px;
  color: var(--muted);
}

.feature-list li::before {
  content: "→";
  color: var(--accent-text);
  font-family: 'JetBrains Mono', monospace;
  flex-shrink: 0;
}

.feature-list li:last-child {
  border-bottom: none;
}

/* ---------- Analytics dashboard mock ---------- */
.analytics-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}

@media (max-width:700px) {
  .analytics-highlights {
    grid-template-columns: 1fr;
  }
}

.ah-item {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px;
  text-align: center;
}

.ah-icon {
  font-size: 24px;
  margin-bottom: 10px;
}

.ah-label {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 6px;
}

.ah-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.5;
}

.dash-mock {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
}

.dash-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

@media (max-width:800px) {
  .dash-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.dash-stat {
  background: var(--charcoal-2);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 18px;
}

.dash-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 24px;
  color: var(--accent-text);
  font-weight: 600;
}

.dash-stat .lbl {
  font-size: 17px;
  color: var(--muted);
  margin-top: 4px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 120px;
  padding: 20px 0;
}

.bar {
  flex: 1;
  background: linear-gradient(to top, var(--accent), rgba(245, 130, 12, 0.2));
  border-radius: 4px 4px 0 0;
}

/* ---------- Enterprise / Event split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.split-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 36px;
}

.split-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
}

.split-card p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  font-size: 17px;
  color: var(--muted);
  border: 1px solid var(--hairline-2);
  padding: 6px 12px;
  border-radius: 999px;
}

/* ---------- Sustainability dashboard band ---------- */
.esg-band {
  background: radial-gradient(circle at 50% 0%, var(--eco-soft), transparent 60%);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.lifecycle-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 32px;
  margin-bottom: 48px;
}

.lifecycle-head {
  max-width: 620px;
  margin: 0 auto 28px;
  text-align: center;
}

.lifecycle-eyebrow {
  display: inline-block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 17px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 10px;
}

.lifecycle-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

@media (max-width:800px) {
  .lifecycle-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width:640px) {
  .lifecycle-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

.lifecycle-item {
  text-align: center;
  padding: 0 8px;
}

@media (max-width:640px) {
  .lifecycle-item {
    padding: 16px 14px;
    border: 1px solid var(--hairline);
    border-radius: 12px;
    background: var(--charcoal-2);
  }

  .lifecycle-desc {
    font-size: 15px;
    line-height: 1.65;
  }

  .lifecycle-head p {
    font-size: 15px;
    padding: 0 4px;
  }
}

.lifecycle-icon {
  font-size: 26px;
  margin-bottom: 12px;
}

.lifecycle-title {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 8px;
}

.lifecycle-desc {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.6;
}

.esg-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
  margin-top: 50px;
}

@media (max-width:800px) {
  .esg-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.earth-cta {
  text-align: center;
  max-width: 560px;
  margin: 64px auto 0;
}

.earth-cta p {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(17px, 2.2vw, 21px);
  line-height: 1.6;
  color: var(--muted);
  margin-bottom: 28px;
}

.earth-cta p strong {
  color: var(--eco-text);
  font-weight: 600;
}

.esg-stat .num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 34px;
  color: var(--eco-text);
  font-weight: 600;
}

.esg-stat .lbl {
  font-size: 17px;
  color: var(--muted);
  margin-top: 6px;
}

.esg-line {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: var(--muted);
  line-height: 1.9;
}

.esg-line strong {
  color: var(--white);
  font-weight: 600;
}

/* ---------- How it works ---------- */
.steps {
  display: flex;
  flex-direction: column;
  max-width: 720px;
  margin: 0 auto;
}

.step {
  display: flex;
  gap: 24px;
  padding: 22px 0;
  border-bottom: 1px solid var(--hairline);
}

.step:last-child {
  border-bottom: none;
}

.step .n {
  font-family: 'JetBrains Mono', monospace;
  color: var(--accent-text);
  font-size: 17px;
  width: 32px;
  flex-shrink: 0;
}

.step .t {
  font-size: 18px;
  color: var(--white);
}

/* ---------- Industries ---------- */
.ind-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  max-width: 820px;
  margin: 0 auto;
}

.ind-chip {
  border: 1px solid var(--hairline-2);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 17px;
  color: var(--muted);
  transition: border-color .2s, color .2s;
}

.ind-chip:hover {
  border-color: var(--accent);
  color: var(--white);
}

/* ---------- Philosophy ---------- */
.philo {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.philo-line {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(18px, 2.6vw, 26px);
  font-weight: 500;
  line-height: 1.7;
  color: var(--muted);
}

.philo-line strong {
  color: var(--white);
  font-weight: 600;
}

.philo-line .g {
  color: var(--accent-text);
}

.philo-final {
  margin-top: 26px;
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 600;
  color: var(--white);
}

/* ---------- Testimonials ---------- */
.testi-track {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: none;
}

.testi-track::-webkit-scrollbar {
  display: none;
}

.testi-card {
  min-width: 320px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 18px;
  padding: 28px;
}

.testi-card p {
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 18px;
}

.testi-who {
  font-size: 17px;
  color: var(--white);
  font-weight: 600;
}

.testi-role {
  font-size: 17px;
  color: var(--muted-2);
}

.testi-foot {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: var(--accent-text);
}

/* ---------- Final CTA ---------- */
.final-cta {
  text-align: center;
  position: relative;
}

.final-cta h2 {
  font-size: clamp(30px, 5vw, 54px);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 10px;
}

.final-cta h2 .g {
  color: var(--accent-text);
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--hairline);
  padding: 60px 0 30px;
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
}

.social-row {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--charcoal-2);
  border: 1px solid var(--hairline-2);
  color: var(--muted);
}

.social-row a:hover {
  color: var(--accent-text);
  border-color: var(--accent-line);
}

.social-row svg {
  width: 18px;
  height: 18px;
  display: block;
}

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

.foot-grid h5 {
  font-size: 17px;
  color: var(--muted-2);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.foot-grid a {
  display: block;
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 10px;
}

.foot-grid a:hover {
  color: var(--accent-text);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 50px;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  font-size: 17px;
  color: var(--muted-2);
}

/* ---------- Small phones ---------- */
@media (max-width:480px) {
  .wrap {
    padding: 0 18px;
  }

  section {
    padding: 48px 0;
  }

  .calc-card {
    padding: 22px 18px;
  }

  .calc-results {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stat-box {
    padding: 14px;
  }

  .stat-box .num {
    font-size: 19px;
  }

  .dash-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .dash-mock {
    padding: 20px;
  }

  .dash-stat {
    padding: 14px;
  }

  .dash-stat .num {
    font-size: 19px;
  }

  .esg-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .esg-stat .num {
    font-size: 26px;
  }

  .split-card {
    padding: 24px;
  }

  .p-card {
    padding: 20px;
  }

  .testi-card {
    min-width: 82vw;
  }

  .hero {
    padding-top: 120px;
  }

  .hero-ctas {
    gap: 12px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 13px 22px;
    font-size: 17px;
  }

  .logo {
    font-size: 18px;
    gap: 7px;
  }

  .logo-mark {
    width: 26px;
    height: 26px;
  }
}

/* ==================== STYLE FROM pricing.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 15px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

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

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 16px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 17px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
  font-size: 18px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
  min-height: 2.6em;
  display: flex;
  align-items: flex-start;
}

.p-card p,
.p-card ul {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  list-style: none;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 14px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 760px;
  margin: 0 auto;
}

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

.contact-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.contact-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin: 0 auto 14px;
}

.contact-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.contact-card a {
  color: var(--accent);
  font-weight: 600;
}

.pricing-table {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width:860px) {
  .pricing-table {
    grid-template-columns: 1fr;
  }
}

.price-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 28px;
}

.price-card.featured {
  border-color: var(--accent-line);
  position: relative;
}

.price-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent);
  color: #17181B;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 999px;
}

.price-card h4 {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 6px;
}

.price-card .amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.price-card .amount span {
  font-size: 15px;
  color: var(--muted);
  font-weight: 400;
}

.price-card ul {
  list-style: none;
  color: var(--muted);
  font-size: 15px;
  line-height: 2;
  margin-bottom: 20px;
}

.price-card ul li::before {
  content: "✓ ";
  color: var(--eco);
}

/* ==================== STYLE FROM professionals.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.desc {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.p-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: center;
  color: var(--muted-2);
  font-size: 13px;
}

/* ==================== STYLE FROM retailers.blade.php ==================== */
:root {
  --ink: #17181B;
  --charcoal: #303136;
  --charcoal-2: #2A2B30;
  --white: #F1F0EC;
  --muted: #A6A9AF;
  --muted-2: #7B7E85;
  --accent: #F5820C;
  --accent-soft: rgba(245, 130, 12, 0.14);
  --accent-line: rgba(245, 130, 12, 0.42);
  --eco: #22C55E;
  --eco-soft: rgba(34, 197, 94, 0.16);
  --eco-line: rgba(34, 197, 94, 0.45);
  --hairline: rgba(255, 255, 255, 0.09);
  --hairline-2: rgba(255, 255, 255, 0.16);
  --radius: 16px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: -0.02em;
}

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

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  transition: top .2s ease;
}

.skip-link:focus {
  top: 12px;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(38, 39, 43, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hairline);
}

nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1180px;
  margin: 0 auto;
}

.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  font-size: 19px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo span {
  color: var(--accent);
}

.logo-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  flex-shrink: 0;
  background: #fff;
  object-fit: contain;
  padding: 2px;
  box-sizing: border-box;
}

.back-link {
  font-size: 14px;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.back-link:hover {
  color: var(--white);
}

main {
  padding-top: 40px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'JetBrains Mono', monospace;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent);
}

.hero {
  padding: 64px 0 56px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(32px, 5vw, 54px);
  line-height: 1.08;
  font-weight: 700;
  max-width: 820px;
  margin: 0 auto 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero p.desc {
  max-width: 640px;
  margin: 0 auto 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.btn-primary {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.btn-secondary {
  display: inline-block;
  border: 1px solid var(--hairline-2);
  color: var(--white);
  font-weight: 600;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 15px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

section {
  padding: 56px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 44px;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 700;
  line-height: 1.15;
}

.section-head p {
  color: var(--muted);
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.7;
}

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

@media (max-width:860px) {
  .grid-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.p-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 26px;
}

.p-card .icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin-bottom: 14px;
}

.p-card h4 {
  font-size: 17px;
  margin-bottom: 8px;
}

.p-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.philo {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.philo p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.final-cta {
  text-align: center;
  padding: 70px 0;
  background: var(--charcoal-2);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}

.final-cta h2 {
  font-size: clamp(24px, 4vw, 36px);
  margin-bottom: 28px;
}

.final-cta .g {
  color: var(--accent);
}

footer {
  padding: 32px 0;
  text-align: left !important;
  color: var(--muted-2);
  font-size: 13px;
}

iframe.goog-te-banner-frame,
.goog-te-banner-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
  position: static !important;
}

header nav {
  flex-wrap: nowrap !important;
}

.social-row a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  text-decoration: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}

.social-row svg {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  margin: auto !important;
  position: static !important;
  flex-shrink: 0 !important;
}

@media (max-width: 768px) {
  header nav {
    padding: 12px 14px !important;
    gap: 8px !important;
  }

  .logo {
    font-size: 16px !important;
    gap: 6px !important;
  }

  .logo-mark {
    width: 24px !important;
    height: 24px !important;
  }

  .nav-controls {
    gap: 6px !important;
  }

  .nav-lang-btn {
    padding: 6px 12px !important;
    font-size: 13px !important;
    height: 36px !important;
  }

  .nav-auth-btn {
    width: 36px !important;
    height: 36px !important;
  }

  .nav-cta {
    padding: 0 !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
  }

  .nav-cta svg {
    width: 18px !important;
    height: 18px !important;
    margin-right: 0 !important;
  }

  .nav-hamburger {
    padding: 6px !important;
    height: 36px !important;
    width: 36px !important;
  }

  .lang-full {
    display: none !important;
  }

  .lang-short {
    display: inline !important;
  }
}

/* ---------- Migrated pages: FAQ, Blog, Contact form, Templates, Legal ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  font-size: 17px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.faq-item summary::after {
  content: "+";
  color: var(--accent-text);
  font-family: 'JetBrains Mono', monospace;
  font-size: 20px;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-body {
  padding: 0 24px 20px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
}

.faq-body p {
  margin-bottom: 12px;
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
  margin: 0 auto;
}

.blog-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 28px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s;
}

.blog-card:hover {
  border-color: var(--accent-line);
}

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

.blog-card-img {
  display: block;
  overflow: hidden;
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
}

.blog-card-body {
  padding: 24px 24px 24px 0;
  display: flex;
  flex-direction: column;
}

@media (max-width:700px) {
  .blog-card-body {
    padding: 0 24px 24px;
  }
}

.blog-meta {
  display: flex;
  gap: 16px;
  font-size: 14px;
  color: var(--muted-2);
  margin-bottom: 10px;
  font-family: 'JetBrains Mono', monospace;
}

.blog-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.blog-card h3 a {
  color: var(--white);
  text-decoration: none;
}

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

.blog-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  flex: 1;
}

.blog-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.blog-pagination nav {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.blog-pagination a,
.blog-pagination span {
  padding: 8px 14px;
  border-radius: 8px;
  border: 1px solid var(--hairline-2);
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
}

.blog-pagination a:hover {
  border-color: var(--accent-line);
  color: var(--accent-text);
}

.blog-pagination .active span {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent-text);
}

.blog-article {
  max-width: 800px;
  margin: 0 auto;
}

.blog-article-img {
  width: 100%;
  border-radius: var(--radius);
  margin-bottom: 32px;
  object-fit: cover;
  max-height: 420px;
}

.blog-article-content {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.blog-article-content h2,
.blog-article-content h3 {
  color: var(--white);
  margin: 24px 0 12px;
}

.blog-article-content p {
  margin-bottom: 16px;
}

.blog-article-content img {
  max-width: 100%;
  border-radius: 12px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}

@media (max-width:860px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-form-wrap {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: var(--radius);
  padding: 32px;
}

.contact-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width:560px) {
  .contact-form .form-row {
    grid-template-columns: 1fr;
  }
}

.contact-form .form-group {
  margin-bottom: 16px;
}

.contact-form label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--muted);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal-2);
  color: var(--white);
  font-size: 16px;
  font-family: inherit;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent-line);
}

.contact-alert {
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 16px;
  font-size: 15px;
}

.contact-alert-error {
  background: rgba(220, 53, 69, 0.15);
  border: 1px solid rgba(220, 53, 69, 0.4);
  color: #f8a5a5;
}

.contact-alert-success {
  background: rgba(26, 122, 69, 0.15);
  border: 1px solid rgba(26, 122, 69, 0.4);
  color: var(--eco-text);
}

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

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

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

.template-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .2s, transform .2s;
  position: relative;
}

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

.template-card img {
  width: 100%;
  aspect-ratio: 9/16;
  object-fit: cover;
  object-position: top;
}

.template-card h4 {
  padding: 16px;
  text-align: center;
  font-size: 15px;
}

.template-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--accent);
  color: #17181B;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  z-index: 1;
}

/* Template carousel (features page) */
.template-carousel-wrap {
  position: relative;
  margin-top: 28px;
  padding: 0 4px;
}

.template-swiper {
  overflow: hidden;
  padding: 24px 0 8px;
}

.template-swiper .swiper-slide {
  height: auto;
  transition: transform .4s ease, opacity .4s ease;
  transform: scale(.82);
  opacity: .5;
}

.template-swiper .swiper-slide-active {
  transform: scale(1);
  opacity: 1;
}

.template-swiper .swiper-slide-prev,
.template-swiper .swiper-slide-next {
  transform: scale(.9);
  opacity: .8;
}

.template-carousel-wrap .template-card {
  margin: 0;
  border-radius: 16px;
}

.template-carousel-wrap .template-card:hover {
  transform: none;
}

.template-carousel-wrap .template-card img {
  height: min(52vh, 480px);
  aspect-ratio: auto;
  transition: object-position 5s ease;
}

.template-carousel-wrap .template-card:hover img {
  object-position: left bottom;
}

.template-swiper-arrow {
  position: absolute;
  top: 42%;
  z-index: 2;
  width: 46px;
  height: 46px;
  border: 1px solid var(--hairline-2);
  border-radius: 50%;
  background: var(--charcoal);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.template-swiper-arrow:hover {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  transform: scale(1.05);
}

.template-swiper-prev {
  left: 0;
  transform: translateX(-4px);
}

.template-swiper-next {
  right: 0;
  transform: translateX(4px);
}

.template-swiper-prev:hover {
  transform: translateX(-4px) scale(1.05);
}

.template-swiper-next:hover {
  transform: translateX(4px) scale(1.05);
}

@media (max-width:768px) {
  .template-carousel-wrap {
    padding: 0 36px;
  }

  .template-swiper-arrow {
    width: 40px;
    height: 40px;
  }

  .template-carousel-wrap .template-card img {
    height: min(58vh, 420px);
  }
}

@media (max-width:480px) {
  .template-carousel-wrap {
    padding: 0 32px;
  }

  .template-swiper-arrow {
    width: 36px;
    height: 36px;
    top: 38%;
  }
}

/* Capability grid + MyCo productivity panel */
.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

@media (max-width:768px) {
  .capability-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.capability-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--charcoal);
  border: 1px solid var(--hairline);
  border-radius: 12px;
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  transition: border-color .2s ease, transform .2s ease, background .2s ease;
}

.capability-card:hover {
  border-color: var(--accent-line);
  background: var(--charcoal-2);
  transform: translateY(-2px);
}

.capability-icon {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.myco-layer-panel {
  position: relative;
  margin-top: 56px;
  border-radius: 20px;
  border: 1px solid var(--hairline-2);
  background: var(--charcoal);
  overflow: hidden;
}

.myco-layer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, 90%);
  height: 240px;
  background: radial-gradient(ellipse at center, rgba(245, 130, 12, 0.22), transparent 70%);
  pointer-events: none;
}

.myco-layer-inner {
  position: relative;
  padding: 40px 32px 36px;
}

.myco-layer-lead {
  margin-top: 12px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.7;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.myco-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

@media (max-width:900px) {
  .myco-pillars {
    grid-template-columns: 1fr;
  }
}

.myco-pillar {
  background: var(--ink);
  border: 1px solid var(--hairline);
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.myco-pillar:hover {
  border-color: var(--accent-line);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .18);
}

.myco-pillar-accent {
  border-color: var(--accent-line);
  background: linear-gradient(180deg, rgba(245, 130, 12, 0.08) 0%, var(--ink) 42%);
}

.myco-pillar-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
}

.myco-pillar-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.myco-pillar-label {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.myco-pillar-head h4 {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.3;
}

.myco-pillar-list {
  list-style: none;
  display: grid;
  gap: 10px;
  flex: 1;
}

.myco-pillar-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.myco-pillar-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
  box-shadow: 0 0 8px rgba(245, 130, 12, .45);
}

.myco-pillar-foot {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--hairline);
  font-size: 12px;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 8px;
}

.myco-status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--eco);
  box-shadow: 0 0 10px rgba(34, 197, 94, .5);
  animation: myco-pulse 2s ease-in-out infinite;
}

@keyframes myco-pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .7;
    transform: scale(.92);
  }
}

@media (max-width:600px) {
  .myco-layer-inner {
    padding: 28px 18px 24px;
  }

  .myco-pillar {
    padding: 18px 16px;
  }
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.legal-content h1,
.legal-content h2,
.legal-content h3,
.legal-content h4 {
  color: var(--white);
  margin: 28px 0 12px;
}

.legal-content p,
.legal-content li {
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  padding-left: 24px;
}

.legal-content a {
  color: var(--accent-text);
}

.hero-compact {
  min-height: auto;
  padding-top: 140px;
  padding-bottom: 48px;
  text-align: center;
}

.listing-page {
  padding-bottom: 80px;
}

.listing-theme {
  color: var(--white);
}

.listing-theme .text-muted {
  color: var(--muted) !important;
}

.listing-theme .fw-bold,
.listing-theme .fw-semibold,
.listing-theme h4,
.listing-theme h5,
.listing-theme h6,
.listing-theme [style*="color:#1a2b45"] {
  color: var(--white) !important;
}

.listing-theme [style*="color:#378ADD"] {
  color: var(--accent) !important;
}

.listing-theme .form-control,
.listing-theme .sl-search-input {
  background: var(--charcoal-2) !important;
  border-color: var(--hairline-2) !important;
  color: var(--white) !important;
}

.listing-theme .form-control::placeholder {
  color: var(--muted-2);
}

.listing-theme .form-control:focus,
.listing-theme .sl-search-input:focus {
  border-color: var(--accent-line) !important;
  box-shadow: 0 0 0 3px var(--accent-soft) !important;
}

.listing-theme .offcanvas {
  background: var(--charcoal) !important;
  color: var(--white);
}

.listing-theme .offcanvas-header {
  border-bottom: 1px solid var(--hairline);
}

.listing-theme .btn-outline-danger {
  border-color: rgba(239, 68, 68, 0.5);
  color: #f87171;
}

.listing-theme .btn-outline-danger:hover {
  background: rgba(239, 68, 68, 0.15);
  color: #fca5a5;
}

.listing-theme .sl-loader-overlay {
  background: rgba(23, 24, 27, 0.72) !important;
}

.listing-theme .sl-loader-ring::before {
  background: var(--accent-soft) !important;
}

.listing-theme .sl-loader-ring svg circle {
  stroke: var(--accent) !important;
}

.listing-theme .sl-loader-ring svg path {
  stroke: var(--accent) !important;
}

.listing-theme .sl-loader-dots span {
  background: var(--accent) !important;
  box-shadow: 0 0 6px var(--accent-soft) !important;
}

.listing-theme .sl-loader-text {
  color: var(--accent) !important;
  text-shadow: none !important;
}

.listing-theme .sl-idle {
  background: var(--charcoal-2);
  color: var(--muted);
  border-color: var(--hairline-2);
}

.listing-theme .sl-active {
  background: var(--accent);
  color: #17181B;
  border-color: transparent;
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.listing-theme .sl-done {
  background: #c96a0a;
  color: #17181B;
  border-color: transparent;
}

.listing-theme .sl-steps {
  display: flex;
  align-items: flex-start;
  width: 100%;
  gap: 0;
}

.listing-theme .sl-step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-shrink: 0;
}

.listing-theme .sl-step-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 13px;
  line-height: 1;
  text-align: center;
}

.listing-theme .sl-step-circle i {
  font-size: 12px;
  line-height: 1;
}

.listing-theme .sl-connector {
  align-self: center;
  margin-top: 16px;
  margin-bottom: 0;
  flex: 1;
  min-width: 16px;
  height: 2px;
  background: var(--hairline-2);
}

.listing-theme .sl-step-label {
  color: var(--muted);
  margin-top: 8px;
  text-align: center;
}

.listing-theme .sl-connector-done {
  background: var(--accent);
}

.listing-theme .sl-back-btn {
  border-color: var(--hairline-2);
  background: var(--charcoal);
  color: var(--white);
}

.listing-theme .sl-back-btn:hover {
  border-color: var(--accent-line);
  color: var(--accent);
  background: var(--accent-soft);
}

.listing-theme .sl-icard {
  border-color: var(--hairline-2);
  background: var(--charcoal);
}

.listing-theme .sl-icard:hover {
  border-color: var(--accent-line);
  box-shadow: 0 4px 16px rgba(245, 130, 12, 0.12);
  transform: translateY(-2px);
}

.listing-theme .sl-icard-active {
  border-color: var(--accent-line) !important;
  background: var(--accent-soft) !important;
  box-shadow: 0 4px 20px rgba(245, 130, 12, 0.16) !important;
}

.listing-theme .sl-icard-icon {
  background: var(--accent-soft);
  color: var(--accent);
}

.listing-theme .sl-icard-active .sl-icard-icon {
  background: var(--accent);
  color: #17181B;
}

.listing-theme .sl-icard:hover .sl-icard-icon {
  background: rgba(245, 130, 12, 0.22);
}

.listing-theme .sl-icard-label {
  color: var(--white);
}

.listing-theme .sl-icard-check {
  background: var(--accent);
  color: #17181B;
}

.listing-theme .sl-breadcrumb {
  color: var(--muted);
}

.listing-theme .sl-bc {
  color: var(--accent);
}

.listing-theme .sl-filter-btn {
  border-color: var(--accent-line);
  background: var(--accent-soft);
  color: var(--accent);
}

.listing-theme .sl-filter-btn:hover {
  background: var(--accent);
  color: #17181B;
}

.listing-theme .sl-filter-badge {
  background: var(--accent);
  color: #17181B;
}

.listing-theme .sl-sidebar-inner {
  background: var(--charcoal);
  border-color: var(--hairline-2);
}

.listing-theme .sl-sidebar-inner::-webkit-scrollbar-thumb {
  background: var(--hairline-2);
}

.listing-theme .sl-filter-block {
  border-top-color: var(--hairline);
}

.listing-theme .sl-filter-heading {
  color: var(--muted);
}

.listing-theme .sl-filter-scroll::-webkit-scrollbar-track {
  background: var(--charcoal-2);
}

.listing-theme .sl-filter-scroll::-webkit-scrollbar-thumb {
  background: var(--hairline-2);
}

.listing-theme .sl-check-label,
.listing-theme .sl-radio-label {
  color: var(--muted);
}

.listing-theme .sl-check-label:hover,
.listing-theme .sl-radio-label:hover {
  color: var(--accent);
}

.listing-theme .sl-radio-active {
  color: var(--accent);
  font-weight: 600;
}

.listing-theme .sl-tab {
  border-color: var(--hairline-2);
  background: var(--charcoal);
  color: var(--muted);
}

.listing-theme .sl-tab:hover {
  border-color: var(--accent-line);
  color: var(--accent);
}

.listing-theme .sl-tab-active {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #17181B !important;
  box-shadow: 0 3px 10px rgba(245, 130, 12, 0.28) !important;
}

.listing-theme .sl-tab-badge-active {
  background: rgba(23, 24, 27, 0.2);
  color: inherit;
}

.listing-theme .sl-result-card {
  background: var(--charcoal);
  border-color: var(--hairline-2);
}

.listing-theme .sl-result-card:hover {
  border-color: var(--accent-line);
  box-shadow: 0 4px 16px rgba(245, 130, 12, 0.1);
}

.listing-theme .sl-avatar-fallback {
  background: var(--accent-soft);
  color: var(--accent);
}

.listing-theme .sl-chip-country {
  background: var(--accent-soft);
  color: var(--accent);
}

.listing-theme .sl-chip-biz {
  background: rgba(245, 130, 12, 0.1);
  color: #f5a623;
}

.listing-theme .sl-chip-prod {
  background: var(--eco-soft);
  color: var(--eco);
}

.listing-theme .sl-chip-svc {
  background: rgba(245, 130, 12, 0.08);
  color: #e8a04a;
}

.listing-theme .sl-empty-icon {
  background: var(--charcoal-2);
  color: var(--muted);
}

.listing-theme .sl-paginator .page-link {
  background: var(--charcoal);
  border-color: var(--hairline-2);
  color: var(--accent);
}

.listing-theme .sl-paginator .page-link:hover {
  background: var(--accent-soft);
  border-color: var(--accent-line);
  color: var(--accent);
}

.listing-theme .sl-paginator .page-item.active .page-link {
  background: var(--accent);
  border-color: var(--accent);
  color: #17181B;
}

.listing-theme .sl-paginator .page-item.disabled .page-link {
  color: var(--muted-2);
  background: var(--charcoal-2);
}

.listing-theme input[type="checkbox"],
.listing-theme input[type="radio"] {
  accent-color: var(--accent);
}

.listing-theme .pagination {
  --bs-pagination-bg: var(--charcoal);
  --bs-pagination-border-color: var(--hairline-2);
  --bs-pagination-color: var(--accent);
  --bs-pagination-hover-bg: var(--accent-soft);
  --bs-pagination-hover-border-color: var(--accent-line);
  --bs-pagination-active-bg: var(--accent);
  --bs-pagination-active-border-color: var(--accent);
  --bs-pagination-disabled-color: var(--muted-2);
  --bs-pagination-disabled-bg: var(--charcoal-2);
}

.listing-theme #sl-grad stop {
  stop-color: var(--accent) !important;
}

/* Layout + Bootstrap normalization inside listing */
.listing-theme .sl-wrap.container-fluid {
  max-width: 1180px;
  margin: 0 auto;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.listing-theme .sl-page-header {
  padding: 0 !important;
}

.listing-theme .row {
  --bs-gutter-x: 1rem;
}

.listing-theme .btn {
  border-radius: 999px;
}

.listing-theme .btn-primary {
  background: var(--accent) !important;
  border-color: var(--accent) !important;
  color: #17181B !important;
}

.listing-theme .btn-primary:hover {
  filter: saturate(1.05) brightness(0.98);
}

.listing-theme .btn-light {
  background: var(--charcoal) !important;
  border-color: var(--hairline-2) !important;
  color: var(--muted) !important;
}

.listing-theme .btn-light:hover {
  background: var(--charcoal-2) !important;
  border-color: var(--accent-line) !important;
  color: var(--accent) !important;
}

.listing-theme .btn-link.text-danger {
  color: #f87171 !important;
}

.listing-theme .btn-close {
  filter: invert(1);
  opacity: .7;
}

.listing-theme .btn-close:hover {
  opacity: 1;
}

/* Support / promo banner popup */
.site-banner-popup {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: none;
  justify-content: center;
  padding: 0 16px 16px;
  pointer-events: none;
}

.site-banner-popup.is-visible {
  display: flex;
  pointer-events: auto;
}

.site-banner-popup__inner {
  position: relative;
  width: 100%;
  max-width: 960px;
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #fff;
  text-align: center;
  border-radius: 16px;
  padding: 36px 28px 28px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.site-banner-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease;
}

.site-banner-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.site-banner-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 700;
  margin: 0 0 12px;
  line-height: 1.25;
}

.site-banner-desc {
  font-size: clamp(0.95rem, 2vw, 1.05rem);
  line-height: 1.6;
  opacity: .95;
  margin: 0 auto 20px;
  max-width: 640px;
}

.site-banner-cta {
  display: inline-block;
  background: #fff;
  color: #2563eb;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 28px;
  border-radius: 10px;
  transition: transform .2s ease, box-shadow .2s ease;
}

.site-banner-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.site-banner-privacy {
  font-size: 13px;
  opacity: .85;
  margin: 16px 0 0;
}

@media (max-width:575px) {
  .site-banner-popup {
    padding: 0 10px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .site-banner-popup__inner {
    padding: 32px 18px 22px;
    border-radius: 12px;
  }

  .site-banner-cta {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }
}

/* ==================== GLOBAL RESPONSIVE (new site) ==================== */
html {
  overflow-x: clip;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  overflow-x: clip;
}

img,
video,
iframe,
svg {
  max-width: 100%;
  height: auto;
}

table {
  max-width: 100%;
  display: block;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

/* Inner pages: compact hero (not full viewport) */
.hero:not(.hero-home) {
  min-height: auto;
  padding: clamp(88px, 14vw, 120px) 0 clamp(40px, 8vw, 56px);
  background: none;
  text-align: center;
}

.hero:not(.hero-home) h1 {
  font-size: clamp(28px, 5vw, 48px);
  max-width: 820px;
}

.hero-compact {
  min-height: auto !important;
  padding-top: clamp(88px, 14vw, 120px) !important;
  padding-bottom: clamp(32px, 6vw, 48px) !important;
}

/* Nav + header */
header nav {
  flex-wrap: nowrap !important;
  align-items: center;
  gap: 8px;
}

.logo {
  flex: 1 1 auto;
  min-width: 0;
  max-width: min(100%, calc(100% - 168px));
}

.logo-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  min-width: 0;
}

.nav-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

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

  .nav-hamburger {
    display: flex !important;
  }
}

@media (max-width:400px) {
  .logo-text {
    display: none;
  }

  .logo {
    max-width: none;
    flex: 0 0 auto;
  }
}

/* Mobile menu */
.mobile-nav-panel {
  padding: calc(72px + env(safe-area-inset-top, 0px)) 20px calc(24px + env(safe-area-inset-bottom, 0px));
  -webkit-overflow-scrolling: touch;
}

.mobile-nav-panel a {
  font-size: 17px;
  padding: 12px 8px;
  word-break: break-word;
}

/* Layout spacing */
.wrap {
  padding-left: clamp(16px, 4vw, 24px);
  padding-right: clamp(16px, 4vw, 24px);
}

section {
  padding: clamp(40px, 8vw, 56px) 0;
}

main {
  padding-top: 0;
}

/* Typography + cards */
.hero p.desc {
  font-size: clamp(16px, 2.5vw, 18px);
}

.p-card h4 {
  min-height: 0;
}

.philo {
  padding: clamp(24px, 5vw, 40px);
}

.contact-form-wrap {
  padding: clamp(20px, 4vw, 32px);
}

.faq-item summary {
  font-size: clamp(15px, 2.5vw, 17px);
  padding: 16px 18px;
  gap: 12px;
}

.faq-body {
  padding: 0 18px 20px;
}

.legal-content,
.blog-article-content {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.blog-article-content img,
.legal-content img {
  height: auto;
}

.blog-meta {
  flex-wrap: wrap;
  gap: 8px 16px;
}

/* Grids */
.grid-cards,
.pricing-table,
#platform .grid-cards {
  gap: clamp(14px, 3vw, 20px);
}

@media (max-width:900px) {
  .foot-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }
}

@media (max-width:560px) {
  .foot-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .foot-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width:480px) {
  .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  section {
    padding: 40px 0;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-ctas .btn-primary,
  .hero-ctas .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .final-cta {
    padding: 48px 0;
  }

  .pillar-row,
  .audience-row {
    gap: 8px;
  }

  .pillar-chip,
  .audience-chip {
    font-size: 15px;
    padding: 8px 14px;
  }

  .capability-card {
    font-size: 14px;
    padding: 12px 14px;
  }

  .myco-layer-panel {
    margin-top: 40px;
  }

  .section-head {
    margin-bottom: 32px;
  }

  .template-carousel-wrap .template-card h4 {
    font-size: 14px;
    padding: 12px;
  }

  .template-swiper-prev {
    left: -2px;
  }

  .template-swiper-next {
    right: -2px;
  }

  .site-banner-close {
    top: 10px;
    right: 10px;
  }
}

/* Homepage-specific */
@media (max-width:768px) {
  .hero-home {
    padding-top: 110px;
    min-height: auto;
    padding-bottom: 48px;
  }

  .hero-home h1 {
    font-size: clamp(32px, 9vw, 48px);
  }

  .transform-strip {
    gap: 8px;
  }

  .calc-card {
    padding: 28px 20px;
  }

  .objection-block {
    padding: 28px 20px;
    margin-top: 40px;
  }

  .split-card {
    padding: 24px 20px;
  }

  .lifecycle-card {
    padding: 24px 20px;
  }

  .dash-frame-wrap {
    width: min(340px, 88vw);
  }
}

@media (max-width:480px) {
  .proof-grid {
    gap: 12px;
  }

  .proof-num {
    font-size: 22px;
  }

  .testi-card {
    min-width: min(82vw, 300px);
  }

  .hire-myco-cta {
    padding: 18px !important;
  }

  .lifecycle-grid {
    grid-template-columns: 1fr !important;
    gap: 18px;
  }

  .lifecycle-item {
    padding: 18px 16px;
  }

  .lifecycle-eyebrow {
    font-size: 14px;
  }
}

/* Listing page */
@media (max-width:767px) {
  .listing-theme .sl-wrap.container-fluid {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .listing-page .wrap {
    padding-left: 16px;
    padding-right: 16px;
  }

  .listing-theme .sl-step-label {
    font-size: 11px;
    max-width: 72px;
    line-height: 1.3;
  }

  .listing-theme .sl-toolbar-search {
    min-width: 0 !important;
    max-width: 100% !important;
    flex: 1 1 100%;
  }
}

/* Popup banner safe area */
.site-banner-popup {
  padding-bottom: calc(16px + env(safe-area-inset-bottom, 0px));
}

/* Pagination / overflow utilities */
.blog-pagination nav,
.pagination {
  flex-wrap: wrap;
  justify-content: center;
}

.overflow-touch {
  -webkit-overflow-scrolling: touch;
}

@media (prefers-reduced-motion: reduce) {

  .template-swiper .swiper-slide,
  .myco-status-dot {
    animation: none !important;
    transition: none !important;
  }
}

/* ---------- Banner Popup ---------- */
.site-banner-popup {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 380px;
  max-width: calc(100vw - 48px);
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  z-index: 9999;
  transform: translateY(120%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.4s ease, visibility 0.4s;
}

.site-banner-popup.is-visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.site-banner-popup__inner {
  padding: 24px;
  position: relative;
}

.site-banner-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  color: var(--muted);
  cursor: pointer;
  padding: 4px;
  border-radius: 50%;
  transition: background 0.2s, color 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-banner-close:hover {
  background: var(--charcoal-2);
  color: var(--white);
}

.site-banner-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  padding-right: 24px;
}

.site-banner-desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.site-banner-cta {
  display: inline-block;
  background: var(--accent);
  color: #17181B;
  font-weight: 600;
  font-size: 15px;
  padding: 10px 20px;
  border-radius: 8px;
  margin-bottom: 12px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s;
}

.site-banner-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(245, 130, 12, 0.2);
  color: #17181B;
}

.site-banner-privacy {
  font-size: 12px;
  color: var(--muted-2);
  margin: 0;
}

/* ---------- Blog List ---------- */
.blog-list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 32px;
  margin-top: 48px;
}

@media (min-width: 768px) {
  .blog-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .blog-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

.blog-card {
  background: var(--charcoal);
  border: 1px solid var(--hairline-2);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.blog-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

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

.blog-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 12px;
}

.blog-card-body h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 12px;
}

.blog-card-body h3 a {
  color: var(--white);
  text-decoration: none;
}

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

.blog-card-body p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 24px;
  flex-grow: 1;
}

.learn-more-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.learn-more-link:hover {
  color: #fff;
}

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

.blog-page {
  padding: 0;
  margin-bottom: 56px;
}

@media (max-width:480px) {
  .blog-page {
    margin-bottom: 40px;
  }
}