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

:root {
  --bg: #030712;
  --bg-alt: #0a0f1a;
  --surface: #111827;
  --border: #1f2937;
  --border-hover: #374151;
  --text: #F9FAFB;
  --text-muted: #9ca3af;
  --text-dim: #6b7280;
  --orange: #FB5113;
  --orange-hover: #e04910;
  --orange-glow: rgba(251, 81, 19, 0.15);
  --blue: #3688FB;
  --blue-hover: #2d75e0;
  --blue-glow: rgba(54, 136, 251, 0.15);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: 0.2s ease;
  color-scheme: dark;
}

[data-theme="light"] {
  --bg: #F9FAFB;
  --bg-alt: #f3f4f6;
  --surface: #ffffff;
  --border: #e5e7eb;
  --border-hover: #d1d5db;
  --text: #030712;
  --text-muted: #4b5563;
  --text-dim: #6b7280;
  --orange-glow: rgba(251, 81, 19, 0.1);
  --blue-glow: rgba(54, 136, 251, 0.1);
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--blue-hover);
}

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

.text-orange {
  color: var(--orange);
}

.text-blue {
  color: var(--blue);
}

/* ===== Navigation ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.nav.scrolled {
  background: rgba(3, 7, 18, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.01em;
}

.nav-logo:hover {
  color: var(--orange);
}

.nav-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  transition: border-color var(--transition);
}

.nav-logo:hover .nav-avatar {
  border-color: var(--orange);
}

.nav-links {
  display: flex;
  gap: 32px;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  transition: color var(--transition);
}

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

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero-layout {
  display: flex;
  align-items: center;
  gap: 64px;
}

.hero-content {
  flex: 1;
  max-width: 640px;
}

.hero-visual {
  flex-shrink: 0;
}

.hero-avatar-wrapper {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  padding: 4px;
}

.hero-avatar {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--bg);
  border: 4px solid var(--bg);
}

.hero-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--orange-glow);
  border: 1px solid rgba(251, 81, 19, 0.25);
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--orange);
  margin-bottom: 24px;
  letter-spacing: 0.02em;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: clamp(1.05rem, 2.2vw, 1.25rem);
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 16px;
}

.hero-description {
  font-size: 0.95rem;
  color: var(--text-dim);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-bottom: 56px;
  flex-wrap: wrap;
}

.hero-glow {
  position: absolute;
  top: 15%;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(251, 81, 19, 0.06), transparent 70%);
  pointer-events: none;
}

.hero-glow-2 {
  position: absolute;
  bottom: 10%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(54, 136, 251, 0.05), transparent 70%);
  pointer-events: none;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  font-family: inherit;
}

.btn-primary {
  background: var(--orange);
  color: #fff;
}

.btn-primary:hover {
  background: var(--orange-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(251, 81, 19, 0.3);
}

.btn-secondary {
  background: var(--blue);
  color: #fff;
}

.btn-secondary:hover {
  background: var(--blue-hover);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px rgba(54, 136, 251, 0.3);
}

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

.btn-ghost:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.btn-ghost svg {
  opacity: 0.7;
}

/* ===== Stats ===== */
.hero-stats {
  display: flex;
  gap: 48px;
}

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

.stat-value {
  display: flex;
  align-items: baseline;
}

.stat-prefix,
.stat-number,
.stat-suffix {
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'JetBrains Mono', monospace;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  margin-top: 2px;
  letter-spacing: 0.02em;
}

/* ===== Sections ===== */
.section {
  padding: 100px 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  margin-bottom: 56px;
}

.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-text strong {
  color: var(--text);
}

.about-details {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.detail-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.detail-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 81, 19, 0.08);
}

.detail-icon {
  margin-bottom: 12px;
  color: var(--orange);
}

.detail-icon svg {
  width: 24px;
  height: 24px;
}

.detail-card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.detail-card p {
  font-size: 0.875rem;
  color: var(--text-dim);
}

/* ===== Work / ADOPT Method ===== */
.work-intro {
  margin-bottom: 48px;
  max-width: 640px;
}

