@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

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

:root {
  --navy: #0f172a;
  --slate: #334155;
  --blue: #0369a1;
  --sky: #0ea5e9;
  --bg: #f8fafc;
  --white: #ffffff;
  --text: #020617;
  --muted: #64748b;
  --border: #e2e8f0;
  --card: #ffffff;
  --accent: #3b82f6;
  --gradient: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  --blue-gradient: linear-gradient(135deg, #0369a1, #0ea5e9);
}

html, body {
  width: 100% !important;
  max-width: 100vw !important;
  overflow-x: hidden !important;
  position: relative;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

section, div, header, footer, nav {
  max-width: 100% !important;
}

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

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

/* Updated container with more horizontal padding as requested */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 5%; /* Increased horizontal padding */
}

/* NAV */
.nav {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  height: 72px;
  display: flex;
  align-items: center;
}

.nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  cursor: pointer;
  user-select: none;
}

.brand-logo {
  height: 36px;
  width: auto;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.2);
  transition: transform 0.3s ease;
}

.brand-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  line-height: 1;
}

.brand-highlight {
  color: #38bdf8;
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted);
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--navy);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn {
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  padding: 10px 20px;
  text-decoration: none;
  border: none;
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-primary {
  background: linear-gradient(135deg, #38bdf8, #2563eb);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(56, 189, 248, 0.3);
}

.btn-xl {
  padding: 18px 40px;
  font-size: 1.1rem;
  border-radius: 14px;
}

/* MODERN HERO SECTION */
.hero-modern {
  position: relative;
  background-color: #080d1a;
  overflow: hidden;
  padding: 8rem 0;
  color: white;
}

.blueprint-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: linear-gradient(rgba(56, 189, 248, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56, 189, 248, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.6;
  z-index: 0;
}

.ambient-glow {
  position: absolute;
  top: -10%;
  right: 0;
  width: 100%;
  height: 60%;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.1) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-grid-modern {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.btn-gradient {
  background: linear-gradient(135deg, #0ea5e9, #3b82f6);
  box-shadow: 0 10px 25px -5px rgba(14, 165, 233, 0.4);
  border: none;
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-glass {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
}

.stats-container {
  display: flex;
  gap: 1.5rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  flex: 1;
  backdrop-filter: blur(10px);
}

.stat-card h3 {
  font-size: 1.75rem;
  font-weight: 800;
  color: white;
  margin-bottom: 0.25rem;
}

.stat-card p {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #94a3b8;
  font-weight: 600;
}

.abstract-visual {
  position: relative;
  width: 100%;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.radar-circle {
  position: absolute;
  width: 380px;
  height: 380px;
  border: 1px dashed rgba(56, 189, 248, 0.3);
  border-radius: 50%;
  animation: spinSlow 25s linear infinite;
}

.radar-circle-inner {
  position: absolute;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(56, 189, 248, 0.15);
  border-radius: 50%;
}

.core-globe {
  width: 90px;
  height: 90px;
  background: radial-gradient(circle, #38bdf8, #2563eb);
  border-radius: 50%;
  box-shadow: 0 0 50px rgba(56, 189, 248, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.4);
  z-index: 5;
  animation: pulseCore 3s ease-in-out infinite;
}

.orbit-node {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #34d399;
  border-radius: 50%;
  box-shadow: 0 0 15px #34d399;
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
}

.orbit-node-2 {
  position: absolute;
  width: 10px;
  height: 10px;
  background: #f472b6;
  border-radius: 50%;
  box-shadow: 0 0 15px #f472b6;
  top: 50%;
  left: -5px;
  transform: translateY(-50%);
}

.float-widget {
  position: absolute;
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6);
  z-index: 10;
}

.widget-1 {
  top: 8%;
  left: -5%;
  width: 220px;
  animation: float1 6s ease-in-out infinite;
}

.widget-2 {
  bottom: 12%;
  right: -2%;
  width: 250px;
  animation: float2 7s ease-in-out infinite;
}

.widget-terminal {
  top: -2%;
  right: -5%;
  width: 260px;
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  animation: float2 8s ease-in-out infinite reverse;
  z-index: 8;
}

.term-header {
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 12px;
  font-size: 10px;
  color: #94a3b8;
  display: flex;
  gap: 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.term-body {
  padding: 12px;
  font-family: monospace;
  font-size: 11px;
  color: #34d399;
  line-height: 1.6;
}

/* SECTION COMMON */
.section {
  padding: 96px 0;
}

.section-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 12px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--navy);
  line-height: 1.15;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-subtitle {
  margin: 0 auto;
}

.section-alt {
  background: #fff;
}

.section-dark {
  background: var(--navy);
  color: #fff;
}

.section-dark .section-title {
  color: #fff;
}

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, 0.6);
}

.section-dark .section-label {
  color: var(--sky);
}

/* FEATURES GRID */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.35s;
  position: relative;
  overflow: hidden;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06);
  border-color: var(--accent);
}

.feature-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.feature-card .icon.blue {
  background: rgba(3, 105, 161, 0.08);
  color: var(--blue);
}

.feature-card .icon.sky {
  background: rgba(14, 165, 233, 0.08);
  color: var(--sky);
}

.feature-card .icon.indigo {
  background: rgba(99, 102, 241, 0.08);
  color: #6366f1;
}

.feature-card .icon.emerald {
  background: rgba(16, 185, 129, 0.08);
  color: #10b981;
}

.feature-card .icon.amber {
  background: rgba(245, 158, 11, 0.08);
  color: #f59e0b;
}

.feature-card .icon.rose {
  background: rgba(244, 63, 94, 0.08);
  color: #f43f5e;
}

.feature-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
}

/* WORKFLOW */
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative;
}

.workflow-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: var(--border);
}

