/*
Theme Name: Axiom IT Referral Program
Theme URI: https://axiomit.com.au
Author: Axiom IT
Description: Landing page for Axiom IT Referral Program
Version: 1.0
License: Proprietary
Text Domain: axiom-referral
*/

/* Tailwind-like Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
  color: #212c32;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background-color: #009ddb;
  color: #fff;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* Brand Colors */
:root {
  --brand-dark: #212c32;
  --brand-blue: #009ddb;
  --brand-blue-hover: #008bc2;
  --brand-green: #B6D602;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
  position: relative;
  background-color: var(--brand-dark);
  color: #fff;
  overflow: hidden;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.hero__bg-circle {
  position: absolute;
  border-radius: 50%;
  background-color: var(--brand-blue);
  filter: blur(100px);
}

.hero__bg-circle--top {
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  transform: translateX(33%) translateY(-33%);
}

.hero__bg-circle--bottom {
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  filter: blur(80px);
  transform: translateX(-33%) translateY(33%);
}

.hero__content {
  position: relative;
  z-index: 10;
  padding: 5rem 0 7rem;
}

.hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hero__content {
    padding: 7rem 0;
  }
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .hero__title { font-size: 3rem; }
}

@media (min-width: 1024px) {
  .hero__title { font-size: 3.75rem; }
}

.hero__title-gradient {
  background: linear-gradient(to right, var(--brand-blue), #67e8f9);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__description {
  font-size: 1.125rem;
  color: #d1d5db;
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 36rem;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 640px) {
  .hero__buttons {
    flex-direction: row;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  font-weight: 700;
  font-size: 1.125rem;
  transition: all 0.3s;
}

.btn--primary {
  background-color: var(--brand-blue);
  color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 157, 219, 0.3);
}

.btn--primary:hover {
  background-color: var(--brand-blue-hover);
  box-shadow: 0 20px 25px -5px rgba(0, 157, 219, 0.4);
}

.btn--primary:hover .btn__icon {
  transform: translateX(4px);
}

.btn__icon {
  width: 1.25rem;
  height: 1.25rem;
  transition: transform 0.3s;
}

.btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn--outline:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

/* Hero Image */
.hero__image-wrapper {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .hero__image-wrapper {
    display: block;
  }
}

.hero__image-container {
  position: relative;
  z-index: 10;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  transform: rotate(2deg);
  transition: transform 0.5s;
}

.hero__image-container:hover {
  transform: rotate(0deg);
}

.hero__image {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.hero__overlay-card {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__overlay-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.hero__overlay-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16a34a;
  flex-shrink: 0;
}

.hero__overlay-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero__overlay-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.hero__overlay-footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid #e5e7eb;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero__overlay-footer-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 500;
}

.hero__overlay-amount {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-blue);
}

.hero__image-border {
  position: absolute;
  top: 1.5rem;
  right: -1.5rem;
  width: 100%;
  height: 100%;
  border: 2px solid rgba(0, 157, 219, 0.3);
  border-radius: 1rem;
  z-index: -1;
}

/* ========================================
   HOW IT WORKS SECTION
   ======================================== */
.how-it-works {
  padding: 4rem 0;
  background: #fff;
}

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

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}

.section-subtitle {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 42rem;
  margin: 0 auto;
}

.steps {
  position: relative;
}

.steps__line {
  display: none;
  position: absolute;
  top: 3rem;
  left: 0;
  right: 0;
  height: 2px;
  background: #e5e7eb;
  z-index: 0;
  transform: translateY(50%);
}

@media (min-width: 768px) {
  .steps__line { display: block; }
}

.steps__grid {
  display: grid;
  gap: 3rem;
  position: relative;
}

@media (min-width: 768px) {
  .steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

.step__icon-wrapper {
  position: relative;
  margin-bottom: 1.5rem;
}

.step__icon {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: #fff;
  border: 4px solid var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s;
  z-index: 10;
}

.step:hover .step__icon {
  transform: scale(1.1);
}

.step__icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: var(--brand-blue);
  stroke-width: 1.5;
}

.step__number {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--brand-dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  border: 2px solid #fff;
}

