@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@600;700&family=Public+Sans:wght@800&family=Syne:wght@400;500;600;700;800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;0,9..40,800;1,9..40,400&display=swap');

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

:root {
  --bg: #0e0e0e;
  --bg-card: #1a1a1a;
  --bg-card-deep: #131313;
  --bg-green-deep: #001809;
  --accent: #89fe9b;
  --accent-dark: #064200;
  --accent-green-mid: #0c331d;
  --peach: #eea48b;
  --peach-light: #fec8bc;
  --text: #e1fee5;
  --text-muted: #adaaaa;
  --text-muted-green: #96b29c;
  --border: rgba(255,255,255,0.06);
  --border-green: rgba(137,254,155,0.15);
  --font: 'DM Sans', sans-serif;
  --radius: 16px;
  --radius-sm: 10px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: linear-gradient(to bottom, #001c0a 0%, #0c0f0c 22%, var(--bg) 52%);
  background-attachment: fixed;
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ─── FIXED PAGE BACKGROUND GLOW ─────── */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  pointer-events: none;
}

.page-bg-fade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    transparent 0%,
    transparent 20%,
    rgba(14,14,14,0.55) 45%,
    rgba(14,14,14,0.88) 65%,
    var(--bg) 85%
  );
}

a { text-decoration: none; color: inherit; }

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

/* ─── LAYOUT ─────────────────────────── */
.page { min-height: 100vh; display: flex; flex-direction: column; }

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ─── HEADER ─────────────────────────── */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,14,14,0.72);
  border-bottom: 1px solid rgba(137,254,155,0.08);
  backdrop-filter: blur(18px) saturate(1.4);
  -webkit-backdrop-filter: blur(18px) saturate(1.4);
  box-shadow: 0 1px 0 rgba(137,254,155,0.06), 0 8px 32px rgba(0,0,0,0.5);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  padding: 0 32px;
  max-width: 1200px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
  letter-spacing: -0.3px;
}

.logo-icon {
  width: 28px;
  height: 28px;
  background: var(--accent);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 20px; height: 20px; }

.btn-contact {
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid rgba(137,254,155,0.2);
  padding: 10px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, box-shadow 0.2s;
}

.btn-contact:hover {
  background: rgba(137,254,155,0.08);
  border-color: rgba(137,254,155,0.4);
  box-shadow: 0 0 20px rgba(137,254,155,0.1);
}

/* ─── GLOW BLOBS ──────────────────────── */
.glow-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.glow-green {
  background: var(--accent);
  width: 380px;
  height: 380px;
}

.glow-peach {
  background: var(--peach);
  width: 320px;
  height: 320px;
  opacity: 0.25;
}

/* ─── HERO ────────────────────────────── */
.hero {
  position: relative;
  padding: 100px 0 60px;
  overflow: hidden;
  place-items: center;
}

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

/* ─── CENTERED HOME CONTAINER ─────────── */
.home-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 24px;
}

/* text glow halo sitting directly behind the headline */
.hero-glow-text {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  border-radius: 50%;
  filter: blur(70px);
}

.hero h1 {
  font-size: clamp(56px, 9vw, 80px);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -3px;
  color: var(--text);
  margin-bottom: 28px;
  filter: drop-shadow(0 0 40px rgba(137,254,155,0.18));
  text-align: left;
}

.hero-accent {
  font-weight: 800;
  color: var(--accent);
  filter: drop-shadow(0 0 24px rgba(137,254,155,0.45));
}

.hero p {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.6;
  margin: 0 auto 36px;
  max-width: 480px;
  text-align: left;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: #0e0e0e;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.btn-primary:hover {
  background: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(137,254,155,0.3);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.1);
  color: #fff;
  padding: 16px 22px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.16);
  transform: translateY(-1px);
}

.btn-accent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--accent-dark);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset, 0 4px 16px rgba(137,254,155,0.25);
}

.btn-accent:hover {
  opacity: 0.9;
  transform: translateY(-1px);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.2) inset, 0 6px 24px rgba(137,254,155,0.35);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--bg-card);
  color: var(--text-muted);
  padding: 12px 24px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
}

.btn-ghost:hover {
  border-color: rgba(255,255,255,0.15);
  color: var(--text);
}

/* ─── FILTER BAR ──────────────────────── */
.filter-bar {
  padding: 20px 0 40px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.filter-label {
  font-size: 15px;
  color: var(--text-muted);
  margin-right: 4px;
}

.filter-btn {
  padding: 9px 18px;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text-muted);
  transition: all 0.2s;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  color: var(--accent-dark);
  border-color: var(--accent);
  box-shadow: 0 0 0 1px rgba(255,255,255,0.15) inset;
}

