/* ==========================================================================
   REAL PREMISE - DESIGN SYSTEM & STYLESHEET
   ========================================================================== */

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

:root {
  /* ============================
     REAL PREMISE - BRAND PALETTE
     Rosa Blush + Dourado + Preto
     ============================ */

  /* Backgrounds */
  --bg-primary: #0f0d0e;
  --bg-secondary: #1a1318;
  --bg-tertiary: #241b20;
  --bg-card: rgba(36, 27, 32, 0.6);
  --bg-card-hover: rgba(50, 35, 42, 0.75);

  /* Brand Colors — extraídos da logo */
  --accent-rose: #d4789a;        /* Rosa médio das pétalas */
  --accent-blush: #e8b0c4;       /* Rosa claro / blush */
  --accent-gold: #c9a84c;        /* Dourado da cigarra */
  --accent-gold-light: #f0c870;  /* Dourado claro / champagne */
  --accent-dark-rose: #9e4d6b;   /* Rosa escuro / profundidade */
  --accent-cream: #fdf6f0;       /* Branco creme */

  /* Gradientes da marca */
  --gradient-primary: linear-gradient(135deg, #e8b0c4 0%, #d4789a 50%, #c9a84c 100%);
  --gradient-glow: linear-gradient(135deg, rgba(212,120,154,0.15) 0%, rgba(201,168,76,0.15) 100%);
  --gradient-card: linear-gradient(180deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.01) 100%);
  --gradient-border: linear-gradient(135deg, rgba(212,120,154,0.5), rgba(201,168,76,0.5));
  --gradient-hero: linear-gradient(135deg, #1a1318 0%, #2d1c26 50%, #1a1318 100%);

  /* Texto */
  --text-main: #f5eff2;
  --text-muted: #b89aa8;
  --text-dim: #7a6070;
  --text-heading: #ffffff;

  /* Bordas */
  --border-color: rgba(255, 255, 255, 0.07);
  --border-highlight: rgba(212, 120, 154, 0.35);
  --border-gold: rgba(201, 168, 76, 0.35);

  /* Fonts */
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max-width: 1240px;
  --nav-height: 80px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Sombras */
  --shadow-glow-rose: 0 0 40px rgba(212, 120, 154, 0.25);
  --shadow-glow-gold: 0 0 40px rgba(201, 168, 76, 0.25);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.45);

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

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

body {
  background-color: var(--bg-primary);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  caret-color: transparent;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--text-heading);
  line-height: 1.15;
  font-weight: 700;
  caret-color: transparent;
}

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

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

/* Helper Utilities */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  background: rgba(212, 120, 154, 0.08);
  border: 1px solid rgba(212, 120, 154, 0.25);
  color: var(--accent-rose);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.section {
  padding: 6rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 4rem;
}

.section-header h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1.125rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.9rem 2rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: var(--gradient-primary);
  color: #fff;
  box-shadow: 0 4px 20px rgba(212, 120, 154, 0.35);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, #c9a84c 0%, #d4789a 100%);
  opacity: 0;
  z-index: -1;
  transition: var(--transition-fast);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 120, 154, 0.55);
  color: #fff;
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-main);
  border: 1px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(212, 120, 154, 0.08);
  border-color: var(--accent-rose);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25d366;
  color: #040711;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
  transform: translateY(-2px);
  color: #000;
}

/* Glassmorphism Card */
.glass-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 2.5rem;
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.glass-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-highlight);
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

/* Header & Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--nav-height);
  z-index: 1000;
  transition: var(--transition-normal);
}

.navbar.scrolled {
  background: rgba(15, 13, 14, 0.88);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.logo-img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212, 120, 154, 0.5);
  box-shadow: 0 0 16px rgba(212, 120, 154, 0.3);
  background: rgba(36, 27, 32, 0.8);
  /* Treat white as transparent on dark bg */
  mix-blend-mode: normal;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.logo-img:hover {
  border-color: var(--accent-gold);
  box-shadow: 0 0 24px rgba(201, 168, 76, 0.45);
  transform: scale(1.05);
}