.step {
  text-align: center;
  position: relative;
  z-index: 2;
}

.step-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--blue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: all 0.3s;
}

.step:hover .step-num {
  background: var(--blue-gradient);
  color: #fff;
  border-color: transparent;
  transform: scale(1.1);
}

.step h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.step p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.6;
}

/* METRICS */
.metrics-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
}

.metric-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.metric-card h3 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.metric-card p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* WHY CHOOSE */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.benefit {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.benefit .check {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(3, 105, 161, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  font-size: 1.1rem;
}

.benefit h4 {
  font-weight: 700;
  margin-bottom: 4px;
}

.benefit p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* TESTIMONIALS */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: all 0.3s;
}

.testimonial:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
}

.testimonial .stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial blockquote {
  font-size: 0.95rem;
  color: var(--slate);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial .author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
}

.testimonial .author-info h5 {
  font-weight: 700;
  font-size: 0.875rem;
}

.testimonial .author-info p {
  font-size: 0.75rem;
  color: var(--muted);
}

/* CTA */
.cta-section {
  text-align: center;
  padding: 96px 24px;
  background: var(--gradient);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(56, 189, 248, 0.12), transparent);
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
}

.cta-section h2 {
  font-size: 2.75rem;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.cta-section p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
}

.cta-buttons {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

/* LOGOS */
.logos {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.logos p {
  text-align: center;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 28px;
}

.logos-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  opacity: 0.45;
  filter: grayscale(1);
  transition: all 0.5s;
}

.logos-row:hover {
  opacity: 0.7;
  filter: grayscale(0);
}

.logos-row span {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--navy);
  font-family: 'Plus Jakarta Sans', sans-serif;
}

/* BUILDING TYPES */
.buildings-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 16px;
  scrollbar-width: none;
}

.buildings-scroll::-webkit-scrollbar {
  display: none;
}

.building-chip {
  flex-shrink: 0;
  padding: 10px 20px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--slate);
  transition: all 0.25s;
  cursor: pointer;
  white-space: nowrap;
}

.building-chip:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}

