/* ============================================================
   BE MIND MARKETING — style.css
   ============================================================ */

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

:root {
  --gold: #c9a84c;
  --gold-light: #f0d080;
  --bg: #050505;
  --cream: #f5f0e8;
  --border: rgba(201,168,76,0.12);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--cream);
  overflow-x: hidden;
}

::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); }

/* ─── UTILITIES ─── */
.gold-grad {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.outline-text {
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.5);
}
.outline {
  color: transparent;
  -webkit-text-stroke: 1px rgba(201,168,76,0.6);
  display: block;
}
.line-dec {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 12px;
}
.section-tag-vertical {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  padding-top: 8px;
  font-weight: 600;
  flex-shrink: 0;
}
.section-label {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 600;
}

/* ─── BUTTONS ─── */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--bg);
  padding: 18px 44px;
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: transform 0.3s, box-shadow 0.3s;
  white-space: nowrap;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 20px 60px rgba(201,168,76,0.4); }

.btn-outline {
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  padding: 18px 40px;
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline:hover { background: rgba(201,168,76,0.08); border-color: rgba(201,168,76,0.6); }

.btn-ghost {
  color: var(--cream);
  font-size: 11px;
  letter-spacing: 0.25em;
  font-weight: 500;
  text-decoration: none;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  opacity: 0.6;
  transition: opacity 0.3s;
  gap: 4px;
}
.btn-ghost:hover { opacity: 1; }

/* ─── NAV ─── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 48px;
  transition: background 0.5s, border 0.5s, backdrop-filter 0.5s;
}
#navbar.scrolled {
  background: rgba(5,5,5,0.95);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(20px);
  padding: 16px 48px;
}

.logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 20px; font-weight: 800; letter-spacing: 0.15em; color: var(--gold); }
.logo-sub { font-size: 9px; font-weight: 300; letter-spacing: 0.45em; color: rgba(201,168,76,0.6); text-transform: uppercase; margin-top: 3px; }

.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 500;
  opacity: 0.7;
  text-transform: uppercase;
  transition: all 0.3s;
}
.nav-links a:hover { opacity: 1; color: var(--gold); }
.nav-links .nav-cta {
  background: var(--gold);
  color: var(--bg);
  padding: 10px 28px;
  font-size: 10px;
  letter-spacing: 0.25em;
  font-weight: 700;
  opacity: 1;
  transition: background 0.3s;
}
.nav-links .nav-cta:hover { background: var(--cream); color: var(--bg); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 1px; background: var(--cream); transition: all 0.3s; }

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0 48px;
}

.hero-circles { position: absolute; inset: 0; pointer-events: none; }
.circle {
  position: absolute;
  border-radius: 50%;
  right: 0;
  top: 50%;
  border: 1px solid rgba(201,168,76,0.1);
}
.c1 { width: 65vw; height: 65vw; transform: translate(10%, -50%); }
.c2 { width: 50vw; height: 50vw; transform: translate(5%, -50%); border-color: rgba(201,168,76,0.07); }
.c3 { width: 30vw; height: 30vw; transform: translate(-15%, -50%); background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 70%); border: none; }

.hero-line {
  position: absolute;
  left: 48px; top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.3) 30%, rgba(201,168,76,0.3) 70%, transparent);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  padding-left: 80px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1s ease 0.2s, transform 1s ease 0.2s;
}
.hero-content.visible { opacity: 1; transform: translateY(0); }

.hero-tag {
  font-size: 10px;
  letter-spacing: 0.4em;
  color: var(--gold);
  margin-bottom: 40px;
  text-transform: uppercase;
  font-weight: 600;
}

h1 {
  font-size: clamp(52px, 8vw, 110px);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -0.03em;
  margin-bottom: 40px;
}
h1 span { display: block; }

.hero-content p {
  max-width: 500px;
  line-height: 1.8;
  color: rgba(245,240,232,0.55);
  font-size: 15px;
  margin-bottom: 56px;
}

.hero-btns { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }

.scroll-indicator {
  position: absolute;
  bottom: 40px; left: 48px;
  display: flex; align-items: center; gap: 16px;
  z-index: 3; opacity: 0.4;
}
.scroll-line { width: 1px; height: 60px; background: var(--gold); animation: pulse 2s infinite; }
.scroll-indicator span {
  font-size: 9px; letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; writing-mode: vertical-rl;
}

/* ─── MARQUEE ─── */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
  background: rgba(201,168,76,0.03);
}
.marquee-track {
  display: flex;
  gap: 80px;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-size: 11px; letter-spacing: 0.3em;
  color: rgba(245,240,232,0.4); font-weight: 600; text-transform: uppercase;
}
.marquee-track .dot { color: var(--gold); font-weight: 400; }

