/* ============================================
   ROOT & RESET
   ============================================ */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg-primary: #0b0e17;
  --bg-secondary: #111827;
  --bg-card: #111827;
  --bg-card-hover: #1a2335;
  --surface: rgba(17, 24, 39, 0.8);
  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --copper: #c9956b;
  --copper-light: #e2b898;
  --copper-dark: #b07a52;
  --copper-glow: rgba(201, 149, 107, 0.15);
  --cyan: #67e8f9;
  --cyan-dark: #22d3ee;

  --text-primary: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;
  --text-inverse: #0b0e17;

  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: 400ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 700ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  --max-width: 1200px;
  --nav-height: 72px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font: inherit; border: none; background: none; cursor: pointer; color: inherit; }
select { font: inherit; }

::selection {
  background: rgba(201, 149, 107, 0.3);
  color: var(--text-primary);
}

/* ============================================
   CUSTOM CURSOR
   ============================================ */
.cursor {
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor--large {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(201, 149, 107, 0.4);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
}

.cursor--small {
  width: 6px;
  height: 6px;
  background: var(--copper);
  transition: width 0.15s, height 0.15s, opacity 0.3s;
}

.cursor-glow {
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 149, 107, 0.04), transparent 70%);
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
}

.cursor--active .cursor--large {
  width: 60px;
  height: 60px;
  border-color: var(--copper);
  background: rgba(201, 149, 107, 0.08);
}

/* ============================================
   WhatsApp
   ============================================ */
.whatsapp {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

@keyframes whatsappPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3); }
  50% { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.5); }
}

