/* ==========================================
   BONEFISH STUDIO - MODERN ORGANIC DESIGN
   Color Palette:
   - Peachy Coral: #FFAA80
   - Creamy White: #FFF8F0
   - Dark Charcoal: #2A2A2A
   - Accent Warm: #FF8C5A
   - Peachy Light: #FFD4BA
   ========================================== */

/* === RESET & BASE STYLES === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --color-peachy-light: #e6b190;
  --color-peachy-dark: #ff8c5a;
  --color-cream: #fff8f0;
  --color-charcoal: #1f1e1e;
  --color-charcoal-light: #4a4a4a;
  --font-heading: "Fredoka", sans-serif;
  --font-body: "DM Sans", sans-serif;
}

body {
  font-family: var(--font-body);
  color: var(--color-charcoal);
  background-color: var(--color-cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.1;
  color: var(--color-charcoal);
}

/* ==========================================
   TIMELINE COMPONENT
   ========================================== */

/* Timeline Section */
.timeline-section {
  padding: 60px 20px;
  background-color: var(--color-cream);
  overflow: hidden;
}

.timeline-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  padding: 30px 0;
}

/* Vertical Center Line */
.vertical-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #e0e0e0;
  transform: translateX(-50%);
  z-index: 0;
}

/* Timeline Step Base Styles */
.timeline-step {
  position: relative;
  display: flex;
  align-items: center;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.timeline-step:nth-child(2) {
  transition-delay: 0s;
}
.timeline-step:nth-child(3) {
  transition-delay: 0.2s;
}
.timeline-step:nth-child(4) {
  transition-delay: 0.4s;
}

.timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step:last-child {
  margin-bottom: 0;
}

.highlight-orange {
  color: var(--color-peachy-dark);
}

/* Timeline Dot (small circle on center line) */
.timeline-dot {
  position: absolute;
  left: 50%;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid #ccc;
  background: var(--color-cream);
  transform: translateX(-50%);
  z-index: 2;
  transition: border-color 0.4s ease, background-color 0.4s ease;
}

.timeline-step.is-visible .timeline-dot {
  border-color: var(--color-peachy-dark);
  background: var(--color-peachy-dark);
}

/* Step Content Wrapper */
.step-content {
  display: flex;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 1;
}

/* Left-aligned steps */
.step-left {
  justify-content: flex-start;
}

.step-left .step-content {
  margin-right: 50%;
  padding-right: 40px;
  flex-direction: row;
}

/* Right-aligned steps */
.step-right {
  justify-content: flex-end;
}

.step-right .step-content {
  margin-left: 50%;
  padding-left: 40px;
  flex-direction: row;
}

/* Large Numbered Circle */
.step-circle {
  min-width: 70px;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: transparent;
  border: 3px solid #ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 700;
  color: #ccc;
  transition: background-color 0.4s ease, border-color 0.4s ease,
    color 0.4s ease;
  flex-shrink: 0;
}

.timeline-step.is-visible .step-circle {
  background: var(--color-peachy-dark);
  border-color: var(--color-peachy-dark);
  color: white;
}

/* Horizontal Connector Line */
.connector-line {
  width: 40px;
  height: 3px;
  background: #ccc;
  flex-shrink: 0;
  transition: background-color 0.5s ease;
  position: relative;
  overflow: hidden;
}

.connector-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--color-peachy-dark);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s ease;
}

.timeline-step.is-visible .connector-line::after {
  transform: scaleX(1);
}

.step-right .connector-line::after {
  transform-origin: right;
}

/* Content Card */
.content-card {
  flex: 1;
  background: white;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}

/* Timeline Step Badge */
.timeline-step-badge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--color-peachy-dark);
  color: white;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 6px;
  margin-bottom: 12px;
}

.content-card h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.content-card p {
  font-size: clamp(15px, 2vw, 18px);
  line-height: 1.6;
  color: var(--color-charcoal-light);
  margin-bottom: 8px;
}

