.hidden {
  display: none !important;
}




/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
}

body {
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  background: radial-gradient(circle at top, #141428 0, #050711 40%, #02030a 100%);
  color: #ffffff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ===== ROOT TOKENS ===== */
:root {
  --color-bg: #050711;
  --color-bg-alt: #090c1a;
  --color-surface: rgba(14, 19, 42, 0.9);
  --color-gold: #f5c76a;
  --color-blue: #3de1ff;
  --color-purple: #9b5cff;
  --color-text: #ffffff;
  --color-muted: #9ca3af;
  --radius-lg: 18px;
  --radius-pill: 9999px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.75);
}

/* ===== UTILITIES ===== */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5.5rem 0;
}

.section-alt {
  background: radial-gradient(circle at top left, #10122a, transparent 60%);
}

.section-header {
  margin-bottom: 2.5rem;
  max-width: 640px;
}

.section-header.inline-header {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: flex-end;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: var(--color-blue);
  margin-bottom: 0.6rem;
}

.section-subtext {
  color: var(--color-muted);
  margin-top: 0.8rem;
  font-size: 0.95rem;
}

.link-arrow {
  font-size: 0.9rem;
  color: var(--color-gold);
  opacity: 0.9;
  cursor: default;
}

.link-arrow.muted {
  color: var(--color-muted);
}

/* Reveal animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* TEMP FIX: always show revealed elements */
[data-reveal] {
  opacity: 1 !important;
  transform: translateY(0) !important;
}



/* Glassmorphism */
.glass {
  background: linear-gradient(
      135deg,
      rgba(245, 199, 106, 0.06),
      rgba(61, 225, 255, 0.04)
    ),
    rgba(8, 12, 36, 0.84);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(26px);
}

/* ===== TYPOGRAPHY ===== */
h1,
h2,
h3,
h4 {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-weight: 600;
}

h1 {
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  line-height: 1.05;
}

h1 span {
  background: linear-gradient(135deg, var(--color-gold), var(--color-purple), var(--color-blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

h2 {
  font-size: clamp(1.7rem, 4vw, 2.1rem);
}

h3 {
  font-size: 1.1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9rem 1.4rem;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.16s ease, box-shadow 0.16s ease,
    background 0.16s ease, border-color 0.16s ease, color 0.16s ease;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold), var(--color-purple), var(--color-blue));
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.8);
  color: #050711;
}

.btn-primary:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 16px 45px rgba(0, 0, 0, 0.95);
}

.btn-ghost {
  background: rgba(9, 12, 26, 0.9);
  border-color: rgba(245, 199, 106, 0.3);
  color: var(--color-text);
}

.btn-ghost:hover {
  background: rgba(245, 199, 106, 0.06);
}

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: linear-gradient(to bottom, rgba(5, 7, 17, 0.95), rgba(5, 7, 17, 0.75), transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(5, 7, 17, 0.98);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.1rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.logo span {
  display: inline-block;
}

.logo-text span:last-child {
  font-weight: 400;
  opacity: 0.65;
  margin-left: 0.2rem;
}

.logo-mark {
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: radial-gradient(circle at 30% 20%, var(--color-gold), var(--color-purple));
  box-shadow: 0 0 18px rgba(245, 199, 106, 0.75);
}

.logo.mini {
  font-size: 0.95rem;
}

/* Nav links */
.nav {
  display: flex;
  align-items: center;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  font-size: 0.9rem;
}

.nav-links a {
  color: var(--color-muted);
  position: relative;
  padding-bottom: 0.1rem;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.05rem;
  width: 0%;
  height: 1px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-purple));
  transition: width 0.2s ease;
}

.nav-links a:hover {
  color: var(--color-text);
}

.nav-links a:hover::after {
  width: 100%;
}

/* Nav toggle (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.25rem;
  cursor: pointer;
}

.nav-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

/* ===== HERO ===== */
.hero {
  padding: 6rem 0 4.5rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.36rem 0.8rem;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(9, 12, 26, 0.9);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-muted);
  margin-bottom: 1.1rem;
}

.hero-subtext {
  color: var(--color-muted);
  margin-top: 1rem;
  max-width: 30rem;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.7rem;
}