/* ─── STATS ─── */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(201,168,76,0.08);
}
.stat-item {
  background: var(--bg);
  padding: 60px 48px;
  border-left: 1px solid rgba(201,168,76,0.1);
  transition: background 0.3s;
}
.stat-item:first-child { border-left: none; }
.stat-item:hover { background: rgba(201,168,76,0.03); }
.stat-value {
  font-size: clamp(48px, 5vw, 72px);
  font-weight: 900; line-height: 1;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text; margin-bottom: 12px;
}
.stat-label { font-size: 13px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 6px; }
.stat-sub { font-size: 11px; color: rgba(245,240,232,0.4); }

/* ─── MANIFESTO ─── */
.manifesto {
  padding: 160px 48px 160px 128px;
  position: relative; overflow: hidden;
}
.manifesto-watermark {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: clamp(120px, 25vw, 320px);
  font-weight: 900;
  color: rgba(201,168,76,0.03);
  letter-spacing: -0.05em;
  white-space: nowrap; user-select: none; z-index: 0;
}
.manifesto-inner {
  position: relative; z-index: 1;
  display: flex; align-items: flex-start; gap: 80px; margin-bottom: 80px;
}
.manifesto-text h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 48px; max-width: 700px;
}
.manifesto-cols {
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 800px;
}
.manifesto-cols p { line-height: 1.9; color: rgba(245,240,232,0.55); font-size: 15px; }

.principles {
  display: flex; border-top: 1px solid rgba(201,168,76,0.15);
  position: relative; z-index: 1;
}
.principle {
  flex: 1; padding: 48px;
  border-right: 1px solid rgba(201,168,76,0.15);
}
.principle:last-child { border-right: none; }
.principle-num { font-size: 10px; letter-spacing: 0.3em; color: var(--gold); margin-bottom: 20px; font-weight: 600; }
.principle-title { font-size: 15px; font-weight: 700; margin-bottom: 12px; letter-spacing: 0.02em; }
.principle-desc { font-size: 13px; color: rgba(245,240,232,0.5); line-height: 1.7; }

/* ─── SERVICES ─── */
.services {
  padding: 160px 48px;
  background: rgba(201,168,76,0.02);
  border-top: 1px solid rgba(201,168,76,0.1);
}
.services-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 80px; padding-left: 80px;
}
.services-header h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; max-width: 500px;
}
.services-list { padding-left: 80px; }
.service-item {
  border-top: 1px solid rgba(201,168,76,0.12);
  padding: 44px 0;
  display: grid;
  grid-template-columns: 80px 1fr 1fr auto;
  gap: 40px; align-items: center;
  cursor: pointer;
  transition: background 0.4s;
}
.service-item:hover, .service-item:focus { background: rgba(201,168,76,0.03); outline: none; }
.service-item:hover .service-title { color: var(--cream); }
.service-item:hover .service-desc { opacity: 1; transform: translateX(0); }
.service-item:hover .service-tag { opacity: 1; }
.service-border-bottom { border-top: 1px solid rgba(201,168,76,0.12); }

.service-num { font-size: 11px; color: var(--gold); letter-spacing: 0.2em; font-weight: 700; }
.service-title {
  font-size: clamp(20px, 2.5vw, 32px); font-weight: 800;
  letter-spacing: -0.02em; color: rgba(245,240,232,0.75); transition: color 0.4s;
}
.service-desc {
  font-size: 13px; color: rgba(245,240,232,0.45); line-height: 1.7;
  max-width: 400px; opacity: 0;
  transform: translateX(-20px); transition: all 0.4s ease;
}
.service-tag {
  font-size: 9px; letter-spacing: 0.3em; color: var(--gold);
  font-weight: 600; text-transform: uppercase; opacity: 0.3; transition: opacity 0.4s;
  white-space: nowrap;
}