/* ============================================
   CONTAINER
   ============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-height);
  transition: background var(--transition), backdrop-filter var(--transition), box-shadow var(--transition);
}

.nav--scrolled {
  background: rgba(11, 14, 23, 0.85);
  backdrop-filter: blur(20px) saturate(1.2);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.nav__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 2px solid var(--copper);
  border-radius: 8px;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--copper);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}

.nav__logo:hover .nav__logo-mark {
  background: var(--copper);
  color: var(--text-inverse);
  transform: scale(1.05);
}

.nav__logo-text {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-secondary);
  position: relative;
  transition: color var(--transition);
  letter-spacing: 0.02em;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--copper);
  transition: width var(--transition);
}

.nav__link:hover,
.nav__link--active {
  color: var(--text-primary);
}

.nav__link--active::after,
.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  background: var(--copper);
  color: var(--text-inverse) !important;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.nav__link--cta::after { display: none; }

.nav__link--cta:hover {
  background: var(--copper-light);
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(201, 149, 107, 0.3);
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
  padding: 140px 0 60px;
  text-align: center;
  position: relative;
}

.page-header__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-top: 16px;
}

.page-header__desc {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 600px;
  margin: 16px auto 0;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg-primary);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroBgZoom 20s ease-in-out infinite alternate;
}

@keyframes heroBgZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.15); }
}

.hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 14, 23, 0.92) 0%, rgba(11, 14, 23, 0.7) 50%, rgba(11, 14, 23, 0.85) 100%);
  z-index: 1;
}

.hero__particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--copper);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite;
}

@keyframes particleFloat {
  0% { transform: translateY(100%) scale(0); opacity: 0; }
  20% { opacity: 0.6; }
  80% { opacity: 0.6; }
  100% { transform: translateY(-100vh) scale(1); opacity: 0; }
}

.hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: var(--nav-height);
  width: 100%;
}

.hero__badge-wrapper {
  overflow: hidden;
  margin-bottom: 28px;
}

.hero__badge {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 149, 107, 0.25);
  padding: 6px 16px;
  border-radius: 100px;
  animation: slideUp 0.8s ease 0.2s both;
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(100%); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: clamp(40px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}

.hero__title-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: heroTitleIn 0.8s ease forwards;
}

.hero__title-line:nth-child(1) { animation-delay: 0.3s; }
.hero__title-line:nth-child(2) { animation-delay: 0.5s; }

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

.hero__title-line--accent {
  color: var(--copper);
}

.hero__subtitle {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: var(--text-secondary);
  margin-bottom: 16px;
  min-height: 1.6em;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.7s forwards;
}

.hero__typing {
  font-family: var(--font-mono);
  color: var(--cyan);
}

.hero__cursor-blink {
  color: var(--copper);
  animation: blink 1s step-end infinite;
  margin-left: 2px;
}

@keyframes blink {
  50% { opacity: 0; }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero__description {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeIn 0.8s ease 0.9s forwards;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.1s forwards;
}

.hero__trust {
  display: flex;
  gap: 24px;
  margin-top: 32px;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.3s forwards;
}

.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

.hero__trust-item i {
  font-size: 12px;
  color: var(--cyan);
}

.hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  animation: fadeIn 1s ease 0.8s forwards;
}

.hero__image-frame {
  position: relative;
  width: 340px;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 2;
}

.hero__profile-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero__image-frame:hover .hero__profile-img {
  transform: scale(1.05);
}

.hero__frame-deco {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  z-index: -1;
}

.hero__frame-deco--1 {
  width: 100%;
  height: 100%;
  top: 12px;
  left: 12px;
  border-color: rgba(201, 149, 107, 0.1);
  animation: frameFloat 3s ease-in-out infinite;
}

.hero__frame-deco--2 {
  width: 80px;
  height: 80px;
  bottom: -16px;
  right: -16px;
  background: rgba(201, 149, 107, 0.06);
  border-color: rgba(201, 149, 107, 0.15);
  z-index: 3;
  animation: frameFloat 3s ease-in-out infinite reverse;
}

@keyframes frameFloat {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(6px, -6px); }
}

.hero__floating-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.hero__float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero__float-card i {
  font-size: 12px;
  color: var(--copper);
}

.hero__float-card--1 {
  top: 10%;
  right: -10px;
  animation: floatCard1 5s ease-in-out infinite;
}

.hero__float-card--2 {
  bottom: 25%;
  left: -30px;
  animation: floatCard2 6s ease-in-out infinite 1s;
}

.hero__float-card--3 {
  bottom: 5%;
  right: 20%;
  animation: floatCard3 4.5s ease-in-out infinite 0.5s;
}

@keyframes floatCard1 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-10px, -15px); }
}
@keyframes floatCard2 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(10px, -10px); }
}
@keyframes floatCard3 {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(-8px, -12px); }
}

.hero__scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  z-index: 2;
  opacity: 0;
  animation: fadeIn 0.8s ease 1.6s forwards;
}

.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--text-muted), transparent);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn i { font-size: 14px; transition: transform var(--transition); position: relative; z-index: 1; }
.btn span { position: relative; z-index: 1; }

.btn--primary {
  background: linear-gradient(135deg, var(--copper), var(--copper-dark));
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.btn--primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--copper-light), var(--copper));
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn--primary:hover::before { opacity: 1; }

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(201, 149, 107, 0.25);
}

.btn--primary:hover i { transform: translateX(4px); }

.btn--ghost {
  border: 1px solid var(--border-hover);
  color: var(--text-primary);
  background: transparent;
}

.btn--ghost::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(201, 149, 107, 0.06);
  opacity: 0;
  transition: opacity var(--transition);
  border-radius: inherit;
}

.btn--ghost:hover::before { opacity: 1; }

.btn--ghost:hover {
  border-color: var(--copper);
  transform: translateY(-2px);
}

.btn--ghost:hover i { transform: translateY(4px); }

/* ============================================
   SECTION
   ============================================ */
.section {
  padding: 120px 0;
  position: relative;
}

.section__header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 72px;
}

.section__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 149, 107, 0.2);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.section__title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section__description {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
}

.gradient-text {
  background: linear-gradient(135deg, var(--copper), var(--cyan));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  padding-top: 0;
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text--lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--text-primary);
  line-height: 1.8;
  margin-bottom: 20px;
  font-family: var(--font-heading);
}

.about__text-block {
  position: relative;
  padding-left: 20px;
  border-left: 2px solid rgba(201, 149, 107, 0.2);
}

.about__text {
  font-size: 15px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__text strong {
  color: var(--copper);
  font-weight: 600;
}

.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.about__stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--copper), transparent);
}

.about__stat { text-align: center; }

.about__stat-number {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}

.about__stat-suffix {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--copper);
}

.about__stat-label {
  display: block;
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.about__visual { position: relative; }

.about__image-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
}

.about__image-main {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  z-index: 2;
}

.about__image-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about__image-wrapper:hover .about__image-main img {
  transform: scale(1.04);
}

.about__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(201, 149, 107, 0.1), transparent 50%);
  z-index: 1;
}