.content-card p:last-child {
  margin-bottom: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
  .timeline-section {
    padding: 60px 20px;
  }

  .hero-modern .hero-grid {
    gap: 0px;
    height: 100vh;
  }

  .timeline-container {
    padding: 40px 0;
  }

  /* Move vertical line to left side */
  .vertical-line {
    left: 30px;
  }

  /* Stack all steps on the right side */
  .timeline-step,
  .step-left,
  .step-right {
    justify-content: flex-start;
  }

  .step-left .step-content,
  .step-right .step-content {
    margin: 0 20px 0 60px;
    padding: 0;
    flex-direction: row;
    gap: 20px;
  }

  .timeline-dot {
    left: 30px;
  }

  .timeline-step {
    margin-bottom: 100px;
  }

  /* Smaller circles on mobile */
  .step-circle {
    min-width: 50px;
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .connector-line {
    width: 30px;
  }

  .content-card {
    padding: 24px;
  }

  .content-card h3 {
    font-size: 20px;
  }

  .content-card p {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .step-left .step-content,
  .step-right .step-content {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .connector-line {
    display: none;
  }

  .step-circle {
    min-width: 45px;
    width: 45px;
    height: 45px;
    font-size: 16px;
  }

  .content-card {
    padding: 20px;
  }

  .content-card h3 {
    font-size: 18px;
  }

  .content-card p {
    font-size: 14px;
  }
}

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

/* === LAYERED TEXTURED BACKGROUND === */
.bg-canvas {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  background: radial-gradient(
      ellipse 800px 600px at 85% 10%,
      rgba(255, 212, 186, 0.3) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 700px 700px at 10% 80%,
      rgba(255, 170, 128, 0.25) 0%,
      transparent 50%
    ),
    radial-gradient(
      ellipse 600px 500px at 60% 60%,
      rgba(255, 248, 240, 0.4) 0%,
      transparent 50%
    ),
    linear-gradient(
      135deg,
      rgba(255, 248, 240, 0.1) 0%,
      rgba(255, 212, 186, 0.05) 100%
    );
}

/* === CONTAINERS === */
.container-fluid {
  max-width: 1400px;
  margin: 60px auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 80px);
  position: relative;
  z-index: 1;
}

/* === SECTIONS === */
section:not(.hero-modern) {
  padding: clamp(80px, 15vh, 160px) 0;
  position: relative;
}

/* === TYPOGRAPHY === */
.display-massive {
  font-size: clamp(48px, 10vw, 120px);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 48px;
}

.display-massive .line {
  display: block;
  overflow: visible;
}

.display-massive .emphasis {
  color: var(--color-peachy-dark);
  font-style: italic;
}

.display-large {
  font-size: clamp(40px, 8vw, 96px);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 32px;
}

.mega-title {
  font-size: clamp(36px, 7vw, 80px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 48px;
}

.section-title {
  font-size: clamp(32px, 6vw, 64px);
  font-weight: 600;
  line-height: 1.2;
}

.centered-title {
  text-align: center;
  font-size: clamp(36px, 7vw, 72px);
  font-weight: 700;
  margin-bottom: 80px;
}

.lead-text {
  font-size: clamp(20px, 3vw, 28px);
  line-height: 1.6;
  margin-bottom: 32px;
  font-weight: 400;
}

.body-xl {
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.7;
  margin-bottom: 32px;
}

.body-lg {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.7;
  margin-bottom: 24px;
}

.emphasis-text {
  font-weight: 600;
  font-size: clamp(22px, 3vw, 30px);
  color: var(--color-peachy-dark);
}

.highlight-peachy {
  color: var(--color-peachy-dark);
  position: relative;
  display: inline-block;
}

/* === SPACERS === */
.spacer-lg {
  height: 80px;
}

.spacer-md {
  height: 48px;
}

/* === HERO === */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: linear-gradient(
    135deg,
    var(--color-peachy) 0%,
    var(--color-peachy-light) 100%
  );
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  grid-template-rows: auto auto;
  gap: 40px 0;
  position: relative;
  z-index: 2;
  align-items: start;
}

.hero-statement {
  max-width: 900px;
  position: relative;
  z-index: 2;
  grid-column: 1;
  grid-row: 1;
}

.hero-logo {
  grid-column: 2;
  grid-row: 1;
  align-self: start;
  justify-self: end;
}

.hero-logo .logo {
  width: 280px;
  height: auto;
  transition: transform 0.3s ease;
}

.hero-logo .logo:hover {
  transform: scale(1.05);
}

.hero-visual {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: center;
}

/* === SPLIT LAYOUT === */
.split-layout {
  display: grid;
  grid-template-columns: 400px 1fr;
  gap: 120px;
  align-items: start;
}

.split-left {
  position: relative;
}

.sticky-content {
  position: sticky;
  top: 120px;
}

.split-right {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.belief-point {
  opacity: 0;
  transform: translateY(40px);
}

.belief-point h3 {
  font-size: clamp(24px, 3vw, 36px);
  margin-bottom: 24px;
  font-weight: 600;
}

.belief-point p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--color-charcoal-light);
}

/* === BELIEF SECTION === */
.belief-section {
  background: var(--color-cream);
  padding: clamp(120px, 20vh, 200px) 0;
}

/* === COST SECTION === */
.timeline-section {
  background: linear-gradient(
    135deg,
    var(--color-peachy-light) 0%,
    var(--color-peachy) 100%
  );
  padding: clamp(120px, 20vh, 200px) 0;
}

.cost-content {
  text-align: left;
}

/* === APPROACH SECTION === */
.approach-section {
  background: var(--color-cream);
  padding: clamp(120px, 20vh, 200px) 0;
  position: relative;
  overflow: visible;
}

.approach-timeline {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  position: relative;
  padding: 80px 20px 60px;
}

/* Main horizontal timeline line */
.timeline-line {
  position: absolute;
  top: 120px;
  left: 10%;
  right: 10%;
  height: 4px;
  background: linear-gradient(
    to right,
    var(--color-peachy) 0%,
    var(--color-peachy-dark) 50%,
    var(--color-peachy) 100%
  );
  border-radius: 2px;
  z-index: 1;
}

.timeline-line::before,
.timeline-line::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
}