.aio-logo-link {
  display: inline-block;
  margin-bottom: 16px;
}

.aio-logo {
  height: 36px;
  width: auto;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.aio-logo-link:hover .aio-logo {
  opacity: 1;
}

.work-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--blue);
}

.work-intro > p:last-child {
  color: var(--text-muted);
  line-height: 1.7;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.method-card {
  padding: 24px 16px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
}

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

.method-step {
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 8px;
}

.method-card h3 {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.method-card p {
  font-size: 0.75rem;
  color: var(--text-dim);
  line-height: 1.4;
}

.work-services h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
}

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

.service {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
}

.service:hover {
  border-color: var(--blue);
}

.service h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.service p {
  font-size: 0.875rem;
  color: var(--text-dim);
  line-height: 1.6;
}

/* ===== Expertise ===== */
.expertise-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.expertise-category h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--text-muted);
}

.tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--transition);
}

.tag:hover {
  border-color: var(--orange);
  color: var(--text);
}

/* ===== Projects ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.project-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s ease;
  color: inherit;
  display: block;
}

.project-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
  color: inherit;
}

.project-image {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, rgba(251, 81, 19, 0.08), rgba(54, 136, 251, 0.08));
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.project-image-alt {
  background: linear-gradient(135deg, rgba(54, 136, 251, 0.1), rgba(251, 81, 19, 0.05));
}

.project-image-blue {
  background: linear-gradient(135deg, rgba(54, 136, 251, 0.1), rgba(54, 136, 251, 0.03));
}

.project-logo {
  width: 40px;
  height: 40px;
  opacity: 0.6;
}

.project-placeholder {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.85rem;
  color: var(--text-dim);
}

.project-info {
  padding: 24px;
}

.project-info h3 {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}

.project-info p {
  font-size: 0.85rem;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 16px;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.project-tags span {
  padding: 3px 10px;
  background: var(--orange-glow);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 500;
}

/* ===== Contact ===== */
.contact-content {
  max-width: 800px;
}

.contact-intro {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 40px;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.contact-card {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  color: inherit;
}

.contact-card:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(251, 81, 19, 0.08);
  color: inherit;
}

.contact-icon {
  margin-bottom: 12px;
  color: var(--blue);
  display: flex;
  justify-content: center;
}

.contact-icon img {
  opacity: 0.7;
}

.contact-card h3 {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-card p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ===== Footer ===== */
.footer {
  padding: 32px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.footer-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  opacity: 0.5;
}

.footer-inner p {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-links {
  display: flex;
  gap: 24px;
}

.footer-links a {
  font-size: 0.8rem;
  color: var(--text-dim);
}

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

/* ===== Framer-style Animations ===== */
.anim {
  opacity: 0;
  will-change: transform, opacity;
}

.anim[data-anim="fade-up"] {
  transform: translateY(40px);
}

.anim[data-anim="fade-right"] {
  transform: translateX(-40px);
}

.anim[data-anim="fade-left"] {
  transform: translateX(40px);
}

.anim[data-anim="fade-scale"] {
  transform: scale(0.85);
}

.anim.in-view {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Cursor glow effect on cards */
.detail-card,
.project-card {
  position: relative;
  overflow: hidden;
}

.detail-card::before,
.project-card::before {
  content: '';
  position: absolute;
  top: var(--mouse-y, -100px);
  left: var(--mouse-x, -100px);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(251, 81, 19, 0.08), transparent 70%);
  transform: translate(-50%, -50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.detail-card:hover::before,
.project-card:hover::before {
  opacity: 1;
}

/* ===== Timeline ===== */
.timeline {
  position: relative;
  padding-left: 32px;
  margin-bottom: 64px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(to bottom, var(--orange), var(--blue));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-dot {
  position: absolute;
  left: -29px;
  top: 8px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--orange);
  border: 3px solid var(--bg-alt);
  z-index: 1;
}

.timeline-item:last-child .timeline-dot {
  background: var(--blue);
}

.timeline-content {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: border-color 0.2s ease;
}

.timeline-content:hover {
  border-color: var(--border-hover);
}

.timeline-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
  gap: 16px;
}

.timeline-header h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.timeline-company {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--blue);
  font-weight: 500;
}

a.timeline-company:hover {
  color: var(--blue-hover);
}

.timeline-logo {
  width: 18px;
  height: 18px;
}

.timeline-date {
  font-size: 0.8rem;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
  white-space: nowrap;
}

.timeline-details {
  list-style: none;
  padding: 0;
  margin-bottom: 16px;
}

.timeline-details li {
  position: relative;
  padding-left: 16px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 6px;
}

.timeline-details li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--text-dim);
}

