:root {
  --bg: #0b1220;
  --bg2: #0f1b33;
  --text: #eaf0ff;
  --muted: #b9c4e2;
  --line: rgba(255, 255, 255, .10);
  --accent: #4f8cff;
  --accent2: #7c5cff;
  --shadow: 0 18px 55px rgba(0, 0, 0, .35);
  --radius: 16px;

  /* Case card / orange gradient vars */
  --case-gradient-start: #ff8a00;
  --case-gradient-end: #ff3d00;
  --case-gradient-angle: -45deg;
  --case-card-max-width: 220px;

  /* CTA colors */
  --cta-start: #ff8a00;
  --cta-end: #ff6a00;
  --cta-shadow: 0 12px 30px rgba(255, 122, 0, 0.35);
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(79, 140, 255, .25), transparent 55%),
    radial-gradient(1200px 700px at 80% 10%, rgba(124, 92, 255, .22), transparent 55%),
    linear-gradient(180deg, var(--bg) 0%, #070b14 100%);
}

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

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px
}

/* =========================
   HEADER / NAV
========================= */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background: rgba(11, 18, 32, .78);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

/* Brand logo as background */
.logo {
  height: 40px;   /* adjust as needed */
  width: auto;
}

/* =========================
   NAVIGATION
========================= */
.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav a {
  color: var(--muted);
  font-weight: 600;
  font-size: 0.95rem;
}

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

/* Hamburger menu */
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin: 5px auto;
  background: var(--text);
}

/* Mobile nav */
@media (max-width: 960px) {
  .nav-toggle {
    display: flex;
  }

  .nav {
    position: fixed;
    top: 80px;
    right: 20px;
    flex-direction: column;
    gap: 12px;
    background: rgba(11, 18, 32, .96);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    width: min(320px, calc(100vw - 40px));
    box-shadow: var(--shadow);
    display: none;
  }

  .nav.open {
    display: flex;
  }
}

.hard-outcomes-title {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
}


/* =========================
   BUTTONS
========================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  border: 0;
  font-weight: 800;
  color: rgb(255, 255, 255);
  box-shadow: var(--cta-shadow);
  cursor: pointer;
}

.btn:hover {
  filter: brightness(1.05)
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 14px;
  background: transparent;
  border: 1px solid rgba(255, 138, 0, 0.16);
  color: var(--cta-start);
  box-shadow: none;
  font-weight: 800;
  cursor: pointer;
}

.btn-small {
  padding: 10px 12px;
  border-radius: 12px
}

.btn-block {
  width: 100%
}

/* Global focus for buttons / important links */
.btn:focus-visible,
.btn-ghost:focus-visible,
.btn-cta:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.5);
  outline-offset: 3px;
}

/* =========================
   BOOK A CALL BUTTON (Animated Orange)
   Based on Uiverse.io by adamgiebl
========================= */
.btn-cta {
  font-family: inherit;
  font-size: 1.25rem;
  /* ~20px */
  background: linear-gradient(135deg, var(--cta-start), var(--cta-end));
  color: white;
  padding: 0.7em 1.1em;
  padding-left: 0.9em;
  display: inline-flex;
  align-items: center;
  border: none;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
  font-weight: 800;
  box-shadow: var(--cta-shadow);
}

.btn-cta span {
  display: block;
  margin-left: 0.3em;
  transition: transform 0.3s ease-in-out;
}

.btn-cta svg {
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}

.btn-cta:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}

.btn-cta:hover svg {
  transform: translateX(1.2em) rotate(45deg) scale(1.1);
}

.btn-cta:hover .cta-text {
  transform: translateX(130%);
}

.btn-cta:active {
  transform: scale(0.95);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

/* Optional: focus accessibility */
.btn-cta:focus-visible {
  outline: 3px solid rgba(255, 138, 0, 0.5);
  outline-offset: 3px;
}


/* =========================
   SECTIONS / TYPE
========================= */
.section {
  padding: 84px 0
}

.section.alt {
  background: rgba(255, 255, 255, .03);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.section-head {
  margin-bottom: 26px;
  text-align: center
}

.section-head h2 {
  margin: 0 0 8px;
  font-size: 2rem
}

.section-head p {
  margin: 0 auto;
  max-width: 700px
}

.kicker {
  color: var(--muted);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .75rem
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7
}

.muted {
  color: var(--muted)
}

.small {
  font-size: .9rem
}

/* =========================
   PHOTO FRAMES
========================= */
.photo-frame {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, .03);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* =========================
   HERO
========================= */
.hero {
  padding: 90px 0 70px
}

.hero-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 26px;
  align-items: start;
}

.hero-copy h1 {
  margin: 10px 0 14px;
  font-size: 3rem;
  line-height: 1.1;
  letter-spacing: -.02em;
}

.cta-row {
  display: flex;
  gap: 12px;
  margin: 20px 0 18px;
  flex-wrap: wrap;
  justify-content: center
}

.hero-photo {
  height: 520px
}

.hero-photo .photo {
  height: 520px
}

.proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 18px;
}

