/* ============================================================
   Sophie Carter – Portfolio (Static)
   styles.css
   ============================================================ */

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #E2E7ED;
  --dark: #1A202C;
  --dark-2: #2D3748;
  --muted: #4A5568;
  --light: #EDF2F7;
  --white: #FFFFFF;
  --border: rgba(255, 255, 255, 0.45);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-full: 100px;
  --shadow-glass: 0 20px 40px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .02);
  --shadow-btn: 0 10px 25px rgba(26, 32, 44, .18);
  --font-display: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-logo: "Dancing Script", cursive;
  --dur: 0.7s;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--bg);
  color: var(--dark);
  font-family: var(--font-sans);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

/* ---- Utility ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.glass-card {
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-glass);
  border-radius: var(--radius-lg);
}

.section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

/* ---- Buttons ---- */
.btn-dark,
.btn-light,
.btn-glass,
.btn-primary-sm,
.floating-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 15px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .2s;
  line-height: 1;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 14px 28px;
  box-shadow: var(--shadow-btn);
}

.btn-dark:hover {
  transform: translateY(-2px) scale(1.02);
}

.btn-light {
  background: var(--light);
  color: var(--dark-2);
  padding: 14px 28px;
}

.btn-light:hover {
  transform: translateY(-2px) scale(1.02);
  background: #dde3ea;
}

.btn-glass {
  background: rgba(255, 255, 255, .75);
  color: var(--dark);
  padding: 14px 28px;
  border: 1px solid var(--border);
}

.btn-glass:hover {
  background: rgba(255, 255, 255, .95);
  transform: translateY(-2px) scale(1.02);
}

.btn-primary-sm {
  background: var(--dark);
  color: var(--white);
  padding: 10px 22px;
  font-size: 14px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);
}

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

/* ---- Section header ---- */
.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 64px;
  gap: 16px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .05);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--dark);
}

.section-header h2 {
  font-family: var(--font-sans);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.15;
  color: var(--dark);
}

.section-header p {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
}

.section-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 64px;
}


/* ============================================================
   NAVIGATION
   ============================================================ */
#top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: background .3s, backdrop-filter .3s, box-shadow .3s;
}

#top-nav.scrolled {
  background: rgba(226, 231, 237, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 20px rgba(0, 0, 0, .07);
}

.nav-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-logo);
  font-weight: 700;
  font-size: 26px;
  color: var(--dark);
  line-height: 1;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: .3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 24px;
  background: rgba(226, 231, 237, .97);
  backdrop-filter: blur(14px);
}

.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark);
}

.mobile-menu.open {
  display: flex;
}

/* Floating bottom nav */
.floating-nav {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 200;
}

.floating-nav-inner {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 6px;
  background: rgba(26, 32, 44, .88);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-full);
  border: 1px solid rgba(255, 255, 255, .1);
  box-shadow: 0 20px 50px rgba(0, 0, 0, .25);
}

.floating-nav-inner a {
  padding: 10px 20px;
  border-radius: var(--radius-full);
  color: rgba(255, 255, 255, .7);
  font-size: 14px;
  font-weight: 500;
  transition: color .2s, background .2s;
}

.floating-nav-inner a:hover {
  color: #fff;
  background: rgba(255, 255, 255, .1);
}

.floating-cta {
  margin-left: 4px;
  background: rgba(255, 255, 255, .15);
  color: #fff !important;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
}

.floating-cta:hover {
  background: rgba(255, 255, 255, .25) !important;
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 112px 24px 96px;
  overflow: hidden;
  background: var(--bg);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-glow-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(255, 255, 255, .7) 0%, transparent 65%);
  animation-delay: 0s;
}

.hero-glow-2 {
  top: 25%;
  left: 33%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 255, 255, .4) 0%, transparent 65%);
  opacity: .5;
  animation-delay: 2s;
  animation-duration: 11s;
}

@keyframes pulse-glow {

  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: .5;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.08);
    opacity: .75;
  }
}

.hero-glow-2 {
  animation: pulse-glow-2 11s ease-in-out infinite 2s;
}

@keyframes pulse-glow-2 {

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

  50% {
    opacity: .5;
    transform: scale(1.15);
  }
}

