@layer base, components, utilities;

/* Core utilities and resets in base layer */
@layer base {
  @tailwind base;
}

/* Components in their own layer */
@layer components {
  @tailwind components;
  
  /* Load route-specific CSS only when needed */
  @media (min-width: 1px) {
    @import './components/blog.css' screen;
    @import './components/ebook/ebook-styles.css' screen;
  }
}

/* Utilities get loaded last */
@layer utilities {
  @tailwind utilities;
}

@tailwind base;
@tailwind components;
@tailwind utilities;

/* Defer non-critical styles */
@layer components {
  @import './components/mobile-menu.css';
  @import './components/blog-card.css';
  @import './components/blog-list.css';
}

/* Remove focus outlines from all elements */
*:focus {
  outline: none !important;
}

/* Shimmer animation for loading states */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
}

/* Prevent horizontal scrollbars on all devices */
html, body {
  overflow-x: hidden !important;
  width: 100%;
  max-width: 100%;
  position: relative;
  background-color: #FFFFFF;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*, *::before, *::after {
  box-sizing: border-box;
  max-width: 100%;
}

@layer components {
  .hero {
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  /* 
   * Adjusting negative margin on background graph image for different screen widths:
   * -1920px: -591px
   * -1600px: -391px
   * -1440px: -320px
   * -1366px: -280px
   */
  .background-graph img {
    width: 100%;
    height: 900px;
    object-fit: cover;
  }

  .back-ground-graph-image {
    margin-top: -591px; /* tuned for 1920px screens */
    width: 100%;
    height: 900px;
    object-fit: cover;
  }

  @media (max-width: 1600px) {
    .back-ground-graph-image {
        margin-top: -391px;
    }
  }

  @media (max-width: 1440px) {
    .back-ground-graph-image {
        margin-top: -320px;
    }
  }

  @media (max-width: 1366px) {
    .back-ground-graph-image {
        margin-top: -280px;
    }
  }

  /* Height-based responsive padding for hero section */
  @media screen and (min-height: 800px) and (max-height: 850px) {
    .height-responsive-padding {
      padding-top: 150px !important; /* Original 200px - 50px */
    }
  }

  @media screen and (min-height: 750px) and (max-height: 800px) {
    .height-responsive-padding {
      padding-top: 100px !important; /* Original 200px - 100px */
    }
  }

  @media screen and (min-height: 700px) and (max-height: 750px) {
    .height-responsive-padding {
      padding-top: 50px !important; /* Original 200px - 150px */
    }
  }

  .subtitle-container {
    padding: 0px 10px 0px 1000px;  /* big left padding */
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    box-sizing: border-box;
  }

  .tagline {
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;  /* centers content inside the 255px box */
    width: 255px;
    flex-shrink: 0;
    position: relative;
    box-sizing: border-box;
  }

  .tagline-text {
    color: #e0e0e0;
    text-align: left;  /* left-aligned text inside the box */
    font-family: 'Urbanist', sans-serif;
    font-size: 22px;
    line-height: 27px;
    font-weight: 500;
    position: relative;
    box-sizing: border-box;
  }

  .name-container {
    width: 100%;
  }

  .title-container {
    width: 100%;
  }

  .heading-1-q-studio {
    font-size: 140px;
    line-height: 1.1;
    font-weight: 600;
  }

  .subtitle-text {
    font-size: 22px;
    line-height: 27px;
    font-weight: 500;
  }

  @media (max-width: 1200px) {
    .subtitle-container {
      padding-left: 500px;
    }
  }

  @media (max-width: 768px) {
    .menu {
      padding-left: 20px;
      padding-right: 20px;
    }

    .subtitle-container {
      padding-left: 20px;
      justify-content: flex-start;
    }

    .tagline {
      width: 200px;
    }

    .tagline-text {
      font-size: 18px;
      line-height: 22px;
      text-align: left;
    }

    .title {
      padding-left: 20px;
      width: 100%;
    }

    .heading-1-q-studio {
      font-size: 70px;
      letter-spacing: -1.5px;
      text-align: left;
    }

    .subtitle {
      padding-left: 50px;
      font-size: 18px;
      line-height: 22px;
    }

    .dot {
      width: 8px;
      height: 8px;
      margin-right: 10px;
    }
  }

  @media (max-width: 600px) {
    .subtitle-container {
        justify-content: flex-start; /* left align tagline block */
        padding: 0 20px;
    }

    .tagline-text {
        text-align: left;
    }

    .name-container {
        padding: 0 20px;
    }

    .title {
        width: 100%;
        padding-left: 0;
    }

    .heading-1-q-studio {
        text-align: left;
        font-size: 48px;
        line-height: 1.1;
    }

    .title-container {
        padding: 0 20px;
    }

    .subtitle {
        padding-left: 20px;
    }

    .subtitle-text {
        text-align: left;
    }

    .back-ground-graph-image {
        content: url('../assets/background-graph-mobile.png');
        width: 100%;
        height: auto;
        position: absolute;
        bottom: 0;
        margin-top: 0;
    }

    /* Mobile-specific styles */
    .mobile-title {
        color: white;
        margin-bottom: 40px;
    }

    .mobile-subtitle-container {
        margin-top: 60px;
    }

    .mobile-subtitle {
        color: white;
        font-weight: 500;
        line-height: 1.3;
    }

    .logo {
        color: #eef559 !important;
    }
  }
}

:root {
  --background: 0 0% 5%; /* #0d0d0d */
  --foreground: 0 0% 98%;
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --primary: 60 95% 65%; /* #eef559 */
  --primary-foreground: 0 0% 5%; /* #0d0d0d */
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --accent: 60 95% 65%; /* #eef559 */
  --accent-foreground: 0 0% 5%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --ring: 240 4.9% 83.9%;
  --radius: 0.5rem;
}

.dark {
  --background: 0 0% 5%; /* #0d0d0d */
  --foreground: 0 0% 88%; /* #e0e0e0 */
  --muted: 240 3.7% 15.9%;
  --muted-foreground: 240 5% 64.9%;
  --popover: 240 10% 3.9%;
  --popover-foreground: 0 0% 98%;
  --card: 240 10% 3.9%;
  --card-foreground: 0 0% 98%;
  --border: 240 3.7% 15.9%;
  --input: 240 3.7% 15.9%;
  --primary: 60 95% 65%; /* #eef559 */
  --primary-foreground: 0 0% 5%; /* #0d0d0d */
  --secondary: 240 3.7% 15.9%;
  --secondary-foreground: 0 0% 98%;
  --accent: 60 95% 65%; /* #eef559 */
  --accent-foreground: 0 0% 5%;
  --destructive: 0 62.8% 30.6%;
  --destructive-foreground: 0 0% 98%;
  --ring: 240 4.9% 83.9%;
  --radius: 0.5rem;
}

@layer base {
  * {
    @apply border-border;
  }

  body {
    @apply font-sans antialiased bg-background text-foreground;
    font-family: 'Urbanist', sans-serif;
  }
}

/* Height-based responsive padding for hero section */
@media screen and (min-height: 800px) and (max-height: 850px) {
  .height-responsive-padding {
    padding-top: 150px !important; /* Original 200px - 50px */
  }
}

@media screen and (min-height: 750px) and (max-height: 800px) {
  .height-responsive-padding {
    padding-top: 100px !important; /* Original 200px - 100px */
  }
}

@media screen and (min-height: 700px) and (max-height: 750px) {
  .height-responsive-padding {
    padding-top: 50px !important; /* Original 200px - 150px */
  }
}

/* NAVIGATION STYLES */
.menu-bar, .menu-bar * {
  box-sizing: border-box;
}

.menu-bar-container {
  background: #0d0d0d;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 15px 0;
}

.menu-bar-wrapper {
  width: 100%;
  max-width: 1140px; /* Decreased to account for reduced gaps (140px instead of 277px) */
  margin: 0 auto;
}

.menu-bar-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* Logo styling */
.logo {
  flex: 0 0 auto;
  padding: 10px;
  display: flex;
  align-items: center;
  margin-right: 140px; /* Gap between logo and menu items */
}

.j-6-venture {
  color: #eef559;
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
}

/* Menu items styling with exact gap requirements */
.menu-items,
.menu-items * {
  box-sizing: border-box;
}

.menu-items {
  flex: 0 1 auto;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 30px; /* Gap between menu items (Home, About, etc.) */
  align-items: center;
  justify-content: center;
  position: relative;
  margin-right: 140px; /* Gap between menu items and Contact button */
}

.menu-items2 {
  padding: 10px;
  display: flex;
  align-items: center;
}

.about, .about2 {
  color: #e0e0e0;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px; /* Increased from 16px to 18px */
  line-height: 27px; /* Adjusted line height proportionally */
  font-weight: 500;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 2px; /* Space for the border on hover */
  border-bottom: 1px solid transparent; /* Transparent border initially */
  transition: color 0.2s, border-color 0.2s; /* Smooth transition */
}

/* Active page */
.about.active {
  color: #eef559;
  border-bottom: none; /* No border for active state */
}

/* Hover state - yellow bottom border instead of underline */
.about:not(.active):hover, 
.about2:hover {
  color: #eef559;
  text-decoration: none; /* Remove underline */
  border-bottom: 1px solid #eef559; /* Yellow bottom border */
}

/* Pressed state */
.menu-items2:active .about, 
.menu-items2:active .about2 {
  background: #eef559;
  color: #0d0d0d;
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

.button-small {
  flex: 0 0 auto;
  display: flex;
  justify-content: center;
  background: #eef559;
  border-radius: 60px;
  padding: 15px 22px;
  align-items: center;
  min-width: 160px;
  min-height: 54px;
  cursor: pointer;
  white-space: nowrap;
}

.button-small .background {
  background: #0d0d0d;
  border-radius: 100px;
  width: 10px;
  height: 10px;
  margin-right: 10px;
}

.frame-1 {
  display: flex;
  align-items: center;
}

.contact-us {
  color: #0d0d0d;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  white-space: nowrap;
}

/* Mobile styles - remove duplicate pressed state */

.button-small:active {
  background: #eef559;
  box-shadow: inset 0 4px 4px rgba(0, 0, 0, 0.25);
}

/* Mobile menu toggle button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
  cursor: pointer;
  z-index: 10;
  position: absolute;
  right: 20px;
  top: 22px;
}

.mobile-menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 3px;
}

/* Mobile heading styles */
.heading-1-q-studio,
.heading-1-q-studio * {
  box-sizing: border-box;
}

.heading-1-q-studio {
  color: #e0e0e0;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 80px;
  line-height: 140px;
  letter-spacing: -2.8px;
  font-weight: 600;
  position: relative;
}

/* Background graph styles for desktop */
/* 
 Adjusting negative margin on background graph image for different screen widths:
 -1920px: -591px
 -1600px: -391px
 -1440px: -320px
 -1366px: -280px
*/
.back-ground-graph-image {
  width: 100%;
  height: 900px;
  object-fit: cover;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin-top: -591px; /* tuned for 1920px screens */
}

@media (max-width: 1600px) {
  .back-ground-graph-image {
    margin-top: -391px;
  }
}

@media (max-width: 1440px) {
  .back-ground-graph-image {
    margin-top: -320px;
  }
}

@media (max-width: 1366px) {
  .back-ground-graph-image {
    margin-top: -280px;
  }
}

/* Mobile Menu Styles */
.mobile-menu-items {
  transition: all 0.3s ease;
  overflow: hidden;
}

.mobile-menu-items a {
  transition: color 0.2s ease;
  text-decoration: none;
  padding: 10px 0;
}

.mobile-menu-items a:hover {
  color: #eef559;
}

@media (max-width: 767px) {
  .mobile-menu-items {
    gap: 35px !important; /* Increased vertical spacing for mobile */
  }

  .mobile-menu-items a {
    font-size: 24px !important;
  }

  .button-small .contact-us {
    font-size: 24px !important;
  }
}

/* Mobile Responsive Styles using absolute positioning and flexbox overlay */
@media (max-width: 767px) {
  /* Only target the navigation menu on mobile */
  .menu-bar-wrapper {
    width: 100%;
    padding: 0 20px;
  }

  .menu-bar-inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 10px 0;
    gap: 20px;
    position: relative;
  }

  .mobile-menu-toggle {
    display: flex;
    position: absolute;
    right: 0;
    top: 15px;
  }

  .logo {
    width: 100%;
    justify-content: flex-start;
    margin-right: 0; /* Reset desktop spacing */
  }

  .menu-items {
    flex-direction: column;
    width: 100%;
    gap: 15px;
    display: none;
    align-items: flex-start;
    margin-right: 0; /* Reset desktop spacing */
  }

  .menu-items.show {
    display: flex;
  }

  .menu-items2 {
    width: 100%;
  }

  .about, .about2 {
    width: 100%;
    text-align: left;
  }

  .button-small {
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
    display: none;
    margin-left: 0;
  }

  .mobile-open .menu-items,
  .mobile-open .button-small {
    display: flex;
  }

  .j-6-venture {
    font-size: 20px;
  }

  .about, .about2, .contact-us {
    font-size: 14px;
  }
}

/* Section 1 Styles */
.section-1 {
  background: #ebf441;
  padding: 100px 0px; /* Base vertical padding */
  display: flex;
  flex-direction: column;
  align-items: center;
}

.main-div {
  max-width: 1410px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px; /* Gap between elements as specified */
  padding: 0 40px; /* Default horizontal padding */
}

/* Responsive padding for different screen sizes */
@media (max-width: 1600px) {
  .main-div {
    padding: 0 60px;
    max-width: 1320px;
  }
}

@media (max-width: 1440px) {
  .main-div {
    padding: 0 80px;
    max-width: 1280px;
  }

  /* Media query: at 1440px or below, hide full, show split */
  .full-sentence {
    display: none;
  }

  .split-sentence {
    display: flex;
  }

  .split-sentence .heading-2-90 {
    display: block;
  }
}

/* Default: show the full sentence, hide the split */
.full-sentence {
  display: block;
  background: #ffffff;
  width: 100%;
  padding: 20px 0;
  position: relative;
}

.split-sentence {
  display: none;
  flex-direction: column;
  gap: 15px;
  width: 100%;
}

/* Frame-6 and Frame-61 styles */
.frame-6, .frame-61 {
  background: #ffffff;
  width: 100%;
  padding: 20px;
  border: none;
  outline: none;
}

/* Remove horizontal padding from full-sentence */
.frame-6.full-sentence {
  padding-left: 0;
  padding-right: 0;
  height: 80px; /* Set fixed height to 80px as per requirement */
  outline: none !important;
  border: none !important;
  background-color: white !important;
  box-shadow: none !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: none;
}

/* Quote text focus prevention - globally prevent focus and selection issues */
.content-4 div, 
.content-4 .heading-2-90,
.split-sentence div,
.split-sentence .heading-2-90 {
  outline: none !important;
  border: none !important;
  background-color: white !important;
  box-shadow: none !important;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  pointer-events: none;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  touch-action: none;
}

/* Content-4 structure */
.content-4 {
  width: 100%;
  height: 80px; /* Set fixed height to 80px as per requirement */
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
  outline: none; /* Remove any outline that might appear as purple */
  border: none; /* Remove any border that might appear */
}

.quote-line-1, .quote-line-2 {
  width: 100%;
}

.seperator, .seperator2 {
  width: 100%;
  height: 19px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 11px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-shrink: 0;
  overflow: visible;
}

.content-1, .content-2, .content-3, .content-4 {
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  box-sizing: border-box;
}

.frame-5, .frame-6, .frame-61 {
  background: #ffffff;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

/* Height is already defined in the main .frame-6.full-sentence class */

.heading-2-90 {
  color: #151515;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 54px;
  line-height: 80px;
  letter-spacing: -2.8px;
  font-weight: 600;
  position: relative;
  background: #FFFFFF;
  border: none;
  outline: none;
}

/* Section 2 Styles */
.section-2 {
  background: #ffffff;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
}

.frame-17 {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.frame-16 {
  text-align: center;
}

.built-for-the-challenges-modern-seo-teams-face {
  font-family: 'Urbanist', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #151515;
  font-weight: 600;
  max-width: 920px;
  margin: 0 auto;
}

.subheadline {
  max-width: 700px;
  margin: 24px auto 0;
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  line-height: 1.5;
  color: #868b91;
  font-weight: 500;
}

.card-container {
  display: flex;
  justify-content: center;
  gap: 170px; /* Gap between the two column divs */
  width: 100%;
}

.card-column {
  display: flex;
  flex-direction: column;
  gap: 150px; /* Gap between cards within a column */
}

.card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 375px; /* Fixed width of each card as specified */
}

.icon-title {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

.heading-3 {
  font-family: 'Urbanist', sans-serif;
  font-size: 22px;
  line-height: 1.4;
  color: #151515;
  font-weight: 600;
}

.description {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #868b91;
  font-weight: 500;
}

.frame {
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  position: relative;
  overflow: visible;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .main-div {
    padding: 0 20px;
    width: calc(100% - 40px);
  }

  .heading-2-90 {
    font-size: 32px;
    line-height: 1.3;
    letter-spacing: -1.5px;
  }

  .section-1 {
    padding: 60px 0px;
  }

  .content-1, .content-2, .content-3, .content-4 {
    flex-wrap: wrap;
    width: 100%;
  }

  .frame-5 {
    max-width: 100%;
    width: 100%;
  }

  /* Section 2 Mobile Styles */
  .section-2 {
    padding: 60px 20px;
  }

  .built-for-the-challenges-modern-seo-teams-face {
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: -0.5px;
  }

  .subheadline {
    font-size: 18px;
    line-height: 1.4;
  }

  .card-container {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }

  .card-column {
    gap: 40px;
  }

  .card {
    width: 100%;
    max-width: 375px;
  }

  .icon-title {
    gap: 12px;
  }

  .frame {
    width: 70px;
    height: 70px;
  }

  /* Keep these mobile menu styles */
  .menu-container {
    padding: 24px;
  }

  .mobile-menu-items {
    font-size: 24px;
    margin-bottom: 16px;
  }

  .hero-container {
    margin-top: 95px;
  }

  .title-text {
    font-size: 80px;
    line-height: 1;
    margin-bottom: 20px;
  }

  .tagline-text {
    font-size: 22px;
    padding-left: 50px;
  }
}

/* Section 3 Styles */
.section-3,
.section-3 * {
  box-sizing: border-box;
}

.section-3 {
  background: #0d0d0d;
  padding: 100px 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* Container for Section 3 content */
.section-3-content {
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
}

/* Responsive padding for Section 3 */
@media (min-width: 1921px) {
  .section-3 {
    padding: 100px 255px;
  }
}

@media (max-width: 1600px) {
  .section-3 {
    padding: 100px 60px;
  }
  .section-3-content {
    max-width: 1320px;
  }
}

@media (max-width: 1440px) {
  .section-3 {
    padding: 100px 80px;
  }
  .section-3-content {
    max-width: 1280px;
  }
}

.header-and-description {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.deep-thinking-real-world-impact {
  color: #ffffff;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -0.62px;
  font-weight: 600;
  position: relative;
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.we-dont-just-execute {
  color: #ffffff;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
  max-width: 700px;
  width: 100%;
  margin: 0 auto;
}

.column-header {
  border-style: solid;
  border-color: #ffffff;
  border-width: 0px 0px 2px 0px;
  padding: 0px 0px 20px 0px;
  display: flex;
  flex-direction: row;
  gap: 30px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

.frame-19 {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.ellipse-1 {
  background: #FFFFFF !important;
  border-radius: 50%;
  width: 16px;
  height: 16px;
  position: relative;
}

.frame-7,
.frame-7 * {
  box-sizing: border-box;
}

.frame-7 {
  padding: 10px 10px 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.frame-18 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  position: relative;
  flex: 1;
}

.heading-3-web-design {
  color: #ffffff;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 26px;
  line-height: 41.6px;
  letter-spacing: -0.8px;
  font-weight: 600;
  position: relative;
  flex: 1;
}

.whitepaper-1, .whitepaper-2, .whitepaper-3, .whitepaper-4, .whitepaper-5 {
  border-style: solid;
  border-color: #ffffff;
  border-width: 0px 0px 2px 0px;
  padding: 10px 10px 50px 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  position: relative;
}

.frame-23 {
  display: flex;
  flex-direction: row;
  gap: 18px;
  align-items: flex-end;
  justify-content: flex-start;
  align-self: stretch;
  position: relative;
}

.frame-25 {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  justify-content: flex-end;
  width: 100%;
  max-width: 1100px;
  position: relative;
}

.frame-72,
.frame-72 * {
  box-sizing: border-box;
}

.frame-72 {
  padding: 10px 10px 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.heading-3-web-design2 {
  color: #ffffff;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 26px;
  line-height: 41.6px;
  letter-spacing: -0.8px;
  font-weight: 600;
  position: relative;
  flex: 1;
}

.container {
  padding: 10px 10px 10px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  height: 47px;
  position: relative;
  overflow: auto;
}

.whitepaper-description {
  color: #ffffff;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
}

/* Button variants */
.button-broad,
.button-broad *,
.button-broad2,
.button-broad2 *,
.property-1-default,
.property-1-default *,
.property-1-hover,
.property-1-hover *,
.property-1-pressed,
.property-1-pressed * {
  box-sizing: border-box;
}

/* Default button state */
.property-1-default,
.button-broad, 
.button-broad2 {
  background: #eef559;
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  gap: 7px; /* Reduced gap to allow more space for text */
  align-items: center;
  justify-content: flex-start;
  min-width: 280px;
  max-width: 280px;
  width: 280px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateY(0);
  outline: none;
  border: none;
  box-sizing: border-box;
}

/* Hover state */
.property-1-hover,
.property-1-default:hover,
.button-broad:hover, 
.button-broad2:hover {
  background: #eef559;
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  gap: 7px; /* Reduced gap to allow more space for text */
  align-items: center;
  justify-content: flex-start;
  min-width: 280px;
  max-width: 280px;
  width: 280px;
  position: relative;
  box-shadow: 0px 6px 12px 0px rgba(238, 245, 89, 0.35);
  transform: translateY(-2px);
  outline: none;
  border: none;
  box-sizing: border-box;
}

/* Hover state - updated with yellow drop shadow */
.property-1-pressed,
.property-1-default:active,
.button-broad:active, 
.button-broad2:active {
  background: #eef559;
  padding: 10px 10px;
  display: flex;
  flex-direction: row;
  gap: 7px; /* Reduced gap to allow more space for text */
  align-items: center;
  justify-content: flex-start;
  min-width: 280px;
  max-width: 280px;
  width: 280px;
  position: relative;
  box-shadow: inset 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  transform: translateY(1px);
  transition: all 0.1s ease;
  outline: none;
  border: none;
  box-sizing: border-box;
}

.arrow {
  display: inline-block;
}

.apply-these-lessons-to-your-team {
  color: #000000;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px; /* Restored to original size */
  line-height: 27px;
  letter-spacing: -0.02em; /* Slightly tighter letter spacing */
  font-weight: 500;
  position: relative;
  white-space: nowrap;
  overflow: visible; /* Visible to avoid text cutoff */
  transition: all 0.3s ease-in-out;
  display: flex;
  align-items: center;
  gap: 5px;
  width: calc(100% - 15px); /* Reduced space for arrow */
  outline: none;
  padding-right: 2px; /* Ensure some space on the right */
  user-select: none; /* Prevent selection */
}

/* Section 3 Mobile Styles */
@media (max-width: 768px) {
  .section-3 {
    padding: 60px 20px;
  }

  .deep-thinking-real-world-impact {
    font-size: 38px;
    line-height: 1.2;
    width: 100%;
  }

  .we-dont-just-execute {
    font-size: 16px;
    line-height: 1.5;
    width: 100%;
    padding: 0 10px;
  }

  .column-header, .whitepaper-1, .whitepaper-2, .whitepaper-3, .whitepaper-4, .whitepaper-5 {
    width: 100%;
    padding: 10px 0 30px 0;
  }

  .frame-23 {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }

  .frame-25 {
    width: 100%;
  }

  .heading-3-web-design2 {
    width: 100%;
    font-size: 20px;
    line-height: 1.3;
    letter-spacing: -0.5px;
  }

  .button-broad, .button-broad2, 
  .property-1-default, .property-1-hover, .property-1-pressed {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  .whitepaper-description {
    font-size: 15px;
    line-height: 1.5;
  }

  .container {
    height: auto;
    padding-bottom: 15px;
  }

  .frame-72 {
    padding-bottom: 10px;
  }

  /* Make column header more compact on mobile */
  .column-header {
    gap: 15px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }

  .ellipse-1 {
    width: 12px;
    height: 12px;
    background: #FFFFFF !important;
  }

  .heading-3-web-design {
    font-size: 22px;
  }

  /* Improve header spacing */
  .header-and-description {
    gap: 20px;
    margin-bottom: 30px;
  }
}

/* Small phones */
@media (max-width: 480px) {
  .deep-thinking-real-world-impact {
    font-size: 32px;
    line-height: 1.2;
  }

  .we-dont-just-execute {
    font-size: 15px;
  }

  .heading-3-web-design2 {
    font-size: 18px;
  }

  .whitepaper-description {
    font-size: 14px;
  }

  .apply-these-lessons-to-your-team {
    font-size: 14px;
  }

  .section-3 {
    padding: 50px 15px;
  }
}

/* Section 4 reuses Section 2's styling */

/* Section 5 Styles - SEO Performance Metrics */
.section-5 {
  background-color: #0d0d0d;
  padding: 100px 40px;
  display: flex;
  justify-content: center;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.section-5-content {
  max-width: 1410px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.section-5-header {
  text-align: center;
  position: relative;
  padding-bottom: 40px;
}

.section-5-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 48px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-5-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  color: #e0e0e0;
  max-width: 700px;
  margin: 0 auto;
}

.metrics-grid {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.metrics-row {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.metric-card {
  flex: 1;
  width: 690px;
  background-color: #0d0d0d;
  border-radius: 0;
  padding: 25px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  border: 1px solid #2e2e2e;
  overflow: hidden;
}

/* Graph styles for first card */
.graph,
.graph * {
  box-sizing: border-box;
}

.graph,
.graph * {
  box-sizing: border-box;
}

.graph {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 150px;
  padding: 20px;
  background-color: #0d0d0d;
  width: 100%;
  position: relative;
}

.frame-2,
.frame-2 * {
  box-sizing: border-box;
}

.frame-2 {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 242.79px;
  position: relative;
}

.frame-99 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.subtract {
  align-self: stretch;
  flex-shrink: 0;
  height: 12px;
  position: relative;
  overflow: visible;
}

.operate-40 {
  color: #e0e0e0;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
  height: 30.88px;
  margin-top: 10px; /* Maintain 10px gap as specified */
}

.frame-98 {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  width: 1px;
  height: auto;
  position: relative;
  overflow: visible;
}

.frame-79 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.frame-77 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

._60-budget-free {
  color: #e0e0e0;
  text-align: right;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.frame-78 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  height: 12px;
  position: relative;
}

.rectangle-2 {
  background: #eef559;
  border-radius: 15px;
  flex-shrink: 0;
  width: 388px;
  height: 12px;
  position: relative;
}

/* Frame components for the 8X card */
.frame-88,
.frame-88 * {
  box-sizing: border-box;
}

.frame-88 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  height: 150px;
}

.frame-89,
.frame-89 * {
  box-sizing: border-box;
}

.frame-89 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.frame-86,
.frame-86 * {
  box-sizing: border-box;
}

.frame-86 {
  display: flex;
  flex-direction: row;
  gap: 13px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.frame-84,
.frame-84 * {
  box-sizing: border-box;
}

.frame-84 {
  display: flex;
  flex-direction: column;
  gap: 45px;
  align-items: flex-end;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 127px;
  position: relative;
}

.frame-83,
.frame-83 * {
  box-sizing: border-box;
}

.frame-83 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.j-6 {
  color: #e0e0e0;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
  align-self: stretch;
}

.frame-82,
.frame-82 * {
  box-sizing: border-box;
}

.frame-82 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.inhouse-team-or-other-agencies {
  color: #e0e0e0;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.frame-85,
.frame-85 * {
  box-sizing: border-box;
}

.frame-85 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}

.frame-87,
.frame-87 * {
  box-sizing: border-box;
}

.frame-87 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.frame-80,
.frame-80 * {
  box-sizing: border-box;
}

.frame-80 {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
}

.frame-81,
.frame-81 * {
  box-sizing: border-box;
}

.frame-81 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 40.23px;
  height: auto;
  position: relative;
  overflow: visible;
}

.vector {
  width: 60.98%;
  height: 75.76%;
  position: absolute;
  right: 23.78%;
  left: 15.24%;
  bottom: 20.45%;
  top: 3.79%;
  overflow: visible;
}

.metric-chart {
  height: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.chart-labels {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}

.chart-label {
  font-size: 14px;
  font-weight: 500;
  color: #e0e0e0;
}

.chart-label.purple {
  color: #6c63ff;
}

.chart-label.yellow {
  color: #eef559;
}

.progress-container {
  height: 10px;
  width: 100%;
  background-color: #2e2e2e;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 5px;
}

.progress-bar.purple {
  background-color: #6c63ff;
  z-index: 1;
}

.progress-bar.yellow {
  background-color: #eef559;
  z-index: 0;
}

.arrow-container {
  display: flex;
  justify-content: flex-start;
  gap: 8px;
  margin-top: 20px;
}

.arrow-icon {
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 15px solid #eef559;
}

.arrow-icon.blue {
  border-left-color: #6c63ff;
}

.speedometer-10-x-faster-1,
.speedometer-10-x-faster-1 * {
  box-sizing: border-box;
}

.speedometer-10-x-faster-1 {
  background: #0d0d0d;
  flex: 1;
  width: 346px;
  height: 150px;
  position: relative;
}

.vector {
  width: 60.98%;
  height: 75.76%;
  position: absolute;
  right: 23.78%;
  left: 15.24%;
  bottom: 20.45%;
  top: 3.79%;
  overflow: visible;
}

.vector2 {
  width: 52.04%;
  height: 75.74%;
  position: absolute;
  right: 32.71%;
  left: 15.24%;
  bottom: 20.45%;
  top: 3.8%;
  overflow: visible;
}

._10-x-faster {
  color: #e0e0e0;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  font-weight: 400;
  position: absolute;
  right: 6.71%;
  left: 68.9%;
  width: 24.39%;
  bottom: 83.33%;
  top: 0%;
  height: 16.67%;
}

.months {
  color: #e0e0e0;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  right: 77.74%;
  left: 8.23%;
  width: 14.02%;
  bottom: 3.03%;
  top: 84.09%;
  height: 12.88%;
}

.days {
  color: #e0e0e0;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  font-weight: 400;
  position: absolute;
  right: 17.68%;
  left: 72.87%;
  width: 9.45%;
  bottom: 0%;
  top: 87.12%;
  height: 12.88%;
}

.vector3 {
  width: 21.38%;
  height: 37.81%;
  position: absolute;
  right: 35.93%;
  left: 42.68%;
  bottom: 19.7%;
  top: 42.48%;
  transform: translate(7.27px, -13.61px);
  overflow: visible;
}

.vector4 {
  width: 3.05%;
  height: 7.56%;
  position: absolute;
  right: 53.6%;
  left: 43.35%;
  bottom: 15.69%;
  top: 76.74%;
  transform: translate(0.77px, -0.97px);
  overflow: visible;
}

.graph.speedometer-graph {
  padding: 0px 115px 0px 115px; /* Desktop padding */
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 150px;
  position: relative;
}

.bar-chart-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
}

.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 80px;
  width: 100%;
}

.bar {
  flex: 1;
  background-color: white;
  border-radius: 2px;
}

.bar.j6-bar {
  background-color: #eef559;
}

.bar-chart-label {
  font-size: 12px;
  color: #eef559;
  margin-top: 5px;
  text-align: right;
  width: 100%;
}

.graph-4,
.graph-4 * {
  box-sizing: border-box;
}

.graph-4 {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  height: 150px;
  background: #0D0D0D; /* Dark background as specified */
  max-width: 640px; /* Ensure it doesn't exceed container width on desktop */
  margin: 0 auto; /* Center it */
  width: 100%; /* Take full width */
}

.graph {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 40px 0;
  background: #0D0D0D;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: 150px;
  gap: 0;
}

.frame-5 {
  display: flex;
  flex-direction: row;
  gap: 35px;
  align-items: flex-end;
  justify-content: center;
  flex-shrink: 0;
  height: auto;
  position: relative;
  overflow: visible;
  background: #FFFFFF; /* White background as requested */
}

.frame-97 {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.frame-94 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 235px;
  position: relative;
}

.frame-93 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.j-6-5-x {
  color: #e0e0e0;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  position: relative;
}

.frame-96 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  align-self: stretch;
  flex: 1;
  position: relative;
}

.metric-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
  width: 640px;
  padding: 40px 0 50px 0;
}

.metric-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  line-height: 1.2;
  font-weight: 600;
}

.metric-description {
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #a0a0a0;
}

/* Specific styling for section-5 graph elements */
.graph-4 .frame-5 {
  background: #0D0D0D !important; /* Override the white background for this specific element */
}

/* Budget Card Styles */
.budget-card-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  width: 40%;
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-right: 20px;
  box-sizing: border-box;
}

.budget-card-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  width: 60%;
  position: relative;
  z-index: 1;
  padding-left: 20px;
  padding-right: 10px;
  box-sizing: border-box;
}

.budget-divider-container {
  position: absolute;
  height: 151px;
  width: 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 41.3%; /* Position at exactly 285px from the left side of the 690px container */
  z-index: 2;
}

.budget-divider-svg {
  height: 151px;
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.operate-box {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.purple-bar {
  width: 100%;
  height: 12px;
  background-color: #6C63FF;
  border-radius: 6px;
}

.operate-text {
  color: #e0e0e0;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin-top: 10px;
  margin-left: 0;
  white-space: nowrap;
}

.budget-free-text {
  color: #e0e0e0;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  font-weight: 400;
  text-align: right;
  margin-bottom: 10px;
  margin-right: 0;
  white-space: nowrap;
}

.yellow-bar {
  width: 100%;
  height: 12px;
  background-color: #eef559;
  border-radius: 6px;
}

/* Section 6 Styles */
.section-6,
.section-6 * {
  box-sizing: border-box;
}

.section-6 {
  background: #ffffff;
  padding: 100px 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-6 .frame-17 {
  display: flex;
  flex-direction: column;
  gap: 60px;
  align-items: flex-start;
  justify-content: flex-start;
  flex: 1;
  position: relative;
}

.section-6 .frame-16 {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 1040px;
  margin: 0 auto;
}

.section-6 .heading-2,
.section-6 .heading-2 * {
  box-sizing: border-box;
}

.section-6 .heading-2 {
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.built-in-ready-to-run-advantage {
  color: #151515;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 62px;
  line-height: 74.4px;
  letter-spacing: -0.62px;
  font-weight: 600;
  position: relative;
  width: 900px;
}

.section-6 .subheadline,
.section-6 .subheadline * {
  box-sizing: border-box;
}

.section-6 .subheadline {
  padding: 0;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.what-s-included-isn-t-just-features-it-s-a-tightly-engineered-system-designed-for-speed-precision-and-growth {
  color: #868b91;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
  flex: 1; /* Changed from width: 700px to flex: 1 to match the provided CSS */
}

.content,
.content * {
  box-sizing: border-box;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 140px;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  width: 1040px;
  margin: 0 auto;
  padding-top: 0;
}

.frame-106 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 450px;
  position: relative;
}

.frame-102,
.frame-103,
.frame-104,
.frame-105 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.frame-101 {
  display: flex;
  flex-direction: column;
  gap: 11px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  height: 154px;
  position: relative;
}

.header {
  padding: 10px 10px 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.heading-3-web-design {
  color: #ffffff;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 26px;
  line-height: 41.6px;
  letter-spacing: -0.8px;
  font-weight: 600;
  position: relative;
  flex: 1;
}

.section-6 .description {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-6 .description > div {
  color: #868b91;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
  align-self: stretch;
}

/* Section 6 specific heading style */
.section-6-heading {
  color: #151515 !important;
}

.frame-100 {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.feature {
  border-style: solid;
  border-color: #676767;
  border-width: 0px 0px 1px 0px;
  padding: 0px 0px 20px 0px;
  display: flex;
  flex-direction: row;
  gap: 140.52px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.feature > div {
  color: #151515;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 14px;
  line-height: 22.4px;
  font-weight: 400;
  position: relative;
}

.frame-107 {
  display: flex;
  flex-direction: column;
  gap: 59px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 450px;
  position: relative;
}

/* Section 5 Mobile Styles */
@media (max-width: 768px) {
  .section-5 {
    padding: 60px 20px;
  }

  .section-5-title {
    font-size: 36px;
  }

  .section-5-subtitle {
    font-size: 16px;
  }

  .metrics-row {
    flex-direction: column;
  }

  .metric-card {
    width: 100%;
    padding: 20px;
  }

  .metric-info {
    width: 100%;
    padding: 30px 0 40px 0;
  }

  .metric-title {
    font-size: 20px;
  }

  .metric-description {
    font-size: 14px;
  }

  .graph,
  .frame-88,
  .graph-4,
  .speedometer-graph {
    transform: scale(0.75);
    transform-origin: center;
    overflow: visible;
    width: 100%;
    margin: 0 auto 20px;
    max-width: 100%;
    display: flex;
    justify-content: center;
  }
  
  .frame-5,
  .frame-2,
  .frame-79,
  .subtract,
  .rectangle-2 {
    width: 100% !important;
  }
  
  .section-5-chart {
    background: #0D0D0D !important; /* Override to keep dark background */
    max-width: 100%;
    height: auto !important;
  }
  
  /* Add styling for specific section-5 graph elements */
  .graph-4 .frame-5 {
    background: #0D0D0D !important; /* Override the white background for this specific element */
    padding: 0 !important; /* Remove the 79px padding */
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Ensure graph-4 takes full width */
  .graph-4 {
    max-width: 100% !important;
    padding: 0 !important;
  }
  
  /* Remove padding on speedometer graph for mobile */
  .graph.speedometer-graph {
    padding: 0 !important;
  }
  
  .speedometer-10-x-faster-1, 
  .speedometer-graph {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 180px;
    padding: 0;
    margin-bottom: 20px;
}

.mobile-speedometer {
    width: 100% !important;
    overflow: visible;
    transform: scale(0.85);
    transform-origin: center;
  }
  
  .vector, .vector2, .vector3, .vector4 {
    transform: scale(0.95);
    transform-origin: center;
  }
  
  /* Fix padding in the velocity graph (card 2) */
  .frame-88,
  .frame-89,
  .frame-86,
  .frame-87,
  .frame-84 {
    padding: 0 !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 100% !important;
  }
  
  .frame-80 {
    width: 100% !important;
    max-width: 100% !important;
  }
  
  /* Fix text alignment in Card 2 */
  .j-6, .inhouse-team-or-other-agencies {
    font-size: 14px !important;
  }
  
  /* Make card 1 graph fit properly */
  /* Mobile styles for budget card */
  .graph {
    flex-direction: column;
    padding: 20px 10px;
  }
  
  .budget-card-left,
  .budget-card-right {
    width: 100%;
    align-items: center;
    padding: 10px;
  }
  
  .budget-divider-container {
    width: 100%;
    height: 30px;
    margin: 15px 0;
    left: 0;
    position: relative;
  }
  
  .budget-divider-svg {
    width: 100%;
    height: 30px;
    transform: rotate(90deg);
  }
  
  .purple-bar,
  .yellow-bar {
    width: 100%;
    max-width: 280px;
  }
  
  .operate-text,
  .budget-free-text {
    text-align: center;
    width: 100%;
    margin: 10px 0;
  }

  /* Section 6 Mobile Styles */
  .section-6 {
    padding: 60px 20px;
  }

  .built-in-ready-to-run-advantage {
    font-size: 42px;
    line-height: 50px;
    width: 100%;
  }

  .what-s-included-isn-t-just-features-it-s-a-tightly-engineered-system-designed-for-speed-precision-and-growth {
    font-size: 18px;
    width: 100%;
  }

  .section-6 .frame-16,
  .content {
    width: 100%;
    margin: 0;
    padding: 0;
    flex-direction: column;
    gap: 50px;
  }

  .frame-106,
  .frame-107 {
    width: 100%;
  }

  .frame-101 {
    height: auto;
    min-height: 154px;
  }
  

}

/* Section 7 Styles */
.section-7 {
  background: #0d0d0d;
  padding: 100px 20px 150px 20px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: visible;
  height: auto;
  margin-bottom: 0;
}

.section-7-container {
  display: flex;
  flex-direction: row;
  gap: 70px;
  max-width: 1410px;
  width: 100%;
}

.section-7-left {
  flex: 1;
  max-width: 670px;
}

.section-7-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 62px;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 32px;
}

.section-7-subtitle {
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  line-height: 1.4;
  color: #868b91;
}

.section-7-cards {
  flex: 1;
  max-width: 670px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.section-7-card {
  background: #0d0d0d;
  border: 1px solid #28282b;
  border-radius: 10px;
  padding: 30px 20px;
  transition: all 0.3s ease;
}

.section-7-card.active {
  border-color: #eef559;
  box-shadow: 0 10px 30px rgba(238, 245, 89, 0.25);
}

.section-7-card-icon {
  margin-bottom: 20px;
}

.frame-1000001118,
.frame-1000001118 * {
  box-sizing: border-box;
}

.frame-1000001118 {
  background: #eef559;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  position: relative;
}

._1, ._2, ._3, ._4, ._5 {
  color: #0d0d0d;
  text-align: center;
  font-family: 'Urbanist-Medium', sans-serif;
  font-size: 56px;
  line-height: 0px;
  font-weight: 500;
  position: relative;
  width: 21px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-7-card-title {
  font-family: 'Urbanist', sans-serif;
  font-size: 36px;
  line-height: 55px;
  color: #fff;
  margin-bottom: 15px;
}

.section-7-card-description {
  font-family: 'Urbanist', sans-serif;
  font-size: 20px;
  line-height: 27px;
  color: #868b91;
  margin-bottom: 15px;
}

.section-7-card-bullets {
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #868b91;
  padding-left: 0;
  list-style: none;
}

.section-7-card-bullets li {
  margin-bottom: 10px;
}

/* Sticky behavior on desktop limited to container height */
@media (min-width: 769px) {
  .section-7-container {
    position: relative;
  }
  
  .section-7-left {
    position: sticky;
    top: 100px;
    align-self: flex-start;
    height: fit-content;
  }
}

/* ---------- MOBILE ---------- */
@media (max-width: 768px) {
  .section-7-left {
    position: static;
    top: auto;
  }
  .section-7-container {
    flex-direction: column;
    gap: 40px;
  }

  .section-7-title {
    font-size: 34px;
    line-height: 40px;
    text-align: left;
  }

  .section-7-subtitle {
    font-size: 18px;
    line-height: 25px;
    text-align: left;
  }

  .section-7-cards {
    gap: 30px;
  }

  .section-7-card-title {
    font-size: 26px;
    line-height: 34px;
    text-align: left;
  }

  .section-7-card-description {
    font-size: 16px;
    line-height: 24px;
    text-align: left;
  }

  .section-7-card-bullets {
    font-size: 15px;
    line-height: 22px;
    text-align: left;
  }
}

/* Button states */
.property-1-default,
.property-1-hover-green,
.property-1-hover-black,
.property-1-black-background {
  border-radius: 13.33px;
  border-style: solid;
  border-width: 1px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  width: fit-content;
}

.property-1-default {
  background: #e1f23a;
  border-color: #222325;
}

.property-1-hover-green {
  background: #e1f23a;
  border-color: #222325;
  box-shadow: 0px 3px 6px 0px rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.property-1-hover-black {
  background: #222325;
  border-color: #e1f23a;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25);
}

.property-1-black-background {
  background: #222325;
  border-color: #e1f23a;
  padding-right: 45px;
  position: relative;
}

.property-1-default, .property-1-hover-green, .property-1-hover-black {
  padding: 12px 20px;
}

.property-1-hover-black .book-a-strategy-session,
.property-1-black-background .book-a-strategy-session {
  color: #e1f23a;
}

.property-1-default .book-a-strategy-session,
.property-1-hover-green .book-a-strategy-session {
  color: #222325;
}

.strategy-button {
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  outline: none;
}

.button-content {
  border-radius: 13.33px;
  border: 1px solid;
  display: flex;
  align-items: center;
  position: relative;
  transition: all 0.2s ease;
}

.button-content span {
  font-family: 'Urbanist', sans-serif;
  font-size: 20.47px;
  line-height: 36px;
  font-weight: 700;
  white-space: nowrap;
  padding: 12px 20px;
}

.button-content.default {
  background-color: #e1f23a;
  border-color: #222325;
}

.button-content.default span {
  color: #222325;
}

.button-content.hover-green {
  background-color: #e1f23a;
  border-color: #222325;
  box-shadow: 0px 3px 6px 0px rgba(255, 255, 255, 0.52);
  transform: translateY(-2px);
}

.button-content.hover-green span {
  color: #222325;
}

.button-content.hover-black {
  background-color: #222325;
  border-color: #e1f23a;
  box-shadow: 0px 4px 4px 0px rgba(255, 255, 255, 0.25);
}

.button-content.hover-black span {
  color: #e1f23a;
}

.button-content.black-background {
  background-color: #222325;
  border-color: #e1f23a;
  padding-right: 45px;
}

.button-content.black-background span {
  color: #e1f23a;
}

.button-content.black-background svg {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

.section-7 .left-div {
  display: flex;
  flex-direction: column;
  gap: 23px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 670px;
  max-width: 670px;
  position: relative;
  padding-left: 0;
  box-sizing: border-box;
}

.section-7 .header {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-7 .heading-2 {
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.the-workflow-behind-every-search-win {
  color: #ffffff;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -0.62px;
  font-weight: 600;
  position: relative;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.section-7 .subheadline {
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  max-width: 1040px;
  width: 100%;
  margin: 0 auto;
}

.a-precise-multi-layered-loop-where-strategy-speed-and-human-ai-systems-work-in-sync-uncovering-real-search-opportunities-producing-original-content-at-scale-optimizing-with-technical-precision-and-continuously-improving-based-on-live-performance-data {
  color: #868b91;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  flex: 1;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

.button {
  background: #e1f23a;
  border-radius: 13.33px;
  border-style: solid;
  border-color: #222325;
  border-width: 1px;
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 21px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.button:hover {
  box-shadow: 0 6px 15px rgba(225, 242, 58, 0.5);
  transform: translateY(-2px);
}

.book-a-strategy-session {
  color: #222325;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 20.47px;
  line-height: 36px;
  font-weight: 700;
  position: relative;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 10px;
}

.group-1 {
  flex-shrink: 0;
  width: 51.83px;
  height: 51.83px;
  position: static;
}

.div-arrow-wrapper {
  border-radius: 8px;
  width: 51.83px;
  height: 51.83px;
  position: absolute;
  left: 276.79px;
  top: 12px;
  overflow: hidden;
}

._649-bf-0-cf-942109-f-7-fdfd-23-ae-arrow-20-black-20-1-svg {
  height: 86.02px;
  position: absolute;
  right: 0px;
  left: -34.19px;
  top: calc(50% - 25.92px);
  overflow: hidden;
}

._649-bf-0-cf-942109-f-7-fdfd-23-ae-arrow-20-black-20-1-svg-fill {
  width: 86.02px;
  height: 86.02px;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: hidden;
}

._649-bf-0-cf-942109-f-7-fdfd-23-ae-arrow-20-black-20-1-svg2 {
  width: 86.02px;
  height: 86.02px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: hidden;
}

/* Section 8 Styles */
.section-8 {
  background: #ffffff;
  padding: 100px 20px 150px;
  position: relative;
  z-index: 0;
}

.section-8 .frame-17 {
  display: flex;
  flex-direction: column;
  gap: 80px;
  width: 100%;
  max-width: 1410px;
  margin: 0 auto;
}

.section-8 .frame-16 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1040px;
  margin: 0 auto;
}

.section-8 .heading-2 {
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-8 .subheadline {
  padding: 10px 0px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.behind-every-win-a-repeatable-system {
  color: #151515;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 62px;
  line-height: 1.2;
  letter-spacing: -0.62px;
  font-weight: 600;
  position: relative;
  flex: 1;
}

.these-arent-one-off-success-stories-theyre-proof-of-a-system-built-to-deliver-consistent-scalable-seo-results-across-industries {
  color: #565656;
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  flex: 1;
}

.section-8 .content {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 1410px;
}

.section-8 .frame-106,
.section-8 .frame-107 {
  display: flex;
  flex-direction: row;
  gap: 70px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
}

.section-8 .frame-102,
.section-8 .frame-104,
.section-8 .frame-103,
.section-8 .frame-105 {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 670px;
  flex-shrink: 0;
  position: relative;
}

.section-8 .frame-101 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  height: auto;
}

.section-8 .header {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-8 .description {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.chips,
.chips * {
    box-sizing: border-box;
}

.chips {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    margin: 20px 0px 20px 0px; /* Consistent margin with frame-1000001115 */
}

.frame-1000001111 {
    background: #ffcbd7;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.d-2-c-wellness {
    color: #151515;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.graph-1,
.graph-1 * {
    box-sizing: border-box;
}

.graph-1 {
    background: #ffffff;
    flex-shrink: 0;
    height: 430px;
    width: 100%;
    position: relative;
    overflow: hidden;
    margin-bottom: 0px; /* Consistent with other graphs */
    aspect-ratio: 430/275;
}

.vector {
    width: 77.61%;
    height: 69.46%;
    position: absolute;
    right: 5.97%;
    left: 16.42%;
    bottom: 21.24%;
    top: 9.3%;
    overflow: visible;
}

.vector2 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 83.13%;
    left: 15.97%;
    bottom: 23.02%;
    top: 75.58%;
    overflow: visible;
}

.vector3 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 76.5%;
    left: 22.6%;
    bottom: 17.8%;
    top: 80.8%;
    overflow: visible;
}

.speedometer-10-x-faster-1,
.speedometer-10-x-faster-1 * {
    box-sizing: border-box;
}

.speedometer-10-x-faster-1 {
    background: #0d0d0d;
    flex: 1;
    position: relative;
}

.vector {
    width: 60.98%;
    height: 75.76%;
    position: absolute;
    right: 23.78%;
    left: 15.24%;
    bottom: 20.45%;
    top: 3.79%;
    overflow: visible;
}

.vector2 {
    width: 52.04%;
    height: 75.74%;
    position: absolute;
    right: 32.71%;
    left: 15.24%;
    bottom: 20.45%;
    top: 3.8%;
    overflow: visible;
}

._10-x-faster {
    color: #e0e0e0;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 18px;
    font-weight: 400;
    position: absolute;
    right: 6.71%;
    left: 68.9%;
    width: 24.39%;
    bottom: 83.33%;
    top: 0%;
    height: 16.67%;
}

.months {
    color: #e0e0e0;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    right: 77.74%;
    left: 8.23%;
    width: 14.02%;
    bottom: 3.03%;
    top: 84.09%;
    height: 12.88%;
}

.days {
    color: #e0e0e0;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 14px;
    font-weight: 400;
    position: absolute;
    right: 17.68%;
    left: 72.87%;
    width: 9.45%;
    bottom: 0%;
    top: 87.12%;
    height: 12.88%;
}

.vector3 {
    width: 21.38%;
    height: 37.81%;
    position: absolute;
    right: 35.93%;
    left: 42.68%;
    bottom: 19.7%;
    top: 42.48%;
    transform: translate(7.27px, -13.61px);
    overflow: visible;
}

.vector4 {
    width: 3.05%;
    height: 7.56%;
    position: absolute;
    right: 53.6%;
    left: 43.35%;
    bottom: 15.69%;
    top: 76.74%;
    transform: translate(0.77px, -0.97px);
    overflow: visible;
}

/* Section 8 Graph Styles */
.section8-graph,
.section8-graph * {
    box-sizing: border-box;
}

.section8-graph {
    background: #ffffff;
    flex-shrink: 0;
    height: 430px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.section8-vector {
    width: 77.61%;
    height: 69.46%;
    position: absolute;
    right: 5.97%;
    left: 16.42%;
    bottom: 21.24%;
    top: 9.3%;
    overflow: visible;
}

.section8-vector2 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 83.13%;
    left: 15.97%;
    bottom: 23.02%;
    top: 75.58%;
    overflow: visible;
}

.section8-vector3 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 76.12%;
    left: 22.99%;
    bottom: 20.47%;
    top: 78.14%;
    overflow: visible;
}

.section8-vector4 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 68.96%;
    left: 30.15%;
    bottom: 27.91%;
    top: 70.7%;
    overflow: visible;
}

.section8-vector5 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 61.94%;
    left: 37.16%;
    bottom: 35.35%;
    top: 63.26%;
    overflow: visible;
}

.section8-vector6 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 54.93%;
    left: 44.18%;
    bottom: 50.23%;
    top: 48.37%;
    overflow: visible;
}

.section8-vector7 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 47.91%;
    left: 51.19%;
    bottom: 75.12%;
    top: 23.49%;
    overflow: visible;
}

.section8-vector8 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 40.75%;
    left: 58.36%;
    bottom: 90%;
    top: 8.6%;
    overflow: visible;
}

.section8-vector9 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 33.73%;
    left: 65.37%;
    bottom: 60.23%;
    top: 38.37%;
    overflow: visible;
}

.section8-vector10 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 26.72%;
    left: 72.39%;
    bottom: 65.12%;
    top: 33.49%;
    overflow: visible;
}

.section8-vector11 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 19.7%;
    left: 79.4%;
    bottom: 70.23%;
    top: 28.37%;
    overflow: visible;
}

.section8-vector12 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 12.54%;
    left: 86.57%;
    bottom: 80%;
    top: 18.6%;
    overflow: visible;
}

.section8-vector13 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 5.52%;
    left: 93.58%;
    bottom: 65.12%;
    top: 33.49%;
    overflow: visible;
}

.section8-line-7 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 52.09%;
    height: 0%;
    position: absolute;
    right: 36.27%;
    left: 11.64%;
    bottom: 91.86%;
    top: 8.14%;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.section8-line-8 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 82.84%;
    height: 0%;
    position: absolute;
    right: 5.37%;
    left: 11.79%;
    bottom: 10.47%;
    top: 89.53%;
}

.section8-frame-1000001090 {
    display: flex;
    flex-direction: row;
    gap: 101px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 40px;
    position: absolute;
    left: 98px;
    top: 383px;
}

.section8-jan, 
.section8-april, 
.section8-july, 
.section8-october {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.section8-frame-1000001091 {
    display: flex;
    flex-direction: column;
    gap: 47px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 60px;
    position: absolute;
    left: 22px;
    top: 20px;
}

.section8-50-000, 
.section8-40-000, 
.section8-30-000, 
.section8-20-000, 
.section8-10-000, 
.section8-0 {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    height: 23px;
}

/* Mobile responsiveness for section8 graph */
@media (max-width: 768px) {
    .section8-graph {
        height: 275px;
    }

    .section8-frame-1000001090 {
        gap: 52px;
        left: 62px;
        top: 245px;
    }

    .section8-frame-1000001091 {
        gap: 19px;
        left: 9px;
        top: 21px;
        width: 52px;
    }
}

/* Alore Graph Styles (Graph 2) */
.alore2-graph,
.alore2-graph * {
    box-sizing: border-box;
}

.alore2-graph {
    background: #ffffff;
    flex-shrink: 0;
    height: 430px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0px; /* Removed bottom margin */
}

.alore2-line-7 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 52.09%;
    height: 0%;
    position: absolute;
    right: 36.27%;
    left: 11.64%;
    bottom: 91.86%;
    top: 8.14%;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.alore2-line-8 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 82.84%;
    height: 0%;
    position: absolute;
    right: 5.37%;
    left: 11.79%;
    bottom: 10.47%;
    top: 89.53%;
}

.alore2-frame-1000001090 {
    display: flex;
    flex-direction: row;
    gap: 226px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 40px;
    position: absolute;
    left: 98px;
    top: 383px;
}

.alore2-jan, 
.alore2-april,
.alore2-july {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.alore2-frame-1000001091 {
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: flex-start;
    justify-content: flex-start;
    height: 371px;
    position: absolute;
    left: 22px;
    top: 20px;
}

.alore2-200-000 {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    width: 45px;
    height: 23px;
}

.alore2-150-000,
.alore2-100-000,
.alore2-50-000,
.alore2-0 {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    height: 23px;
}

.alore2-clicks-line-graph-2-1 {
    width: 528px;
    height: 328px;
    position: absolute;
    left: 78px;
    top: 38px;
    overflow: visible;
    max-width: 85%;
}

/* Mobile responsiveness for alore2 graph */
@media (max-width: 768px) {
    .alore2-graph {
        height: 350px;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .alore2-frame-1000001090 {
        gap: 110px;
        left: 80px;
        top: 383px;
    }

    .alore2-clicks-line-graph-2-1 {
        left: 65px;
        max-width: 80%;
    }
}

/* Varniya Graph Styles (Graph 3) */
.varniya3-graph,
.varniya3-graph * {
    box-sizing: border-box;
}

.varniya3-graph {
    background: #ffffff;
    flex-shrink: 0;
    height: 430px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0px; /* Consistent with other graphs */
}

.varniya3-line-7 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 52.09%;
    height: 0%;
    position: absolute;
    right: 36.27%;
    left: 11.64%;
    bottom: 91.86%;
    top: 8.14%;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.varniya3-line-8 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 82.84%;
    height: 0%;
    position: absolute;
    right: 5.37%;
    left: 11.79%;
    bottom: 10.47%;
    top: 89.53%;
}

.varniya3-frame-1000001090 {
    display: flex;
    flex-direction: row;
    gap: 478px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 40px;
    position: absolute;
    left: 98px;
    top: 383px;
}

.varniya3-nov, 
.varniya3-feb {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.varniya3-frame-1000001091 {
    display: flex;
    flex-direction: column;
    gap: 47px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 45px;
    position: absolute;
    left: 22px;
    top: 20px;
}

.varniya3-25-000,
.varniya3-20-000,
.varniya3-15-000,
.varniya3-10-000,
.varniya3-5-000,
.varniya3-0 {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    height: 23px;
}

.varniya3-frame-1000001101 {
    width: 526px;
    height: 257px;
    position: absolute;
    left: 83px;
    top: 98.42px;
    overflow: visible;
    max-width: 85%;
}

/* Mobile responsiveness for varniya3 graph */
@media (max-width: 768px) {
    .varniya3-graph {
        height: 350px;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .varniya3-frame-1000001090 {
        gap: 200px;
        left: 80px;
        top: 383px;
    }

    .varniya3-frame-1000001101 {
        left: 65px;
        max-width: 80%;
    }
}

/* Dr. Anshu Agarwal Graph Styles (Graph 4) */
.anshu4-graph,
.anshu4-graph * {
    box-sizing: border-box;
}

.anshu4-graph {
    background: #ffffff;
    flex-shrink: 0;
    height: 430px;
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 0px; /* Consistent with other graphs */
}

.anshu4-line-7 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 52.09%;
    height: 0%;
    position: absolute;
    right: 36.27%;
    left: 11.64%;
    bottom: 91.86%;
    top: 8.14%;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.anshu4-line-8 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 82.84%;
    height: 0%;
    position: absolute;
    right: 5.37%;
    left: 11.79%;
    bottom: 10.47%;
    top: 89.53%;
}

.anshu4-frame-1000001090 {
    display: flex;
    flex-direction: row;
    gap: 101px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 40px;
    position: absolute;
    left: 98px;
    top: 383px;
}

.anshu4-jan, 
.anshu4-april,
.anshu4-july,
.anshu4-october {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.anshu4-frame-1000001091 {
    display: flex;
    flex-direction: column;
    gap: 47px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 45px;
    position: absolute;
    left: 22px;
    top: 20px;
}

.anshu4-50-000,
.anshu4-40-000,
.anshu4-30-000,
.anshu4-20-000,
.anshu4-10-000,
.anshu4-0 {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    height: 23px;
}

.anshu4-impressions-line-graph-corrected-1 {
    width: 528px;
    height: 307px;
    position: absolute;
    left: 83px;
    top: 36.42px;
    overflow: visible;
    max-width: 85%;
}

/* Mobile responsiveness for anshu4 graph */
@media (max-width: 768px) {
    .anshu4-graph {
        height: 350px;
        transform: scale(0.9);
        transform-origin: top left;
    }

    .anshu4-frame-1000001090 {
        gap: 52px;
        left: 70px;
        top: 383px;
    }

    .anshu4-impressions-line-graph-corrected-1 {
        left: 65px;
        max-width: 80%;
    }
}



.vector5 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 61.94%;
    left: 37.16%;
    bottom: 35.35%;
    top: 63.26%;
    overflow: visible;
}

.vector6 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 54.93%;
    left: 44.18%;
    bottom: 50.23%;
    top: 48.37%;
    overflow: visible;
}

.vector7 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 47.91%;
    left: 51.19%;
    bottom: 75.12%;
    top: 23.49%;
    overflow: visible;
}

.vector8 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 40.75%;
    left: 58.36%;
    bottom: 90%;
    top: 8.6%;
    overflow: visible;
}

.vector9 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 33.73%;
    left: 65.37%;
    bottom: 60.23%;
    top: 38.37%;
    overflow: visible;
}

.vector10 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 26.72%;
    left: 72.39%;
    bottom: 65.12%;
    top: 33.49%;
    overflow: visible;
}

.vector11 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 19.7%;
    left: 79.4%;
    bottom: 70.23%;
    top: 28.37%;
    overflow: visible;
}

.vector12 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 12.54%;
    left: 86.57%;
    bottom: 80%;
    top: 18.6%;
    overflow: visible;
}

.vector13 {
    width: 0.9%;
    height: 1.4%;
    position: absolute;
    right: 5.52%;
    left: 93.58%;
    bottom: 65.12%;
    top: 33.49%;
    overflow: visible;
}

.line-7 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 52.09%;
    height: 0%;
    position: absolute;
    right: 36.27%;
    left: 11.64%;
    bottom: 91.86%;
    top: 8.14%;
    transform-origin: 0 0;
    transform: rotate(90deg) scale(1, 1);
}

.line-8 {
    margin-top: -1px;
    border-style: solid;
    border-color: #868b91;
    border-width: 1px 0 0 0;
    width: 82.84%;
    height: 0%;
    position: absolute;
    right: 5.37%;
    left: 11.79%;
    bottom: 10.47%;
    top: 89.53%;
}

.frame-1000001090 {
    display: flex;
    flex-direction: row;
    gap: 101px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    position: absolute;
    left: 98px;
    top: 383px;
}

.jan, .april, .july, .october {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.frame-1000001091 {
    display: flex;
    flex-direction: column;
    gap: 47px;
    align-items: flex-start;
    justify-content: flex-start;
    width: 60px;
    position: absolute;
    left: 22px;
    top: 20px;
}

._50-000, ._40-000, ._30-000, ._20-000, ._10-000, ._0 {
    color: #868b91;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    align-self: stretch;
    height: 23px;
}

@media (max-width: 768px) {
    .graph-1 {
        height: 275px;
    }

    .frame-1000001090 {
        gap: 52px;
        left: 62px;
        top: 245px;
    }

    .frame-1000001091 {
        gap: 19px;
        left: 9px;
        top: 21px;
        width: 52px;
    }
    
    /* Mobile styles for Section 8 graph */
    .sec8-graph-1 {
        height: 275px;
    }

    .sec8-frame-1000001090 {
        gap: 52px;
        left: 62px;
        top: 245px;
    }

    .sec8-frame-1000001091 {
        gap: 19px;
        left: 9px;
        top: 21px;
        width: 52px;
    }
}

.frame-1000001112 {
    background: #e0b0ff;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
    position: relative;
}

.early-stage {
    color: #151515;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    flex: 1;
    min-width: 40px;
}

.frame-1000001113 {
    background: #c7ffb9;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.niche-keyword-expansion {
    color: #151515;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.frame-1000001115,
.frame-1000001115 * {
    box-sizing: border-box;
}

.frame-1000001115 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    margin: 20px 0px 20px 0px; /* Exactly the same margin as .chips for consistency */
}

.frame-1000001105 {
    background: #b0e4ff;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
    position: relative;
}

.saa-s {
    color: #151515;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    flex: 1;
    min-width: 40px;
}

.frame-1000001106 {
    background: #ffd8b0;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.mid-stage {
    color: #151515;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.frame-1000001107 {
    background: #d7ffb0;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.international-scale {
    color: #151515;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.frame-1000001116,
.frame-1000001116 * {
    box-sizing: border-box;
}

.frame-1000001116 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    margin: 20px 0px 20px 0px; /* Consistent margin with other chip containers */
}

.frame-1000001109 {
    background: #ffb0c1;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.e-commerce {
    color: #151515;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.frame-1000001108 {
    background: #fff7b0;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 100px;
    position: relative;
}

.d-2-c {
    color: #151515;
    text-align: center;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
    flex: 1;
    min-width: 40px;
}

.frame-1000001110 {
    background: #b0fff9;
    border-radius: 25px;
    padding: 5px 20px 5px 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.high-intent-keyword {
    color: #151515;
    text-align: left;
    font-family: 'Urbanist', sans-serif;
    font-size: 12px;
    line-height: 27px;
    font-weight: 400;
    position: relative;
}

.frame-1000001117,
.frame-1000001117 * {
    box-sizing: border-box;
}

.frame-1000001117 {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    justify-content: flex-start;
    align-self: stretch;
    flex-shrink: 0;
    position: relative;
    margin: 20px 0px 20px 0px; /* Consistent margin with other chip containers */
}

.section-8-heading {
  color: #151515;
  font-family: 'Urbanist', sans-serif;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 600;
  margin: 0;
}

.section-8 .frame-100 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-8 .feature {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.section-8 .feature > div {
  color: #151515;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  position: relative;
  flex: 1;
}

.section-8 .feature::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  background-color: #eef559;
  border-radius: 50%;
  position: absolute;
  left: -12px;
  top: 11px;
}

@media (max-width: 1200px) {
  .behind-every-win-a-repeatable-system {
    font-size: 52px;
    line-height: 1.1;
  }
  
  .section-8 .frame-106,
  .section-8 .frame-107 {
    gap: 40px;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .section-8 .frame-102,
  .section-8 .frame-104,
  .section-8 .frame-103,
  .section-8 .frame-105 {
    width: calc(50% - 20px);
  }
}

@media (max-width: 768px) {
  .section-8 {
    padding: 60px 20px 100px;
  }
  
  .behind-every-win-a-repeatable-system {
    font-size: 36px;
    text-align: left;
  }
  
  .these-arent-one-off-success-stories-theyre-proof-of-a-system-built-to-deliver-consistent-scalable-seo-results-across-industries {
    font-size: 16px;
    text-align: left;
  }
  
  .section-8 .heading-2,
  .section-8 .subheadline {
    justify-content: flex-start;
  }
  
  .section-8 .frame-17 {
    gap: 40px;
  }
  
  .section-8 .content {
    gap: 40px;
  }
  
  .section-8 .frame-106,
  .section-8 .frame-107 {
    flex-direction: column;
    gap: 40px;
  }
  
  .section-8 .frame-102,
  .section-8 .frame-104,
  .section-8 .frame-103,
  .section-8 .frame-105 {
    width: 100%;
  }
}

/* Footer Styles */
.footer-section {
  background-color: #ffffff;
  color: #0d0d0d;
  padding: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4rem;
  width: 100%;
  max-width: 1380px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}

/* Separator Styles */
.seperator,
.seperator * {
  box-sizing: border-box;
}

.seperator {
  display: flex;
  flex-direction: row;
  gap: 0px;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  max-width: 1380px;
  position: relative;
  overflow: visible;
}

._67-baf-9-cd-300720200-e-629187-footer-20-line-svg-fill {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 1380px;
  height: 9.39px;
  position: relative;
  overflow: visible;
}

.component-1,
.component-1 * {
    box-sizing: border-box;
}

.component-1 {
    flex-shrink: 0;
    height: 9.39px;
    width: 100%;
    position: relative;
    overflow: visible;
}

/* Content Styles */
.content,
.content * {
  box-sizing: border-box;
}

.content {
  display: flex;
  flex-direction: row;
  gap: 108px;
  align-items: flex-start;
  justify-content: space-between;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  max-width: 1380px;
  width: 100%;
  padding: 0;
  box-sizing: border-box;
}

.left {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 432px;
}

.join-us {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.join-with-us {
  color: var(--color-grey-5, #0d0d0d);
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 27px;
}

.social-media {
  display: flex;
  flex-direction: row;
  gap: 19px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.instagram {
  border-style: solid;
  border-color: #e0e0e0;
  border-width: 0px 1px 0px 0px;
  padding: 0px 21px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.text {
  color: var(--color-grey-5, #0d0d0d);
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
}

.linkedin {
  border-style: solid;
  border-color: #e0e0e0;
  border-width: 0px 1px 0px 0px;
  padding: 0px 21px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.youtube {
  border-style: solid;
  border-color: #e0e0e0;
  border-width: 0px 1px 0px 0px;
  padding: 0px 21px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.facebook {
  border-style: solid;
  border-color: #e0e0e0;
  border-width: 0px 1px 0px 0px;
  padding: 0px 21px 0px 0px;
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.j-6-venture {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.j-6-venture2 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.j-6-venture3 {
  color: var(--color-grey-5, #0d0d0d);
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  position: relative;
  flex: 1;
  height: 27px;
}

.j-6-venture3 .venture {
  font-weight: 700;
  color: #0a0a0a; /* 10% darker than #0d0d0d */
}

/* Twitter class has been removed */

.button-broad {
  background: #eef559;
  border-style: solid;
  border-color: rgba(13, 13, 13, 0.30);
  border-width: 1px;
  padding: 10px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  cursor: pointer;
}

.book-a-strategy-session-today {
  color: #000000;
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: -0.02em;
  font-weight: 500;
  position: relative;
}

.right {
  display: flex;
  flex-direction: row;
  gap: 100px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
  width: 840px;
}

.company-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 92.81px;
  position: relative;
}

.company,
.for,
.services,
.resources {
  color: var(--color-grey-5, #0d0d0d);
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 600;
  position: relative;
  align-self: stretch;
  height: 27px;
  margin-bottom: 15px;
}

.home {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.about {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.text2 {
  color: var(--color-grey-40, #676767);
  text-align: left;
  font-family: 'Urbanist', sans-serif;
  font-size: 18px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
}

.career {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.contact-us {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.blog {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.icp-type {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

/* .for is now handled in the common selector above */

.marketing-agencies {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.saas-companies {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.consulting-companies {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.itsc-companies,
.early-stage,
.content-creation,
.seo-strategy,
.technical-seo,
.link-building,
.web-design {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.services-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 174px;
  position: relative;
}

/* Services heading is now handled in the common selector above */

.component-2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.component-22 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.resources-stack {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 95.54px;
  position: relative;
}

/* Resources heading is now handled in the common selector above */

.white-papter {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.tool-1 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.tool-2 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.tool-3 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.tool-4 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

/* All Rights Styles */
.all-rights,
.all-rights * {
  box-sizing: border-box;
}

.all-rights {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  max-width: 1380px;
  width: 100%;
  padding: 0 20px;
  box-sizing: border-box;
}

.copyright {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

._2025-all-rights-reserved {
  color: var(--color-grey-40, #676767);
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
}

.all-rights .j-6-venture {
  display: flex;
  flex-direction: row;
  gap: 5px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.frame-1000001125 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}

.j-6 {
  color: var(--color-grey-40, #676767);
  text-align: center;
  font-family: 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 27px;
  font-weight: 500;
  position: relative;
}

.component-3 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

/* Mobile Styles for Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 3rem 1rem;
    gap: 2rem;
  }
  
  .content {
    flex-direction: column;
    gap: 40px;
  }
  
  .right {
    flex-direction: column;
    gap: 40px;
    align-items: flex-start;
  }
  
  .social-media {
    flex-wrap: wrap;
  }
  
  .seperator {
    max-width: 100%;
  }
  
  ._67-baf-9-cd-300720200-e-629187-footer-20-line-svg-fill {
    width: 100%;
  }
  
  .component-1 {
    width: 100%;
  }
  
  .all-rights {
    flex-direction: column;
    gap: 10px;
  }
}

/* Sticky Scroll Indicator Styles */
.stick-scroll-indicator {
  display: flex;
  flex-direction: column;
  gap: 47px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 30px;
  position: sticky;
  top: 50%;
  transform: translateY(-50%);
  align-self: flex-start;
  height: 100vh;
  max-height: 900px;
}

.frame-1000001094,
.frame-1000001095,
.frame-1000001096,
.frame-1000001097,
.frame-1000001098 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
}

.frame-1000001090 {
  border-radius: 15px;
  border-style: none;
  padding: 6px;
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  height: 30px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.ellipse-1 {
  background: #78787d;
  border-radius: 50%;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  position: relative;
  transition: background-color 0.3s ease;
}

.ellipse-1.active {
  background: #eef559;
}

.frame-1000001093 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  position: relative;
}

.rectangle-2 {
  background: #78787d;
  flex-shrink: 0;
  width: 5px;
  height: 100px;
  position: relative;
  transition: background-color 0.3s ease;
}

.rectangle-2.active {
  background: #eef559;
}

.rectangle-1 {
  background: #78787d;
  flex-shrink: 0;
  width: 5px;
  height: 324px;
  position: relative;
}

.frame-10000010932 {
  display: flex;
  flex-direction: column;
  gap: 0px;
  align-items: flex-start;
  justify-content: flex-start;
  flex-shrink: 0;
  width: 5px;
  position: relative;
}

.rectangle-12 {
  background: #78787d;
  flex-shrink: 0;
  width: 5px;
  height: 100px;
  position: relative;
  transition: background-color 0.3s ease;
}

.rectangle-12.active {
  background: #eef559;
}

.section-7 .right-div {
  display: flex;
  flex-direction: column;
  gap: 50px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 670px;
  max-width: 670px;
  position: relative;
  padding-right: 0;
  box-sizing: border-box;
}

.section-7 .frame-23,
.section-7 .frame-65,
.section-7 .frame-10000010862,
.section-7 .frame-10000010872,
.section-7 .frame-1000001088 {
  background: #0d0d0d;
  border-radius: 10px;
  border-style: solid;
  border-color: #28282b;
  border-width: 1px;
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 670px;
  box-sizing: border-box;
  overflow: hidden;
}

.section-7 .frame-23.active,
.section-7 .frame-65.active,
.section-7 .frame-10000010862.active,
.section-7 .frame-10000010872.active,
.section-7 .frame-1000001088.active {
  border-color: #eef559;
  box-shadow: 0 10px 30px rgba(238, 245, 89, 0.25);
}

.section-7 .frame-22 {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

._64-ccecbc-04671-bd-49-b-331291-research-20-26-20-strategy-svg {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  align-self: stretch;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
}

._64-ccecbc-04671-bd-49-b-331291-research-20-26-20-strategy-svg-fill {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  position: relative;
  overflow: hidden;
}

._64-ccecbc-04671-bd-49-b-331291-research-20-26-20-strategy-svg2 {
  width: 72px;
  height: 72px;
  position: absolute;
  left: 50%;
  translate: -50% -50%;
  top: 50%;
  overflow: hidden;
}

.clip-path-group3,
.clip-path-group4,
.clip-path-group5 {
  height: auto;
  position: absolute;
  left: 0px;
  top: 0px;
  overflow: visible;
}

.section-7 .content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.frame-1000001086 {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.heading-3,
.heading-3 * {
  box-sizing: border-box;
}

.heading-3 {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

.heading-32 {
  color: #ffffff;
  text-align: left;
  font-family: 'Urbanist-SemiBold', 'Urbanist', sans-serif;
  font-size: 36px;
  line-height: 1.4;
  letter-spacing: -0.12px;
  font-weight: 600;
  position: relative;
  flex: 1;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  box-sizing: border-box;
}

.section-7 .description,
.section-7 .description * {
  box-sizing: border-box;
}

.section-7 .description {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

.we-don-t-throw-keywords-at-the-wall-we-focus-on-the-ones-that-generate-conversions-leads-and-long-term-value,
.ai-gets-you-fast-scalable-first-drafts-but-it-s-our-human-experts-who-craft-them-into-content-that-s-on-brand-persuasive-and-optimized-for-ranking,
.every-published-piece-is-not-just-optimized-it-s-woven-into-your-site-s-authority-map-to-lift-rankings-across-the-board,
.publishing-is-just-the-start-we-track-measure-and-surface-insights-as-soon-as-your-content-goes-live,
.the-game-doesn-t-end-at-publish-we-revisit-refresh-and-expand-content-monthly-to-push-rankings-higher-and-deeper {
  color: #868b91;
  text-align: left;
  font-family: 'Urbanist-Medium', 'Urbanist', sans-serif;
  font-size: 20px;
  line-height: 1.4;
  font-weight: 500;
  position: relative;
  flex: 1;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  box-sizing: border-box;
}

.frame-1000001087 {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

.bullets {
  display: flex;
  flex-direction: row;
  gap: 10px;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  position: relative;
  box-sizing: border-box;
}

.map-funnel-stages-tofu-mofu-bofu-identify-high-intent-long-tail-and-cluster-opportunities-prioritize-by-competition-opportunity-and-business-outcome,
.ai-generates-draft-content-using-advanced-prompts-seo-experts-rewrite-for-brand-voice-accuracy-and-depth-add-ct-as-hooks-and-narrative-elements-that-drive-action,
.optimize-meta-headers-ur-ls-and-internal-links-build-semantic-clusters-and-topical-authority-apply-schema-and-structured-data-where-needed,
.upload-for-seo-friendly-publishing-track-rankings-impressions-and-engagement-via-google-search-console-monitor-indexation-crawl-status-and-technical-health,
.refresh-underperforming-content-expand-winning-clusters-and-pages-apply-cross-cluster-learnings-to-drive-compounded-growth {
  color: #78787d;
  text-align: left;
  font-family: 'Urbanist-Medium', 'Urbanist', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  font-weight: 500;
  position: relative;
  flex: 1;
  max-width: 100%;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  box-sizing: border-box;
}