.step__content {
  background: #fff;
  padding: 1rem;
  border-radius: 0.75rem;
}

.step__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.step__description {
  color: #4b5563;
  line-height: 1.625;
}

.section-cta {
  text-align: center;
  margin-top: 3rem;
}

.section-cta__text {
  font-size: 0.875rem;
  color: #6b7280;
}

.section-cta__link {
  color: var(--brand-blue);
  font-weight: 600;
}

.section-cta__link:hover {
  text-decoration: underline;
}

/* ========================================
   REWARD CALCULATOR SECTION
   ======================================== */
.reward-section {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #334155, #475569);
  position: relative;
  overflow: hidden;
}

.reward-section__bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.reward-section__bg-circle {
  position: absolute;
  border-radius: 50%;
  filter: blur(48px);
}

.reward-section__bg-circle--1 {
  top: 5rem;
  right: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: var(--brand-blue);
}

.reward-section__bg-circle--2 {
  bottom: 5rem;
  left: 2.5rem;
  width: 24rem;
  height: 24rem;
  background: #06b6d4;
}

.reward-section .section-header {
  position: relative;
  z-index: 10;
}

.reward-section .section-title {
  color: #fff;
}

.reward-section .section-subtitle {
  color: #cbd5e1;
}

.calculator {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.calculator__card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

@media (min-width: 768px) {
  .calculator__card {
    padding: 3rem;
  }
}

.calculator__display {
  text-align: center;
  margin-bottom: 3rem;
}

.calculator__display-label {
  color: #4b5563;
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.calculator__amount {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.calculator__amount svg {
  width: 3rem;
  height: 3rem;
  color: var(--brand-green);
  stroke-width: 3;
}

@media (min-width: 768px) {
  .calculator__amount svg {
    width: 4rem;
    height: 4rem;
  }
}

.calculator__amount-value {
  font-size: 3.75rem;
  font-weight: 700;
  color: var(--brand-green);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .calculator__amount-value {
    font-size: 4.5rem;
  }
}

.calculator__display-note {
  color: #6b7280;
  font-size: 0.875rem;
}

.calculator__slider {
  margin-bottom: 2rem;
}

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

.calculator__slider-label {
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
}

.calculator__slider-value {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 157, 219, 0.1);
  color: var(--brand-blue);
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
}

.calculator__slider-value svg {
  width: 1rem;
  height: 1rem;
}

.calculator__slider-value-num {
  font-weight: 700;
  font-size: 1.125rem;
}

.calculator__slider-value-text {
  font-size: 0.875rem;
  font-weight: 600;
}

.calculator__range {
  width: 100%;
  height: 0.75rem;
  border-radius: 0.5rem;
  appearance: none;
  cursor: pointer;
  background: #e5e7eb;
}

.calculator__range::-webkit-slider-thumb {
  appearance: none;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand-blue);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.calculator__range::-webkit-slider-thumb:hover {
  transform: scale(1.1);
}

.calculator__range::-moz-range-thumb {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--brand-blue);
  cursor: pointer;
  border: 3px solid #fff;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s;
}

.calculator__range-labels {
  display: flex;
  justify-content: space-between;
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 0.5rem;
}

.calculator__breakdown {
  background: #f9fafb;
  border-radius: 0.75rem;
  padding: 1.5rem;
}

.calculator__breakdown-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.875rem;
  padding: 0.75rem 0;
}

.calculator__breakdown-row:not(:last-child) {
  border-bottom: 1px solid #e5e7eb;
}

.calculator__breakdown-label {
  color: #4b5563;
}

.calculator__breakdown-value {
  font-weight: 600;
  color: var(--brand-dark);
}

.calculator__breakdown-total {
  background: rgba(182, 214, 2, 0.1);
  border-radius: 0.5rem;
  padding: 0.75rem;
  margin-top: 0.75rem;
}

.calculator__breakdown-total .calculator__breakdown-label {
  font-weight: 700;
  color: var(--brand-green);
}

.calculator__breakdown-total .calculator__breakdown-value {
  font-size: 1.5rem;
  color: var(--brand-green);
  display: flex;
  align-items: center;
}