.proof-item {
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .03);
}

.proof-item strong {
  display: block;
  font-size: 1.2rem
}

.proof-item span {
  color: var(--muted);
  font-weight: 600;
  font-size: .9rem
}

.hero-card-inline {
  margin-top: 18px
}

/* =========================
   GLOBAL CARDS / GRIDS
========================= */

/* Base card styling */
.card {
  border: 1px solid var(--line);
  background: rgba(15, 27, 51, 0.60);
  border-radius: var(--radius);
  padding: 18px;
}

/* General grid for multiple cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  justify-items: stretch;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Specific: 2-card layout (Who I Help / Fit section) */
.cards.two {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 960px) {
  .cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cards.two {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}


/* =========================
   LISTS
========================= */
.bullets {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8
}

.checklist {
  margin: 12px 0 0;
  padding-left: 0;
  list-style: none;
  color: var(--muted)
}

.checklist li {
  padding-left: 28px;
  margin: 10px 0;
  position: relative;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(79, 140, 255, .18);
  color: #cfe0ff;
  font-weight: 900;
}

/* =========================
   ABOUT
========================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr .9fr;
  gap: 18px;
  align-items: start;
}

/* make grid children shrink properly */
.about-layout>* {
  min-width: 0
}

.about-left {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 14px;
}

.about-photo {
  height: 280px
}

.about-photo .photo {
  height: 280px
}

.awards {
  margin-top: 18px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

/* =========================
   CASE STUDIES
========================= */
.case-carousel {
  overflow: visible;
}

.case-track {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding: 0;
}

.case-card {
  position: relative;
  width: 190px;
  height: 254px;
  background-color: #000;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  cursor: pointer;
  color: white;
  flex: 0 0 auto;
  /* ensures no shrinking */
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  left: -5px;
  margin: auto;
  width: 200px;
  height: 264px;
  border-radius: 10px;
  background: linear-gradient(-45deg, rgb(255, 133, 133) 0%, rgb(255, 255, 108) 100%);
  z-index: -10;
  pointer-events: none;
  transition: all 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.case-card::after {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0;
  background: linear-gradient(-45deg, rgb(239, 80, 80) 0%, rgb(250, 250, 107) 100%);
  transform: translate3d(0, 0, 0) scale(0.95);
  filter: blur(20px);
}

.case-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: capitalize;
}

.case-card p:not(.case-metric) {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.case-card .case-metric {
  color: #f7f5f7;
  font-weight: 600;
}

@media (hover: hover) {
  .case-card:hover::after {
    filter: blur(30px);
  }

  .case-card:hover::before {
    transform: rotate(-90deg) scaleX(1.34) scaleY(0.77);
  }
}

/* =========================
   SERVICES
========================= */
.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.service-card {
  flex: 0 1 calc(33.333% - 12px);
  min-width: 250px;
}

/* Rotating gradient border cards */
.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  text-align: center;
}

/* Make sure text sits above pseudo-elements */
.service-card h3,
.service-card p {
  position: relative;
  z-index: 1;
}

.service-card h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 800;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 0.95rem;
}

/* BIG rotating gradient behind the inner panel */
.service-card::before {
  content: "";
  position: absolute;
  width: 220%;
  height: 220%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: conic-gradient(from 0deg, rgb(0, 183, 255), rgb(255, 48, 255), rgb(0, 183, 255));
  animation: serviceRotBG 5s linear infinite;
  will-change: transform;
}

/* Inner panel matching your dark theme */
.service-card::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 16px;
  background: rgba(15, 27, 51, 0.96);
  border: 1px solid var(--line);
}

/* Rotation animation (same idea as your code) */
@keyframes serviceRotBG {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .service-card::before {
    animation: none !important;
  }
}

/* Mobile layout */
@media (max-width: 960px) {
  .service-card {
    flex: 0 1 100%;
    min-width: 0;
  }
}

/* =========================
   STEPS
========================= */
.steps {
  display: grid;
  gap: 12px
}

.step {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: rgba(255, 255, 255, .03);
}

.step span {
  width: 34px;
  height: 34px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(124, 92, 255, .18);
  font-weight: 900;
}

.step h3 {
  margin: 0 0 4px
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6
}

/* =========================
   CALLOUT
========================= */
.callout {
  margin-top: 18px;
  border: 1px solid rgba(79, 140, 255, .30);
  background: rgba(79, 140, 255, .10);
  border-radius: var(--radius);
  padding: 16px;
}