/* ─── CLOUD ─── */
.cloud-section {
  padding: 160px 128px;
  background: linear-gradient(180deg, var(--bg) 0%, #070a0f 100%);
  border-top: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden;
}
.cloud-bg-glow {
  position: absolute; border-radius: 50%; pointer-events: none;
}
.cloud-bg-glow-1 {
  top: -200px; right: -200px; width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(30,80,160,0.06) 0%, transparent 70%);
}
.cloud-bg-glow-2 {
  bottom: -100px; left: -100px; width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
}
.cloud-inner { display: flex; align-items: flex-start; gap: 80px; position: relative; z-index: 1; }
.cloud-content { flex: 1; }
.cloud-pre { font-size: 10px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 24px; font-weight: 600; }
.cloud-content h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 32px; max-width: 700px;
}
.cloud-desc {
  font-size: 15px; line-height: 1.9; color: rgba(245,240,232,0.5); max-width: 600px; margin-bottom: 64px;
}
.cloud-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: rgba(201,168,76,0.1);
}
.cloud-card {
  background: #070a0f; padding: 48px 40px;
  transition: background 0.3s;
}
.cloud-card:hover { background: rgba(201,168,76,0.04); }
.cloud-icon { font-size: 24px; color: rgba(201,168,76,0.4); margin-bottom: 20px; }
.cloud-card-title { font-size: 14px; font-weight: 700; letter-spacing: 0.05em; margin-bottom: 24px; }
.cloud-card ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.cloud-card li {
  display: flex; align-items: center; gap: 10px;
  font-size: 12px; color: rgba(245,240,232,0.45); line-height: 1.5;
}
.cloud-card li::before {
  content: ''; width: 4px; height: 4px; border-radius: 50%;
  background: var(--gold); flex-shrink: 0;
}
.cloud-security {
  margin-top: 48px; padding: 32px 40px;
  border: 1px solid rgba(201,168,76,0.15);
  background: rgba(201,168,76,0.02);
  display: flex; justify-content: space-between; align-items: center; gap: 40px;
}
.cloud-security-title { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; margin-bottom: 6px; text-transform: uppercase; }
.cloud-security-desc { font-size: 12px; color: rgba(245,240,232,0.4); line-height: 1.6; }

/* ─── PORTFOLIO ─── */
.portfolio-section { padding: 160px 48px; padding-left: 128px; }
.portfolio-header {
  display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 48px;
}
.portfolio-header h2 {
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 900; line-height: 1.05; letter-spacing: -0.03em;
}
.see-all {
  font-size: 11px; letter-spacing: 0.2em; color: var(--gold);
  text-decoration: none; text-transform: uppercase; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
}
.see-all .line-dec { width: 30px; margin-right: 0; }

.filter-tabs { display: flex; gap: 2px; margin-bottom: 2px; flex-wrap: wrap; }
.tab {
  padding: 12px 28px; font-size: 10px; letter-spacing: 0.25em; font-weight: 600;
  text-transform: uppercase; border: none; cursor: pointer;
  transition: all 0.3s;
  background: rgba(201,168,76,0.07); color: rgba(245,240,232,0.5);
  font-family: inherit;
}
.tab:hover { background: rgba(201,168,76,0.12); color: rgba(245,240,232,0.8); }
.tab.active { background: var(--gold); color: var(--bg); }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.portfolio-card {
  position: relative; overflow: hidden; cursor: pointer;
  background: #0a0a0a;
}
.portfolio-card.wide { grid-column: span 2; }
.portfolio-card img {
  width: 100%; height: 320px; object-fit: cover;
  display: block; filter: brightness(0.85) contrast(1.05);
  transition: transform 0.6s ease, filter 0.4s ease;
}
.portfolio-card.wide img { height: 320px; }
.portfolio-card:hover img { transform: scale(1.04); filter: brightness(0.6) contrast(1.1); }

.card-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px 28px;
  background: linear-gradient(to top, rgba(5,5,5,0.92) 0%, transparent 100%);
  transition: opacity 0.35s;
}
.portfolio-card:hover .card-label { opacity: 0; }
.card-cat { font-size: 9px; letter-spacing: 0.3em; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; font-weight: 600; }
.card-title { font-size: 16px; font-weight: 800; letter-spacing: -0.01em; }

.card-hover {
  position: absolute; inset: 0;
  background: rgba(5,5,5,0.78);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.35s;
  backdrop-filter: blur(4px); gap: 16px; padding: 24px;
}
.portfolio-card:hover .card-hover { opacity: 1; }
.card-hover p { font-size: 12px; color: rgba(245,240,232,0.65); text-align: center; line-height: 1.6; max-width: 200px; }
.card-btn {
  border: 1px solid rgba(201,168,76,0.5); padding: 10px 28px;
  font-size: 9px; letter-spacing: 0.3em; color: var(--gold);
  text-transform: uppercase; font-weight: 700; transition: background 0.3s;
}
.card-btn:hover { background: rgba(201,168,76,0.1); }