/* ─── PROJECTS GRID ───────────────────── */
.projects-section {
  padding: 0 0 80px;
}

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

.project-card {
  background: #151a13;
  border: 1px solid rgba(137,254,155,0.12);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.project-card:hover {
  border-color: rgba(137,254,155,0.32);
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.5), 0 0 0 1px rgba(137,254,155,0.12);
}

.project-thumb {
  width: 100%;
  height: 120px;
  background: #1a2018;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.project-thumb-forge {
  background: linear-gradient(135deg, #1a1f18 0%, #0f1510 100%);
}

.project-thumb-forge::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 60% 40%, rgba(137,254,155,0.15) 0%, transparent 60%);
}

.project-thumb-sixth {
  background: linear-gradient(135deg, #1a0f18 0%, #100810 100%);
}

.project-thumb-sixth::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 40% 50%, rgba(180,100,200,0.18) 0%, transparent 60%);
}

.project-thumb-logo {
  position: relative;
  z-index: 1;
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 20px;
}

.project-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 3px 9px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.badge-app { background: rgba(137,254,155,0.15); color: #89fe9b; border: 1px solid rgba(137,254,155,0.3); }
.badge-web { background: rgba(100,150,255,0.15); color: #89b4fe; border: 1px solid rgba(100,150,255,0.3); }

.project-info {
  padding: 14px;
}

.project-title {
  font-family: 'Public Sans', sans-serif;
  font-weight: 800;
  font-size: 16px;
  color: var(--text);
  margin-bottom: 4px;
}

.project-desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-bottom: 12px;
}

.project-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  transition: opacity 0.2s;
}

.project-link:hover { opacity: 0.7; }

/* ─── SERVICES GRID ───────────────────── */
.services-section {
  padding: 0 32px 64px;
}

.services-inner {
  max-width: 920px;
  margin: 0 auto;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(24px) saturate(1.3);
  -webkit-backdrop-filter: blur(24px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius);
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.3), 0 1px 0 rgba(255,255,255,0.05) inset;
}

.services-section h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
  letter-spacing: -1.5px;
  line-height: 1.1;
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 0;
}

.service-card {
  background: rgba(137,254,155,0.04);
  border: 1px solid rgba(137,254,155,0.12);
  border-radius: 8px;
  padding: 14px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  text-align: left;
  flex: 1 1 160px;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.service-card:hover {
  border-color: rgba(137,254,155,0.28);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.service-icon {
  width: 32px;
  height: 32px;
  background: rgba(137,254,155,0.1);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.service-card h3 {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-muted);
}

/* ─── TEAM CTA ────────────────────────── */
.team-cta {
  position: relative;
  padding: 100px 32px;
  overflow: hidden;
  background: #131313;
}

.team-cta-inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}

.team-cta h2 {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  letter-spacing: -1.5px;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.1;
}

.team-cta p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 32px;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid rgba(137,254,155,0.3);
  padding-bottom: 2px;
  transition: border-color 0.2s, gap 0.2s;
}

.link-arrow:hover {
  border-color: var(--accent);
  gap: 10px;
}

/* ─── TEAM PAGE ───────────────────────── */
.team-hero {
  position: relative;
  padding: 100px 0px 80px;
  overflow: hidden;
  place-items: center;
}

.team-hero-content {
  max-width: 600px;
  position: relative;
  z-index: 1;
}

.team-hero h1 {
  font-size: clamp(56px, 9vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 24px;
}

.team-hero p {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.6;
}

.team-grid {
  padding: 0 32px 80px;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
}

/* featured profile card */
.featured-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.featured-card:hover {
  border-color: rgba(137,254,155,0.2);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.45);
}

.featured-avatar-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 40px 0;
}