.hero-blob {
  position: absolute;
  width: 500px;
  height: 350px;
  filter: blur(70px);
  opacity: .25;
  pointer-events: none;
  background-image: url('https://slelguoygbfzlpylpxfs.supabase.co/storage/v1/object/public/test-clones/e444ebe3-5f1f-4eab-926d-8c22702fcb79-portfoy-framer-website/assets/images/dDB4JCGfoX5DJBUD3qohcdOK9U-1.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.hero-blob-left {
  top: 10%;
  left: -8%;
  animation: blob-left 20s ease-in-out infinite;
}

.hero-blob-right {
  top: 15%;
  right: -10%;
  animation: blob-right 25s ease-in-out infinite 3s;
}

@keyframes blob-left {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(10px, -20px)
  }
}

@keyframes blob-right {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(-10px, 20px)
  }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-row {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 4px;
}

.hero-avatar-wrap {
  width: 120px;
  height: 120px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .12);
  transform: rotate(-4deg);
  transition: transform .3s;
  flex-shrink: 0;
}

.hero-avatar-wrap:hover {
  transform: rotate(0deg) scale(1.05);
}

.hero-avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 600;
  color: var(--dark);
  letter-spacing: -.02em;
  line-height: 1.05;
}

.hero-icon-pills {
  display: flex;
  gap: 12px;
}

.hero-pill {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, .1);
}

.hero-pill img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.float-1 {
  animation: float1 4s ease-in-out infinite;
}

.float-2 {
  animation: float2 5s ease-in-out infinite .8s;
}

@keyframes float1 {

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

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

@keyframes float2 {

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

  50% {
    transform: translateY(-8px)
  }
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--muted);
  text-align: center;
  max-width: 560px;
  line-height: 1.65;
  margin: 24px auto 0;
  padding: 0 16px;
  font-weight: 500;
}

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

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal-up,
.reveal-left,
.reveal-right {
  opacity: 0;
  transition: opacity var(--dur) ease, transform var(--dur) ease;
}

.reveal-up {
  transform: translateY(40px);
}

.reveal-left {
  transform: translateX(-40px);
}

.reveal-right {
  transform: translateX(40px);
}

.revealed {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}


/* ============================================================
   PROJECT TICKER
   ============================================================ */
.ticker-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.ticker-track-wrap {
  overflow: hidden;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 40s linear infinite;
  will-change: transform;
}

.ticker-track:hover {
  animation-play-state: paused;
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.3333%);
  }
}

.ticker-card {
  flex-shrink: 0;
  width: 420px;
  padding: 0 12px;
}

.ticker-card-link {
  display: block;
  transition: transform .3s ease;
}

.ticker-card-link:hover {
  transform: translateY(-8px);
}

.ticker-img-wrap {
  aspect-ratio: 4/3;
  width: 100%;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, .4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, .05);
}

.ticker-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.ticker-card-link:hover .ticker-img-wrap img {
  transform: scale(1.05);
}

.ticker-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 8px 4px;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.ticker-meta svg {
  transition: transform .3s;
}

.ticker-card-link:hover .ticker-meta svg {
  transform: translateY(-4px);
}

.ticker-fade-left,
.ticker-fade-right {
  position: absolute;
  inset-y: 0;
  width: 120px;
  pointer-events: none;
  z-index: 10;
}

.ticker-fade-left {
  left: 0;
  background: linear-gradient(to right, #E2E7ED, transparent);
}

.ticker-fade-right {
  right: 0;
  background: linear-gradient(to left, #E2E7ED, transparent);
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--bg);
}

.section-bg-ray {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  height: 700px;
  background: radial-gradient(circle at 50% 30%, rgba(255, 255, 255, .8) 0%, transparent 65%);
  pointer-events: none;
  opacity: .6;
}

.services-grid-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.services-grid-bottom {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 24px;
}

.service-card {
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s ease, background .2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card-dark {
  background: var(--dark);
  border: 1px solid rgba(255, 255, 255, .05);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: transform .3s;
}

.service-card-dark:hover {
  transform: translateY(-4px);
}

.text-white {
  color: #fff !important;
}

.text-white-muted {
  color: rgba(255, 255, 255, .6) !important;
  font-size: 16px;
  line-height: 1.65;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, .5);
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.service-icon-dark {
  background: rgba(255, 255, 255, .1);
  border: none;
}

.service-card h4 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

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

.service-card-split {
  display: flex;
  flex-direction: row;
  padding: 0;
  overflow: hidden;
  gap: 0;
}

.service-card-split-text {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card-split-text h4 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
}

.service-card-split-text p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.service-card-split-img {
  width: 240px;
  min-height: 240px;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 16px;
  margin: 16px 16px 16px 0;
}

.service-card-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* ============================================================
   ABOUT ME
   ============================================================ */
.about-section {
  background: var(--bg);
}

.about-grid {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  flex-wrap: wrap;
}

.profile-card {
  width: 340px;
  flex-shrink: 0;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.profile-img-wrap {
  width: 100%;
  aspect-ratio: 3/4;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.profile-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-status {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: rgba(255, 255, 255, .6);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #48BB78;
  border-radius: 50%;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .5
  }
}

.profile-name {
  font-family: var(--font-sans);
  font-size: 28px;
  font-weight: 600;
}

.profile-bio {
  font-size: 14px;
  color: var(--muted);
  text-align: center;
  line-height: 1.6;
}

.profile-socials {
  display: flex;
  gap: 12px;
}

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--light);
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, .4);
  transition: transform .2s, background .2s;
}