/* Arrow at the end of timeline */
.timeline-line::after {
  right: -12px;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid var(--color-peachy);
}

.timeline-item {
  opacity: 0;
  transform: translateY(40px);
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 2;
}

/* Alternating pattern: up, down, up */
.timeline-item:nth-child(3) {
  margin-top: 0;
}

.timeline-item:nth-child(4) {
  margin-top: 200px;
}

.timeline-item:nth-child(5) {
  margin-top: 0;
}

.timeline-node {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.timeline-number {
  position: relative;
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-peachy) 0%,
    var(--color-peachy-dark) 100%
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(255, 146, 92, 0.3);
  z-index: 3;
  border: 4px solid var(--color-cream);
}

.timeline-number span {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1;
}

/* Curved arrow connectors */
.curved-arrow {
  position: absolute;
  width: 60px;
  height: 100px;
  top: 80px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--color-peachy);
  z-index: 2;
}

/* Down-pointing arrows for alternating items */
.curved-arrow-down {
  top: auto;
  bottom: 80px;
  transform: translateX(-50%) scaleY(-1);
}

.timeline-content {
  background: transparent;
  max-width: 360px;
  text-align: center;
  position: relative;
}

.timeline-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(
    135deg,
    var(--color-peachy-light) 0%,
    var(--color-peachy) 100%
  );
  border-radius: 16px;
  margin-bottom: 20px;
  color: white;
  box-shadow: 0 4px 12px rgba(255, 146, 92, 0.2);
}

.timeline-badge svg {
  width: 28px;
  height: 28px;
}

.timeline-content h3 {
  font-size: clamp(22px, 3vw, 28px);
  margin-bottom: 16px;
  font-weight: 600;
  color: var(--color-charcoal);
  line-height: 1.3;
}

.timeline-content p {
  font-size: clamp(15px, 1.8vw, 17px);
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--color-charcoal-light);
  text-align: left;
}

.timeline-content p:last-child {
  margin-bottom: 0;
}

/* === AUDIENCE SECTION === */
.audience-section {
  background: linear-gradient(
    135deg,
    var(--color-peachy) 0%,
    var(--color-peachy-dark) 100%
  );
  padding: clamp(120px, 20vh, 200px) 0;
}

.audience-content {
  color: var(--color-charcoal);
}

/* === INDUSTRIES SECTION === */
.industries-section {
  background: var(--color-cream);
  padding: clamp(100px, 15vh, 160px) 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
}

.industry-block {
  background: white;
  padding: clamp(40px, 5vw, 60px);
  border-radius: 32px;
  opacity: 0;
  transform: translateX(-40px);
}

