﻿/* Laiba Ali — Marketing Strategist Portfolio (Brand Orbit Hub style) */

:root {
  --violet: #7C5CFF;
  --coral: #FF5D8F;
  --amber: #FFC24B;
  --lilac: #EDE7FF;
  --cream: #F3EFFF;
  --ink: #160E2E;
  --text: #1A1233;
  --muted: #544A6E;
  --dim: #8A7EAA;
  --line: rgba(26, 18, 51, 0.1);
  --white: #FFFFFF;
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Instrument Sans", system-ui, -apple-system, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --wrap: min(1140px, calc(100% - 40px));
  --nav-h: 72px;
  --r: 20px;
  --r-sm: 14px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--nav-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.72;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-left: env(safe-area-inset-left, 0);
  padding-right: env(safe-area-inset-right, 0);
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

::selection { background: var(--violet); color: #fff; }

.wrap { width: var(--wrap); margin-inline: auto; }

/* ---------- BACKGROUND GRAPHICS ---------- */
.bg-aurora {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background:
    radial-gradient(50vw 45vw at 8% 0%, rgba(124, 92, 255, 0.14), transparent 65%),
    radial-gradient(42vw 38vw at 95% 20%, rgba(255, 93, 143, 0.1), transparent 68%),
    radial-gradient(35vw 30vw at 50% 100%, rgba(255, 194, 75, 0.08), transparent 70%);
}

.bg-shapes { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }

.shape {
  position: absolute;
  opacity: 0.12;
  animation: float 18s ease-in-out infinite;
}

.shape-1 { width: 280px; top: 12%; right: -60px; animation-delay: 0s; }
.shape-2 { width: 180px; bottom: 20%; left: -40px; animation-delay: -6s; }
.shape-3 { width: 120px; top: 55%; right: 15%; animation-delay: -12s; }

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(6deg); }
}

/* ---------- NAV ---------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 12px 0;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 20px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(22, 14, 46, 0.06);
}

.brand {
  font-family: var(--display);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  padding: 8px 14px;
  border-radius: 999px;
  transition: color 0.25s var(--ease), background 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active { color: var(--ink); background: var(--lilac); }

.nav-links .nav-cta {
  background: linear-gradient(120deg, var(--violet), var(--coral));
  color: #fff !important;
  margin-left: 4px;
}

.nav-links .nav-cta:hover {
  box-shadow: 0 8px 24px -8px var(--violet);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  width: 18px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 102;
    flex-shrink: 0;
  }
  .nav {
    padding: 8px 14px;
    border-radius: 20px;
  }
  .brand {
    font-size: 15px;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .nav-links {
    position: fixed;
    inset: 0;
    z-index: 101;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 80px 24px 40px;
    background: rgba(243, 239, 255, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease);
  }
  .nav-links.open { opacity: 1; pointer-events: auto; }
  .nav-links li { width: 100%; max-width: 280px; text-align: center; }
  .nav-links a {
    display: block;
    font-size: 18px;
    padding: 14px 24px;
    min-height: 48px;
  }
  .nav-links .nav-cta { margin-left: 0; margin-top: 8px; }
}

/* ---------- TYPOGRAPHY ---------- */
.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--violet);
  margin-bottom: 12px;
}

h1, h2, h3 { font-family: var(--display); letter-spacing: -0.03em; color: var(--ink); }

.gradient-text {
  background: linear-gradient(120deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-head h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  max-width: 16ch;
}

.section-lead {
  margin-top: 14px;
  color: var(--muted);
  max-width: 52ch;
  font-size: 16px;
}

.sub-head {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 700;
  margin-bottom: 16px;
}

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body);
  font-weight: 600;
  font-size: 14px;
  padding: 13px 24px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.btn-primary {
  background: linear-gradient(120deg, var(--violet), var(--coral));
  color: #fff;
  box-shadow: 0 10px 30px -12px var(--violet);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px -12px var(--coral);
}

.btn-ghost {
  background: var(--white);
  color: var(--ink);
  border: 1px solid var(--line);
}

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

.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }

/* ---------- HERO ---------- */
.hero {
  padding-top: calc(var(--nav-h) + 48px);
  padding-bottom: 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  align-items: center;
}

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 56px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 20px;
}

.hero-lead {
  font-size: clamp(16px, 2vw, 18px);
  color: var(--muted);
  max-width: 52ch;
  line-height: 1.75;
}

@media (max-width: 860px) {
  .hero-lead { margin-inline: auto; }
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 22px;
}

.badge {
  font-size: 12px;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--muted);
}

/* Hero photo + floating cards */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 340px;
}