/* FOOTER */
.footer {
  background: #020617;
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.footer-col a {
  display: block;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 10px;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

/* HERO CONTENT STYLES */
.hero-h1 {
  font-size: clamp(1.5rem, 8vw, 3.5rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
  word-wrap: break-word;
  overflow-wrap: break-word;
  max-width: 100%;
  display: block;
}

.hero-h1-highlight {
  background: linear-gradient(135deg, #38bdf8, #818cf8);
  -webkit-background-clip: text;
  color: transparent;
  display: inline-block;
  max-width: 100%;
}

.hero-p {
  font-size: 1.15rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 600px;
}

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

/* WIDGET & TERMINAL INTERNAL STYLES */
.term-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.term-dot-red { background: #f43f5e; }
.term-dot-yellow { background: #fbbf24; }
.term-dot-green { background: #10b981; }

.term-title { margin-left: 8px; }
.term-faded { color: #94a3b8; }
.term-highlight { color: #38bdf8; }

.widget-inner-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.widget-icon-box {
  width: 32px;
  height: 32px;
  background: rgba(56, 189, 248, 0.2);
  color: #38bdf8;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.widget-title { font-size: 12px; font-weight: 600; color: white; }
.widget-subtitle { font-size: 10px; color: #10b981; }

.widget-progress-bar {
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  overflow: hidden;
}

.widget-progress-fill {
  height: 100%;
  width: 75%;
  background: #38bdf8;
}

.widget-avatar {
  width: 40px;
  height: 40px;
  background: #334155;
  border-radius: 50%;
  border: 2px solid #818cf8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
}

.widget-tracker-label {
  font-size: 11px;
  color: #94a3b8;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.widget-tracker-value {
  font-size: 18px;
  font-weight: 800;
  color: white;
  margin-bottom: 8px;
}

.widget-tracker-footer {
  display: flex;
  gap: 4px;
  align-items: center;
}

.widget-tracker-trend {
  color: #10b981;
  font-size: 12px;
  font-weight: bold;
}

.section-padding-sm {
  padding: 48px 0 !important;
}

/* UTILITIES */
.mb-36 { margin-bottom: 36px !important; }
.fs-1-1 { font-size: 1.1rem !important; }
.text-blue { color: var(--blue) !important; }
.grid-2-col { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.bg-white-navy { background: #fff !important; color: var(--navy) !important; font-weight: 700 !important; }

.mep-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  padding: 16px 24px;
  border: 1px solid var(--border);
  border-radius: 16px;
  font-weight: 600;
  color: var(--navy);
  transition: all 0.3s;
  cursor: pointer;
}

.mep-chip:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 25px -5px rgba(3, 105, 161, 0.1);
  transform: translateY(-2px);
}

.building-chip-modern {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--navy);
  transition: all 0.3s;
}

.overflow-hidden-max-w-100 {
  overflow: hidden !important;
  max-width: 100% !important;
}

.building-types-container {
  background: #f1f5f9;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid var(--border);
}

.building-types-title {
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 24px;
  color: var(--navy);
}

.cta-btn-white {
  background: #fff !important;
  color: var(--navy) !important;
  font-weight: 700 !important;
}

.cta-btn-glass {
  background: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
}

/* RESPONSIVE & TABLET FIXES */
@media (max-width: 1024px) {
  .hero-grid, .benefits-grid { grid-template-columns: 1fr; }
  .features-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .workflow-grid::before { display: none; }
  .metrics-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
  .hero-grid-modern {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
    padding: 0 1.5rem;
  }
  .hero-ctas {
    justify-content: center; /* Centering buttons for tablet views as requested */
  }
  .stats-container {
    flex-direction: column;
  }
  .abstract-visual {
    height: 400px;
    transform: scale(0.8);
    overflow: hidden;
  }
  .widget-terminal {
    display: none;
  }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .features-grid, .testimonials-grid, .metrics-grid { grid-template-columns: 1fr; }
  .workflow-grid { grid-template-columns: 1fr; }
  .hero-modern { padding: 6rem 0; }
  .section-title { font-size: 2rem; }
  .cta-section h2 { font-size: 2rem; }
  .logos-row { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .section { padding: 64px 0; }
  .nav-actions { gap: 8px; }
  .btn { padding: 8px 14px; font-size: 14px; }
}

@media (max-width: 480px) {
  .btn-ghost { display: none !important; }
  .nav-brand { gap: 4px; }
  .brand-text { font-size: 0.95rem; }
  .brand-logo { height: 26px; }
  .hero-modern h1 { font-size: 1.85rem !important; line-height: 1.2; }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
  }
  .hero-ctas .btn, .hero-ctas .btn-gradient, .hero-ctas .btn-glass {
    width: 100%;
  }
  .hide-on-mobile { display: none !important; }
}

/* ANIMATIONS */
@keyframes spinSlow { 100% { transform: rotate(360deg); } }
@keyframes pulseCore { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(1.05); opacity: 0.8; } }
@keyframes float1 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes float2 { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(15px); } }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  animation: fadeUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { animation: none; opacity: 1; }
}
