/* ============================================
   thedesignscope.net — Global Styles
   Experimental, bold, non-AI aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Syne:wght@400;500;600;700;800&display=swap');

:root {
  --black: #0b0b0b;
  --white: #f5f5f0;
  --off-white: #e8e8e0;
  --gray-100: #d0d0c8;
  --gray-200: #a0a098;
  --gray-300: #707068;
  --gray-400: #505048;
  --gray-500: #303028;
  --accent: #ff4d00;
  --accent-dim: #cc3d00;
  --accent-glow: rgba(255, 77, 0, 0.3);
  --green: #00ff88;
  --green-dim: #00cc6a;
  --blue: #0066ff;
  --pink: #ff0066;
  --yellow: #ffcc00;
  --font-display: 'Syne', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--white);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: var(--accent);
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* ---- Typography ---- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(3rem, 10vw, 8rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
}

/* ---- Glitch Text Effect ---- */
.glitch {
  position: relative;
  display: inline-block;
}

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.glitch::before {
  color: var(--accent);
  z-index: -1;
  animation: glitch-offset 3s infinite linear alternate-reverse;
}

.glitch::after {
  color: var(--blue);
  z-index: -2;
  animation: glitch-offset 2s infinite linear alternate-reverse;
}

@keyframes glitch-offset {
  0% { transform: translate(0); }
  20% { transform: translate(-2px, 2px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-1px, 3px); }
  80% { transform: translate(3px, 1px); }
  100% { transform: translate(-3px, -2px); }
}

/* ---- Gradient Text ---- */
.gradient-text {
  background: linear-gradient(135deg, var(--accent), var(--pink), var(--blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 4s ease-in-out infinite;
}

@keyframes gradient-shift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* ---- Container ---- */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ---- Section ---- */
.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gray-200);
  margin-bottom: 16px;
  padding: 4px 12px;
  border: 1px solid var(--gray-400);
  border-radius: 2px;
}

/* ---- Header ---- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 24px 0;
  transition: var(--transition);
}

.header.scrolled {
  background: rgba(11, 11, 11, 0.9);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 8px;
}

.logo-mark {
  width: 32px;
  height: 32px;
  background: var(--accent);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav a {
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-200);
  position: relative;
  transition: var(--transition-fast);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}

.nav a:hover {
  color: var(--white);
}

.nav a:hover::after {
  width: 100%;
}

.nav a.active {
  color: var(--white);
}

.nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 28px;
  background: var(--accent);
  color: var(--black) !important;
  font-weight: 700 !important;
  border-radius: 2px;
  letter-spacing: 0.05em;
  transition: var(--transition);
}

.nav-cta:hover {
  background: var(--white);
  color: var(--black) !important;
  transform: translateY(-2px);
}

.nav-cta::after {
  display: none !important;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: var(--white);
  border-radius: 1px;
  transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ---- Hero ---- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.hero-shape-1 {
  width: 600px;
  height: 600px;
  background: var(--accent);
  top: -200px;
  right: -200px;
  animation: float-shape 8s ease-in-out infinite;
}

.hero-shape-2 {
  width: 400px;
  height: 400px;
  background: var(--blue);
  bottom: -100px;
  left: -100px;
  animation: float-shape 10s ease-in-out infinite reverse;
}

.hero-shape-3 {
  width: 300px;
  height: 300px;
  background: var(--green);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: float-shape 12s ease-in-out infinite 2s;
}

@keyframes float-shape {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(30px, -30px) scale(1.05); }
  66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--green);
  margin-bottom: 24px;
  padding: 6px 16px;
  border: 1px solid rgba(0, 255, 136, 0.2);
  background: rgba(0, 255, 136, 0.05);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green);
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.2; }
}

.hero h1 {
  margin-bottom: 24px;
  max-width: 900px;
}

.hero h1 .line {
  display: block;
  overflow: hidden;
}

.hero h1 .line span {
  display: block;
  animation: reveal-line 0.8s ease-out forwards;
  opacity: 0;
  transform: translateY(100%);
}

.hero h1 .line:nth-child(1) span { animation-delay: 0.1s; }
.hero h1 .line:nth-child(2) span { animation-delay: 0.3s; }
.hero h1 .line:nth-child(3) span { animation-delay: 0.5s; }
.hero h1 .line:nth-child(4) span { animation-delay: 0.7s; }

@keyframes reveal-line {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--gray-200);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.7;
  animation: fade-up 0.6s ease-out 0.6s both;
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fade-up 0.6s ease-out 0.8s both;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--gray-400);
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--gray-200);
  border: 1px solid var(--gray-400);
  padding: 12px 28px;
  font-size: 0.8rem;
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--white);
}

/* ---- Hero Marquee ---- */
.hero-marquee {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(11, 11, 11, 0.8);
  backdrop-filter: blur(8px);
}

.marquee-track {
  display: flex;
  gap: 48px;
  animation: marquee 30s linear infinite;
  white-space: nowrap;
}

.marquee-track span {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-300);
}

.marquee-track span em {
  font-style: normal;
  color: var(--accent);
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---- Grid Layout (asymmetric) ---- */
.grid-asymmetric {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}

.grid-asymmetric-2 {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ---- Cards ---- */
.card {
  padding: 40px 32px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
  transition: var(--transition);
  cursor: default;
}

.card:hover {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
}

.card-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 16px;
  right: 20px;
  line-height: 1;
}

.card-icon {
  font-size: 2rem;
  margin-bottom: 20px;
  display: block;
}

.card h3 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card p {
  color: var(--gray-200);
  font-size: 0.9rem;
  line-height: 1.7;
}

.card-tag {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  padding: 4px 12px;
  border: 1px solid rgba(255, 77, 0, 0.2);
}

/* ---- Work Grid ---- */
.work-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 24px;
}