.photo-ring {
  width: min(300px, 80vw);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(140deg, var(--violet), var(--coral), var(--amber));
  box-shadow: 0 24px 60px -16px rgba(124, 92, 255, 0.4);
}

.photo-ring img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 50%;
  border: 4px solid var(--white);
}

.float-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 12px 36px rgba(22, 14, 46, 0.08);
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  animation: bob 4s ease-in-out infinite;
}

.float-card-1 { top: 8%; right: 0; animation-delay: 0s; }
.float-card-2 { bottom: 12%; left: 0; animation-delay: -2s; }

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

@media (max-width: 860px) {
  .float-card-1 { right: 5%; }
  .float-card-2 { left: 5%; }
}

/* Stats */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 56px;
}

@media (max-width: 768px) { .stats-row { grid-template-columns: repeat(2, 1fr); } }

.stat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 20px;
  text-align: center;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.12);
}

.stat-icon {
  width: 40px;
  height: 40px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--lilac);
  color: var(--violet);
}

.stat-icon svg { width: 22px; height: 22px; }

.stat-num {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(120deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--dim);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* ---------- SECTIONS ---------- */
.section { padding: clamp(64px, 8vw, 96px) 0; }
.section-alt { background: var(--lilac); border-radius: clamp(24px, 4vw, 40px); margin-inline: 20px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 32px;
}

.about-grid p { color: var(--muted); font-size: 16px; line-height: 1.8; }
.about-grid strong { color: var(--ink); font-weight: 600; }

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

/* Skills grid */
.skills-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) { .skills-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .skills-grid { grid-template-columns: 1fr; } }

.skill-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}

.skill-card:hover {
  transform: translateY(-6px);
  border-color: rgba(124, 92, 255, 0.25);
  box-shadow: 0 20px 48px rgba(124, 92, 255, 0.12);
}

.skill-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(124, 92, 255, 0.12), rgba(255, 93, 143, 0.1));
  color: var(--violet);
  margin-bottom: 16px;
}

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

.skill-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}

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

/* Timeline */
.timeline {
  margin-top: 48px;
  position: relative;
  padding-left: 32px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: linear-gradient(180deg, var(--violet), var(--coral), var(--amber));
  border-radius: 2px;
}

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

.timeline-marker {
  position: absolute;
  left: -32px;
  top: 24px;
}

.timeline-marker .dot {
  display: block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--violet);
  box-shadow: 0 0 0 4px rgba(124, 92, 255, 0.15);
}

.timeline-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  box-shadow: 0 4px 24px rgba(22, 14, 46, 0.04);
  transition: box-shadow 0.35s var(--ease);
}

.timeline-card:hover { box-shadow: 0 16px 40px rgba(124, 92, 255, 0.1); }

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

.timeline-top h3 {
  font-size: 18px;
  font-weight: 700;
  margin-top: 6px;
}

.timeline-top .company {
  font-size: 14px;
  font-weight: 600;
  color: var(--violet);
  margin-top: 4px;
}

.timeline-top time {
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
  white-space: nowrap;
}

.timeline-intro {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.timeline-card ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-card li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.65;
  padding-left: 18px;
  position: relative;
}

.timeline-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--violet), var(--coral));
}

.timeline-card li strong { color: var(--ink); }

.pill {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 999px;
}

.pill-live {
  background: rgba(45, 184, 122, 0.12);
  color: #1a8f5a;
  border: 1px solid rgba(45, 184, 122, 0.3);
}

/* Brand portfolio grid */
.brand-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 40px;
}

@media (max-width: 1024px) { .brand-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 768px) { .brand-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .brand-grid { grid-template-columns: 1fr; } }

.brand-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  padding: 20px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.brand-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(124, 92, 255, 0.12);
}

.brand-tag {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.brand-tag.wellness { background: rgba(45, 184, 122, 0.12); color: #1a8f5a; }
.brand-tag.beauty { background: rgba(255, 93, 143, 0.12); color: #c43d6a; }
.brand-tag.build { background: rgba(255, 194, 75, 0.2); color: #9a7200; }
.brand-tag.retail { background: rgba(124, 92, 255, 0.12); color: var(--violet); }

.brand-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.brand-card p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
}

/* Ventures */
.ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

@media (max-width: 900px) { .ventures-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ventures-grid { grid-template-columns: 1fr; } }

.venture-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px 24px;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.venture-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.1);
}

.venture-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: linear-gradient(140deg, var(--violet), var(--coral));
  margin-bottom: 16px;
}

.venture-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}

.venture-role {
  font-size: 12px;
  font-weight: 700;
  color: var(--coral);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.venture-card p:last-child {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}

/* Markets & Education */
.markets-edu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

@media (max-width: 768px) { .markets-edu-grid { grid-template-columns: 1fr; } }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }

.chip {
  font-size: 13px;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
}

.lang-note { font-size: 14px; color: var(--muted); font-weight: 500; }

.edu-list { display: flex; flex-direction: column; gap: 0; }

.edu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}

.edu-item:last-child { border-bottom: none; }

.edu-item strong {
  display: block;
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
}

.edu-item span {
  display: block;
  font-size: 13px;
  color: var(--violet);
  font-weight: 500;
  margin-top: 4px;
}

.edu-item time {
  font-size: 13px;
  font-weight: 600;
  color: var(--dim);
}

/* Key wins */
.wins-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

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

.win-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 32px 28px;
  box-shadow: 0 8px 32px rgba(124, 92, 255, 0.08);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.win-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(124, 92, 255, 0.12);
}

.win-stat {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 800;
  background: linear-gradient(120deg, var(--violet), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 12px;
}

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


/* Contact */
.contact-section { padding-bottom: 80px; }

.contact-card {
  position: relative;
  background: linear-gradient(160deg, var(--white), var(--lilac));
  border: 1px solid rgba(124, 92, 255, 0.15);
  border-radius: clamp(24px, 4vw, 36px);
  padding: clamp(40px, 6vw, 64px);
  text-align: center;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(124, 92, 255, 0.12);
}

.contact-graphic {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 140px;
  opacity: 0.5;
}

.contact-card h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 12px;
}

.contact-lead {
  color: var(--muted);
  max-width: 46ch;
  margin: 0 auto 28px;
  font-size: 16px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
  font-size: 15px;
}

.contact-details a {
  font-weight: 600;
  color: var(--violet);
  transition: color 0.25s;
}

.contact-details a:hover { color: var(--coral); }
.contact-details span { color: var(--muted); }

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

/* Footer */
.site-footer {
  padding: 28px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 14px;
  color: var(--dim);
}

.footer-inner a {
  font-weight: 600;
  color: var(--violet);
}

.footer-inner a:hover { color: var(--coral); }

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 768px) {
  :root { --wrap: min(1140px, calc(100% - 28px)); }

  .site-header {
    padding: 10px 0;
    padding-top: max(10px, env(safe-area-inset-top));
  }

  .section { padding: 56px 0; }
  .section-alt { margin-inline: 10px; border-radius: 20px; padding: 56px 0; }
  .section-head h2 { max-width: none; font-size: clamp(24px, 7vw, 32px); }

  .hero {
    padding-top: calc(var(--nav-h) + 36px);
    padding-bottom: 32px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 36px;
    text-align: center;
  }

  .hero-grid .hero-visual { order: -1; }

  .hero h1 { font-size: clamp(32px, 9vw, 44px); }
  .hero-lead { font-size: 16px; margin-inline: auto; }
  .hero-badges { justify-content: center; }
  .hero-actions { justify-content: center; width: 100%; }
  .hero-actions .btn { flex: 1 1 140px; min-height: 48px; justify-content: center; }

  .hero-visual { min-height: 280px; }
  .photo-ring { width: min(240px, 72vw); }
  .float-card {
    font-size: 11px;
    padding: 10px 12px;
    max-width: 140px;
  }
  .float-card-1 { top: 4%; right: 0; }
  .float-card-2 { bottom: 8%; left: 0; }

  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 40px; }
  .stat-card { padding: 18px 14px; }
  .stat-num { font-size: 26px; }

  .timeline { padding-left: 22px; }
  .timeline-marker { left: -22px; }
  .timeline-card { padding: 22px 18px; }
  .timeline-top { flex-direction: column; align-items: flex-start; gap: 8px; }
  .timeline-top time { white-space: normal; }

  .about-grid { gap: 24px; }
  .skills-grid { gap: 14px; }
  .brand-grid { gap: 12px; }
  .wins-grid { gap: 14px; }
  .win-card { padding: 24px 20px; }

  .contact-card { padding: 32px 20px; border-radius: 24px; }
  .contact-details a,
  .contact-details span { word-break: break-word; }
  .contact-card .hero-actions { flex-direction: column; align-items: stretch; }
  .contact-card .btn { width: 100%; min-height: 48px; }

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

  .bg-shapes .shape { opacity: 0.06; }
  .shape-1 { width: 180px; right: -80px; }
  .shape-2 { width: 120px; left: -60px; }
  .shape-3 { display: none; }
}

@media (max-width: 400px) {
  .float-card { display: none; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .stat-label { font-size: 10px; }
  .hero-actions .btn { flex: 1 1 100%; }
  .badge { font-size: 11px; padding: 6px 12px; }
}