/* =========================
   BOOKING FORM
========================= */
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.form {
  display: grid;
  gap: 10px
}

label {
  display: grid;
  gap: 6px;
  font-weight: 700
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(7, 11, 20, .55);
  color: var(--text);
  font: inherit;
}

input::placeholder,
textarea::placeholder {
  color: rgba(185, 196, 226, .65)
}

input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
}

/* =========================
   FAQ
========================= */
.faq {
  display: grid;
  gap: 12px
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(15, 27, 51, .55)
}

summary {
  font-weight: 700;
  cursor: pointer
}

details[open] {
  background: rgba(15, 27, 51, .65)
}

details p {
  margin: 0;
  color: var(--muted)
}

/* =========================
   FOOTER
========================= */
.footer {
  padding: 28px 0;
  border-top: 1px solid var(--line);
  background: rgba(11, 18, 32, .75);
  text-align: center;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-links a {
  margin-left: 12px;
  color: var(--muted);
}

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

.social-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 4px;
}

.social-links a svg {
  width: 28px;
  height: 28px;
  color: var(--muted);
  transition: color 0.2s, transform 0.2s;
}

/* Hover colors for each brand */
.social-links a.twitter:hover svg {
  color: #1DA1F2;
  transform: scale(1.2);
}

.social-links a.linkedin:hover svg {
  color: #0077B5;
  transform: scale(1.2);
}

.social-links a.instagram:hover svg {
  color: #E1306C;
  transform: scale(1.2);
}

.social-links a.spotify:hover svg {
  color: #1DB954;
  transform: scale(1.2);
}

.footer-disclaimer {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
  text-align: center;
}

.footer-disclaimer p {
  font-size: 0.7rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0 auto;
  max-width: 900px;
}

/* =========================
   GLOBAL RESPONSIVE
========================= */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-photo {
    height: 350px;
    max-width: 480px;
    margin: 0 auto;
  }

  .hero-photo .photo {
    height: 350px;
  }

  .hero-copy h1 {
    font-size: 2.2rem;
  }

  .kicker {
    text-align: center;
  }

  .proof {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo {
    max-width: 400px;
    margin: 0 auto;
  }

  .awards {
    text-align: left;
  }

  .steps {
    max-width: 600px;
    margin: 0 auto;
  }

  .callout {
    max-width: 600px;
    margin: 18px auto 0;
  }

  .faq {
    max-width: 600px;
    margin: 0 auto;
  }
}

/* =========================
   SUBSCRIBE FORM
========================= */
.subscribe-form {
  display: flex;
  gap: 10px;
  max-width: 600px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.subscribe-form input {
  flex: 1 1 200px;
}

.subscribe-form button {
  flex: 0 0 auto;
}

.subscribe-msg {
  text-align: center;
  margin-top: 10px;
  min-height: 1.2em;
}

@media (max-width: 960px) {
  .subscribe-form {
    flex-direction: column;
  }

  .subscribe-form input,
  .subscribe-form button {
    width: 100%;
  }
}

/* =========================
   BLOG GRID & CARDS
========================= */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.blog-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(15, 27, 51, 0.60);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

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

.blog-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.blog-card-body h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.blog-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.blog-card-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

.blog-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}

.tag {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 8px;
  background: rgba(79, 140, 255, .15);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 600;
}

/* =========================
   BLOG POST (SINGLE)
========================= */
.blog-post-content {
  max-width: 720px;
  margin: 0 auto;
}

.blog-post-cover {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 20px;
}

.blog-post-date {
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.blog-post-content h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
  line-height: 1.2;
}

.blog-post-body p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0 0 16px;
}

.blog-post-body h2 {
  margin: 32px 0 12px;
  font-size: 1.5rem;
}

.blog-post-body h3 {
  margin: 24px 0 10px;
  font-size: 1.2rem;
}

.blog-post-body blockquote {
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 16px 0;
  color: var(--muted);
  font-style: italic;
}

.blog-post-body a {
  color: var(--accent);
  text-decoration: underline;
}

.blog-image {
  margin: 20px 0;
}

.blog-image img {
  width: 100%;
  border-radius: var(--radius);
}

/* =========================
   INTERVIEWS GRID & CARDS
========================= */
.interviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.interview-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: rgba(15, 27, 51, 0.60);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
  text-decoration: none;
  color: inherit;
}

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

.interview-card-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

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

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

.interview-card-body h3 {
  margin: 6px 0 8px;
  font-size: 1.1rem;
}

.interview-card-body p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.interview-platform {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  background: rgba(124, 92, 255, .18);
  color: var(--accent2);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 8px;
}

.interview-date {
  font-size: 0.8rem;
  color: var(--muted);
  font-weight: 600;
}

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

  .blog-post-content h1 {
    font-size: 1.6rem;
  }
}