.hero-tags span {
  font-size: 0.78rem;
  border-radius: var(--radius-pill);
  padding: 0.4rem 0.75rem;
  background: rgba(10, 14, 40, 0.9);
  border: 1px solid rgba(157, 120, 255, 0.25);
  color: var(--color-muted);
}

/* Hero visual side */
.hero-visual {
  position: relative;
  min-height: 260px;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(5px);
  opacity: 0.8;
}

.orb-large {
  width: 240px;
  height: 240px;
  right: 0;
  top: -20px;
  background: radial-gradient(circle at 20% 20%, var(--color-gold), transparent 60%),
    radial-gradient(circle at 80% 80%, var(--color-purple), transparent 65%);
}

.orb-small {
  width: 140px;
  height: 140px;
  left: -10px;
  bottom: -10px;
  background: radial-gradient(circle at 30% 30%, var(--color-blue), transparent 60%),
    radial-gradient(circle at 60% 70%, var(--color-purple), transparent 70%);
}

.stat-card {
  position: absolute;
  padding: 1rem 1.2rem;
  max-width: 260px;
}

.stat-main {
  right: 14%;
  top: 35%;
}

.stat-side {
  left: 0;
  top: 8%;
}

.stat-bottom {
  left: 24%;
  bottom: 3%;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
}

.stat-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* ===== CARDS / GRIDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.6rem;
}

.card {
  padding: 1.6rem 1.4rem;
}

.card p {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
  margin-bottom: 0.7rem;
}

.card ul {
  margin-top: 0.4rem;
}

.card li {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

/* Help grid */
.help-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.help-card {
  padding: 1.4rem 1.3rem 1.2rem;
  position: relative;
  overflow: hidden;
}

.help-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.5rem;
}

.help-tag {
  margin-top: 1.1rem;
  display: inline-flex;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-gold);
}

/* Pill row */
.pill-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.pill {
  padding: 1.2rem 1rem;
}

.pill h3 {
  margin-bottom: 0.3rem;
}

.pill p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* About preview */
.about-preview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  gap: 2.4rem;
  align-items: center;
}

.about-cards {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.about-pill {
  padding: 1.2rem 1.1rem;
}

.about-pill h3 {
  margin-bottom: 0.3rem;
}

.about-pill p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Portfolio preview */
.portfolio-grid .portfolio-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-blue);
  margin-bottom: 0.4rem;
}

.portfolio-grid h3 {
  margin-bottom: 0.45rem;
}

.portfolio-grid p {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Contact CTA */
.section-cta {
  padding-bottom: 6.5rem;
}

.contact-cta {
  padding: 2.1rem 2rem;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  align-items: center;
}

.contact-cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  min-width: 210px;
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  background: radial-gradient(circle at top, #15182e, #050711 45%);
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.3fr);
  gap: 3rem;
  padding: 2.8rem 1.5rem 2.4rem;
}

.footer-brand p {
  color: var(--color-muted);
  font-size: 0.9rem;
  margin-top: 0.6rem;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.footer-links h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-muted);
  margin-bottom: 0.7rem;
}

.footer-links li {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 0.3rem;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 0.8rem 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-tagline {
  font-size: 0.78rem;
  color: #e5e7eb;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 260px;
    margin-top: 1.5rem;
  }

  .cards-grid,
  .help-grid,
  .pill-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-preview-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
    text-align: center;
  }
}

@media (max-width: 720px) {
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .nav {
    position: absolute;
    inset: 58px 0 auto 0;
    padding: 0.8rem 1.5rem 1.2rem;
    background: rgba(5, 7, 17, 0.97);
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  .nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero {
    padding-top: 5rem;
  }

  .cards-grid,
  .help-grid,
  .pill-row {
    grid-template-columns: 1fr;
  }

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-cta-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }
}






















/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

.page-hero {
  padding: 6rem 0 3.5rem;
}

