@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");

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

body {
  font-family: "Poppins", serif;
  background-color: #1f2734;
  overflow-x: hidden;
}

/* ===== SECTION SPACING UTILITIES ===== */
.section-spacing {
  padding: 80px 0;
}

.section-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-content {
  max-width: 1100px;
  margin: 0 auto;
}

/* ===== GLOBAL SPACING IMPROVEMENTS ===== */
.grid-body > * {
  margin-bottom: 0;
}

.grid-body > *:last-child {
  margin-bottom: 0;
}

/* ===== CONTAINER CLASS (used in hero-section) ===== */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
  position: relative;
}

/* ===== HERO SECTION ===== */
.hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  background: url("./assets/Background pattern decorative.svg") no-repeat;
  background-size: cover;
  color: white;
  padding: 110px 20px 60px;
  position: relative;
  overflow: hidden;
}
.hero-section .banner-img1 {
    right: 0;
    top: -93px;
}
.hero-section .banner-img3 {
    right: 0;
    top: -152px;
}
.hero-section .banner-img2 {
    left: -23px;
}

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

.hero-img img {
  max-width: 100%;
  height: auto;
  /* width: 350px; */
  transition: width 0.3s;
}

/* Headline Styling */
.content h1 {
  font-size: 64px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
}

/* Paragraph Styling */
.content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 1);
  margin-bottom: 0;
}

/* Keyword Highlight Colors */
.content p b {
  color: #fff;
  font-weight: 600;
}

.content p b:nth-of-type(1) {
  color: #1aac87;
} /* ChatGPT */
.content p b:nth-of-type(2) {
  color: #92bfff;
} /* Gemini */
.content p b:nth-of-type(3) {
  color: #fff;
} /* Google’s AI Overviews */
.content p b:nth-of-type(4) {
  color: #fff;
} /* Tesseract */

.side-glow {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
  background: linear-gradient(
    to right,
    rgba(58, 115, 255, 0.5),
    rgba(30, 30, 48, 0)
  );
  z-index: 0;
}
.side-glow:first-of-type {
  left: 0;
  background-color: #2e93fa;
  filter: blur(138.1999969482422px);
}

.side-glow:last-of-type {
  right: 0;
  background-color: #2e93fa;
  filter: blur(138.1999969482422px);
}
.star {
  position: absolute;
  background-image: url("./assets/star.png");
  background-size: contain;
  background-repeat: no-repeat;
}

/* Style for arrows */
.arrow {
  position: absolute;
  background-image: url("./assets/arrow\ up.png");
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
  /* transform: rotate(45deg); */
}

/* Specific positions and sizes for each star */
.star-1 {
  top: 10%;
  left: 20%;
  width: 25px;
  height: 100%;
}

.star-2 {
  top: 10%;
  left: 80%;
  width: 25px;
  height: 100%;
}

.star-3 {
  top: 50%;
  right: 10%;
  width: 15px;
  height: 15px;
}

.star-4 {
  bottom: 25%;
  left: 5%;
  width: 18px;
  height: 18px;
}

.star-5 {
  bottom: 10%;
  right: 20%;
  width: 22px;
  height: 22px;
}

/* Specific positions and sizes for each arrow */
.arrow-1 {
  top: 15%;
  right: 0;
  width: 300px;
  height: 200px;
}

.arrow-2 {
  top: 40%;
  left: 20%;
  width: 35px;
  height: 35px;
}

.arrow-3 {
  bottom: 30%;
  right: 25%;
  width: 40px;
  height: 40px;
}

.arrow-4 {
  bottom: 15%;
  left: 35%;
  width: 45px;
  height: 45px;
}

.arrow-5 {
  top: 5%;
  left: 50%;
  width: 38px;
  height: 38px;
}
/* ===== GRID BACKGROUND ===== */
.grid-body {
  background-image: url(./assets/grid-bg.svg);
}


/* ===== FAQ SECTION ===== */
.faq-section {
  display: flex;
  gap: 4rem;
  max-width: 1400px;
  margin: 0 auto;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 80px 30px;
  box-sizing: border-box;
}

