:root {
  --orange: #ff4b0b;
  --orange-dark: #d83a06;
  --black: #1d1d1b;
  --cream: #f5ebdc;
  --cream-2: #fff7ed;
  --paper: #f4ead8;
  --muted: #6f675f;
  --line: rgba(29, 29, 27, 0.16);
  --shadow: 0 32px 80px rgba(56, 28, 7, 0.18);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 12% 86%, rgba(255, 75, 11, 0.12), transparent 26%),
    radial-gradient(circle at 85% 18%, rgba(255, 75, 11, 0.08), transparent 24%),
    var(--paper);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.58;
  background:
    radial-gradient(rgba(29, 29, 27, 0.085) 1px, transparent 1px),
    radial-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(135deg, rgba(29, 29, 27, 0.035), transparent 34%, rgba(255, 255, 255, 0.18));
  background-size: 16px 16px, 23px 23px, 100% 100%;
  mix-blend-mode: multiply;
  z-index: 0;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  isolation: isolate;
  padding: 0 clamp(24px, 4.3vw, 78px) 30px;
}

.page-shell::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 100%;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(245, 235, 220, 0) 0, rgba(245, 235, 220, 0) 70%, rgba(255, 240, 220, 0.34) 100%),
    radial-gradient(circle at 86% 34%, rgba(255, 75, 11, 0.1), transparent 24%);
  z-index: -1;
}

.tool-rail {
  position: fixed;
  left: 25px;
  top: 192px;
  display: flex;
  flex-direction: column;
  gap: 19px;
  color: rgba(29, 29, 27, 0.22);
  font-family: Inter, sans-serif;
  font-size: 33px;
  line-height: 1;
  z-index: 2;
  user-select: none;
}

.tool-rail span {
  display: block;
  width: 30px;
  text-align: center;
  filter: blur(0.1px);
}

.site-header {
  position: relative;
  z-index: 20;
  max-width: 1440px;
  margin: 0 auto;
  height: 146px;
  display: grid;
  grid-template-columns: 238px 1fr auto;
  align-items: center;
  column-gap: 34px;
  border-bottom: 1px solid var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  width: 174px;
  transform: rotate(-2.2deg);
}

.brand img {
  display: block;
  width: 100%;
  height: auto;
}

.hamburger-menu {
  display: none;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(28px, 3.2vw, 54px);
}

.main-nav a {
  position: relative;
  text-decoration: none;
  color: var(--black);
  font-size: 18px;
  font-weight: 650;
  letter-spacing: -0.04em;
  padding: 12px 0;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: var(--orange);
  transition: width 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a.active::after {
  width: 100%;
}

.audit-btn,
.outline-btn,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 63px;
  padding: 0 27px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: -0.04em;
  white-space: nowrap;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
  font-size: 18px;
}

.audit-btn, .btn-orange {
  color: #fff;
  background: var(--orange);
  box-shadow: 0 12px 25px rgba(255, 75, 11, 0.22);
  border: none;
}

.audit-btn:hover, .btn-orange:hover {
  transform: translateY(-3px);
  background: var(--orange-dark);
  box-shadow: 0 18px 35px rgba(255, 75, 11, 0.28);
}

.audit-btn svg, .btn-orange svg {
  width: 24px;
  height: 24px;
}

.outline-btn, .btn-outline {
  color: var(--black);
  border: 2px solid var(--black);
  background: rgba(255, 248, 239, 0.52);
  backdrop-filter: blur(6px);
}

.outline-btn:hover, .btn-outline:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.7);
}

.top-btn {
  min-height: 62px;
  padding-inline: 29px;
  font-size: 18px;
  border-radius: 9px;
}

.mobile-menu {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}

.mobile-menu span {
  display: block;
  width: 28px;
  height: 3px;
  margin: 5px 0;
  background: var(--black);
  border-radius: 99px;
}

.hero-section {
  position: relative;
  z-index: 5;
  max-width: 1440px;
  margin: 0 auto;
  min-height: calc(100vh - 146px);
  display: grid;
  grid-template-columns: minmax(430px, 0.98fr) minmax(560px, 1.28fr);
  align-items: center;
  gap: clamp(20px, 3vw, 60px);
  padding: 40px 0 95px;
}