.work-grid .work-card:first-child {
  grid-row: span 2;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  transition: var(--transition);
  cursor: pointer;
}

.work-card:hover {
  border-color: rgba(255, 255, 255, 0.12);
}

.work-card-visual {
  width: 100%;
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  position: relative;
  overflow: hidden;
}

.work-card:first-child .work-card-visual {
  aspect-ratio: 16/12;
}

.work-card-visual .work-bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background: conic-gradient(from 0deg, var(--accent), var(--blue), var(--green), var(--pink), var(--accent));
  animation: rotate-bg 10s linear infinite;
}

@keyframes rotate-bg {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.work-card-info {
  padding: 24px;
}

.work-card-category {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 8px;
}

.work-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.work-card p {
  color: var(--gray-200);
  font-size: 0.85rem;
}

/* ---- Process ---- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.process-item {
  padding: 32px;
  border-top: 2px solid var(--gray-400);
  transition: var(--transition);
}

.process-item:hover {
  border-top-color: var(--accent);
}

.process-item .step-num {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-300);
  margin-bottom: 16px;
  display: block;
}

.process-item h3 {
  font-size: 1.1rem;
  margin-bottom: 12px;
}

.process-item p {
  color: var(--gray-200);
  font-size: 0.85rem;
  line-height: 1.6;
}

/* ---- Testimonials ---- */
.testimonial {
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  position: relative;
}

.testimonial::before {
  content: '"';
  font-family: var(--font-display);
  font-size: 6rem;
  color: rgba(255, 77, 0, 0.1);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 1rem;
  color: var(--gray-100);
  line-height: 1.7;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 2px;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--black);
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testimonial-role {
  font-size: 0.8rem;
  color: var(--gray-300);
}

/* ---- CTA ---- */
.cta-section {
  padding: 160px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255, 77, 0, 0.08), transparent 60%);
  pointer-events: none;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.cta-content h2 {
  margin-bottom: 20px;
}

.cta-content p {
  color: var(--gray-200);
  font-size: 1.1rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ---- Footer ---- */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand p {
  color: var(--gray-200);
  font-size: 0.9rem;
  margin-top: 16px;
  max-width: 320px;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gray-300);
  margin-bottom: 20px;
}

.footer-col ul li {
  margin-bottom: 12px;
}

.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--gray-200);
  transition: var(--transition-fast);
}

.footer-col ul li a:hover {
  color: var(--white);
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: var(--gray-300);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 0.85rem;
  color: var(--gray-300);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* ---- Page Header ---- */
.page-header {
  padding: 180px 0 80px;
  position: relative;
}

.page-header h1 {
  margin-bottom: 16px;
}

.page-header p {
  color: var(--gray-200);
  font-size: 1.1rem;
  max-width: 600px;
}

/* ---- Content Pages ---- */
.content-page {
  padding: 0 0 100px;
}

.content-section {
  max-width: 800px;
  margin: 0 auto;
}

.content-section h2 {
  font-size: 2rem;
  margin-top: 48px;
  margin-bottom: 16px;
  text-transform: none;
}

.content-section h3 {
  font-family: var(--font-body);
  font-size: 1.15rem;
  margin-top: 32px;
  margin-bottom: 12px;
  font-weight: 600;
}

.content-section p {
  color: var(--gray-200);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.content-section ul, .content-section ol {
  color: var(--gray-200);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 16px;
  padding-left: 24px;
}

.content-section ul li, .content-section ol li {
  margin-bottom: 8px;
}

.content-section ul { list-style: disc; }
.content-section ol { list-style: decimal; }
.content-section strong { color: var(--white); }

.content-section .last-updated {
  display: inline-block;
  padding: 8px 16px;
  border: 1px solid rgba(255, 77, 0, 0.2);
  background: rgba(255, 77, 0, 0.05);
  font-size: 0.85rem;
  color: var(--accent);
  margin-bottom: 32px;
}

/* ---- Reveal Animation ---- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.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; }

/* ---- Form Styles ---- */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-300);
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gray-400);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
}

.form-input:focus {
  border-color: var(--accent);
}

.form-input::placeholder {
  color: var(--gray-400);
}

.form-select {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gray-400);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: var(--transition);
  appearance: none;
  cursor: pointer;
}

.form-select:focus {
  border-color: var(--accent);
}

.form-select option {
  background: var(--black);
}

.form-textarea {
  width: 100%;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--gray-400);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  resize: vertical;
  transition: var(--transition);
}

.form-textarea:focus {
  border-color: var(--accent);
}

/* ---- Cursor Follower ---- */
.cursor-follower {
  position: fixed;
  width: 30px;
  height: 30px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transition: width 0.3s, height 0.3s, background 0.3s, border-color 0.3s;
  mix-blend-mode: difference;
}

.cursor-follower.cursor-hover {
  width: 60px;
  height: 60px;
  background: rgba(255, 77, 0, 0.1);
  border-color: var(--white);
}

@media (max-width: 768px) {
  .cursor-follower { display: none; }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .work-grid { grid-template-columns: 1fr 1fr; }
  .work-grid .work-card:first-child { grid-row: span 1; }
}

@media (max-width: 768px) {
  .nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(11, 11, 11, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
  }

  .nav.open { display: flex; }
  .nav a { font-size: 1.25rem; }
  .menu-toggle { display: flex; }

  .grid-asymmetric { grid-template-columns: 1fr; }
  .grid-asymmetric-2 { grid-template-columns: 1fr; gap: 24px; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .work-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .section { padding: 80px 0; }
  .hero { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 20px; }
}
