@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;0,800;1,700&display=swap');

:root {
  --bg-base: #08080f;
  --bg-surface: #0d0d18;
  --bg-elevated: #121220;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-h: rgba(255, 255, 255, 0.07);

  --orange: #e8741a;
  --orange-light: #ff9a45;
  --orange-pale: #ffdcb4;
  --orange-glow: rgba(232, 116, 26, 0.28);
  --orange-grad: linear-gradient(135deg, #c8540a, #ff9a45);
  --orange-grad2: linear-gradient(135deg, #ff9a45, #e8741a);

  --purple: #7c3aed;
  --purple-light: #a78bfa;
  --purple-glow: rgba(124, 58, 237, 0.22);

  --border: rgba(255, 255, 255, 0.07);
  --border-orange: rgba(232, 116, 26, 0.3);
  --border-purple: rgba(124, 58, 237, 0.3);

  --text: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.58);
  --text-muted: rgba(255, 255, 255, 0.3);

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;
  --r-full: 9999px;

  --container: 1200px;
  --header-h: 72px;
  --font: 'Inter', sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
  --t: 0.22s ease;
  --t-s: 0.38s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font);
  background: var(--bg-base);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none;
}

h1,
h2,
h3,
h4 {
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h1 {
  font-size: clamp(2.4rem, 6vw, 4.8rem);
}
h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}
h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
}
h4 {
  font-size: clamp(1rem, 2vw, 1.15rem);
}
p {
  color: var(--text-secondary);
  line-height: 1.78;
}
.serif {
  font-family: var(--font-serif);
}
.orange-text {
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.purple-text {
  color: var(--purple-light);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.2rem, 4vw, 2.5rem);
}
section {
  padding: 90px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--r-full);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: all var(--t);
  white-space: nowrap;
}
.btn-orange {
  background: var(--orange-grad);
  color: #08080f;
  box-shadow: 0 4px 28px var(--orange-glow);
}
.btn-orange:hover {
  box-shadow: 0 6px 44px rgba(232, 116, 26, 0.55);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--text);
  border: 1.5px solid var(--border);
  backdrop-filter: blur(10px);
}
.btn-outline:hover {
  border-color: var(--border-orange);
  color: var(--orange-light);
  transform: translateY(-2px);
}
.btn-purple {
  background: linear-gradient(135deg, #6d28d9, #a78bfa);
  color: #ffffff;
  box-shadow: 0 4px 28px var(--purple-glow);
}
.btn-purple:hover {
  box-shadow: 0 6px 40px rgba(124, 58, 237, 0.5);
  transform: translateY(-2px);
}
.btn-sm {
  padding: 10px 22px;
  font-size: 0.85rem;
}
.btn-lg {
  padding: 18px 44px;
  font-size: 1.05rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: var(--r-full);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.badge-orange {
  background: rgba(232, 116, 26, 0.12);
  border: 1px solid var(--border-orange);
  color: var(--orange-light);
}
.badge-purple {
  background: rgba(124, 58, 237, 0.12);
  border: 1px solid var(--border-purple);
  color: var(--purple-light);
}
.badge-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
  animation: pulse-dot 1.6s infinite;
}
@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.4;
    transform: scale(0.75);
  }
}

.section-eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange-light);
}
.section-header {
  text-align: center;
  margin-bottom: clamp(48px, 7vw, 72px);
}
.section-header h2 {
  margin-bottom: 14px;
}
.section-header p {
  max-width: 620px;
  margin: 0 auto;
  font-size: 1.05rem;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  z-index: 1000;
  transition:
    background var(--t-s),
    border-color var(--t-s);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(8, 8, 15, 0.93);
  backdrop-filter: blur(24px);
  border-bottom-color: var(--border);
  box-shadow: 0 1px 40px rgba(0, 0, 0, 0.6);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  flex-shrink: 0;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--orange-grad);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 900;
  color: #08080f;
  box-shadow: 0 0 16px var(--orange-glow);
  flex-shrink: 0;
}
.logo em {
  font-style: italic;
  color: var(--orange-light);
}

.nav {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav a {
  padding: 8px 14px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-secondary);
  border-radius: var(--r-sm);
  transition:
    color var(--t),
    background var(--t);
}
.nav a:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
}
.burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all var(--t);
}
.burger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-nav {
  display: none;
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(8, 8, 15, 0.97);
  backdrop-filter: blur(24px);
  z-index: 999;
  flex-direction: column;
  padding: 28px 20px;
  gap: 8px;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  padding: 15px 18px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: var(--r-md);
  border: 1px solid var(--border);
  transition: all var(--t);
}
.mobile-nav a:hover {
  color: var(--orange-light);
  border-color: var(--border-orange);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: var(--header-h);
}
#hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse 65% 55% at 80% 50%, rgba(232, 116, 26, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 55% 45% at 20% 25%, rgba(124, 58, 237, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 50% 110%, rgba(0, 0, 0, 0.8) 0%, transparent 65%);
}
.hero .container {
  position: relative;
  z-index: 3;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  padding: 80px 0;
}
.hero-content {
  max-width: 680px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}