.hero-copy {
  position: relative;
  max-width: 660px;
  padding-left: 22px;
  z-index: 3;
}

.burst {
  position: absolute;
  left: min(570px, 86%);
  top: -24px;
  width: 112px;
  height: 86px;
  z-index: -1;
}

.burst i {
  position: absolute;
  display: block;
  width: 24px;
  height: 72px;
  border-radius: 5px;
  background: var(--orange);
  transform-origin: bottom center;
}

.burst i:nth-child(1) {
  left: 10px;
  top: 18px;
  transform: rotate(-42deg);
}

.burst i:nth-child(2) {
  left: 50px;
  top: 0;
}

.burst i:nth-child(3) {
  right: 4px;
  top: 20px;
  transform: rotate(44deg);
}

h1 {
  margin: 0;
  font-family: Anton, Impact, "Arial Narrow", sans-serif;
  font-size: clamp(50px, 5.5vw, 85px);
  line-height: 0.98;
  letter-spacing: 0.015em;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--black);
  text-wrap: balance;
}

h1 span {
  display: block;
  filter: drop-shadow(0 2px 0 rgba(255,255,255,0.25));
}

h1 .orange {
  color: var(--orange);
  font-size: 1.06em;
}

.hero-subtitle {
  margin: 26px 0 28px;
  max-width: 560px;
  color: var(--black);
  font-size: clamp(16px, 1.2vw, 20px);
  line-height: 1.35;
  letter-spacing: -0.02em;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.play-dot, .play-icon {
  width: 28px;
  height: 28px;
  border: 2px solid var(--black);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
}

.play-dot svg, .play-icon svg {
  width: 14px;
  height: 14px;
  margin-left: 2px;
}

.hero-visual {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translateX(6px);
}

.hero-visual img {
  width: min(880px, 100%);
  height: auto;
  display: block;
  transform: translateY(-4px);
  filter:
    drop-shadow(0 26px 45px rgba(33, 20, 9, 0.18))
    drop-shadow(0 3px 5px rgba(255, 75, 11, 0.15));
  z-index: 2;
}

.light-trail {
  position: absolute;
  right: 2%;
  width: 560px;
  height: 210px;
  border: 2px solid rgba(255, 154, 65, 0.34);
  border-left: 0;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(0.5px);
  transform: rotate(-18deg);
}

.trail-one {
  top: 155px;
}

.trail-two {
  top: 240px;
  width: 640px;
  height: 250px;
  opacity: 0.45;
  transform: rotate(-9deg);
}

.domain-mark {
  position: absolute;
  left: 0;
  bottom: 40px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: rgba(29, 29, 27, 0.48);
  text-decoration: none;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.globe {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
}

.globe svg {
  width: 100%;
  height: 100%;
}

.benefit-bar {
  position: relative;
  z-index: 10;
  max-width: 1065px;
  margin: -50px auto 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(29, 29, 27, 0.12);
  background: rgba(255, 248, 239, 0.72);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 12px 45px rgba(79, 45, 16, 0.08);
  overflow: hidden;
}

.benefit-bar article {
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
  min-height: 98px;
  padding: 20px 28px;
}

.benefit-bar article:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 20px;
  bottom: 20px;
  width: 1px;
  background: rgba(29, 29, 27, 0.16);
}

.benefit-icon {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 900;
  font-size: 22px;
}

.benefit-icon svg {
  width: 26px;
  height: 26px;
}

.benefit-bar h3 {
  margin: 0 0 5px;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: var(--black);
}

.benefit-bar p {
  margin: 0;
  font-size: 14px;
  line-height: 1.28;
  letter-spacing: -0.04em;
  color: var(--black);
  max-width: 180px;
}

/* --- NEW SECTIONS STYLES --- */

/* General Section Rules */
.section-shell {
  max-width: 1440px;
  margin: 0 auto;
  padding: 100px 0;
  position: relative;
}

h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(30px, 3.5vw, 50px);
  line-height: 1;
  text-transform: uppercase;
  color: var(--black);
  margin: 0 0 20px;
  letter-spacing: 0.01em;
}

.section-kicker {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--orange);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}

.section-heading {
  max-width: 800px;
  margin-bottom: 60px;
}

.section-heading p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
}

.split-heading {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 60px;
}

.split-heading p {
  font-size: 18px;
  color: var(--muted);
  line-height: 1.5;
}