.left-section {
  flex: 1;
  top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* Sticky heading for desktop */
  position: sticky;
  align-self: flex-start;
  top: 20px;
  z-index: 2;
}

.right-section {
  flex: 1;
}

.faq-item {
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 8px;
  border: 1px solid #fff;
  overflow: hidden;
  transition: background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  margin-bottom: 18px;
}
.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item.active {
  background-color: white;
}

.faq-question {
  padding: 1.5rem;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  color: white;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.faq-question h3 {
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 24px;
  letter-spacing: -0.072px;
}

.faq-answer ul {
  padding: 20px;
}

.faq-item.active .faq-question h3 {
  color: #f97316;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.faq-item.active .faq-question:hover {
  background-color: rgba(249, 115, 22, 0.1);
}

.faq-question::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: bold;
}

.faq-item.active .faq-question::after {
  content: "-";
  color: #f97316;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease, opacity 0.3s;
  padding: 0 1.5rem;
  color: #373737;
  opacity: 0;
}

.faq-answer p {
  font-size: 16px;
  line-height: 1.4;
  letter-spacing: -0.064px;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1.5rem;
  color: #1f2937;
  opacity: 1;
  padding-top: 0;
}

.left-section h2 {
  color: #ff8e3d;
  font-size: 62px;
  font-weight: 500;
  line-height: 130%;
  letter-spacing: -1.86px;
}