.industry-block:nth-child(2) {
  transform: translateX(40px);
}

.industry-block h3 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 20px;
  font-weight: 600;
}

.industry-block p {
  font-size: clamp(17px, 2vw, 20px);
  line-height: 1.8;
  color: var(--color-charcoal-light);
}

/* === CTA MODERN === */
.cta-modern {
  background: var(--color-charcoal);
  padding: clamp(140px, 25vh, 240px) 0;
  text-align: center;
}

.cta-content-modern,
.display-large {
  color: var(--color-peachy-dark);
}

.cta-action {
  margin-top: 48px;
}

.btn-modern {
  display: inline-block;
  padding: 24px 56px;
  background: var(--color-charcoal-light);
  color: var(--color-cream);
  font-family: var(--font-heading);
  font-size: clamp(18px, 2vw, 22px);
  font-weight: 600;
  border-radius: 50px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn-modern::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: var(--color-charcoal-light);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn-modern span {
  position: relative;
  z-index: 1;
}

/* === FOOTER === */
.footer-modern {
  background: var(--color-charcoal);
  color: var(--color-cream);
  padding: 80px 0 40px;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-brand h3 {
  font-size: 32px;
  color: var(--color-cream);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 18px;
  color: var(--color-peachy-light);
  opacity: 0.8;
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  font-size: 20px;
  color: var(--color-peachy-light);
  transition: color 0.3s ease;
  display: block;
  margin-bottom: 12px;
}

.footer-contact a:hover {
  color: var(--color-peachy);
}

.footer-contact p {
  font-size: 14px;
  color: var(--color-peachy-light);
  opacity: 0.6;
}

/* === ANIMATION CLASSES === */
/* Initial hidden states for animated elements */
.reveal-section,
.reveal-text,
.belief-point,
.timeline-item,
.fade-in-left,
.fade-in-right {
  opacity: 0;
}

.delay-1 {
  transition-delay: 0.2s;
}

.delay-2 {
  transition-delay: 0.4s;
}

.delay-3 {
  transition-delay: 0.6s;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .split-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .sticky-content {
    position: static;
  }

  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-statement {
    grid-row: 2;
  }

  .hero-logo {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
  }

  .hero-logo .logo {
    width: 200px;
    margin-top: 0;
  }

  .scroll-indicator {
    display: none;
  }

  .industries-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  section:not(.hero-modern) {
    padding: 20px 0;
  }

  .split-right {
    gap: 60px;
  }

  .approach-timeline {
    flex-direction: column;
    padding: 60px 20px;
    gap: 80px;
  }

  .timeline-line {
    display: none;
  }

  .timeline-item {
    margin-top: 0 !important;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
  }

  .timeline-node {
    flex-direction: row;
    margin-bottom: 0;
    align-items: flex-start;
    gap: 12px;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
  }

  .timeline-number span {
    font-size: 22px;
  }

  .curved-arrow {
    position: relative;
    top: auto;
    bottom: auto;
    left: auto;
    width: 40px;
    height: 60px;
    transform: rotate(90deg) translateY(-10px);
  }

  .curved-arrow-down {
    transform: rotate(90deg) translateY(-10px);
  }

  .timeline-content {
    text-align: left;
    max-width: 100%;
  }

  .timeline-badge {
    width: 48px;
    height: 48px;
    margin-bottom: 16px;
  }

  .timeline-badge svg {
    width: 24px;
    height: 24px;
  }

  .footer-grid {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container-fluid,
  .container-narrow {
    padding: 0 20px;
  }
}

/* === CONTAINER === */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}

/* === SECTIONS === */
section:not(.hero-modern) {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

.section-subtitle {
  font-size: 20px;
  color: var(--color-charcoal-light);
  max-width: 600px;
  margin: 0 auto;
}

/* === BLOB BACKGROUNDS === */
.blob-container {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.blob {
  position: absolute;
  opacity: 0.6;
  animation: float 20s ease-in-out infinite;
}

.blob-1 {
  width: 400px;
  height: 400px;
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.blob-2 {
  width: 300px;
  height: 300px;
  bottom: -80px;
  left: -80px;
  animation-delay: -5s;
}

.blob-3 {
  width: 350px;
  height: 350px;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  animation-delay: -10s;
}

.blob-4 {
  width: 280px;
  height: 280px;
  top: -60px;
  left: 10%;
  animation-delay: -7s;
}

.blob-5 {
  width: 320px;
  height: 320px;
  bottom: -80px;
  right: 15%;
  animation-delay: -12s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(20px, -20px) rotate(5deg);
  }
  50% {
    transform: translate(-10px, 10px) rotate(-3deg);
  }
  75% {
    transform: translate(15px, 15px) rotate(3deg);
  }
}

/* === FLOATING BUBBLES === */
.floating-bubble {
  position: absolute;
  background-color: var(--color-cream);
  border-radius: 50%;
  opacity: 0.4;
  animation: bubble-float 15s ease-in-out infinite;
}

.bubble-1 {
  width: 60px;
  height: 60px;
  top: 20%;
  left: 15%;
  animation-delay: 0s;
}

.bubble-2 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 20%;
  animation-delay: -3s;
}

.bubble-3 {
  width: 50px;
  height: 50px;
  bottom: 25%;
  left: 25%;
  animation-delay: -6s;
}

.bubble-4 {
  width: 70px;
  height: 70px;
  top: 30%;
  right: 30%;
  animation-delay: -2s;
}

.bubble-5 {
  width: 45px;
  height: 45px;
  bottom: 20%;
  right: 10%;
  animation-delay: -8s;
}

@keyframes bubble-float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, -30px);
  }
}