.about__image-accent {
  position: absolute;
  width: 45%;
  height: 45%;
  bottom: -10%;
  right: -8%;
  border-radius: var(--radius);
  overflow: hidden;
  z-index: 3;
  border: 3px solid var(--bg-primary);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.about__image-accent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__deco {
  position: absolute;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.about__deco--1 {
  width: 100%;
  height: 100%;
  top: 12px;
  left: 12px;
  z-index: 0;
  border-color: rgba(201, 149, 107, 0.08);
}

.about__deco--2 {
  width: 60px;
  height: 60px;
  bottom: -20px;
  right: -8%;
  background: rgba(201, 149, 107, 0.06);
  border-color: rgba(201, 149, 107, 0.12);
  z-index: 0;
}

.about__exp-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: var(--surface);
  backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.about__exp-number {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: var(--copper);
  line-height: 1;
}

.about__exp-label {
  font-size: 10px;
  color: var(--text-secondary);
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.about__quote {
  margin-top: 60px;
  padding: 24px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  border-left: 3px solid var(--copper);
  backdrop-filter: blur(10px);
}

.about__quote i {
  color: var(--copper);
  font-size: 16px;
  opacity: 0.5;
  margin-bottom: 8px;
  display: block;
}

.about__quote blockquote {
  font-family: var(--font-heading);
  font-size: 15px;
  font-style: italic;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* About Gallery */
.about-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.about-gallery__item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.about-gallery__item:hover img {
  transform: scale(1.06);
}

/* ============================================
   EXPERTISE
   ============================================ */
.expertise { position: relative; }

.expertise__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.expertise__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.08;
}

.expertise__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 30%, transparent 70%, var(--bg-primary) 100%);
}

.expertise .container { position: relative; z-index: 1; }

.expertise__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.expertise__card {
  padding: 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  will-change: transform;
  transform-style: preserve-3d;
}

.expertise__card:hover {
  border-color: rgba(201, 149, 107, 0.2);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.expertise__card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.expertise__card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(201, 149, 107, 0.08);
  border: 1px solid rgba(201, 149, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.expertise__card-icon i {
  font-size: 20px;
  color: var(--copper);
}

.expertise__card-title {
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.expertise__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.expertise__skill-name {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-secondary);
  margin-bottom: 6px;
}

.expertise__bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 4px;
  overflow: hidden;
}

.expertise__bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  width: 0;
}

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

.expertise__card--showcase {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.expertise__showcase-img {
  width: 100%;
  height: 180px;
  overflow: hidden;
  flex-shrink: 0;
}

.expertise__showcase-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.expertise__card--showcase:hover .expertise__showcase-img img {
  transform: scale(1.08);
}

.expertise__showcase-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.expertise__showcase-body .section__tag {
  font-size: 9px;
  margin-bottom: 12px;
  align-self: flex-start;
}

.expertise__showcase-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.expertise__showcase-desc {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 16px;
}

.expertise__showcase-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.expertise__showcase-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-muted);
}

.expertise__showcase-list li i {
  font-size: 11px;
  color: var(--cyan);
}

/* ============================================
   TIMELINE
   ============================================ */
.timeline {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 11px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--copper), rgba(201, 149, 107, 0.1));
}

.timeline__item {
  position: relative;
  padding-bottom: 56px;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.timeline__item:last-child { padding-bottom: 0; }

.timeline__item.revealed {
  opacity: 1;
  transform: translateX(0);
}

.timeline__dot {
  position: absolute;
  left: -33px;
  top: 24px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  background: var(--bg-primary);
  transition: background var(--transition), box-shadow var(--transition);
  z-index: 2;
}

.timeline__item--current .timeline__dot {
  background: var(--copper);
  box-shadow: 0 0 20px rgba(201, 149, 107, 0.3);
}

.timeline__item--future .timeline__dot {
  border-color: rgba(201, 149, 107, 0.3);
  border-style: dashed;
}

.timeline__pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--copper);
  opacity: 0;
  animation: pulseRing 2s ease-out infinite;
}

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(2); opacity: 0; }
}

.timeline__content {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.timeline__item--current .timeline__content {
  border-color: rgba(201, 149, 107, 0.2);
  box-shadow: 0 0 40px rgba(201, 149, 107, 0.05);
}

.timeline__content-img {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 16px;
  border: 2px solid var(--border);
}

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

.timeline__content-img--future {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201, 149, 107, 0.08);
  border-color: rgba(201, 149, 107, 0.15);
}