/* Section 02: Dark Bento Grid */
.dark-services {
  background: var(--black);
  color: #fff;
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  margin-inline: calc(clamp(24px, 4.3vw, 78px) * -1);
}

.dark-noise {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%33%3Cfilter id='n'%33%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%33%3C/filter%33%3Crect width='100%25' height='100%25' filter='url(%23n)'/%33%3C/svg%33=");
  pointer-events: none;
}

.dark-services .section-heading h2 {
  color: #fff;
}

.dark-services .section-heading p {
  color: rgba(255, 255, 255, 0.6);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.bento-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  transition: transform 0.3s ease, background 0.3s ease;
}

.bento-card:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.05);
}

.bento-wide {
  grid-column: span 2;
}

.step-pill {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  color: var(--orange);
  margin-bottom: 16px;
}

.bento-card h3 {
  font-size: 24px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: -0.02em;
}

.bento-card p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}

/* Fix for SVG black stains */
.circuit-lines, .wave-lines, .automation-lines {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2px;
  opacity: 0.4;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

/* Minimal illustrations for Bento */
.code-art {
  height: 120px;
  position: relative;
  margin-top: 20px;
}

.art-browser .browser-mockup {
  width: 140px;
  height: 90px;
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.1);
  position: absolute;
  left: 0; bottom: 0;
}
.art-browser .browser-top {
  height: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  padding-left: 6px;
  gap: 3px;
}
.art-browser .browser-top i {
  width: 4px; height: 4px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
}
.art-browser .browser-hero-line {
  width: 70%; height: 4px;
  background: rgba(255,255,255,0.1);
  margin: 12px 12px 6px;
}
.art-browser .browser-hero-line.orange-line {
  background: var(--orange);
  width: 40%;
}
.art-browser .browser-button {
  width: 30px; height: 10px;
  background: var(--orange);
  margin: 0 12px;
  border-radius: 3px;
}

.art-camera .camera-body {
  width: 70px; height: 45px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  position: relative;
  margin: 20px auto;
}
.art-camera .camera-lens {
  width: 25px; height: 25px;
  background: var(--black);
  border: 2px solid var(--orange);
  border-radius: 50%;
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}

.art-social .post-stack {
  position: relative;
  height: 80px;
  margin-top: 20px;
}
.art-social .post-card {
  width: 80px; height: 60px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  position: absolute;
}
.art-social .card-one { transform: rotate(-5deg); left: 10px; top: 10px; }
.art-social .card-two { transform: rotate(3deg); left: 30px; top: 15px; background: rgba(255,255,255,0.08); }
.art-social .card-three { left: 50px; top: 20px; background: rgba(255,255,255,0.1); border-color: var(--orange); }
.art-social .reactions {
  position: absolute;
  right: 20px; top: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  color: var(--orange);
  font-weight: bold;
}

.art-menu .menu-board {
  width: 100px; height: 80px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 10px;
  position: relative;
  margin: 20px auto;
}
.art-menu .menu-board b {
  display: block;
  font-size: 10px;
  color: var(--orange);
  margin-bottom: 5px;
}
.art-menu .menu-board span {
  display: block;
  width: 100%; height: 2px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 4px;
}
.art-menu .price-chip {
  width: 20px; height: 20px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 700;
  position: absolute;
  right: -5px; top: -5px;
  color: var(--black);
}

.art-event .calendar-code {
  width: 80px; height: 70px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  padding: 8px;
  margin: 20px auto;
}
.art-event .calendar-code i {
  width: 100%; height: 10px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
}
.art-event .calendar-code i.active { background: var(--orange); }
.art-event .ticket-code {
  width: 30px; height: 15px;
  background: var(--orange);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
  position: absolute;
  right: 10px; bottom: 10px;
  color: var(--black);
}

.art-automation {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 80px;
  margin-top: 20px;
}
.art-automation .node {
  width: 35px; height: 35px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 700;
}
.art-automation .ai-node {
  width: 45px; height: 45px;
  background: var(--orange);
  color: var(--black);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
}

/* Section 03: Direct Ordering */
.comparison-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr auto 1.2fr;
  gap: 32px;
  align-items: center;
}

.checklist-panel h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 20px;
}

.checklist-panel p {
  margin: 12px 0;
  display: flex;
  gap: 10px;
  font-weight: 500;
}