.calculator__breakdown-total .calculator__breakdown-value svg {
  width: 1.25rem;
  height: 1.25rem;
  stroke-width: 3;
}

.calculator__disclaimer {
  margin-top: 1.5rem;
  text-align: center;
}

.calculator__disclaimer-text {
  font-size: 0.875rem;
  color: #6b7280;
  font-style: italic;
}

.reward-section .section-cta {
  position: relative;
  z-index: 10;
}

.reward-section .section-cta__text {
  color: #cbd5e1;
}

.reward-section .section-cta__link {
  color: #fff;
}

/* ========================================
   WHO CAN REFER SECTION
   ======================================== */
.who-can-refer {
  padding: 6rem 0;
  background: linear-gradient(to bottom right, #f9fafb, #fff);
  position: relative;
  overflow: hidden;
}

.who-can-refer__bg {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.who-can-refer__bg-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--brand-blue);
  filter: blur(48px);
  width: 24rem;
  height: 24rem;
}

.who-can-refer__bg-circle--1 {
  top: 0;
  left: 0;
}

.who-can-refer__bg-circle--2 {
  bottom: 0;
  right: 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(0, 157, 219, 0.1);
  color: var(--brand-blue);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.badge svg {
  width: 1rem;
  height: 1rem;
}

.who-can-refer .section-title {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .who-can-refer .section-title {
    font-size: 3rem;
  }
}

.who-can-refer .section-subtitle {
  font-size: 1.25rem;
}

.eligible-groups {
  display: grid;
  gap: 2rem;
  max-width: 72rem;
  margin: 0 auto 4rem;
}

@media (min-width: 768px) {
  .eligible-groups {
    grid-template-columns: repeat(3, 1fr);
  }
}

.eligible-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}

.eligible-card:hover {
  border-color: rgba(0, 157, 219, 0.5);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.eligible-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, var(--brand-blue), #06b6d4);
  color: #fff;
  margin-bottom: 1.5rem;
  transition: transform 0.3s;
}

.eligible-card:hover .eligible-card__icon {
  transform: scale(1.1);
}

.eligible-card__icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 2;
}