.about-hero {
  background: radial-gradient(circle at top, #181b38, transparent 55%);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 0.9fr);
  gap: 2.5rem;
  align-items: center;
}

.page-hero-text {
  color: var(--color-muted);
  margin-top: 1rem;
  max-width: 34rem;
  font-size: 0.98rem;
}

.page-hero-meta {
  padding: 1.6rem 1.4rem;
}

.page-hero-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--color-blue);
  margin-bottom: 0.7rem;
}

.page-hero-meta ul li {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-bottom: 0.4rem;
}

.page-hero-meta ul li span {
  color: #e5e7eb;
  font-weight: 500;
  margin-right: 0.2rem;
}

/* Mission section */
.about-section-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
  gap: 2.4rem;
  align-items: center;
}

.about-highlight {
  padding: 1.6rem 1.5rem;
  font-size: 0.95rem;
  color: var(--color-muted);
}

/* Process */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.process-step {
  padding: 1.4rem 1.3rem 1.3rem;
}

.process-step-number {
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-blue);
  margin-bottom: 0.35rem;
}

.process-step p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.process-step ul li {
  font-size: 0.85rem;
  color: var(--color-muted);
  margin-bottom: 0.25rem;
}

/* Values */
.value-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.value-card {
  padding: 1.4rem 1.3rem;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.45rem;
}

/* Reasons */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.3rem;
}

.reason-card {
  padding: 1.4rem 1.3rem;
}

.reason-card p {
  font-size: 0.9rem;
  color: var(--color-muted);
  margin-top: 0.45rem;
}

.about-bottom-cta {
  margin-top: 2.4rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

/* Responsive for About page */
@media (max-width: 960px) {
  .page-hero-grid {
    grid-template-columns: 1fr;
  }

  .about-section-grid {
    grid-template-columns: 1fr;
  }

  .process-grid,
  .value-grid,
  .reason-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .process-grid,
  .value-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .about-bottom-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}















/* ===== SERVICES PAGE / CAROUSEL ===== */

.services-hero {
  background: radial-gradient(circle at top, #181b38, transparent 55%);
}

.services-carousel-section {
  padding-top: 4rem;
}

.services-carousel {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.8rem 2.6rem;
  overflow: hidden;
}

.services-track {
  position: relative;
  min-height: 250px;
}

.service-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.service-slide.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.slide-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  color: var(--color-blue);
  margin-bottom: 0.45rem;
}

.slide-intro {
  font-size: 0.95rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
  margin-bottom: 1.2rem;
}

.slide-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.2rem;
}

.slide-column h4 {
  font-size: 0.95rem;
  margin-bottom: 0.35rem;
}

.slide-column ul li {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

/* Carousel buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 25, 0.9);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  line-height: 1;
  transition: background 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.carousel-btn:hover {
  background: rgba(245, 199, 106, 0.18);
  border-color: rgba(245, 199, 106, 0.6);
  transform: translateY(-50%) scale(1.03);
}

.carousel-btn[data-carousel="prev"] {
  left: 1rem;
}

.carousel-btn[data-carousel="next"] {
  right: 1rem;
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.3rem;
}

.carousel-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease, width 0.16s ease;
}

.carousel-dot.is-active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-purple));
  width: 20px;
  transform: scale(1.05);
}

/* Responsive for services page */
@media (max-width: 960px) {
  .services-carousel {
    padding: 1.6rem 1.4rem;
  }

  .slide-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .carousel-btn[data-carousel="prev"] {
    left: 0.6rem;
  }

  .carousel-btn[data-carousel="next"] {
    right: 0.6rem;
  }
}

@media (max-width: 720px) {
  .services-carousel {
    padding: 1.4rem 1.1rem;
  }

  .slide-grid {
    grid-template-columns: 1fr;
  }

  .carousel-btn {
    display: none;
  }
}
























































































































/* ===== PORTFOLIO PAGE ===== */

.portfolio-hero {
  background: radial-gradient(circle at top, #181b38, transparent 55%);
}

/* Case studies */
.case-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.case-card {
  padding: 1.6rem 1.4rem;
}

.case-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-blue);
  margin-bottom: 0.4rem;
}

.case-text {
  font-size: 0.92rem;
  color: var(--color-muted);
  margin-top: 0.4rem;
  margin-bottom: 0.6rem;
}