.hero-title {
  margin-bottom: 22px;
  line-height: 1.1;
}
.hero-title .name {
  font-family: var(--font-serif);
  font-style: italic;
}
.hero-desc {
  font-size: clamp(0.98rem, 2vw, 1.15rem);
  max-width: 560px;
  margin-bottom: 38px;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.82;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 22px 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-lg);
  max-width: 520px;
}
.hs-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.hs-val {
  font-size: 1.5rem;
  font-weight: 900;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
.hs-label {
  font-size: 0.7rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.hero-photo-wrap {
  position: relative;
  flex-shrink: 0;
}
.hero-portrait {
  width: 100%;
  max-width: 420px;
  border-radius: var(--r-xl);
  object-fit: cover;
  object-position: top center;
  aspect-ratio: 3/4;
  display: block;
  border: 1px solid var(--border-orange);
  box-shadow:
    0 0 80px rgba(232, 116, 26, 0.2),
    0 0 160px rgba(124, 58, 237, 0.1);
  position: relative;
  z-index: 1;
}
.hero-photo-glow {
  position: absolute;
  top: 10%;
  left: 10%;
  right: -10%;
  bottom: -10%;
  background: radial-gradient(ellipse, rgba(232, 116, 26, 0.18) 0%, transparent 65%);
  z-index: 0;
  border-radius: 50%;
}
.hero-photo-label {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(8, 8, 15, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-md);
  padding: 10px 16px;
  z-index: 2;
}
.hero-photo-label strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
}
.hero-photo-label span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.hero-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.social-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  border-radius: var(--r-full);
  font-size: 0.78rem;
  font-weight: 600;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  transition: all var(--t);
}
.social-pill:hover {
  border-color: var(--border-orange);
  color: var(--orange-light);
  transform: translateY(-2px);
}
.social-pill span {
  font-size: 0.95rem;
}

.bio-strip {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 52px 0;
}
.bio-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.bio-strip-item {
  text-align: center;
}
.bio-strip-item .icon {
  font-size: 1.8rem;
  margin-bottom: 10px;
}
.bio-strip-item h4 {
  font-size: 0.96rem;
  margin-bottom: 5px;
}
.bio-strip-item p {
  font-size: 0.83rem;
}

.bio-section {
  background: var(--bg-base);
}
.bio-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.bio-text h2 {
  margin-bottom: 24px;
}
.bio-text p {
  margin-bottom: 18px;
}
.bio-text p:last-child {
  margin-bottom: 0;
}
.bio-highlight {
  margin-top: 32px;
  padding: 24px 28px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-orange);
  border-left: 4px solid var(--orange);
  border-radius: var(--r-md);
}
.bio-highlight p {
  font-size: 1.05rem;
  font-style: italic;
  color: var(--text);
  margin: 0;
  line-height: 1.75;
}

.bio-photo-col {
  position: sticky;
  top: calc(var(--header-h) + 24px);
}
.bio-portrait {
  width: 100%;
  border-radius: var(--r-xl);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 3/4;
  border: 1px solid rgba(232, 116, 26, 0.25);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.5),
    0 0 60px rgba(232, 116, 26, 0.12);
  display: block;
}
.bio-portrait-caption {
  margin-top: 14px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.stats-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 32px 24px;
  text-align: center;
  transition: all var(--t-s);
}
.stat-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
  box-shadow: 0 0 40px var(--orange-glow);
}
.stat-num {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1;
  background: var(--orange-grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.stat-lbl {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.services-section {
  background: var(--bg-base);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-s);
}
.service-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-5px);
  box-shadow: 0 8px 48px rgba(0, 0, 0, 0.4);
}
.service-img-wrap {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.06);
}
.service-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 8, 15, 0.9) 0%, transparent 60%);
}
.service-body {
  padding: 24px 26px 28px;
}
.service-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--orange-light);
  margin-bottom: 10px;
  padding: 3px 10px;
  background: rgba(232, 116, 26, 0.1);
  border-radius: var(--r-full);
  border: 1px solid var(--border-orange);
}
.service-body h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.service-body p {
  font-size: 0.88rem;
}

.timeline-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.timeline {
  max-width: 740px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange), var(--purple));
  opacity: 0.3;
}
.tl-item {
  display: flex;
  gap: 28px;
  padding-bottom: 42px;
  position: relative;
}
.tl-dot {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--bg-elevated);
  border: 2px solid var(--border-orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--orange-light);
  position: relative;
  z-index: 1;
  transition: all var(--t);
}
.tl-item:hover .tl-dot {
  background: var(--orange-grad);
  color: #08080f;
  border-color: transparent;
  box-shadow: 0 0 24px var(--orange-glow);
}
.tl-content {
  flex: 1;
  padding-top: 12px;
}
.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-light);
  margin-bottom: 6px;
}
.tl-content h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.tl-content p {
  font-size: 0.88rem;
}