.footer-logo-img {
  height: 80px;
  width: 80px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid rgba(212, 120, 154, 0.45);
  box-shadow: 0 0 20px rgba(212, 120, 154, 0.25);
  background: rgba(36, 27, 32, 0.8);
  margin-bottom: 1rem;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.social-icon:hover {
  border-color: var(--accent-rose);
  color: var(--accent-rose);
  background: rgba(212, 120, 154, 0.1);
  transform: translateY(-2px);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient-primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 900;
  box-shadow: 0 0 20px rgba(212, 120, 154, 0.4);
}

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

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.nav-link:hover {
  color: var(--accent-rose);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-main);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  padding-top: calc(var(--nav-height) + 4rem);
  padding-bottom: 6rem;
  position: relative;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,120,154,0.14) 0%, rgba(201,168,76,0.08) 50%, rgba(0,0,0,0) 70%);
  filter: blur(60px);
  z-index: -1;
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  margin: 1.25rem 0 1.5rem;
  letter-spacing: -1px;
}

.hero-content p {
  font-size: 1.25rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
}

.stat-item h3 {
  font-size: 2rem;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 0.875rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* Hero Visual Showcase — 3D Command Hub Platform */
.hero-visual {
  position: relative;
  perspective: 1400px;
  padding-bottom: 2rem;
}

.tech-stage-3d {
  position: relative;
  transform-style: preserve-3d;
  transition: transform 0.15s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Ambient Cyber Grid Backing */
.cyber-grid-bg {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background-image: 
    linear-gradient(rgba(212, 120, 154, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 120, 154, 0.07) 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: center center;
  border-radius: var(--radius-lg);
  pointer-events: none;
  z-index: -2;
  transform: rotateX(15deg) translateZ(-40px);
  opacity: 0.6;
}

/* 3D Main Platform Container */
.hub-3d-platform {
  background: linear-gradient(145deg, rgba(36,27,32,0.96), rgba(18,13,16,0.99));
  border: 1px solid rgba(212, 120, 154, 0.45);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.18),
    0 25px 60px rgba(0, 0, 0, 0.85), 
    0 0 40px rgba(212, 120, 154, 0.25);
  backdrop-filter: blur(24px);
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  transform: rotateX(6deg) rotateY(-8deg);
  transition: transform 0.15s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
  will-change: transform;
}

.hub-3d-platform:hover {
  box-shadow: 
    inset 0 1px 2px rgba(255, 255, 255, 0.3),
    0 35px 75px rgba(0, 0, 0, 0.9), 
    0 0 50px rgba(201, 168, 76, 0.4);
  border-color: rgba(201, 168, 76, 0.65);
}

/* Glass Glare Overlay */
.specular-glare {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
  pointer-events: none;
  z-index: 20;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

/* Hub Header */
.hub-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid var(--border-color);
  position: relative;
  z-index: 2;
}

.hub-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hub-logo-img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid var(--accent-rose);
  box-shadow: 0 0 15px rgba(212, 120, 154, 0.4);
}

.hub-title {
  font-size: 0.9rem;
  color: var(--text-heading);
  display: block;
}

.hub-accent-tag {
  color: var(--accent-gold);
  font-size: 0.65rem;
  font-weight: 900;
  background: rgba(201, 168, 76, 0.15);
  padding: 0.15rem 0.45rem;
  border-radius: 4px;
  margin-left: 4px;
}

.hub-subtitle {
  font-size: 0.72rem;
  color: var(--text-muted);
  display: block;
}

.hub-status-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.68rem;
  font-weight: 800;
  color: #00e676;
  background: rgba(0, 230, 118, 0.1);
  border: 1px solid rgba(0, 230, 118, 0.3);
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
}

.status-pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00e676;
  box-shadow: 0 0 8px #00e676;
  animation: liveBlink 1.5s infinite;
}

/* Hub Interactive Modules Grid */
.hub-modules-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 2;
  transform-style: preserve-3d;
}

.hub-card-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(15, 13, 14, 0.85);
  border: 1px solid var(--border-color);
  padding: 0.85rem 1rem;
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  transform: translateZ(20px);
}

.hub-card-item:hover {
  background: rgba(36, 27, 32, 0.95);
  transform: translateZ(30px) translateY(-2px);
}

.hub-card-item.mod-lp {
  border-color: rgba(212, 120, 154, 0.35);
}

.hub-card-item.mod-site {
  border-color: rgba(201, 168, 76, 0.35);
}

.hub-card-item.mod-n8n {
  border-color: rgba(37, 211, 102, 0.35);
}