.featured-avatar {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  border: 3px solid rgba(137,254,155,0.3);
  object-fit: cover;
  background: linear-gradient(135deg, #1a3a1a, #0a1a0a);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  color: var(--accent);
  box-shadow: 0 0 40px rgba(137,254,155,0.15);
  flex-shrink: 0;
}

.featured-info {
  padding: 32px 40px 40px;
}

.featured-info h2 {
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.8px;
  margin-bottom: 8px;
  color: var(--text);
}

.featured-role {
  font-size: 15px;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 20px;
}

.featured-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.featured-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.featured-links a {
  padding: 9px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: rgba(137,254,155,0.06);
  border: 1px solid rgba(137,254,155,0.15);
  color: var(--text-muted);
  transition: all 0.2s;
}

.featured-links a:hover {
  background: rgba(137,254,155,0.1);
  border-color: rgba(137,254,155,0.3);
  color: var(--accent);
}

/* right column */
.team-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.tag-card {
  background: var(--bg-green-deep);
  border-radius: var(--radius);
  border: 1px solid rgba(137,254,155,0.12);
  padding: 40px 32px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.tag-card:hover {
  border-color: rgba(137,254,155,0.25);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.tag-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    105deg,
    transparent 0%,
    rgba(255,255,255,0.08) 50%,
    transparent 100%
  );
  transform: skewX(-15deg);
  pointer-events: none;
  transition: none;
}

.tag-card:hover::after {
  animation: shimmer-sweep 0.65s ease forwards;
}

@keyframes shimmer-sweep {
  0%   { left: -75%; }
  100% { left: 125%; }
}

.tag-card-glow {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: var(--peach);
  filter: blur(60px);
  opacity: 0.2;
  bottom: -40px;
  right: -40px;
}

.tag-card h3 {
  font-size: 28px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.5px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.tag-card h3 span {
  color: var(--accent);
}

.join-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset;
  transition: border-color 0.22s, transform 0.22s, box-shadow 0.22s;
}

.join-card:hover {
  border-color: rgba(137,254,155,0.2);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.join-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.4px;
  color: var(--text);
}

.join-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ─── CONTACT PAGE ────────────────────── */
.contact-main {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  align-items: start;
}

.contact-info {
  position: relative;
}

.contact-info h1 {
  font-size: clamp(56px, 8vw, 100px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: 1.02;
  color: var(--text);
  margin-bottom: 24px;
}

.contact-info p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 40px;
}

.contact-email-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-email-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-muted);
  font-weight: 500;
}

.contact-email-link {
  font-size: 17px;
  color: var(--accent);
  font-weight: 500;
  border-bottom: 1px solid rgba(137,254,155,0.3);
  width: fit-content;
  padding-bottom: 2px;
  transition: border-color 0.2s;
}

.contact-email-link:hover {
  border-color: var(--accent);
}

/* Contact form */
.contact-form-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 24px 60px rgba(0,0,0,0.3);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 0.2px;
}

.form-input, .form-textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 16px;
  font-family: var(--font);
  font-size: 15px;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255,255,255,0.2);
}

.form-input:focus, .form-textarea:focus {
  border-color: rgba(137,254,155,0.4);
  box-shadow: 0 0 0 3px rgba(137,254,155,0.08);
}

.form-textarea {
  resize: vertical;
  min-height: 140px;
}

.btn-submit {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: var(--accent-dark);
  border: none;
  border-radius: 10px;
  font-family: var(--font);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(137,254,155,0.25);
  margin-top: 8px;
}

.btn-submit:hover {
  opacity: 0.92;
  transform: translateY(-1px);
  box-shadow: 0 6px 28px rgba(137,254,155,0.35);
}

/* ─── FOOTER ──────────────────────────── */
footer {
  background: #131313;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 48px 32px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.footer-copy {
  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 0.2s;
}

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

.footer-links a.active {
  color: var(--accent);
  font-weight: 500;
}

/* ─── TOAST ───────────────────────────── */
.toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--accent);
  color: var(--accent-dark);
  padding: 14px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: transform 0.3s, opacity 0.3s;
  z-index: 999;
  white-space: nowrap;
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .services-grid { justify-content: center; }
  .team-grid { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { flex-direction: column; gap: 16px; text-align: center; }
}

@media (max-width: 640px) {
  .header-inner { padding: 0 24px; }
  .hero, .team-hero { padding: 60px 0px 80px; }
  .hero h1 { letter-spacing: -2px; }
  .btn-secondary { display: flex; width: 100%; justify-content: center; }
  .home-container { padding: 0 24px; }
  .projects-grid { grid-template-columns: 1fr; }
  .services-section { padding: 0 24px 48px; }
  .services-inner { padding: 32px 24px; border-radius: 12px; }
  .team-cta { padding: 60px 24px; }
  .team-hero, .team-grid { padding-left: 24px; padding-right: 24px; }
  .contact-main { padding: 60px 24px; }
  .contact-form-card { padding: 28px 24px; }
  .featured-avatar-wrap { padding: 28px 24px 0; }
  .featured-info { padding: 24px 24px 28px; }
  footer { padding: 36px 24px; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }
}