.case-card ul li {
  font-size: 0.86rem;
  color: var(--color-muted);
  margin-bottom: 0.2rem;
}

.case-metric {
  font-size: 0.86rem;
  color: var(--color-gold);
  margin-top: 0.7rem;
}

/* Testimonials */
.testimonials {
  position: relative;
  margin-top: 1.5rem;
  padding: 1.8rem 2.4rem;
  overflow: hidden;
}

.testimonial-track {
  position: relative;
  min-height: 150px;
}

.testimonial {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateX(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}

.testimonial.is-active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}

.testimonial-quote {
  font-size: 0.98rem;
  color: #e5e7eb;
  margin-bottom: 0.8rem;
}

.testimonial-name {
  font-size: 0.9rem;
  font-weight: 500;
}

.testimonial-role {
  font-size: 0.82rem;
  color: var(--color-muted);
}

.testimonial-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 999px;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 7, 25, 0.9);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  line-height: 1;
  transition: background 0.16s ease, transform 0.16s ease, border-color 0.16s ease;
}

.testimonial-btn:hover {
  background: rgba(245, 199, 106, 0.2);
  border-color: rgba(245, 199, 106, 0.6);
  transform: translateY(-50%) scale(1.04);
}

.testimonial-btn[data-testimonial="prev"] {
  left: 1rem;
}

.testimonial-btn[data-testimonial="next"] {
  right: 1rem;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}

.testimonial-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  border: none;
  background: rgba(148, 163, 184, 0.5);
  cursor: pointer;
  transition: background 0.16s ease, transform 0.16s ease, width 0.16s ease;
}

.testimonial-dot.is-active {
  background: linear-gradient(135deg, var(--color-gold), var(--color-purple));
  width: 20px;
  transform: scale(1.05);
}

/* Client logos */
.logo-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  padding: 1rem 1.2rem;
}

.logo-pill {
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.86rem;
  border: 1px solid rgba(148, 163, 184, 0.4);
  color: var(--color-muted);
}

.logo-pill:hover {
  border-color: rgba(245, 199, 106, 0.9);
  color: #e5e7eb;
}

/* Responsive */
@media (max-width: 960px) {
  .case-grid {
    grid-template-columns: 1fr;
  }

  .testimonials {
    padding: 1.7rem 1.4rem;
  }

  .testimonial-btn[data-testimonial="prev"] {
    left: 0.6rem;
  }

  .testimonial-btn[data-testimonial="next"] {
    right: 0.6rem;
  }
}

@media (max-width: 720px) {
  .testimonial-btn {
    display: none;
  }
}

























































/* ===== CONTACT PAGE ===== */

.contact-hero {
  background: radial-gradient(circle at top, #181b38, transparent 55%);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.2fr);
  gap: 2rem;
}

.contact-column {
  display: flex;
  flex-direction: column;
  gap: 1.3rem;
}

.contact-card {
  padding: 1.6rem 1.4rem;
}

.contact-card h2,
.contact-card h3 {
  margin-bottom: 0.5rem;
}

.contact-card p {
  font-size: 0.92rem;
  color: var(--color-muted);
}

.contact-card-subtext {
  margin-bottom: 1.4rem;
}

.contact-info-list {
  margin-top: 1.1rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.contact-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--color-blue);
}

.contact-link {
  font-size: 0.9rem;
  color: #e5e7eb;
}

.contact-link:hover {
  text-decoration: underline;
}

.contact-text {
  font-size: 0.9rem;
  color: var(--color-muted);
}

/* Calendly embed */
.calendly-card p {
  margin-bottom: 0.9rem;
}

.calendly-embed iframe {
  border-radius: 14px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  background: rgba(9, 12, 26, 0.95);
}

