/* ===== CSS Custom Properties ===== */
:root {
  --bg-primary: #0a0a0f;
  --bg-secondary: #111118;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.08);
  --glass-border-hover: rgba(255, 255, 255, 0.15);
  --text-primary: #f0f0f5;
  --text-secondary: #9898a6;
  --text-muted: #5a5a6e;
  --accent-blue: #4f7df5;
  --accent-violet: #8b5cf6;
  --accent-gradient: linear-gradient(135deg, #4f7df5 0%, #8b5cf6 50%, #a855f7 100%);
  --accent-glow: rgba(79, 125, 245, 0.15);
  --accent-glow-violet: rgba(139, 92, 246, 0.12);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.4);
  --shadow-card-hover: 0 8px 40px rgba(79, 125, 245, 0.12);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1140px;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

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

a:hover {
  color: var(--accent-violet);
}

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

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

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent-blue);
  margin-bottom: 16px;
}

.section-label .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-gradient);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 560px;
  line-height: 1.75;
}

/* ===== Animated Background Blobs ===== */
.bg-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.35;
  pointer-events: none;
  z-index: 0;
}

.bg-blob--blue {
  width: 500px;
  height: 500px;
  background: var(--accent-blue);
  top: -120px;
  right: -100px;
  animation: float-blob 18s ease-in-out infinite alternate;
}

.bg-blob--violet {
  width: 420px;
  height: 420px;
  background: var(--accent-violet);
  bottom: 10%;
  left: -100px;
  animation: float-blob 22s ease-in-out infinite alternate-reverse;
}

@keyframes float-blob {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(40px, -30px) scale(1.08); }
  100% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ===== Navigation ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition-smooth), box-shadow var(--transition-smooth), padding var(--transition-smooth);
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--glass-border);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo span {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 36px;
}

.nav-links a {
  color: var(--text-secondary);
  font-size: 0.88rem;
  font-weight: 500;
  position: relative;
  padding: 4px 0;
  transition: color var(--transition-smooth);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 1px;
  transition: width var(--transition-smooth);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

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

.nav-toggle span {
  width: 22px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: var(--transition-smooth);
}

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

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

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}

.hero-badge .status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 8px rgba(34, 197, 94, 0.5);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}

.hero-name {
  font-size: clamp(2.6rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.hero-name .gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-role {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-secondary);
  font-weight: 400;
  margin-bottom: 20px;
}

.hero-company-link {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
  position: relative;
}

.hero-company-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--accent-gradient);
  opacity: 0.4;
  transition: opacity var(--transition-smooth);
}

.hero-company-link:hover::after {
  opacity: 1;
}

.hero-description {
  font-size: 1.05rem;
  color: var(--text-secondary);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all var(--transition-smooth);
  border: none;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #fff;
  box-shadow: 0 4px 20px rgba(79, 125, 245, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(79, 125, 245, 0.45);
  color: #fff;
}

.btn-ghost {
  background: var(--bg-card);
  color: var(--text-primary);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-ghost:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-2px);
  color: var(--text-primary);
}

/* Hero Image */
.hero-image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  margin-right: 60px;
}

.hero-image-container {
  position: relative;
  width: 330px;
  height: 330px;
}

.hero-image-container::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.5;
  z-index: 0;
  animation: rotate-glow 8s linear infinite;
}

@keyframes rotate-glow {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.hero-image-container::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--bg-primary);
  z-index: 1;
}

.hero-image {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  position: relative;
  z-index: 2;
  border: 3px solid var(--bg-primary);
}

.hero-float-card {
  position: absolute;
  background: rgba(17, 17, 24, 0.85);
  backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-card);
  animation: float-card 5s ease-in-out infinite;
}

.hero-float-card:nth-child(2) {
  bottom: 10px;
  left: -50px;
  animation-delay: 0s;
}

.hero-float-card:nth-child(3) {
  top: 10px;
  right: -100px;
  animation-delay: 1.5s;
}

@keyframes float-card {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.hero-float-card .icon-circle {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-float-card .icon-circle svg {
  width: 16px;
  height: 16px;
  stroke: #fff;
}

.hero-float-card strong {
  color: var(--text-primary);
  font-weight: 600;
}

/* ===== About Section ===== */
#about .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}

.about-text .lead-text {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.5;
  margin-bottom: 24px;
}

.about-text p {
  color: var(--text-secondary);
  margin-bottom: 18px;
  font-size: 1.05rem;
  line-height: 1.8;
}

.about-signature {
  margin-top: 36px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.signature-line {
  height: 2px;
  width: 40px;
  background: var(--accent-gradient);
}

.about-signature span {
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-primary);
  opacity: 0.9;
}

.about-highlights {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-left: 30px;
}

.about-highlights::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 0;
  width: 2px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), var(--accent-violet), var(--accent-blue), rgba(255,255,255,0));
  opacity: 0.5;
}

.highlight-row {
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  transition: transform var(--transition-smooth);
}

.highlight-row:hover {
  transform: translateX(8px);
}

.highlight-row::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 2px solid var(--accent-blue);
  box-shadow: 0 0 10px var(--accent-glow);
  z-index: 2;
  transition: all var(--transition-smooth);
}

.highlight-row:hover::before {
  background: var(--accent-blue);
  box-shadow: 0 0 15px var(--accent-blue);
}