.mod-icon-box {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.lp-icon {
  background: rgba(212, 120, 154, 0.15);
  color: var(--accent-rose);
  border: 1px solid rgba(212, 120, 154, 0.3);
}

.site-icon {
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.n8n-icon {
  background: rgba(37, 211, 102, 0.15);
  color: #25d366;
  border: 1px solid rgba(37, 211, 102, 0.3);
}

.mod-content {
  flex: 1;
  margin: 0 0.85rem;
}

.mod-content h5 {
  font-size: 0.85rem;
  color: var(--text-heading);
  margin-bottom: 2px;
}

.mod-metric {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.mod-status-tag {
  font-size: 0.65rem;
  font-weight: 800;
  color: var(--accent-rose);
  background: rgba(212, 120, 154, 0.12);
  padding: 0.18rem 0.5rem;
  border-radius: 4px;
}

.mod-status-tag.gold {
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.12);
}

.mod-status-tag.green {
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
}

/* Hub Animated Pipeline Bar */
.hub-pipeline-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.65rem 0.85rem;
  position: relative;
  z-index: 2;
}

.pipe-node {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
}

.pipe-node.n8n { color: var(--accent-gold); }
.pipe-node.wa { color: #25d366; }

.pipe-line {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  margin: 0 8px;
  overflow: hidden;
}

.pipe-glow-beam {
  position: absolute;
  top: -2px;
  left: -20px;
  width: 25px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), #ffffff);
  border-radius: 3px;
  animation: n8nBeam 1.8s linear infinite;
}

.pipe-glow-beam.delay {
  animation-delay: 0.9s;
}

/* PROPERLY POSITIONED 3D LEAD TOAST NOTIFICATION (STAYS INSIDE STAGE AND OVER ELEMENTS) */
.lead-toast-3d {
  position: relative;
  margin-top: 1rem;
  background: rgba(24, 17, 22, 0.97);
  border: 1.5px solid var(--accent-gold);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 168, 76, 0.35);
  backdrop-filter: blur(16px);
  z-index: 99;
  animation: floatFloat 5s ease-in-out infinite;
  width: 100%;
}

.toast-badge-icon {
  width: 40px;
  height: 40px;
  background: rgba(201, 168, 76, 0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.25rem;
  border: 1px solid rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}

.toast-text {
  flex: 1;
}

.toast-heading {
  display: block;
  font-size: 0.88rem;
  color: #ffffff;
  font-weight: 700;
}

.toast-sub {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 2px;
}

/* 3D Layers Stage */
.proto-layers-stage {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transform-style: preserve-3d;
}

.proto-card-layer {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 1rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.proto-card-layer.layer-web {
  border-color: rgba(212, 120, 154, 0.35);
  transform: translateZ(20px);
}

.proto-card-layer.layer-n8n {
  background: linear-gradient(135deg, rgba(36,27,32,0.95), rgba(26,19,24,0.98));
  border-color: rgba(201, 168, 76, 0.45);
  transform: translateZ(35px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.5);
}

.proto-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.75rem;
}

.proto-card-header h4 {
  font-size: 0.9rem;
  color: var(--accent-blush);
}

.proto-badge-small {
  font-size: 0.65rem;
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
}

.proto-headline-bar {
  height: 14px;
  width: 75%;
  background: var(--gradient-primary);
  border-radius: 4px;
  margin-bottom: 6px;
}

.proto-subline-bar {
  height: 8px;
  width: 50%;
  background: var(--text-dim);
  border-radius: 4px;
  margin-bottom: 12px;
}

.proto-buttons-row {
  display: flex;
  gap: 8px;
}

.proto-btn-mock {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  gap: 5px;
}

.proto-btn-mock.primary {
  background: #25d366;
  color: #000;
}

.proto-btn-mock.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: var(--text-main);
  border: 1px solid var(--border-color);
}

/* n8n Node Workflow Interactive Graph */
.n8n-nodes-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent-gold-light);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.n8n-counter-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: #25d366;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.3);
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
}

.n8n-nodes-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 0.25rem 0;
}

.node-tag {
  font-size: 0.58rem;
  font-weight: 700;
  opacity: 0.8;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
}

.node-tag.gold {
  color: var(--accent-gold);
  background: rgba(201, 168, 76, 0.15);
}

.node-tag.green {
  color: #25d366;
  background: rgba(37, 211, 102, 0.15);
}