.timeline-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.timeline-tags span {
  padding: 3px 10px;
  background: var(--orange-glow);
  border-radius: 100px;
  font-size: 0.7rem;
  color: var(--orange);
  font-weight: 500;
}

/* ===== Education ===== */
.subsection-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--text);
}

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

.edu-card {
  padding: 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.2s ease;
}

.edu-card:hover {
  border-color: var(--border-hover);
}

.edu-card h4 {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.edu-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.edu-date {
  font-size: 0.75rem;
  color: var(--text-dim);
  font-family: 'JetBrains Mono', monospace;
}


/* ===== Page Loader ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  width: 32px;
  height: 32px;
  border: 3px solid var(--border);
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== Theme Toggle ===== */
.theme-toggle {
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 6px;
  cursor: pointer;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  margin-left: 16px;
}

.theme-toggle:hover {
  color: var(--text);
  border-color: var(--border-hover);
}

.theme-toggle .icon-sun,
.theme-toggle .icon-moon {
  width: 18px;
  height: 18px;
}

.theme-toggle .icon-sun { display: none; }
.theme-toggle .icon-moon { display: block; }

[data-theme="light"] .theme-toggle .icon-sun { display: block; }
[data-theme="light"] .theme-toggle .icon-moon { display: none; }

/* ===== Light Mode Overrides ===== */
[data-theme="light"] .nav.scrolled {
  background: rgba(249, 250, 251, 0.9);
}

[data-theme="light"] .nav-links {
  background: rgba(249, 250, 251, 0.95);
}

[data-theme="light"] .hero-glow {
  background: radial-gradient(circle, rgba(251, 81, 19, 0.08), transparent 70%);
}

[data-theme="light"] .hero-glow-2 {
  background: radial-gradient(circle, rgba(54, 136, 251, 0.07), transparent 70%);
}

[data-theme="light"] .hero-avatar {
  background: var(--bg);
  border-color: var(--bg);
}

[data-theme="light"] .timeline-dot {
  border-color: var(--bg-alt);
}

[data-theme="light"] .aio-logo-link .aio-logo {
  content: url('assets/aio-logo-dark.svg');
}

[data-theme="light"] .project-card:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

[data-theme="light"] .detail-card::before,
[data-theme="light"] .project-card::before {
  background: radial-gradient(circle, rgba(251, 81, 19, 0.06), transparent 70%);
}

[data-theme="light"] .nav-toggle span {
  background: var(--text);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(3, 7, 18, 0.95);
    backdrop-filter: blur(20px);
    padding: 16px 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }

  [data-theme="light"] .nav-links {
    background: rgba(249, 250, 251, 0.95);
  }

  .theme-toggle {
    margin-left: 8px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-layout {
    flex-direction: column-reverse;
    gap: 32px;
    text-align: center;
  }

  .hero-avatar-wrapper {
    width: 160px;
    height: 160px;
  }

  .hero-description {
    max-width: 100%;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

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

  .timeline-header {
    flex-direction: column;
    gap: 4px;
  }

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

  .method-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

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

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

  .contact-links {
    grid-template-columns: 1fr 1fr;
  }

  .footer-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .method-grid {
    grid-template-columns: 1fr 1fr;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 16px;
  }

  .stat {
    align-items: center;
  }

  .hero-avatar-wrapper {
    width: 130px;
    height: 130px;
  }
}