/* Keyword Card Table Styles */
.keyword-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
  padding: 24px 24px 18px 24px;
  max-width: 370px;
  min-width: 270px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-left: auto;
}
.keyword-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
  margin-bottom: 10px;
}
.keyword-title {
  font-size: 20px;
  font-weight: 600;
  color: #22223b;
}
.keyword-icons i {
  font-size: 18px;
  color: #6ca9ff;
  margin-left: 10px;
}
.keyword-icons i.fa-star {
  color: #ffaa6d;
}
.keyword-icons i.fa-bug {
  color: #1aac87;
}
.keyword-table {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.keyword-row {
  display: flex;
  align-items: center;
  background: #f6f8fa;
  border-radius: 8px;
  padding: 10px 16px;
  font-size: 16px;
  font-weight: 500;
  color: #22223b;
  gap: 12px;
}
.keyword-label {
  flex: 1 1 120px;
  color: #22223b;
}
.keyword-status {
  width: 32px;
  text-align: center;
  color: #1aac87;
  font-size: 18px;
}
.keyword-status i.fa-check {
  color: #1aac87;
}
.keyword-status:empty {
  color: #bbb;
}

/* Center the start-growing-link button */
.start-growing-link {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 350px;
  /* margin: 0 auto; */
  /* margin-top: 0px; */
  margin-bottom: 0;
  position: relative;
  z-index: 2;
}

/* Decorative elements: prevent overflow */
.side-glow,
.star,
.arrow {
  pointer-events: none;
  user-select: none;
  max-width: 100vw;
  max-height: 100vh;
}

.hero-section:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-image: url('data:image/svg+xml,<svg width="1440" height="809" viewBox="0 0 1440 809" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M89 133L89 157" stroke="url(%23paint0_linear_1900_1494)"/><path d="M101 145L77 145" stroke="url(%23paint1_linear_1900_1494)"/><path d="M989 133L989 157" stroke="url(%23paint2_linear_1900_1494)"/><path d="M1001 145L977 145" stroke="url(%23paint3_linear_1900_1494)"/><g opacity="0.1"><path d="M466.751 155.445H454.627V135.729H448L460.803 121L473 135.729H466.751V155.445Z" fill="%23E76100"/><path d="M454.627 169.184V165.864H466.755V169.184H454.627Z" fill="%23E76100"/><path d="M454.627 175V173.259H466.755V175H454.627Z" fill="%23E76100"/><path d="M466.755 158.46V162.989H454.627V158.46H466.755Z" fill="%23E76100"/></g><g style="mix-blend-mode:color-dodge"><g filter="url(%23filter0_f_1900_1494)"><path d="M52.6169 357.584C52.6169 454.004 -25.9237 532.168 -122.809 532.168C-219.693 532.168 -226 454.004 -226 357.584C-226 261.164 -219.693 183 -122.809 183C-25.9237 183 52.6169 261.164 52.6169 357.584Z" fill="%232E93FA"/></g><g filter="url(%23filter1_f_1900_1494)"><path d="M1387.62 357.584C1387.62 261.164 1466.16 183 1563.04 183C1659.93 183 1666.23 261.164 1666.23 357.584C1666.23 454.004 1659.93 532.168 1563.04 532.168C1466.16 532.168 1387.62 454.004 1387.62 357.584Z" fill="%232E93FA"/></g></g><defs><filter id="filter0_f_1900_1494" x="-502.4" y="-93.4" width="831.417" height="901.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="138.2" result="effect1_foregroundBlur_1900_1494"/></filter><filter id="filter1_f_1900_1494" x="1111.22" y="-93.4" width="831.417" height="901.968" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"><feFlood flood-opacity="0" result="BackgroundImageFix"/><feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/><feGaussianBlur stdDeviation="138.2" result="effect1_foregroundBlur_1900_1494"/></filter><linearGradient id="paint0_linear_1900_1494" x1="89" y1="157" x2="89" y2="133" gradientUnits="userSpaceOnUse"><stop stop-color="%23E76100" stop-opacity="0"/><stop offset="0.50284" stop-color="%23E76100"/><stop offset="1" stop-color="%23E76100" stop-opacity="0"/></linearGradient><linearGradient id="paint1_linear_1900_1494" x1="77" y1="145" x2="101" y2="145" gradientUnits="userSpaceOnUse"><stop stop-color="%23E76100" stop-opacity="0"/><stop offset="0.50284" stop-color="%23E76100"/><stop offset="1" stop-color="%23E76100" stop-opacity="0"/></linearGradient><linearGradient id="paint2_linear_1900_1494" x1="989" y1="157" x2="989" y2="133" gradientUnits="userSpaceOnUse"><stop stop-color="%23E76100" stop-opacity="0"/><stop offset="0.50284" stop-color="%23E76100"/><stop offset="1" stop-color="%23E76100" stop-opacity="0"/></linearGradient><linearGradient id="paint3_linear_1900_1494" x1="977" y1="145" x2="1001" y2="145" gradientUnits="userSpaceOnUse"><stop stop-color="%23E76100" stop-opacity="0"/><stop offset="0.50284" stop-color="%23E76100"/><stop offset="1" stop-color="%23E76100" stop-opacity="0"/></linearGradient></defs></svg>');
    background-repeat: no-repeat;
    background-size: 100%;
}

.section-title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.80px;
}
.section-desc {
    font-size: 16px;
    line-height: 1.6;
}
.side-text {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}
.card-custom {
    background: #3B3F5A;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(255, 255, 255, 1);
    min-height: 250px;
    text-align: left;
    height: 100%;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}