.n8n-node-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 0.5rem 0.65rem;
  border-radius: 10px;
  background: rgba(15, 13, 14, 0.95);
  border: 1px solid var(--border-color);
  font-size: 0.68rem;
  font-weight: 700;
  z-index: 2;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.n8n-node-box i {
  font-size: 1.1rem;
}

.n8n-node-box.webhook {
  border-color: rgba(212, 120, 154, 0.5);
  color: var(--accent-rose);
}

.n8n-node-box.n8n-core {
  border-color: rgba(201, 168, 76, 0.6);
  color: var(--accent-gold);
  box-shadow: 0 0 15px rgba(201, 168, 76, 0.25);
  animation: pulseNode 2.5s infinite;
}

.n8n-node-box.whatsapp {
  border-color: rgba(37, 211, 102, 0.6);
  color: #25d366;
}

@keyframes pulseNode {
  0%, 100% { transform: scale(1); box-shadow: 0 0 12px rgba(201, 168, 76, 0.2); }
  50% { transform: scale(1.06); box-shadow: 0 0 25px rgba(201, 168, 76, 0.45); }
}

/* n8n Flow Beam Particles */
.n8n-line-connector {
  flex: 1;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  position: relative;
  margin: 0 6px;
  overflow: hidden;
}

.n8n-beam-particle {
  position: absolute;
  top: -2px;
  left: -20px;
  width: 20px;
  height: 6px;
  background: linear-gradient(90deg, transparent, var(--accent-gold), #ffffff);
  border-radius: 3px;
  animation: n8nBeam 1.8s linear infinite;
}

@keyframes n8nBeam {
  0% { left: -20px; }
  100% { left: 100%; }
}

/* 3D Holographic Floating Card */
.holo-lead-card-3d {
  position: absolute;
  bottom: -22px;
  right: -22px;
  background: rgba(26, 19, 24, 0.96);
  border: 1.5px solid var(--accent-gold);
  padding: 0.85rem 1.1rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7), 0 0 25px rgba(201, 168, 76, 0.3);
  backdrop-filter: blur(16px);
  transform: translateZ(50px);
  animation: floatFloat 5s ease-in-out infinite 0.5s;
  z-index: 10;
}

.holo-badge-icon {
  width: 38px;
  height: 38px;
  background: rgba(201, 168, 76, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 1.1rem;
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.holo-info .holo-title {
  display: block;
  font-size: 0.85rem;
  color: #fff;
}

.holo-info .holo-sub {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* 3D Ambient Orbs */
.orb-3d {
  position: absolute;
  border-radius: 50%;
  filter: blur(50px);
  pointer-events: none;
  z-index: -1;
}

.orb-rose {
  top: -40px;
  right: -40px;
  width: 180px;
  height: 180px;
  background: rgba(212, 120, 154, 0.2);
  animation: floatFloat 7s ease-in-out infinite;
}

.orb-gold {
  bottom: -40px;
  left: -40px;
  width: 160px;
  height: 160px;
  background: rgba(201, 168, 76, 0.15);
  animation: floatFloat 8s ease-in-out infinite 1s;
}

/* Features Grid */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--gradient-glow);
  border: 1px solid rgba(212, 120, 154, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--accent-rose);
  margin-bottom: 1.5rem;
}

.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text-muted);
  font-size: 0.975rem;
}

/* Solutions Grid */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.solution-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.solution-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.solution-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.15);
  color: var(--accent-gold-light);
  border: 1px solid rgba(201, 168, 76, 0.35);
}

.solution-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.solution-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.solution-features {
  list-style: none;
  margin-bottom: 2rem;
}

.solution-features li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text-main);
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

.solution-features li i {
  color: var(--accent-rose);
}

/* Budget Calculator Simulator */
.calculator-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border-highlight);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-glow-rose);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
}

.calc-options h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: var(--accent-blush);
}

.calc-type-selector {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.type-option {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1.25rem 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  text-align: center;
  transition: var(--transition-fast);
}

.type-option:hover, .type-option.active {
  border-color: var(--accent-rose);
  background: rgba(212, 120, 154, 0.08);
}

.type-option i {
  font-size: 1.75rem;
  color: var(--accent-rose);
  display: block;
  margin-bottom: 0.5rem;
}

.type-option span {
  font-size: 0.9rem;
  font-weight: 700;
}

.calc-extras-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.checkbox-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 1rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  user-select: none;
  transition: var(--transition-fast);
}