.social-btn:hover {
  transform: scale(1.1) translateY(-2px);
  background: #fff;
}

.about-bio {
  flex: 1;
  min-width: 280px;
}

.about-text {
  font-size: clamp(1rem, 2vw, 1.375rem);
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 32px;
}

.about-divider {
  border: none;
  border-top: 1px dashed rgba(26, 32, 44, .12);
  margin: 32px 0;
}

.expertise-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 4px;
}

.tag {
  padding: 8px 16px;
  background: rgba(237, 242, 247, .7);
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: default;
  transition: transform .2s, background .2s;
}

.tag:hover {
  transform: scale(1.05);
  background: rgba(255, 255, 255, .9);
}

.career-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.career-item {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 20px;
  border-radius: 20px;
  transition: background .2s, transform .2s;
}

.career-item:hover {
  background: rgba(255, 255, 255, .85);
  transform: translateX(4px);
}

.career-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
}

.career-company {
  font-size: 15px;
  color: var(--muted);
}

.career-year {
  font-size: 15px;
  color: var(--muted);
  font-weight: 500;
  text-align: right;
}


/* ============================================================
   COMPARISON
   ============================================================ */
.comparison-section {
  background: var(--bg);
}

.comparison-cards {
  display: flex;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto 64px;
  flex-wrap: wrap;
}

.comparison-card {
  flex: 1;
  min-width: 280px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comparison-card h3 {
  font-family: var(--font-sans);
  font-size: 24px;
  font-weight: 600;
  text-align: center;
  color: var(--dark);
}

.others-title {
  color: var(--muted) !important;
}

.comparison-card-others {
  opacity: .7;
  transform: translateY(24px);
}

.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.5;
}

.check-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--dark);
}

.check-list-muted li {
  color: #A0AEC0;
}

.check-list-muted li svg {
  color: #A0AEC0;
}

/* Service tags marquee */
.service-tags-wrap {
  overflow: hidden;
}

.service-tags-track {
  display: flex;
  gap: 16px;
  width: max-content;
  animation: tags-scroll 30s linear infinite;
}

@keyframes tags-scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.service-tag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: rgba(255, 255, 255, .6);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  cursor: default;
  white-space: nowrap;
  transition: background .2s;
}

.service-tag:hover {
  background: rgba(255, 255, 255, .85);
}


/* ============================================================
   PROCESS
   ============================================================ */
.process-section {
  background: var(--bg);
}

.process-timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}

.process-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(to bottom, transparent, rgba(203, 213, 224, .6), transparent);
  display: none;
}

.process-step {
  display: flex;
  align-items: center;
  gap: 48px;
  margin-bottom: 70px;
  position: relative;
}

.process-step-reverse {
  flex-direction: row-reverse;
}

.process-text {
  flex: 1;
  text-align: left;
}

.process-step-reverse .process-text {
  text-align: right;
}

.process-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: rgba(26, 32, 44, .08);
  line-height: 1;
  margin-bottom: 8px;
}

.process-text h4 {
  font-size: 24px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 10px;
}

.process-text p {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.65;
}

.process-dot {
  display: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid #CBD5E0;
  z-index: 5;
}

.process-img-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 300px;
  aspect-ratio: 1;
  padding: 20px;
  transition: transform .3s ease;
}

.process-img-wrap:hover {
  transform: scale(1.03) translateY(-4px);
}

.process-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ============================================================
   FAQs
   ============================================================ */
.faqs-section {
  background: var(--bg);
}

.faqs-layout {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 32px;
  align-items: start;
}

.faqs-sidebar {
  padding: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  text-align: center;
}