/* === BUTTONS === */
.btn {
  display: inline-block;
  padding: 16px 32px;
  border-radius: var(--border-radius);
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
  background-color: var(--color-charcoal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-secondary {
  background-color: var(--color-cream);
  color: var(--color-charcoal);
  border: 2px solid var(--color-charcoal);
  box-shadow: var(--shadow-soft);
}

.btn-secondary:hover {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.btn-large {
  padding: 20px 48px;
  font-size: 20px;
}

/* === HERO SECTION === */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(
    135deg,
    var(--color-peachy) 0%,
    var(--color-peachy-light) 100%
  );
  position: relative;
  padding: 120px 0 80px;
}

.hero-content {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}

.hero-title {
  margin-bottom: 32px;
}

.hero-title-main {
  display: block;
  font-size: 72px;
  font-weight: 700;
  color: var(--color-charcoal);
  margin-bottom: 16px;
  line-height: 1.1;
}

.hero-title-sub {
  display: block;
  font-size: 32px;
  font-weight: 500;
  color: var(--color-charcoal-light);
}

.hero-description {
  font-size: 22px;
  line-height: 1.7;
  color: var(--color-charcoal);
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* === VALUE PROPS SECTION === */
.value-props {
  background-color: var(--color-cream);
  padding: 100px 0;
}

.value-props-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

.value-prop-card {
  background-color: white;
  padding: 48px 32px;
  border-radius: var(--border-radius-lg);
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.value-prop-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.value-prop-icon {
  font-size: 64px;
  margin-bottom: 24px;
}

.value-prop-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

.value-prop-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-charcoal-light);
}

/* === WHAT WE DO SECTION === */
.what-we-do {
  background: linear-gradient(
    135deg,
    var(--color-peachy-light) 0%,
    var(--color-peachy) 100%
  );
  position: relative;
}

.what-we-do-content {
  max-width: 900px;
  margin: 0 auto;
}

.what-we-do-text p {
  font-size: 20px;
  line-height: 1.8;
  margin-bottom: 40px;
  text-align: center;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.feature-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateX(8px);
  box-shadow: var(--shadow-medium);
}

.feature-icon {
  font-size: 48px;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 24px;
  margin-bottom: 8px;
  color: var(--color-charcoal);
}

.feature-text p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-charcoal-light);
}

/* === WHO WE HELP SECTION === */
.who-we-help {
  background-color: var(--color-cream);
}

.who-we-help-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.industry-card {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.industry-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.industry-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

.industry-card p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-charcoal-light);
}

.industry-card.ideal-customer {
  background: linear-gradient(
    135deg,
    var(--color-peachy-dark) 0%,
    var(--color-peachy) 100%
  );
  color: white;
}

.industry-card.ideal-customer h3,
.industry-card.ideal-customer li {
  color: white;
}

.industry-card ul {
  list-style: none;
  padding: 0;
}