.checkbox-card:hover {
  border-color: var(--accent-rose);
}

.checkbox-card input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--accent-rose);
  cursor: pointer;
}

.calc-summary {
  background: rgba(15, 13, 14, 0.85);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.summary-title {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.summary-items {
  list-style: none;
  margin-bottom: 2rem;
}

.summary-items li {
  display: flex;
  justify-content: space-between;
  font-size: 0.95rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed var(--border-color);
}

.price-display {
  text-align: center;
  margin-bottom: 2rem;
}

.price-label {
  font-size: 0.875rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price-amount {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0.25rem 0;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Portfolio Tabs & Filter */
.portfolio-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.tab-btn {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  cursor: pointer;
  font-weight: 600;
  transition: var(--transition-fast);
}

.tab-btn.active, .tab-btn:hover {
  background: var(--gradient-primary);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 0 20px rgba(212, 120, 154, 0.3);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
  gap: 2.5rem;
}

.portfolio-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  transition: var(--transition-normal);
}

.portfolio-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-rose);
  box-shadow: var(--shadow-glow-rose);
}

.portfolio-img-box {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.portfolio-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.portfolio-item:hover .portfolio-img-box img {
  transform: scale(1.05);
}

.portfolio-info {
  padding: 1.5rem;
}

.portfolio-info h4 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.portfolio-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Pricing Grid */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.pricing-card.featured {
  border-color: var(--accent-rose);
  box-shadow: var(--shadow-glow-rose);
  background: linear-gradient(180deg, rgba(212,120,154,0.08) 0%, rgba(26,19,24,0.85) 100%);
}

.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: #fff;
  font-weight: 800;
  font-size: 0.75rem;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-price {
  margin: 1.5rem 0;
}

.pricing-price .amount {
  font-size: 2.75rem;
  font-weight: 800;
  color: #fff;
}

.pricing-price .period {
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Workflow Steps */
.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  position: relative;
}

.step-card {
  text-align: center;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--gradient-primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  box-shadow: 0 0 25px rgba(212, 120, 154, 0.4);
}

.step-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.step-card p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* FAQ Accordion */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition-fast);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
}

.faq-question i {
  color: var(--accent-rose);
  transition: transform 0.3s ease;
}

.faq-answer {
  padding: 0 1.5rem 1.5rem;
  color: var(--text-muted);
  font-size: 0.975rem;
  display: none;
  border-top: 1px solid rgba(255,255,255,0.04);
  padding-top: 1rem;
}

.faq-item.active {
  border-color: var(--border-highlight);
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-item.active .faq-answer {
  display: block;
}

/* Call to Action Banner */
.cta-banner {
  background: linear-gradient(135deg, rgba(212,120,154,0.12) 0%, rgba(201,168,76,0.10) 100%);
  border: 1px solid var(--accent-rose);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  text-align: center;
  box-shadow: var(--shadow-glow-rose);
  position: relative;
  overflow: hidden;
}

.cta-banner h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1.25rem;
}

.cta-banner p {
  color: var(--text-muted);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

/* Footer */
.footer {
  background: #02040a;
  padding: 4rem 0 2rem;
  border-top: 1px solid var(--border-color);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-col p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-top: 1rem;
}

.footer-col h4 {
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
  color: var(--accent-rose);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition-fast);
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-dim);
  font-size: 0.875rem;
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25d366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 25px rgba(37, 211, 102, 0.5);
  z-index: 999;
  transition: var(--transition-normal);
  animation: pulse-green 2s infinite, floatFloat 4s ease-in-out infinite;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  color: #fff;
}

/* ==========================================================================
   ANIMATIONS & MICRO-INTERACTIONS
   ========================================================================== */
@keyframes pulse-green {
  0% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
  }
  70% {
    box-shadow: 0 0 0 18px rgba(37, 211, 102, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
  }
}

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

@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 20px rgba(212, 120, 154, 0.3);
  }
  50% {
    box-shadow: 0 0 35px rgba(201, 168, 76, 0.5);
  }
}