.checklist-panel span {
  color: var(--orange);
}

.compare-card {
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(29, 29, 27, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.compare-card.bad {
  border-color: rgba(29,29,27,0.05);
}

.compare-card.good {
  border-color: var(--orange);
  box-shadow: 0 10px 30px rgba(255,75,11,0.05);
}

.compare-card h3 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 24px;
}

.flow-list span {
  display: block;
  padding: 10px;
  background: rgba(29,29,27,0.03);
  border-radius: 6px;
  margin: 8px 0;
  font-size: 14px;
  font-weight: 600;
}

.compare-card.good .flow-list span {
  background: rgba(255,75,11,0.05);
  color: var(--orange);
}

.vs-badge {
  font-family: Anton, sans-serif;
  font-size: 24px;
  color: var(--muted);
  opacity: 0.5;
}

/* Section 04: Linktree Problem */
.flow-contrast {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr;
  gap: 32px;
  align-items: start;
}

.flow-card {
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(29, 29, 27, 0.12);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  backdrop-filter: blur(10px);
}

.flow-card.right-flow {
  border-color: var(--orange);
}

.flow-card h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 24px;
}

.flow-pill {
  display: inline-block;
  padding: 12px 20px;
  background: rgba(29,29,27,0.03);
  border-radius: 99px;
  font-size: 14px;
  font-weight: 700;
  margin: 4px 0;
  width: 100%;
}

.right-flow .flow-pill {
  background: rgba(255,75,11,0.05);
  color: var(--orange);
}

.flow-arrow {
  color: var(--muted);
  font-size: 18px;
  margin: 4px 0;
}

.flow-card p {
  font-size: 13px;
  color: var(--muted);
  margin-top: 20px;
}

.order-card {
  background: #fff;
  border: 1px solid rgba(29,29,27,0.1);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.05);
  font-family: monospace;
  font-size: 14px;
}

.order-card h3 {
  font-family: Inter, sans-serif;
  font-weight: 800;
  margin-bottom: 12px;
}

.order-card hr {
  border: 0;
  border-top: 1px dashed rgba(29,29,27,0.2);
  margin: 12px 0;
}

.order-card .total {
  font-size: 16px;
  color: var(--orange);
}

/* Section 05: Automation */
.automation-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.automation-flow article {
  position: relative;
  padding-top: 40px;
}

.automation-flow article span {
  font-family: Anton, sans-serif;
  font-size: 48px;
  color: var(--orange);
  opacity: 0.2;
  position: absolute;
  left: 0; top: 0;
  line-height: 1;
}

.automation-flow h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.automation-flow p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Section 06: Data */
.data-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.data-grid article {
  background: rgba(255, 248, 239, 0.72);
  border: 1px solid rgba(29, 29, 27, 0.12);
  border-radius: 16px;
  padding: 32px;
  backdrop-filter: blur(10px);
}

.data-icon {
  width: 40px; height: 40px;
  display: inline-grid;
  place-items: center;
  border: 2px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-weight: 900;
  margin-bottom: 20px;
}

.data-grid h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.data-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Section 07: Integrations & Process */
.integrations-section {
  text-align: center;
  padding: 80px 0;
}

.integrations-section h2 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 40px;
}

.logo-strip {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  align-items: center;
}

.logo-strip img {
  height: 35px;
  filter: grayscale(100%) opacity(0.6);
  transition: all 0.3s ease;
}

.logo-strip img:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.process-grid article {
  text-align: center;
}

.process-grid span {
  display: inline-grid;
  place-items: center;
  width: 60px; height: 60px;
  background: var(--orange);
  color: #fff;
  border-radius: 50%;
  font-family: Anton, sans-serif;
  font-size: 24px;
  margin-bottom: 20px;
}

.process-grid h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.process-grid p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

/* Section 08: Portfolio & CTA */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.portfolio-grid article {
  text-align: center;
}

.site-shot {
  height: 240px;
  background: rgba(29,29,27,0.05);
  border-radius: 12px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--muted);
  background-size: cover;
  background-position: center;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.site-shot:hover {
  transform: translateY(-5px);
}

.site-shot span {
  display: none;
}

.site-shot.loiro {
  background-image: url('./assets/portfolio_loiro.png');
}