.industry-card ul li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 18px;
  line-height: 1.6;
}

.industry-card ul li:before {
  content: "✓";
  position: absolute;
  left: 0;
  font-weight: 700;
  font-size: 20px;
}

/* === HOW IT WORKS SECTION === */
.how-it-works {
  background: linear-gradient(
    135deg,
    var(--color-peachy) 0%,
    var(--color-peachy-light) 100%
  );
  position: relative;
}

.process-steps {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.process-step {
  background-color: white;
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-soft);
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 40px;
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-medium);
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--color-peachy-dark) 0%,
    var(--color-peachy) 100%
  );
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: var(--shadow-soft);
}

.process-content h3 {
  font-size: 28px;
  margin-bottom: 12px;
  color: var(--color-charcoal);
}

.process-content p {
  font-size: 18px;
  line-height: 1.7;
  color: var(--color-charcoal-light);
}

.process-connector {
  width: 4px;
  height: 40px;
  background: linear-gradient(
    180deg,
    var(--color-peachy-dark) 0%,
    var(--color-peachy) 100%
  );
  margin: 0 auto 40px;
  border-radius: 4px;
  opacity: 0.5;
}

/* === WHY CHOOSE US SECTION === */
.why-choose-us {
  background-color: var(--color-cream);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 32px;
  max-width: 1100px;
  margin: 0 auto;
}

.comparison-card {
  background-color: white;
  padding: 32px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.3s ease;
}

.comparison-card h4 {
  font-size: 22px;
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

.comparison-downside {
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal-light);
  opacity: 0.7;
}

.comparison-card.highlight {
  background: linear-gradient(
    135deg,
    var(--color-peachy-dark) 0%,
    var(--color-peachy) 100%
  );
  color: white;
  transform: scale(1.05);
  box-shadow: var(--shadow-large);
}

.comparison-card.highlight h4 {
  color: white;
  font-size: 24px;
}

.comparison-upside {
  font-size: 18px;
  line-height: 1.7;
  color: white;
  font-weight: 500;
}

.comparison-card:not(.highlight):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-medium);
}

/* === CTA SECTION === */
.cta-section {
  background: linear-gradient(
    135deg,
    var(--color-peachy) 0%,
    var(--color-peachy-dark) 100%
  );
  text-align: center;
  padding: 120px 0;
  position: relative;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content h2 {
  font-size: 56px;
  color: white;
  margin-bottom: 24px;
}

.cta-content p {
  font-size: 22px;
  color: white;
  line-height: 1.7;
  margin-bottom: 40px;
}

.cta-buttons {
  margin-bottom: 24px;
}

.cta-note {
  font-size: 16px !important;
  opacity: 0.9;
  margin-bottom: 0 !important;
}

/* === FOOTER === */
.footer {
  background-color: var(--color-charcoal);
  color: var(--color-cream);
  padding: 60px 0 40px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-brand h3 {
  font-size: 28px;
  color: var(--color-cream);
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 16px;
  color: var(--color-peachy-light);
}

.footer-contact {
  text-align: right;
}

.footer-contact a {
  color: var(--color-peachy-light);
  font-size: 18px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-contact a:hover {
  color: var(--color-peachy);
}

.footer-copyright {
  font-size: 14px;
  color: var(--color-peachy-light);
  margin-top: 8px;
  opacity: 0.8;
}

/* === RESPONSIVE DESIGN === */
@media (max-width: 768px) {
  .hero-title-main {
    font-size: 48px;
  }

  .hero-title-sub {
    font-size: 24px;
  }

  .hero-description {
    font-size: 18px;
  }

  .section-header h2 {
    font-size: 36px;
  }

  .section-subtitle {
    font-size: 18px;
  }

  .value-props-grid,
  .who-we-help-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .feature-item {
    flex-direction: column;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-contact {
    text-align: center;
  }

  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }

  .cta-content h2 {
    font-size: 40px;
  }

  .blob {
    opacity: 0.3;
  }

  section:not(.hero-modern) {
    padding: 160px 0;
  }
}

@media (max-width: 480px) {
  .hero-title-main {
    font-size: 36px;
  }

  .hero-title-sub {
    font-size: 20px;
  }

  .container {
    padding: 0 16px;
  }
}