.eligible-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.eligible-card__description {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.eligible-card__examples {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.eligible-card__example {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
}

.eligible-card__example svg {
  width: 1rem;
  height: 1rem;
  color: var(--brand-blue);
  flex-shrink: 0;
  margin-top: 0.125rem;
}

/* ========================================
   TESTIMONIAL SECTION
   ======================================== */
.testimonial {
  padding: 5rem 0;
  background: linear-gradient(to bottom right, var(--brand-dark), #111827);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonial__bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.testimonial__bg-circle {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 800px;
  height: 800px;
  background: var(--brand-blue);
  border-radius: 50%;
  filter: blur(120px);
  transform: translate(-50%, -50%);
}

.testimonial__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .testimonial__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.testimonial__image-wrapper {
  position: relative;
  order: 2;
}

@media (min-width: 768px) {
  .testimonial__image-wrapper {
    order: 1;
  }
}

.testimonial__image {
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.testimonial__image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.testimonial__image-glow {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 8rem;
  height: 8rem;
  background: rgba(0, 157, 219, 0.2);
  border-radius: 50%;
  filter: blur(24px);
}

.testimonial__content {
  order: 1;
}

@media (min-width: 768px) {
  .testimonial__content {
    order: 2;
  }
}

.testimonial__quote-icon {
  width: 3rem;
  height: 3rem;
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.testimonial__quote {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .testimonial__quote {
    font-size: 1.875rem;
  }
}

.testimonial__author-name {
  font-weight: 700;
  font-size: 1.125rem;
}

.testimonial__author-role {
  color: #9ca3af;
}

.testimonial .section-cta {
  position: relative;
  z-index: 10;
}

.testimonial .section-cta__text {
  color: #9ca3af;
}

.testimonial .section-cta__link {
  color: var(--brand-blue);
}

/* ========================================
   BENEFITS / WHY REFER SECTION
   ======================================== */
.benefits {
  padding: 6rem 0;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.benefits__bg {
  position: absolute;
  inset: 0;
  opacity: 0.02;
}

.benefits__bg-circle {
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: var(--brand-blue);
  border-radius: 50%;
  filter: blur(48px);
}

.benefits__bg-circle--1 {
  top: 5rem;
  left: 2.5rem;
}

.benefits__bg-circle--2 {
  bottom: 5rem;
  right: 2.5rem;
}

.benefits__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 72rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .benefits__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.benefits__image-wrapper {
  order: 2;
}

@media (min-width: 768px) {
  .benefits__image-wrapper {
    order: 1;
  }
}

.benefits__image {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.benefits__image img {
  width: 100%;
  height: 600px;
  object-fit: cover;
}

.benefits__image-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.benefits__image-badge-inner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefits__image-badge-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: rgba(0, 157, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefits__image-badge-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-blue);
}

.benefits__image-badge-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.benefits__image-badge-subtitle {
  font-size: 0.75rem;
  color: #4b5563;
}

.benefits__content {
  order: 1;
}

@media (min-width: 768px) {
  .benefits__content {
    order: 2;
  }
}

.benefits__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
}

.benefit-item__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(0, 157, 219, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-item__icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--brand-blue);
  stroke-width: 2;
}

.benefit-item__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
}

.benefit-item__description {
  color: #4b5563;
  line-height: 1.625;
}

/* ========================================
   GOOGLE REVIEWS SECTION
   ======================================== */
.google-reviews {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, #f9fafb);
  position: relative;
  overflow: hidden;
}

.google-reviews__bg {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  pointer-events: none;
}

.google-reviews__bg-circle {
  position: absolute;
  width: 18rem;
  height: 18rem;
  background: var(--brand-blue);
  border-radius: 50%;
  filter: blur(48px);
}

.google-reviews__bg-circle--1 {
  top: 5rem;
  right: 2.5rem;
}

.google-reviews__bg-circle--2 {
  bottom: 5rem;
  left: 2.5rem;
}

.google-reviews .section-title {
  font-size: 2.25rem;
}

@media (min-width: 768px) {
  .google-reviews .section-title {
    font-size: 3rem;
  }
}

.google-reviews__stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: #4b5563;
}

.google-reviews__stars-icons {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.google-reviews__stars-icons svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: #facc15;
  color: #facc15;
}

.google-reviews__stars-text {
  font-weight: 600;
}

.reviews-carousel {
  width: 100%;
  overflow: hidden;
  padding: 1rem 0;
  margin-top: 2rem;
}

.reviews-track {
  display: flex;
  gap: 2rem;
  animation: scroll 60s linear infinite;
  width: max-content;
}

.reviews-track:hover {
  animation-play-state: paused;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.review-card {
  background: #fff;
  border-radius: 1rem;
  padding: 2rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  width: 400px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.review-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.review-card__google-logo {
  width: 1.5rem;
  height: 1.5rem;
  flex-shrink: 0;
}

.review-card__stars {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.review-card__stars svg {
  width: 1rem;
  height: 1rem;
  fill: #facc15;
  color: #facc15;
}

.review-card__text {
  color: #4b5563;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.review-card__footer {
  border-top: 1px solid #f3f4f6;
  padding-top: 1rem;
  margin-top: auto;
}

.review-card__author {
  font-weight: 700;
  color: var(--brand-dark);
}

.review-card__role {
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========================================
   REWARD OPTIONS SECTION
   ======================================== */
.reward-options {
  padding: 5rem 0;
  background: #fff;
}

.reward-options__grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto 3rem;
}

@media (min-width: 768px) {
  .reward-options__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.reward-option-card {
  background: linear-gradient(to bottom right, #fff, #f9fafb);
  border-radius: 1rem;
  padding: 2rem;
  border: 2px solid #f3f4f6;
  transition: all 0.3s;
}

.reward-option-card:hover {
  border-color: rgba(0, 157, 219, 0.3);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
}

.reward-option-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
}

.reward-option-card__icon--blue {
  background: rgba(0, 157, 219, 0.1);
  color: var(--brand-blue);
}

.reward-option-card__icon--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.reward-option-card__icon svg {
  width: 1.75rem;
  height: 1.75rem;
  stroke-width: 1.5;
}

.reward-option-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
}

.reward-option-card__description {
  color: #4b5563;
  margin-bottom: 1rem;
  line-height: 1.625;
}

.reward-option-card__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 600;
}

.reward-option-card__badge--blue {
  background: rgba(0, 157, 219, 0.1);
  color: var(--brand-blue);
}

.reward-option-card__badge--green {
  background: rgba(34, 197, 94, 0.1);
  color: #16a34a;
}

.reward-option-card__badge svg {
  width: 1rem;
  height: 1rem;
}

/* Timeline Box */
.payment-timeline {
  max-width: 48rem;
  margin: 0 auto 3rem;
}

.payment-timeline__card {
  background: linear-gradient(to right, var(--brand-dark), #374151);
  border-radius: 1rem;
  padding: 2rem;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.payment-timeline__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 16rem;
  height: 16rem;
  background: rgba(0, 157, 219, 0.2);
  border-radius: 50%;
  filter: blur(48px);
}

.payment-timeline__inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .payment-timeline__inner {
    flex-direction: row;
  }
}

.payment-timeline__icon {
  flex-shrink: 0;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
}

.payment-timeline__icon svg {
  width: 2rem;
  height: 2rem;
}

.payment-timeline__content {
  text-align: center;
  flex: 1;
}

@media (min-width: 768px) {
  .payment-timeline__content {
    text-align: left;
  }
}

.payment-timeline__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.payment-timeline__text {
  color: #d1d5db;
  line-height: 1.625;
}

.payment-timeline__text strong {
  color: #fff;
}

/* ========================================
   FAQ SECTION
   ======================================== */
.faq {
  padding: 5rem 0;
  background: #fff;
}

.faq .section-header {
  max-width: 56rem;
  margin: 0 auto 4rem;
}

.faq__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(0, 157, 219, 0.1);
  color: var(--brand-blue);
  margin-bottom: 1.5rem;
}

.faq__icon-wrapper svg {
  width: 2rem;
  height: 2rem;
}

.faq__container {
  max-width: 56rem;
  margin: 0 auto;
}

.faq__list {
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
  border: 1px solid #f3f4f6;
  overflow: hidden;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-item__button {
  width: 100%;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: background-color 0.2s;
  border-radius: 0.5rem;
}

.faq-item__button:hover {
  background: #f9fafb;
}

.faq-item__question {
  font-weight: 600;
  color: var(--brand-dark);
  font-size: 1.125rem;
  padding-right: 2rem;
}

.faq-item__icon {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--brand-blue);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-item--open .faq-item__icon {
  transform: rotate(180deg);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s;
  opacity: 0;
}

.faq-item--open .faq-item__answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item__answer-inner {
  padding: 0 1.5rem 1.5rem;
  color: #4b5563;
  line-height: 1.625;
}

.faq__footer {
  margin-top: 3rem;
  text-align: center;
}

.faq__footer-text {
  color: #4b5563;
  margin-bottom: 1rem;
}

.faq__footer-link {
  color: var(--brand-blue);
  font-weight: 600;
}

.faq__footer-link:hover {
  text-decoration: underline;
}

/* ========================================
   REFERRAL FORM SECTION
   ======================================== */
.referral-form {
  padding: 5rem 0;
  background: linear-gradient(to bottom, rgba(0, 157, 219, 0.05), #fff);
  position: relative;
  overflow: hidden;
  scroll-margin-top: 5rem;
}

.referral-form__bg {
  position: absolute;
  inset: 0;
  opacity: 0.03;
}

.referral-form__bg-circle {
  position: absolute;
  width: 24rem;
  height: 24rem;
  background: var(--brand-blue);
  border-radius: 50%;
  filter: blur(48px);
}

.referral-form__bg-circle--1 {
  top: 5rem;
  right: 2.5rem;
}

.referral-form__bg-circle--2 {
  bottom: 5rem;
  left: 2.5rem;
}

.referral-form__container {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.referral-form .badge {
  background: rgba(0, 157, 219, 0.1);
}

.referral-form .badge svg {
  width: 1rem;
  height: 1rem;
}

.referral-form .section-title {
  font-size: 2.25rem;
}

.referral-form .section-subtitle {
  font-size: 1.125rem;
}

/* Gravity Forms Styling - wraps around the shortcode */
.referral-form__form-wrapper {
  background: #fff;
  padding: 2rem;
  border-radius: 1rem;
  border: 2px solid rgba(0, 157, 219, 0.2);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* Gravity Forms Overrides */
.referral-form__form-wrapper .gform_wrapper {
  margin: 0;
}

.referral-form__form-wrapper .gform_wrapper input[type="text"],
.referral-form__form-wrapper .gform_wrapper input[type="email"],
.referral-form__form-wrapper .gform_wrapper input[type="tel"],
.referral-form__form-wrapper .gform_wrapper textarea,
.referral-form__form-wrapper .gform_wrapper select {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid #d1d5db;
  outline: none;
  transition: all 0.2s;
  font-family: inherit;
  font-size: 1rem;
}

.referral-form__form-wrapper .gform_wrapper input:focus,
.referral-form__form-wrapper .gform_wrapper textarea:focus,
.referral-form__form-wrapper .gform_wrapper select:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px var(--brand-blue);
}

.referral-form__form-wrapper .gform_wrapper .gfield_label {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--brand-dark);
  margin-bottom: 0.5rem;
  display: block;
}

.referral-form__form-wrapper .gform_wrapper .gform_footer input[type="submit"],
.referral-form__form-wrapper .gform_wrapper .gform_page_footer input[type="submit"] {
  width: 100%;
  background: var(--brand-blue);
  color: #fff;
  font-weight: 700;
  font-size: 1.125rem;
  padding: 1rem;
  border-radius: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.referral-form__form-wrapper .gform_wrapper .gform_footer input[type="submit"]:hover,
.referral-form__form-wrapper .gform_wrapper .gform_page_footer input[type="submit"]:hover {
  background: var(--brand-blue-hover);
}

/* ========================================
   PREFER TO DISCUSS SECTION
   ======================================== */
.prefer-to-discuss {
  padding: 4rem 0;
  background: var(--brand-dark);
  color: #fff;
}

.prefer-to-discuss__container {
  max-width: 64rem;
  margin: 0 auto;
  text-align: center;
}

.prefer-to-discuss__icon {
  width: 3rem;
  height: 3rem;
  color: var(--brand-blue);
  margin: 0 auto 1rem;
}

.prefer-to-discuss__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .prefer-to-discuss__title {
    font-size: 2.25rem;
  }
}

.prefer-to-discuss__description {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.625;
}

.prefer-to-discuss__contacts {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
  margin-top: 2.5rem;
}

@media (min-width: 640px) {
  .prefer-to-discuss__contacts {
    flex-direction: row;
  }
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 1rem 1.5rem;
  border-radius: 0.75rem;
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: var(--brand-blue);
}

.contact-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.1);
}

.contact-card__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.contact-card__content {
  text-align: left;
}

.contact-card__label {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
}

.contact-card__value {
  font-size: 1.125rem;
  font-weight: 700;
}

/* ========================================
   TERMS / FOOTER SECTION
   ======================================== */
.terms {
  padding: 3rem 0;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.terms__card {
  max-width: 64rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 0.75rem;
  padding: 2rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

.terms__inner {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .terms__inner {
    flex-direction: row;
  }
}

.terms__icon {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4b5563;
}

.terms__icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.terms__content {
  flex: 1;
}

.terms__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.terms__title svg {
  width: 1.25rem;
  height: 1.25rem;
  color: #f59e0b;
}

.terms__text {
  color: #374151;
  line-height: 1.625;
  margin-bottom: 1rem;
}

.terms__text a {
  color: var(--brand-blue);
  font-weight: 600;
}

.terms__text a:hover {
  text-decoration: underline;
}

.terms__notice {
  font-size: 0.875rem;
  color: #4b5563;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 0.75rem 1rem;
  border-radius: 0 0.25rem 0.25rem 0;
}

.terms__notice strong {
  color: #78350f;
}

.footer {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