.calendly-fallback {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.calendly-fallback a {
  color: var(--color-gold);
  text-decoration: underline;
}


/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form-field label {
  font-size: 0.82rem;
  color: #e5e7eb;
}

.form-field input,
.form-field select,
.form-field textarea {
  background: rgba(9, 12, 26, 0.95);
  border-radius: 10px;
  border: 1px solid rgba(148, 163, 184, 0.5);
  padding: 0.6rem 0.75rem;
  font-size: 0.9rem;
  color: #e5e7eb;
  outline: none;
}

.form-field textarea {
  resize: vertical;
  min-height: 120px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: rgba(245, 199, 106, 0.85);
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.faq-item {
  border-radius: var(--radius-lg);
  border: 1px solid rgba(148, 163, 184, 0.4);
  background: rgba(6, 9, 28, 0.95);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 0.9rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  color: #e5e7eb;
  font-size: 0.92rem;
  cursor: pointer;
}

.faq-toggle {
  font-size: 1.2rem;
  line-height: 1;
  margin-left: 0.8rem;
  color: var(--color-muted);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  transition: max-height 0.22s ease, padding-bottom 0.22s ease;
}

.faq-answer p {
  font-size: 0.9rem;
  color: var(--color-muted);
  padding-bottom: 0.9rem;
}

/* Open state */
.faq-item.is-open .faq-answer {
  max-height: 260px;
  padding-bottom: 0.9rem;
}

.faq-item.is-open .faq-toggle {
  transform: rotate(45deg);
}

/* Contact responsive */
@media (max-width: 960px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}





































































































/* ======================= */
/*    CLIENT PORTAL PAGE   */
/* ======================= */

.portal-hero {
  background: radial-gradient(circle at top, #191b39, transparent 55%);
}

.portal-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.portal-card {
  padding: 1.7rem 1.5rem;
}

.portal-text {
  color: var(--color-muted);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}

.portal-login-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.portal-small-print {
  margin-top: 0.4rem;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.portal-error {
  margin-top: 0.4rem;
  font-size: 0.8rem;
  color: #f97373;
}

/* Dashboard */
.portal-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.3rem;
}

.portal-welcome {
  font-size: 1rem;
  font-weight: 500;
}

.portal-sub {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.btn-small {
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
}

/* Progress area */
.portal-progress {
  margin-bottom: 1.6rem;
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.2fr);
  gap: 1.2rem;
}

.progress-label {
  font-size: 0.9rem;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.progress-bar {
  width: 100%;
  height: 9px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.9);
  overflow: hidden;
  margin-bottom: 0.4rem;
}

.progress-fill {
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    var(--color-gold),
    var(--color-purple),
    var(--color-blue)
  );
}

.progress-percent {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.progress-stats {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.progress-card {
  padding: 0.7rem 0.75rem;
  border-radius: 12px;
  background: rgba(9, 12, 26, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.4);
}

.progress-title {
  font-size: 0.8rem;
  color: var(--color-muted);
}

.progress-value {
  font-size: 0.98rem;
}

.progress-note {
  font-size: 0.8rem;
  color: var(--color-muted);
}

/* Campaigns & services */
.portal-section {
  margin-top: 1.4rem;
}

.portal-section h3 {
  margin-bottom: 0.6rem;
}

.portal-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.85rem;
}

.portal-table th,
.portal-table td {
  padding: 0.6rem 0.5rem;
  text-align: left;
}

.portal-table th {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
  border-bottom: 1px solid rgba(148, 163, 184, 0.4);
}

.portal-table tbody tr:nth-child(odd) {
  background: rgba(9, 12, 26, 0.75);
}

.portal-table tbody tr:nth-child(even) {
  background: rgba(9, 12, 26, 0.4);
}

/* Services pills */
.portal-services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.portal-service-pill {
  border-radius: 14px;
  padding: 0.75rem 0.8rem;
  background: rgba(9, 12, 26, 0.9);
  border: 1px solid rgba(148, 163, 184, 0.5);
}

.service-name {
  font-size: 0.85rem;
}

.service-status {
  font-size: 0.8rem;
  margin-top: 0.25rem;
}

.service-status.active {
  color: #4ade80;
}

.service-status.planned {
  color: var(--color-gold);
}

.service-status.completed {
  color: var(--color-blue);
}

/* Responsive portal */
@media (max-width: 900px) {
  .portal-progress {
    grid-template-columns: 1fr;
  }

  .portal-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .portal-services-grid {
    grid-template-columns: 1fr;
  }

  .portal-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