.highlight-number {
  flex: 0 0 110px;
  text-align: right;
}

.highlight-number .stat-number {
  font-size: 2.6rem;
  font-weight: 800;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.highlight-text h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.highlight-text p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin: 0;
}

/* ===== Skills Section ===== */
.expertise-editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 80px;
  margin-top: 60px;
}

.expertise-item {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all var(--transition-smooth);
}

.expertise-item::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gradient);
  transition: width 0.5s ease;
}

.expertise-item:hover::before {
  width: 100%;
}

.expertise-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.expertise-num {
  font-family: var(--font-body);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--text-muted);
  opacity: 0.3;
  transition: all var(--transition-smooth);
}

.expertise-item:hover .expertise-num {
  color: var(--text-primary);
  opacity: 1;
}

.expertise-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-smooth);
}

.expertise-item:hover .expertise-icon {
  background: rgba(79, 125, 245, 0.1);
  border-color: var(--accent-blue);
  transform: rotate(5deg);
}

.expertise-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--accent-blue);
  transition: all var(--transition-smooth);
}

.expertise-item:hover .expertise-icon svg {
  stroke: #fff;
}

.expertise-content h3 {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--text-primary);
  letter-spacing: -0.01em;
}

.expertise-content p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 0.95rem;
}

/* ===== Projects Section ===== */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.project-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(12px);
  transition: all var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.project-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.project-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border-hover);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card-hover);
}

.project-card:hover::after {
  transform: scaleX(1);
}

.project-number {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent-blue);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 16px;
  opacity: 0.7;
}

.project-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.project-card p {
  font-size: 0.92rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

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

.project-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--accent-blue);
  background: var(--accent-glow);
  padding: 5px 14px;
  border-radius: 100px;
  letter-spacing: 0.3px;
}

/* ===== Contact Section ===== */
#contact {
  padding-bottom: 60px;
}

.contact-wrapper {
  margin-top: 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
}

.contact-info-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.contact-info-card > p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 32px;
}

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

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--text-secondary);
  text-decoration: none;
  padding: 14px 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid transparent;
  transition: all var(--transition-smooth);
}

.contact-link-item:hover {
  background: var(--bg-card-hover);
  border-color: var(--glass-border);
  color: var(--text-primary);
  transform: translateX(6px);
}

.contact-link-item .link-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--accent-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-link-item .link-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent-blue);
}

.contact-link-item .link-text strong {
  display: block;
  color: var(--text-primary);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2px;
}

.contact-link-item .link-text span {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* Contact CTA card */
.contact-cta-card {
  background: var(--bg-card);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta-card::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 200px;
  height: 200px;
  background: var(--accent-blue);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.12;
}

.contact-cta-card h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.contact-cta-card p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 30px;
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

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

.footer p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

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

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

/* ===== Scroll Reveal Animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.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; }

/* ===== Responsive ===== */

@media (max-width: 768px) {
  .section {
    padding: 70px 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -320px;
    width: 320px;
    height: 100vh;
    background: rgba(10, 10, 15, 0.95);
    background-image: radial-gradient(circle at top right, rgba(79, 125, 245, 0.15), transparent 60%);
    backdrop-filter: blur(24px);
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding-left: 50px;
    gap: 35px;
    transition: right var(--transition-smooth);
    border-left: 1px solid var(--glass-border);
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.4s ease forwards;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateX(0);
  }

  .nav-links.open li:nth-child(1) { transition-delay: 0.1s; }
  .nav-links.open li:nth-child(2) { transition-delay: 0.2s; }
  .nav-links.open li:nth-child(3) { transition-delay: 0.3s; }
  .nav-links.open li:nth-child(4) { transition-delay: 0.4s; }

  .nav-links a {
    font-size: 1.5rem;
    font-weight: 500;
  }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .nav-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .hero-content {
    display: contents;
  }

  .hero-badge {
    order: 1;
    margin: 0 auto 20px;
  }

  .hero-name {
    order: 2;
  }

  .hero-role {
    order: 3;
    margin-bottom: 30px;
  }

  .hero-image-wrapper {
    order: 4;
    margin: 0 auto 30px;
  }

  .hero-description {
    order: 5;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }

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

  .hero-image-container {
    width: 280px;
    height: 280px;
    margin: 0 auto;
  }

  .hero-float-card {
    display: flex;
    padding: 8px 12px;
    font-size: 0.75rem;
    gap: 8px;
  }

  .hero-float-card .icon-circle {
    width: 26px;
    height: 26px;
  }

  .hero-float-card .icon-circle svg {
    width: 14px;
    height: 14px;
  }

  .hero-float-card:nth-child(2) {
    bottom: 5px;
    left: -15px;
  }

  .hero-float-card:nth-child(3) {
    display: none;
  }

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

  .about-highlights {
    margin-top: 10px;
  }

  .expertise-editorial {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

  .bg-blob--blue {
    width: 300px;
    height: 300px;
  }

  .bg-blob--violet {
    width: 260px;
    height: 260px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .hero-name {
    font-size: 2.2rem;
  }

  .hero-float-card {
    display: none;
  }

  .contact-info-card,
  .contact-cta-card {
    padding: 28px 22px;
  }
}