.achieve-section {
  background: var(--bg-base);
}
.achieve-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.achieve-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all var(--t-s);
}
.achieve-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}
.achieve-img {
  height: 180px;
  overflow: hidden;
}
.achieve-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
  display: block;
}
.achieve-card:hover .achieve-img img {
  transform: scale(1.06);
}
.achieve-body {
  padding: 22px 24px 26px;
}
.achieve-body h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}
.achieve-body p {
  font-size: 0.86rem;
}

.testi-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.testi-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 28px;
  transition: border-color var(--t-s);
}
.testi-card:hover {
  border-color: var(--border-orange);
}
.testi-quote {
  font-size: 0.92rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.68);
  margin-bottom: 22px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.testi-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid var(--border-orange);
  flex-shrink: 0;
}
.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testi-name {
  font-size: 0.9rem;
  font-weight: 700;
  display: block;
  margin-bottom: 2px;
}
.testi-role {
  font-size: 0.75rem;
  color: var(--text-muted);
}
.testi-stars {
  color: var(--orange);
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 14px;
}

.pricing-section {
  background: var(--bg-base);
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  align-items: start;
}
.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 36px 28px;
  transition: all var(--t-s);
  position: relative;
  overflow: hidden;
}
.pricing-card.featured {
  border-color: var(--border-orange);
  background: var(--bg-elevated);
  transform: scale(1.03);
}
.pricing-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-grad);
}
.pricing-card:hover {
  border-color: var(--border-orange);
  transform: translateY(-4px);
}
.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}
.pricing-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 4px 12px;
  border-radius: var(--r-full);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  background: rgba(232, 116, 26, 0.15);
  border: 1px solid var(--border-orange);
  color: var(--orange-light);
}
.pricing-name {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-period {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 26px;
}
.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.pf-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-secondary);
}
.pf-check {
  color: var(--orange);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 1rem;
}

.cta-section {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 90px 0;
}
.cta-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-xl);
  padding: clamp(48px, 8vw, 88px) clamp(28px, 6vw, 72px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--orange-light), transparent);
}
.cta-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(232, 116, 26, 0.1) 0%, transparent 70%);
  pointer-events: none;
}
.cta-card h2 {
  margin-bottom: 16px;
}
.cta-card > p {
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
}

.footer {
  background: var(--bg-surface);
  border-top: 1px solid var(--border);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand .logo {
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 0.87rem;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-col h4 {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  color: var(--text-muted);
  margin-bottom: 16px;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  font-size: 0.88rem;
  color: var(--text-secondary);
  transition: color var(--t);
}
.footer-col a:hover {
  color: var(--orange-light);
}
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.footer-badge {
  padding: 4px 12px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border);
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  transition: color var(--t);
}
a.footer-badge:hover {
  color: var(--orange-light);
  border-color: var(--border-orange);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 {
  transition-delay: 0.1s;
}
.reveal-delay-2 {
  transition-delay: 0.2s;
}
.reveal-delay-3 {
  transition-delay: 0.3s;
}
.reveal-delay-4 {
  transition-delay: 0.4s;
}

.page-hero {
  padding-top: calc(var(--header-h) + 56px);
  padding-bottom: 52px;
  background: var(--bg-surface);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin-bottom: 12px;
}
.page-meta {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 14px;
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.legal-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 56px clamp(1.2rem, 4vw, 2.5rem) 80px;
}
.legal-body h2 {
  font-size: 1.4rem;
  margin: 44px 0 12px;
}
.legal-body p,
.legal-body li {
  font-size: 0.93rem;
  line-height: 1.85;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.legal-body ul {
  padding-left: 20px;
}
.legal-body ul li {
  list-style: disc;
}
.legal-body a {
  color: var(--orange-light);
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2000;
  background: var(--bg-elevated);
  border: 1px solid var(--border-orange);
  border-radius: var(--r-lg);
  padding: 18px 24px;
  display: flex;
  align-items: center;
  gap: 20px;
  max-width: 680px;
  width: calc(100% - 32px);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}
.cookie-banner.hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(20px);
}
.cookie-text {
  flex: 1;
  font-size: 0.83rem;
  color: var(--text-secondary);
}
.cookie-text a {
  color: var(--orange-light);
}
.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

@media (max-width: 1024px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-photo-wrap {
    display: none;
  }
  .bio-grid {
    grid-template-columns: 1fr;
  }
  .bio-photo-col {
    position: static;
  }
  .bio-portrait {
    aspect-ratio: 4/3;
    object-position: center top;
    max-height: 400px;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .achieve-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testi-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-card.featured {
    transform: none;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 768px) {
  .nav,
  .header-actions .btn-lg {
    display: none;
  }
  .burger {
    display: flex;
  }
  .bio-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .achieve-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .cookie-banner {
    flex-direction: column;
    text-align: center;
  }
  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .bio-strip-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero-stats {
    flex-direction: column;
    gap: 16px;
  }
  .hero-cta {
    flex-direction: column;
  }
  .hero-cta .btn {
    width: 100%;
  }
}