.timeline__content-img--future i {
  font-size: 24px;
  color: var(--copper);
}

.timeline__date {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--copper);
  font-weight: 500;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.timeline__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

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

.work__card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  transform: translateY(0);
}

.work__card:hover {
  border-color: rgba(201, 149, 107, 0.15);
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.work__card-image {
  width: 100%;
  height: 160px;
  overflow: hidden;
}

.work__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.work__card:hover .work__card-image img { transform: scale(1.08); }

.work__card-body {
  padding: 24px 28px 28px;
}

.work__card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(201, 149, 107, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: background var(--transition);
}

.work__card:hover .work__card-icon {
  background: rgba(201, 149, 107, 0.15);
}

.work__card-icon i {
  font-size: 18px;
  color: var(--copper);
}

.work__card-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.work__card-text {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* Work CTA */
.work-cta {
  text-align: center;
  padding-bottom: 80px;
}

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

.work-cta__text {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 32px;
}

/* ============================================
   VISION
   ============================================ */
.vision { position: relative; overflow: hidden; }

.vision__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}

.vision__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.06;
}

.vision__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, var(--bg-primary) 0%, transparent 50%, var(--bg-secondary) 100%);
}

.vision .container { position: relative; z-index: 1; }

.vision__inner {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.vision__title { margin-bottom: 32px; }

.vision__content {
  max-width: 640px;
  margin: 0 auto 48px;
}

.vision__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 16px;
}

.vision__text strong {
  color: var(--text-primary);
  font-weight: 500;
}

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

.vision__pillar {
  padding: 36px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
}

.vision__pillar:hover {
  border-color: rgba(201, 149, 107, 0.15);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25);
}

.vision__pillar-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(201, 149, 107, 0.08);
  border: 1px solid rgba(201, 149, 107, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: background var(--transition);
}

.vision__pillar:hover .vision__pillar-icon {
  background: rgba(201, 149, 107, 0.15);
}

.vision__pillar-icon i {
  font-size: 24px;
  color: var(--copper);
}

.vision__pillar h4 {
  font-family: var(--font-heading);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 8px;
}

.vision__pillar p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ============================================
   CONTACT
   ============================================ */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact__email-wrapper {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
}

.contact__email {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 15px;
  color: var(--text-primary);
  transition: all var(--transition);
  position: relative;
  z-index: 1;
}

.contact__email i {
  color: var(--copper);
  font-size: 16px;
}

.contact__email:hover {
  border-color: var(--copper);
  background: rgba(201, 149, 107, 0.06);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 149, 107, 0.1);
}

.contact__email-shimmer {
  position: absolute;
  inset: -2px;
  border-radius: 100px;
  background: linear-gradient(90deg, transparent, rgba(201, 149, 107, 0.1), transparent);
  background-size: 200% 100%;
  animation: shimmer 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.contact__social {
  display: flex;
  gap: 12px;
  margin-bottom: 24px;
}

.contact__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  font-size: 16px;
  transition: all var(--transition);
}

.contact__social-link:hover {
  background: var(--copper);
  border-color: var(--copper);
  color: var(--text-inverse);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(201, 149, 107, 0.2);
}

.contact__availability {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
}

.contact__avail-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
  animation: availPulse 2s ease-in-out infinite;
}

@keyframes availPulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(103, 232, 249, 0.4); }
  50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(103, 232, 249, 0); }
}

.contact__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__form-group { position: relative; }

.contact__form-group input,
.contact__form-group textarea,
.contact__form-group select {
  width: 100%;
  padding: 18px 20px 10px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: border-color var(--transition);
  resize: vertical;
}

.contact__form-group select {
  -webkit-appearance: none;
  appearance: none;
  padding: 18px 20px 10px;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2394a3b8' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}

.contact__form-group input::placeholder,
.contact__form-group textarea::placeholder,
.contact__form-group select:invalid { color: transparent; }

.contact__form-group input:focus,
.contact__form-group textarea:focus,
.contact__form-group select:focus { border-color: var(--copper); }

.contact__form-group label {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.2s ease;
}

.contact__form-group textarea ~ label {
  top: 18px;
  transform: none;
}

.contact__form-group input:focus ~ label,
.contact__form-group textarea:focus ~ label,
.contact__form-group input:not(:placeholder-shown) ~ label,
.contact__form-group textarea:not(:placeholder-shown) ~ label {
  top: 6px;
  font-size: 10px;
  color: var(--copper);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact__form-group select ~ label { display: none; }

.contact__form-focus {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--copper);
  transition: width var(--transition);
}

.contact__form-group input:focus ~ .contact__form-focus,
.contact__form-group textarea:focus ~ .contact__form-focus,
.contact__form-group select:focus ~ .contact__form-focus {
  width: 100%;
}

.contact__submit { align-self: flex-start; }

.contact__submit i {
  font-size: 14px;
  transition: transform var(--transition);
}

.contact__submit:hover i {
  transform: translateX(4px) translateY(-4px);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: var(--bg-secondary);
}

.footer__container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1.5px solid var(--copper);
  border-radius: 6px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  color: var(--copper);
}