.card-custom h4 {
    letter-spacing: -0.72px;
    line-height: 1.3;
}.card-custom h4 {
    letter-spacing: -0.72px;
    line-height: 1.3;
}
.dot {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-bottom: 10px;
}
.blue { background: #45A7DE; }
.orange { background: #EA5F38; }
.purple { background: #6A26F1; }
.why-it-works {
    background: radial-gradient(70.97% 72.57% at 50% 99.98%, #ADB3E0 0%, #3B3F5A 100%);
    padding: 70px 0;
    position: relative;
    margin-top: -295px;
}
.why-it-works:before {
    background: linear-gradient(180deg, rgba(59, 63, 90, 0) 0%, rgba(59, 63, 90, 0.34) 50%, #3C3F5B 100%);
    content: "";
    position: absolute;
    width: 100%;
    top: -50px;
    left: 0;
    right: 0;
    height: 50px;
}
/* cost section  */
.cost-section {
    padding: 100px 0;
}
.section-header{
  text-align: center;
  margin-bottom: 52px;
  font-weight: bold;
  font-size: 48px;
  line-height: 1.2;
  color: #FFAA6D;
}
.comparison-card {
  background: #fff;
  border-radius: 10px 0px 0px 10px;
  color: #333;  
  padding: 12px 20px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.1);
}
.highlight-card {
  border-radius: 12px;
  color: #07345E;
  padding: 16px;
  background: linear-gradient(194.44deg, #F5C498 -54.26%, #FFFFFF 91.32%);
  box-shadow: 0px 5px 15px 0px #00000059;
  border: 2px solid #E76100;
}
.comparison-row {
  margin-bottom: 12px;
}
.comparison-row .label {
  font-weight: 600;
  color: #333;
}
.comparison-card .comparison-span {
    padding: 10px;
    display: block;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.16px;
    color: #537492;
        max-width: 370px;
}
.comparison-card .comparison-first .comparison-span {
    font-weight: 600;
    color: #1F2734;
}
.highlight-card h5 {
    padding: 10px;
    background-color: #FFB580;
    border-radius: 10px;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0.16px;
    font-weight: 600;
}
.highlight-card p {
    padding: 10px;
    color: #07345E;
    margin-bottom: 12px;
        line-height: 1.4;

}
.what-agency-section{
  background-image: url("./assets/agency-desc-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  padding: 58px 0 72px;
  color: #fff;
}
.what-agency-section .section-title {
    font-size: 32px;
    line-height: 1.2;
    color: #FFAA6D;
    margin: 0 0 32px;
}
.what-agency-section p {
    font-size: 18px;
    line-height: 1.3;
    color: #fff;
    font-weight: 400;
}
.offer-section .header-bg {
    padding: 50px 0;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    background-image: url("./assets/offer-heading.png");
    margin: 0 0 94px;
}
.offer-section .header-bg .section-header {
    margin: 0;
}
.offer-section {
    padding: 57px 0 111px;
}
.offer-desc .h1 {
    color: #FBA76B;
    font-weight: 500;
    line-height: 1.3;
    letter-spacing: -0.12px;
}
.offer-desc p {
    font-size: 16px;
    line-height: 1.3;
    color: #fff;
}
.offer-desc p span {
    font-weight: 600;
}
.offer-listing {
    background-color: #F8F8F8;
    border-radius: 18px;
    color: #1F2734;
    padding: 16px 15px 16px 16px;
    box-shadow: 0px 5px 15px 0px #00000059;
}
.offer-section  img {
    max-width: 555px;
}
.offer-listing h4 {
    line-height: 1.2;
    letter-spacing: -0.48px;
    margin: 0 0 14px;
    font-weight: 600;
}
.offer-listing ul {
    padding-left: 16px;
    color: #547492;
    font-size: 16px;
    line-height: 1.3;
    gap: 16px;
    display: flex;
    flex-wrap: wrap;
    margin: 0;
}
.offer-first-row{
  margin-bottom: 133px;
}
.call-section{
  background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    background-image: url("./assets/call-bg.png");
    padding: 64px 0;
}
.call-section h2 {
    font-size: 48px;
    line-height: 1;
    letter-spacing: -1.33px;
    margin: 0 0 24px;
}
.how-it-works {
    background-color: #fff;
    color: #1F2734;
    padding: 90px 0;
    background-image: url("./assets/how-it-works-bg.png");
    background-repeat: no-repeat;
    background-position: center top;
    background-size: contain;
}
.how-it-works h4 {
    color: #7F8CA1;
    letter-spacing: -0.48px;
    line-height: 1.3;
    margin: 0 0 5px;
}
.how-it-works .h1 {
    font-weight: 500;
    letter-spacing: -0.8px;
}
.how-it-works .h1 span {
    padding-right: 20px;
}
.how-it-works p {
    margin-top: 20px;
    color: #000000;
    letter-spacing: -0.48px;
}
.work-card {
    background: #F4F4F4;
    padding: 24px;
    border-radius: 20px;
    height: 100%;
}
.work-card p {
    font-size: 20px;
    line-height: 1.3;
    color: #506689;
}