/* ─── TESTIMONIAL ─── */
.testimonial {
  padding: 140px 128px;
  border-top: 1px solid rgba(201,168,76,0.1);
  border-bottom: 1px solid rgba(201,168,76,0.1);
  position: relative; overflow: hidden; text-align: center;
}
.testimonial-glow {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.quote-mark { font-size: 80px; color: var(--gold); line-height: 1; margin-bottom: 32px; opacity: 0.3; font-family: Georgia, serif; }
blockquote {
  font-size: clamp(20px, 3vw, 30px); font-weight: 300; line-height: 1.6;
  letter-spacing: -0.01em; max-width: 800px; margin: 0 auto 48px;
  color: rgba(245,240,232,0.85); position: relative; z-index: 1;
}
.testimonial-author {
  display: flex; align-items: center; justify-content: center; gap: 20px;
  position: relative; z-index: 1;
}
.author-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; font-weight: 800; color: var(--bg);
}
.author-name { font-weight: 700; font-size: 14px; letter-spacing: 0.05em; }
.author-role { font-size: 11px; color: var(--gold); letter-spacing: 0.15em; text-transform: uppercase; }

/* ─── CTA ─── */
.cta-section {
  padding: 160px 128px; position: relative; overflow: hidden;
}
.cta-circles { position: absolute; bottom: 0; right: 0; pointer-events: none; }
.cta-circle { position: absolute; border-radius: 50%; border: 1px solid rgba(201,168,76,0.06); }
.cta-c1 { width: 70vw; height: 70vw; bottom: 0; right: 0; transform: translate(30%, 30%); }
.cta-c2 { width: 50vw; height: 50vw; bottom: 0; right: 0; transform: translate(25%, 25%); }
.cta-content { position: relative; z-index: 1; max-width: 700px; }
.cta-pre { font-size: 10px; letter-spacing: 0.4em; color: var(--gold); text-transform: uppercase; margin-bottom: 32px; font-weight: 600; }
.cta-section h2 {
  font-size: clamp(42px, 6vw, 88px); font-weight: 900;
  line-height: 0.95; letter-spacing: -0.03em; margin-bottom: 48px;
}
.cta-section p { font-size: 15px; line-height: 1.8; color: rgba(245,240,232,0.5); margin-bottom: 56px; max-width: 500px; }
.cta-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ─── FOOTER ─── */
footer {
  padding: 60px 128px;
  border-top: 1px solid rgba(201,168,76,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 24px;
}
footer .logo { flex-direction: column; }
footer .logo-name { font-size: 18px; }
footer .logo-sub { font-size: 8px; }
.footer-copy { font-size: 11px; color: rgba(245,240,232,0.3); letter-spacing: 0.1em; }
.footer-social { display: flex; gap: 32px; }
.footer-social a {
  font-size: 11px; letter-spacing: 0.15em; color: rgba(245,240,232,0.35);
  text-decoration: none; text-transform: uppercase; font-weight: 500; transition: color 0.3s;
}
.footer-social a:hover { color: var(--gold); }

/* ─── ANIMATIONS ─── */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}
.fade-up {
  opacity: 0; transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cloud-section { padding: 120px 64px; }
  .portfolio-grid { grid-template-columns: repeat(2, 1fr); }
  .portfolio-card.wide { grid-column: span 2; }
  .service-item { grid-template-columns: 60px 1fr; gap: 24px; }
  .service-desc, .service-tag { display: none; }
}

@media (max-width: 768px) {
  #navbar { padding: 20px 24px; }
  #navbar.scrolled { padding: 14px 24px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5,5,5,0.98); justify-content: center; align-items: center; gap: 32px; z-index: 200; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 16px; }
  .hamburger { display: flex; z-index: 300; }
  .hero { padding: 0 24px; }
  .hero-line { left: 24px; }
  .hero-content { padding-left: 48px; }
  .scroll-indicator { left: 24px; }
  .manifesto { padding: 100px 24px 100px 24px; }
  .manifesto-inner { flex-direction: column; gap: 32px; }
  .manifesto-cols { grid-template-columns: 1fr; }
  .principles { flex-direction: column; }
  .principle { border-right: none; border-bottom: 1px solid rgba(201,168,76,0.15); }
  .services { padding: 100px 24px; }
  .services-header { flex-direction: column; align-items: flex-start; gap: 16px; padding-left: 0; }
  .services-list { padding-left: 0; }
  .cloud-section { padding: 100px 24px; }
  .cloud-inner { flex-direction: column; gap: 32px; }
  .cloud-grid { grid-template-columns: 1fr; }
  .cloud-security { flex-direction: column; align-items: flex-start; }
  .portfolio-section { padding: 100px 24px; }
  .portfolio-grid { grid-template-columns: 1fr 1fr; }
  .portfolio-card.wide { grid-column: span 2; }
  .testimonial { padding: 100px 24px; }
  .cta-section { padding: 100px 24px; }
  footer { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .portfolio-grid { grid-template-columns: 1fr; }
  .portfolio-card.wide { grid-column: span 1; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 40px 24px; }
  h1 { font-size: clamp(40px, 12vw, 80px); }
  .filter-tabs { gap: 4px; }
  .tab { padding: 10px 16px; font-size: 9px; }
}