.footer__text {
  font-size: 13px;
  color: var(--text-muted);
}

.footer__links {
  display: flex;
  gap: 24px;
}

.footer__links a {
  font-size: 13px;
  color: var(--text-muted);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--copper);
}

.footer__tagline {
  font-size: 12px;
  color: var(--text-muted);
  font-family: var(--font-mono);
  letter-spacing: 0.08em;
  width: 100%;
  text-align: center;
  margin-top: 8px;
}

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

[data-reveal-delay="100"].revealed { transition-delay: 0.1s; }
[data-reveal-delay="150"].revealed { transition-delay: 0.15s; }
[data-reveal-delay="200"].revealed { transition-delay: 0.2s; }
[data-reveal-delay="300"].revealed { transition-delay: 0.3s; }

/* ============================================
   3D TILT
   ============================================ */
[data-tilt] {
  will-change: transform;
  transform-style: preserve-3d;
}

/* ============================================
   WORK CARD CTA
   ============================================ */
.work__card { cursor: pointer; }

.work__card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  font-size: 12px;
  font-weight: 500;
  color: var(--copper);
  transition: gap var(--transition);
}

.work__card-cta i { font-size: 10px; }

.work__card:hover .work__card-cta { gap: 10px; }

/* ============================================
   MODAL
   ============================================ */
.modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.modal--open {
  opacity: 1;
  visibility: visible;
}

.modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
}

.modal__container {
  position: relative;
  max-width: 640px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s ease;
}

.modal--open .modal__container {
  transform: scale(1) translateY(0);
}

.modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(0,0,0,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--text-primary);
  transition: background var(--transition);
}

.modal__close:hover { background: rgba(255,255,255,0.1); }

.modal__content { display: flex; flex-direction: column; }