.faqs-sidebar-icon {
  width: 56px;
  height: 56px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, .05);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
}

.faqs-sidebar h4 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
}

.faqs-sidebar p {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.65;
}

.faqs-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: rgba(255, 255, 255, .70);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
}

.faq-btn span {
  font-size: 17px;
  font-weight: 500;
  color: var(--dark);
}

.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform .3s;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  padding: 0 24px 24px;
  overflow: hidden;
  animation: faq-open .3s ease;
}

@keyframes faq-open {
  from {
    opacity: 0;
    transform: translateY(-8px)
  }

  to {
    opacity: 1;
    transform: translateY(0)
  }
}

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


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--bg);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 48px;
}

.testimonial-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  cursor: default;
}

.testimonial-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}

.testimonial-card:hover img {
  transform: scale(1.05);
}

.testimonial-card:hover {
  transform: scale(1.01);
  transition: transform .3s;
}

.testimonial-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 32px;
  background: linear-gradient(to top, rgba(0, 0, 0, .65), rgba(0, 0, 0, .1), transparent);
}

.testimonial-category {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, .2);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 12px;
}

.testimonial-overlay h3 {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.testimonial-overlay p {
  font-size: 16px;
  color: rgba(255, 255, 255, .8);
  font-style: italic;
  line-height: 1.4;
  max-width: 90%;
}

.avatar-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  padding: 24px 0;
}

.avatar-stack {
  display: flex;
}

.avatar-item {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 3px solid var(--bg);
  overflow: hidden;
  margin-left: -12px;
  position: relative;
}

.avatar-item:first-child {
  margin-left: 0;
}

.avatar-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avatar-group p {
  font-size: 16px;
  color: var(--muted);
  font-weight: 500;
}

.avatar-group p strong {
  color: var(--dark);
  font-weight: 700;
}


/* ============================================================
   FOOTER CTA
   ============================================================ */
.footer-cta-wrap {
  position: relative;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-bg-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.footer-blob-1 {
  top: -80px;
  left: calc(50% - 250px);
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.4);
  filter: blur(120px);
}

.footer-blob-2 {
  top: 0;
  right: calc(50% - 175px);
  width: 350px;
  height: 350px;
  background: rgba(203, 213, 224, .5);
  filter: blur(90px);
  opacity: .3;
}

.footer-cta {
  position: relative;
  z-index: 10;
  padding-top: 120px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-icon {
  width: 90px;
  height: 90px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 255, 255, .5);
}

.footer-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 600;
  color: var(--dark);
  line-height: 1.1;
  max-width: 800px;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}

.footer-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.65;
  margin-bottom: 48px;
}

.site-footer {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 96px;
  padding-top: 32px;
  border-top: 1px solid rgba(26, 32, 44, .08);
}

.site-footer p {
  font-size: 14px;
  color: var(--muted);
}

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

.footer-links a {
  font-weight: 600;
  color: var(--dark);
}

.footer-links a:hover {
  text-decoration: underline;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .services-grid-bottom {
    grid-template-columns: 1fr;
  }

  .faqs-layout {
    grid-template-columns: 1fr;
  }

  .process-line {
    display: none;
  }
}

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

  .nav-hamburger {
    display: flex;
  }

  .services-grid-top {
    grid-template-columns: 1fr;
  }

  .services-grid-bottom {
    grid-template-columns: 1fr;
  }

  .about-grid {
    flex-direction: column;
  }

  .profile-card {
    width: 100%;
  }

  .comparison-cards {
    flex-direction: column;
  }

  .comparison-card-others {
    transform: none;
  }

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

  .process-step,
  .process-step-reverse {
    flex-direction: column;
  }

  .process-step-reverse .process-text {
    text-align: left;
  }

  .process-img-wrap {
    max-width: 100%;
  }

  .service-card-split {
    flex-direction: column-reverse;
  }

  .service-card-split-img {
    width: 100%;
    min-height: 200px;
    margin: 12px 12px 0;
  }

  .career-item {
    grid-template-columns: 1fr 1fr;
  }

  .career-year {
    text-align: left;
  }

  .hero-row {
    gap: 16px;
  }

  .ticker-card {
    width: 320px;
  }

  .section-ctas {
    flex-direction: column;
    align-items: center;
  }

  .site-footer {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.8rem;
  }

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

  .floating-nav-inner a {
    padding: 8px 14px;
    font-size: 13px;
  }

  .ticker-card {
    width: 280px;
  }
}