@keyframes subtleShimmer {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Floating animation for hero mockup elements */
.hero-card-preview {
  animation: floatFloat 6s ease-in-out infinite;
}

.hero-badge-float {
  animation: floatFloat 5s ease-in-out infinite 1s;
}

.badge-pill {
  animation: glowPulse 3s infinite;
}

/* Scroll Reveal Classes (JS Triggered) */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform;
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Delay helpers for smooth staggered entrance */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* Interactive button touch feedback for Android */
.btn, .social-icon, .faq-question, .mobile-menu-btn {
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.btn:active, .social-icon:active {
  transform: scale(0.97);
}

/* ==========================================================================
   ANDROID-FIRST & MOBILE-FIRST RESPONSIVE ARCHITECTURE
   ========================================================================== */

/* --------------------------------------------------------------------------
   1. BASE RULES (ANDROID & MOBILE-FIRST DEFAULT)
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.section {
  padding: 3.5rem 0;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 2.5rem;
}

.section-header h2 {
  font-size: clamp(1.65rem, 6.5vw, 2.75rem);
  margin-top: 0.85rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-header p {
  color: var(--text-muted);
  font-size: 1rem;
}

/* Touch Targets for Android Guidelines */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.85rem 1.5rem;
  min-height: 48px; /* Android touch target rule */
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: var(--radius-full);
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  text-align: center;
}

.hero-content h1 {
  font-size: clamp(1.85rem, 7vw, 3.5rem);
  margin: 1rem 0 1.25rem;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.85rem;
  margin-bottom: 2.5rem;
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
}

.stat-item h3 {
  font-size: 1.4rem;
  color: var(--accent-gold);
}

.stat-item p {
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* Navbar Base (Mobile-First Drawer) */
.nav-links {
  display: none;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  color: var(--text-main);
  font-size: 1.4rem;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-links.active {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: var(--nav-height);
  left: 0;
  width: 100%;
  background: var(--bg-secondary);
  padding: 1.25rem 1.25rem 1.75rem;
  border-bottom: 1px solid var(--border-highlight);
  gap: 0.25rem;
  z-index: 999;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  animation: slideDown 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

.nav-links.active li a {
  display: flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1rem;
  font-size: 1.05rem;
  border-radius: 8px;
  color: var(--text-main);
}

.nav-links.active li a:active {
  background: rgba(212, 120, 154, 0.15);
}

/* Grids Base (Mobile 1-Column) */
.features-grid, .solutions-grid, .workflow-steps, .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.hero-visual {
  max-width: 500px;
  margin: 0 auto;
  width: 100%;
}

/* --------------------------------------------------------------------------
   2. TABLET & MEDIUM SCREENS (MIN-WIDTH: 640px)
   -------------------------------------------------------------------------- */
@media (min-width: 640px) {
  .hero-ctas {
    flex-direction: row;
    justify-content: center;
  }

  .hero-ctas .btn {
    width: auto;
  }

  .features-grid, .workflow-steps, .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section {
    padding: 4.5rem 0;
  }
}

/* --------------------------------------------------------------------------
   3. DESKTOP & LARGE SCREENS (MIN-WIDTH: 993px) — DESKTOP LAST
   -------------------------------------------------------------------------- */
@media (min-width: 993px) {
  .container {
    padding: 0 1.5rem;
  }

  .section {
    padding: 6rem 0;
  }

  .section-header {
    margin-bottom: 4rem;
  }

  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    text-align: left;
    gap: 4rem;
  }

  .hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
  }

  .hero-content p {
    margin-left: 0;
    margin-right: 0;
    font-size: 1.25rem;
  }

  .hero-ctas {
    justify-content: flex-start;
  }

  .hero-stats {
    display: flex;
    justify-content: flex-start;
    gap: 2.5rem;
    text-align: left;
  }

  .stat-item h3 {
    font-size: 2rem;
  }

  .stat-item p {
    font-size: 0.875rem;
  }

  /* Desktop Navbar */
  .mobile-menu-btn {
    display: none;
  }

  .nav-links {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    position: static;
    background: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
  }

  .nav-links li a {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.5rem 0;
    position: relative;
    transition: var(--transition-fast);
  }

  .nav-links li a:hover {
    color: var(--accent-rose);
  }

  .nav-links li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-fast);
  }

  .nav-links li a:hover::after {
    width: 100%;
  }

  /* Desktop Multi-column Grids */
  .solutions-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .workflow-steps {
    grid-template-columns: repeat(4, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  }

  .hero-visual {
    max-width: 100%;
  }
}