.modal__image {
  width: 100%;
  height: 240px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

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

.modal__body { padding: 32px 28px; }

.modal__tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 10px;
  font-weight: 500;
  color: var(--copper);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: 1px solid rgba(201, 149, 107, 0.2);
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.modal__title {
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.modal__desc {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.modal__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.modal__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.6;
}

.modal__list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  color: var(--cyan);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ============================================
   CHARTS
   ============================================ */
.about-charts { padding-top: 0; }

.charts__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.chart-card {
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

.chart-card__title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}

/* Donut */
.chart-donut {
  position: relative;
  width: 180px;
  height: 180px;
  margin: 0 auto 24px;
}

.chart-donut__svg { width: 100%; height: 100%; transform: rotate(-90deg); }

.chart-donut__arc {
  transition: stroke-dashoffset 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chart-donut__label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.chart-donut__pct {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1;
}

.chart-donut__text {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

.chart-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.chart-card__list li {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--text-secondary);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.chart-card__list li span:last-child {
  color: var(--copper);
  font-weight: 600;
  font-family: var(--font-mono);
  font-size: 12px;
}

/* Bar Chart */
.chart-bar {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.chart-bar__item {
  display: grid;
  grid-template-columns: 80px 1fr 36px;
  align-items: center;
  gap: 12px;
}

.chart-bar__name {
  font-size: 12px;
  color: var(--text-secondary);
  text-align: right;
}

.chart-bar__track {
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  overflow: hidden;
}

.chart-bar__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  border-radius: 4px;
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.chart-bar__val {
  font-size: 12px;
  font-weight: 600;
  color: var(--copper);
  font-family: var(--font-mono);
}

/* Radar */
.radar-wrapper {
  max-width: 500px;
  margin: 0 auto;
}

.radar-svg { width: 100%; height: auto; }

.radar-polygon {
  opacity: 0;
  transform-origin: center;
  animation: radarReveal 1.5s ease forwards;
}

.radar-polygon.revealed { opacity: 1; }

@keyframes radarReveal {
  from { opacity: 0; transform: scale(0.3); }
  to { opacity: 1; transform: scale(1); }
}

/* Growth Chart */
.growth-section { padding: 40px 0 0; }

.growth-chart__visual {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
}

.growth-chart__svg { width: 100%; height: auto; }

.growth-chart__line {
  stroke-dasharray: 700;
  stroke-dashoffset: 700;
  transition: stroke-dashoffset 2.5s ease 0.5s;
}

.growth-chart__line.animated { stroke-dashoffset: 0; }

.growth-chart__dot {
  opacity: 0;
  transition: opacity 0.4s ease;
}

.growth-chart__dot.animated { opacity: 1; }

.growth-chart__dot--current { fill: var(--cyan); }
.growth-chart__dot--future { fill: rgba(201, 149, 107, 0.3); }

.growth-chart__legend {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 16px;
  font-size: 12px;
  color: var(--text-muted);
}

.growth-chart__swatch {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-right: 6px;
  vertical-align: middle;
}

.growth-chart__swatch--past { background: var(--copper); }
.growth-chart__swatch--current { background: var(--cyan); }
.growth-chart__swatch--future { background: rgba(201, 149, 107, 0.3); }

/* Journey Chart */
.journey-chart__svg { width: 100%; height: auto; }

/* Roadmap */
.roadmap {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.roadmap__item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 16px;
  align-items: center;
}

.roadmap__year {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--copper);
  font-weight: 600;
  text-align: right;
}

.roadmap__bar {
  height: 36px;
  background: rgba(255,255,255,0.04);
  border-radius: 18px;
  overflow: hidden;
  position: relative;
}

.roadmap__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--copper), var(--cyan));
  border-radius: 18px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  transition: width 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.roadmap__fill span {
  font-size: 11px;
  font-weight: 600;
  color: var(--text-inverse);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.roadmap__fill--final {
  background: linear-gradient(90deg, var(--copper), var(--copper-light));
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero__container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero__description { margin: 0 auto 36px; }
  .hero__actions, .hero__trust { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__image-frame { width: 260px; height: 320px; }
  .hero__float-card--1 { top: 5%; right: 5%; }
  .hero__float-card--2 { bottom: 20%; left: 0; }
  .hero__float-card--3 { bottom: 0; right: 15%; }

  .about__grid, .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .about__visual { order: -1; }
  .about__image-accent { bottom: -5%; right: -5%; }

  .work__grid { grid-template-columns: repeat(2, 1fr); }
  .expertise__showcase { grid-template-columns: repeat(2, 1fr); }
  .about-gallery__grid { grid-template-columns: repeat(2, 1fr); }
  .vision__pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav__links {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: rgba(11, 14, 23, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 32px 24px;
    gap: 24px;
    transform: translateY(-120%);
    transition: transform 0.4s ease;
    border-bottom: 1px solid var(--border);
  }
  .nav__links.open { transform: translateY(0); }
  .nav__toggle { display: flex; }
  .nav__toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

  .section { padding: 80px 0; }
  .page-header { padding: 120px 0 40px; }

  .hero__title { font-size: 36px; }
  .hero__image-frame { width: 220px; height: 280px; }
  .hero__float-card { display: none; }

  .expertise__grid,
  .about-gallery__grid { grid-template-columns: 1fr; }
  .expertise__showcase { grid-template-columns: 1fr; }

  .about__stats { grid-template-columns: 1fr; gap: 24px; padding: 24px; }
  .about__image-accent { display: none; }

  .work__grid { grid-template-columns: 1fr; }
  .vision__pillars { grid-template-columns: 1fr; }
  .contact__inner { gap: 40px; }

  .footer__container { flex-direction: column; text-align: center; }
  .footer__links { flex-wrap: wrap; justify-content: center; }
  .footer__brand { flex-direction: column; }

  body.loaded, body { cursor: auto; }
  .cursor, .cursor-glow { display: none; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; justify-content: center; }
  .hero__image-frame { width: 180px; height: 240px; }
  .hero__trust { flex-wrap: wrap; gap: 12px; }
  .about__stats { padding: 20px 16px; }
  .about__exp-badge { top: 8px; left: 8px; padding: 6px 12px; }
  .about__exp-number { font-size: 18px; }
  .work__card-image { height: 140px; }
}