.site-shot.empizzados {
  background-image: url('./assets/portfolio_empizzados.png');
}

.site-shot.unclecoyo {
  background-image: url('./assets/portfolio_unclecoyo.png');
}

.site-shot.machete {
  background-image: url('./assets/portfolio_machete.png');
}

.site-shot.pookies {
  background-image: url('./assets/portfolio_pookies.png');
}

.portfolio-grid h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 5px;
}

.portfolio-grid p {
  font-size: 13px;
  color: var(--orange);
  font-weight: 600;
}

.events-section {
  background: rgba(29,29,27,0.03);
  width: 100%;
}

.event-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.event-cards article {
  background: #fff;
  border: 1px solid rgba(29,29,27,0.05);
  border-radius: 12px;
  padding: 24px;
}

.event-cards h3 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 10px;
}

.event-cards p {
  font-size: 14px;
  color: var(--muted);
}

.final-cta {
  text-align: center;
  padding: 120px 0;
}

.final-cta h2 span {
  color: var(--orange);
}

.final-cta p {
  font-size: 18px;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.footer {
  border-top: 1px solid var(--line);
  padding: 80px 0 40px;
  color: var(--muted);
  width: 100%;
}

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

.footer-brand img {
  height: 40px;
  margin-bottom: 20px;
}

.footer-brand p {
  font-size: 14px;
  max-width: 300px;
  line-height: 1.5;
}

.footer h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-links a, .footer-social a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  text-decoration: none;
  margin-bottom: 12px;
  transition: color 0.3s ease;
}

.footer-links a:hover, .footer-social a:hover {
  color: var(--orange);
}

.footer-contact span {
  display: block;
  font-size: 14px;
  margin-bottom: 12px;
}

.footer-bottom {
  border-top: 1px solid rgba(29,29,27,0.05);
  padding-top: 20px;
  text-align: center;
  font-size: 12px;
}

/* Responsive for new sections */
@media (max-width: 1024px) {
  .bento-grid {
    grid-template-columns: 1fr 1fr;
  }
  .bento-wide {
    grid-column: span 1;
  }
  .comparison-layout {
    grid-template-columns: 1fr;
  }
  .flow-contrast {
    grid-template-columns: 1fr;
  }
  .automation-flow {
    grid-template-columns: 1fr 1fr;
  }
  .data-grid {
    grid-template-columns: 1fr 1fr;
  }
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr 1fr;
  }
  .event-cards {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .bento-grid, .automation-flow, .data-grid, .process-grid, .portfolio-grid, .event-cards {
    grid-template-columns: 1fr;
  }
  .split-heading {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .footer-brand p {
    margin: 0 auto 20px;
  }
  
  /* Perfect responsive adjustments */
  h1 {
    font-size: 36px !important;
  }
  h2 {
    font-size: 24px !important;
  }
  .bento-card {
    padding: 20px;
    min-height: auto;
  }
  .section-shell {
    padding: 50px 10px; /* Added 10px side padding */
  }
  .hero-subtitle {
    font-size: 15px;
  }
  .light-trail {
    display: none;
  }
  .logo-strip {
    gap: 20px;
  }
  .logo-strip img {
    height: 25px;
  }
  
  /* Header mobile adjustments */
  .hamburger-menu {
    display: block;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--black);
    padding: 10px;
  }
  .main-nav, .top-btn {
    display: none; /* Hide nav and button on mobile */
  }
  .brand {
    width: 130px;
    transform: none;
  }
  
  /* Hero mobile adjustments */
  .hero-section {
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 20px 0;
  }
  .hero-visual {
    order: 1;
    width: 100%;
    margin-bottom: 30px;
  }
  .hero-visual img {
    width: 100%;
    height: auto;
  }
  .hero-copy {
    order: 2;
    padding-left: 0;
    max-width: 100%;
  }
  .hero-actions {
    justify-content: flex-start;
    transform: scale(0.85);
    transform-origin: left center;
    margin-top: 20px;
  }
  
  /* Benefit bar mobile adjustments */
  .benefit-bar {
    grid-template-columns: 1fr;
    margin-top: 20px;
  }
  .benefit-bar article {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding: 20px;
    min-height: auto;
  }
  .benefit-bar article:not(:last-child)::after {
    display: none;
  }
}
