/* ===== TYPOGRAPHY SYSTEM - Figma Match ===== */
:root {
  /* Font Families */
  --font-space-grotesk: "Space Grotesk", sans-serif;
  --font-dm-sans: "DM Sans", sans-serif;
  --font-work-sans: "Work Sans", sans-serif;

  /* === HEADINGS - Space Grotesk, SemiBold === */
  --font-h1: var(--font-space-grotesk);
  --size-h1: 36px;
  --line-height-h1: 128%;
  --letter-spacing-h1: -0.5px;
  --weight-h1: 600;

  --font-h2: var(--font-space-grotesk);
  --size-h2: 32px;
  --line-height-h2: 128%;
  --letter-spacing-h2: -0.5px;
  --weight-h2: 600;

  --font-h3: var(--font-space-grotesk);
  --size-h3: 28px;
  --line-height-h3: 128%;
  --letter-spacing-h3: -0.5px;
  --weight-h3: 600;

  --font-h4: var(--font-space-grotesk);
  --size-h4: 24px;
  --line-height-h4: 128%;
  --letter-spacing-h4: -0.5px;
  --weight-h4: 600;

  --font-h5: var(--font-space-grotesk);
  --size-h5: 20px;
  --line-height-h5: 128%;
  --letter-spacing-h5: 0px;
  --weight-h5: 600;

  --font-h6: var(--font-space-grotesk);
  --size-h6: 18px;
  --line-height-h6: 128%;
  --letter-spacing-h6: 0.5px;
  --weight-h6: 600;

  /* === BODY TEXT - DM Sans === */
  --font-big-body: var(--font-dm-sans);
  --size-big-body: 18px;
  --line-height-big-body: 150%;
  --letter-spacing-big-body: 0.02em;
  --weight-big-body: 400;

  --font-small-body: var(--font-dm-sans);
  --size-small-body: 16px;
  --line-height-small-body: 150%;
  --letter-spacing-small-body: 0.02em;
  --weight-small-body: 400;

  /* === BUTTONS - DM Sans === */
  --font-button: var(--font-dm-sans);
  --size-button: 18px;
  --line-height-button: 100%;
  --letter-spacing-button: 0.02em;
  --weight-button: 600;

  --font-small-button: var(--font-dm-sans);
  --size-small-button: 16px;
  --line-height-small-button: 100%;
  --letter-spacing-small-button: 0.02em;
  --weight-small-button: 600;

  /* === LABELS - DM Sans === */
  --font-label: var(--font-dm-sans);
  --size-label: 14px;
  --line-height-label: 150%;
  --letter-spacing-label: 0.02em;
  --weight-label: 400;

  --font-small-label: var(--font-dm-sans);
  --size-small-label: 12px;
  --line-height-small-label: 150%;
  --letter-spacing-small-label: 0.02em;
  --weight-small-label: 400;

  /* Colors */
  --primary-dark: #1a1a3e;
  --primary-purple: #4a3f8f;
  --primary-blue: #5b6fd6;
  --accent-green: #4ade80;
  --text-white: #ffffff;
  --text-light: rgba(255, 255, 255, 0.8);
  --text-gray: #6b7280;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-dm-sans);
  font-size: var(--size-big-body);
  line-height: var(--line-height-big-body);
  letter-spacing: var(--letter-spacing-big-body);
  font-weight: var(--weight-big-body);
  color: var(--text-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-space-grotesk);
}

h1 {
  font-size: var(--size-h1);
  line-height: var(--line-height-h1);
  letter-spacing: var(--letter-spacing-h1);
  font-weight: var(--weight-h1);
}

h2 {
  font-size: var(--size-h2);
  line-height: var(--line-height-h2);
  letter-spacing: var(--letter-spacing-h2);
  font-weight: var(--weight-h2);
}

h3 {
  font-size: var(--size-h3);
  line-height: var(--line-height-h3);
  letter-spacing: var(--letter-spacing-h3);
  font-weight: var(--weight-h3);
}

h4 {
  font-size: var(--size-h4);
  line-height: var(--line-height-h4);
  letter-spacing: var(--letter-spacing-h4);
  font-weight: var(--weight-h4);
}

h5 {
  font-size: var(--size-h5);
  line-height: var(--line-height-h5);
  letter-spacing: var(--letter-spacing-h5);
  font-weight: var(--weight-h5);
}

h6 {
  font-size: var(--size-h6);
  line-height: var(--line-height-h6);
  letter-spacing: var(--letter-spacing-h6);
  font-weight: var(--weight-h6);
}

/* Utility Classes */
.text-big-body {
  font-family: var(--font-dm-sans);
  font-size: var(--size-big-body);
  line-height: var(--line-height-big-body);
  letter-spacing: var(--letter-spacing-big-body);
  font-weight: var(--weight-big-body);
}

.text-small-body {
  font-family: var(--font-dm-sans);
  font-size: var(--size-small-body);
  line-height: var(--line-height-small-body);
  letter-spacing: var(--letter-spacing-small-body);
  font-weight: var(--weight-small-body);
}

.text-button {
  font-family: var(--font-button);
  font-size: var(--size-button);
  line-height: var(--line-height-button);
  letter-spacing: var(--letter-spacing-button);
  font-weight: var(--weight-button);
}

.text-small-button {
  font-family: var(--font-small-button);
  font-size: var(--size-small-button);
  line-height: var(--line-height-small-button);
  letter-spacing: var(--letter-spacing-small-button);
  font-weight: var(--weight-small-button);
}

.text-label {
  font-family: var(--font-label);
  font-size: var(--size-label);
  line-height: var(--line-height-label);
  letter-spacing: var(--letter-spacing-label);
  font-weight: var(--weight-label);
}

.text-small-label {
  font-family: var(--font-small-label);
  font-size: var(--size-small-label);
  line-height: var(--line-height-small-label);
  letter-spacing: var(--letter-spacing-small-label);
  font-weight: var(--weight-small-label);
}

/* ==================== NAVBAR ==================== */
.navbar {
  position: absolute;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  border-bottom: 0.818px solid rgba(255, 255, 255, 0.2);
  background: linear-gradient(
    90deg,
    rgba(133, 157, 189, 0.17) 0.01%,
    rgba(133, 157, 189, 0.04) 11.69%,
    rgba(133, 157, 189, 0.05) 32.24%,
    rgba(133, 157, 189, 0.06) 75.04%,
    rgba(133, 157, 189, 0.25) 99.99%
  );
  backdrop-filter: blur(32px);
}

.navbar-brand img {
  height: 32px;
}

.navbar-nav {
  gap: 10px;
}

.navbar-nav .nav-link {
  font-family: var(--font-dm-sans);
  color: #fff !important;
  font-weight: 400;
  font-size: 18px;
  line-height: 148%;
  padding: 8px 20px !important;
  transition: opacity 0.3s;
}

.navbar-nav .nav-link:hover {
  opacity: 0.8;
}

.nav-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

.nav-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.nav-icon-btn:hover {
  opacity: 0.8;
}

.nav-icon-btn img {
  width: 44px;
  height: 44px;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
  background: linear-gradient(180deg, #2a2a5a 0%, #4a4a8a 50%, #7a8ac0 100%);
  background-size: cover;
  background-position: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: var(--font-space-grotesk);
  font-size: 60px;
  font-weight: 700;
  line-height: 68px;
  letter-spacing: -0.5px;
  margin-bottom: 16px;
  background: linear-gradient(
    178deg,
    #fff 28.08%,
    rgba(255, 255, 255, 0) 324.51%
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-family: var(--font-dm-sans);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.5px;
  margin-bottom: 48px;
  max-width: 480px;
}

.app-buttons {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.app-buttons a {
  display: inline-block;
  transition: transform 0.3s, opacity 0.3s;
}

.app-buttons a:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.app-buttons img {
  height: auto;
  width: auto;
}

/* Trust Badge */
.trust-badge {
  display: flex;
  align-items: center;
  gap: 12px;
}

.trust-avatars {
  display: flex;
  align-items: center;
}

.trust-avatars img {
  height: 40px;
  width: auto;
}

.trust-text {
  font-family: var(--font-dm-sans);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.5px;
}

.trust-text strong {
  display: block;
  font-weight: 600;
}

.trust-text span {
  opacity: 0.8;
}

/* ==================== HERO SLIDER - Auto Slide in Place ==================== */
.hero-slider-container {
  position: relative;
  height: 550px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slider {
  position: relative;
  width: 420px;
  height: 500px;
  overflow: hidden;
}

.hero-slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.6s ease-in-out;
}

.hero-slide {
  flex: 0 0 260px;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}

/* GIF placeholder area */
.lightning-gif-placeholder {
  position: absolute;
  left: -40px;
  top: 50%;
  transform: translateY(-50%);
  width: 80px;
  height: 80px;
  z-index: 10;
}

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991px) {
  .hero-section {
    padding: 120px 0 80px;
  }

  .hero-title {
    font-size: 42px;
    line-height: 50px;
  }

  .hero-slider-container {
    height: 450px;
    margin-top: 40px;
  }

  .hero-slider {
    width: 350px;
    height: 420px;
  }

  .hero-slide {
    flex: 0 0 220px;
    height: 400px;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 100px 0 40px;
  }

  .hero-title {
    font-size: 32px;
    line-height: 40px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }

  .app-buttons {
    flex-direction: column;
    margin-bottom: 32px;
  }

  .hero-slider-container {
    height: 380px;
  }

  .hero-slider {
    width: 280px;
    height: 350px;
  }

  .hero-slide {
    flex: 0 0 180px;
    height: 320px;
    border-radius: 24px;
  }

  .hero-slider-track {
    gap: 15px;
  }

  .nav-buttons {
    display: none;
  }

  .lightning-gif-placeholder {
    display: none;
  }

  #navbarNav {
    margin: 40px 0 0 -16px !important;
  }
}

/* ==================== OUR SERVICES SECTION ==================== */
.services-section {
  background: #fff;
  padding: 100px 0;
  position: relative;
}

.services-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
  position: relative;
}

.services-header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.section-label {
  font-family: var(--font-dm-sans);
  font-size: 24px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.5px;
  color: #5b55ff;
}

.section-title {
  font-family: var(--font-space-grotesk);
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.5px;
  color: #000;
}

/* Decorative line under heading - spans full width */
.services-line-decoration {
  width: 100%;
  height: auto;
  margin-top: -10px;
  margin-bottom: 20px;
}

.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(270deg, #5b55ff 0%, #b38dff 100%);
  box-shadow: 0 -4px 2px 0 rgba(0, 0, 0, 0.25) inset,
    0 2px 1px 0 rgba(255, 255, 255, 0.25) inset;
  color: #fff;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.36px;
  padding: 16px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-2px);
}

.btn-primary-custom img {
  width: 20px;
  height: 20px;
}

/* Mobile button - hidden on desktop */
.services-mobile-btn {
  display: none;
  text-align: center;
  margin-top: 24px;
}

/* Services Grid - Exact Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  grid-template-rows: auto auto;
  gap: 24px;
}

.service-card {
  background: #f6f6ff;
  border-radius: 12px;
  padding: 32px;
  border: 1px solid #e1e6f1;
  box-shadow: 0 4px 40px 0 rgba(167, 167, 167, 0.08);
}

.service-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 24px;
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-title {
  font-family: var(--font-dm-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 150%;
  color: #000;
  margin-bottom: 4px;
}

.service-desc {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #807fa1;
  margin: 0;
}

/* Top Row - First card (Fuel Delivery) */
.services-grid > .service-card:nth-child(1) {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}

/* Center Image */
.services-center-image {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.services-wifi-decoration {
  width: 100px;
  height: auto;
  z-index: 1;
}

.services-center-image > img:last-child {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
}

/* Top Row - Third card (EV Charging) */
.services-grid > .service-card:nth-child(3) {
  grid-column: 3;
  grid-row: 1;
  align-self: end;
}

/* Bottom Row - 4 Cards */
.services-grid > .service-card:nth-child(4) {
  grid-column: 1;
  grid-row: 2;
}

.services-grid > .service-card:nth-child(5) {
  grid-column: 2;
  grid-row: 2;
  justify-self: start;
  width: calc(50% - 12px);
}

.services-grid > .service-card:nth-child(6) {
  grid-column: 2;
  grid-row: 2;
  justify-self: end;
  width: calc(50% - 12px);
}

.services-grid > .service-card:nth-child(7) {
  grid-column: 3;
  grid-row: 2;
}

/* ==================== SERVICES RESPONSIVE ==================== */
@media (max-width: 1199px) {
  .services-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
  }

  .services-center-image {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .services-grid > .service-card:nth-child(1) {
    grid-column: 1;
    grid-row: 2;
  }

  .services-grid > .service-card:nth-child(3) {
    grid-column: 2;
    grid-row: 2;
  }

  .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5),
  .services-grid > .service-card:nth-child(6),
  .services-grid > .service-card:nth-child(7) {
    grid-column: auto;
    grid-row: 3;
    width: 100%;
    justify-self: auto;
  }
}

@media (max-width: 991px) {
  .services-section {
    padding: 80px 0;
  }

  .services-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }

  .section-title {
    font-size: 32px;
  }
}

@media (max-width: 767px) {
  .services-section {
    padding: 40px 0;
  }

  /* Hide header button, show mobile button */
  .services-header .btn-primary-custom {
    display: none;
  }

  .services-mobile-btn {
    display: block;
  }

  .services-mobile-btn .btn-primary-custom {
    width: 100%;
    justify-content: space-between;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .services-grid > .service-card:nth-child(1),
  .services-grid > .service-card:nth-child(3),
  .services-grid > .service-card:nth-child(4),
  .services-grid > .service-card:nth-child(5),
  .services-grid > .service-card:nth-child(6),
  .services-grid > .service-card:nth-child(7) {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
  }

  .services-center-image {
    grid-column: 1;
  }

  .section-title {
    font-size: 28px;
  }

  .section-title br {
    display: none;
  }

  .service-card {
    padding: 20px;
  }

  .services-line-decoration {
    display: none;
  }

  .services-wifi-decoration {
    width: 60px;
  }
}

/* ==================== OUR PROCESS SECTION ==================== */
.process-section {
  background: linear-gradient(180deg, #f9f9f9 0%, #fdfcf3 50%, #f1ebfd 100%);
  padding: 100px 0;
  position: relative;
}

.process-top-deco {
  position: absolute;
  top: 0;
  left: 0;
  width: auto;
  height: auto;
  z-index: 1;
}

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

.process-header .section-label {
  display: block;
  margin-bottom: 8px;
}

.process-header .section-title {
  margin-bottom: 16px;
}

.process-line-decoration {
  width: 100%;
  max-width: 800px;
  height: auto;
  margin: 0 auto;
}

/* Process Cards */
.process-cards {
  display: flex;
  flex-direction: column;
  gap: 100px;
}

.process-card {
  border-radius: 24px;
  padding: 60px;
  /* box-shadow: 5px 5px 24px 1px rgba(4, 11, 22, 0.08); */
  display: flex;
  justify-content: space-between;
  gap: 40px;
  position: sticky;
  overflow: hidden;
}

/* Card Background Colors & Stacking */
.process-card-1 {
  background: #ccbbf4;
  top: 40px;
  z-index: 1;
}

.process-card-2 {
  background: #fadddb;
  top: 60px;
  z-index: 2;
}

.process-card-3 {
  background: #c9d2ff;
  top: 80px;
  z-index: 3;
}

.process-card-4 {
  background: #f5df9f;
  top: 100px;
  z-index: 4;
}

/* Background decoration - right side 60% width */
.process-card-bg-deco {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 60%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.5;
}

/* Left corner decoration */
.process-card-left-deco {
  position: absolute;
  left: 0;
  bottom: 0;
  height: auto;
  width: auto;
  max-height: 80%;
  z-index: 1;
}

.process-card-content {
  flex: 1;
  max-width: 500px;
  position: relative;
  z-index: 2;
}

/* .process-card-number {
  width: 64px;
  height: 64px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-dm-sans);
  font-size: 24px;
  font-weight: 700;
  font-style: italic;
  color: #fff;
  margin-bottom: 24px;
} */
img.process-card-number-img {
  width: 120px !important;
  margin: -30px 0 0px -30px !important;
}

/* .process-card-number-img {
  width: 64px;
  height: 64px;
  margin-bottom: 24px;
  object-fit: contain;
} */

.process-card-title {
  font-family: var(--font-dm-sans);
  font-size: 28px;
  font-weight: 700;
  line-height: 150%;
  color: #000;
  margin-bottom: 8px;
}

.process-card-desc {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: #555;
  margin: 0;
}

.process-card-image {
  flex-shrink: 0;
  position: relative;
  z-index: 2;
  margin-right: 60px;
  margin-bottom: -60px;
}

.process-card-image img {
  max-width: 400px;
  height: auto;
  border-radius: 40px 40px 0 0;
}

/* ==================== PROCESS RESPONSIVE ==================== */
@media (max-width: 991px) {
  .process-section {
    padding: 80px 0;
  }

  .process-cards {
    gap: 24px;
  }

  .process-card {
    flex-direction: column;
    text-align: center;
    padding: 40px;
  }

  .process-card-content {
    max-width: 100%;
  }

  .process-card-number {
    margin: 0 auto 24px;
  }

  .process-card-left-deco,
  .process-card-bg-deco {
    display: none;
  }

  .process-card-image {
    margin: 20px 0 -40px;
  }

  .process-card-image img {
    max-width: 300px;
    border-radius: 30px 30px 0 0;
  }
}

@media (max-width: 767px) {
  .process-section {
    padding: 40px 0;
  }

  .process-header {
    margin-bottom: 40px;
  }

  .process-card {
    padding: 24px;
    text-align: left;
  }

  .process-card-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin: 0 0 24px;
  }

  .process-card-title {
    font-size: 22px;
  }

  .process-card-desc {
    font-size: 16px;
  }

  .process-card-image {
    margin: 20px -24px -24px;
  }

  .process-card-image img {
    max-width: 100%;
    width: 100%;
    border-radius: 24px 24px 0 0;
  }

  .process-top-deco {
    width: 60px;
  }

  .process-line-decoration {
    max-width: 100%;
  }
}

/* ==================== WHY CHOOSE XTRAFYL SECTION ==================== */
.why-choose-section {
  background: #fff;
  padding: 100px 0 60px 0;
}

.why-choose-header {
  text-align: left;
  /* margin-bottom: 60px; */
  position: relative;
}
.why-choose-right {
  margin-top: -44px;
}

.why-choose-header .section-label {
  display: block;
  margin-bottom: 8px;
}

.why-choose-header .section-title {
  margin-bottom: 0;
}

.why-choose-header .btn-primary-custom {
  position: absolute;
  right: 0;
  top: 0;
}

/* Line Decoration */
.why-choose-line {
  width: 100%;
  height: auto;
}

/* Features Layout */
.why-choose-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

/* Desktop - show, Mobile - hide */
.why-choose-desktop {
  display: flex;
}

.why-choose-mobile {
  display: none;
}

.why-choose-left,
.why-choose-right {
  flex: 1;
}

.why-choose-left img,
.why-choose-right img {
  width: 100%;
  height: auto;
}

/* Mobile Layout */
.why-choose-top-mob img,
.why-choose-bottom-mob img {
  width: 100%;
  height: auto;
}

/* Center Phones */
.why-choose-phones {
  flex: 1.2;
  display: flex;
  justify-content: center;
  align-items: center;
}

.phones-image {
  max-width: 100%;
  height: auto;
}

/* ==================== WHY CHOOSE RESPONSIVE ==================== */
@media (max-width: 991px) {
  .why-choose-section {
    padding: 80px 0;
  }

  .why-choose-header .btn-primary-custom {
    position: static;
  }

  .why-choose-desktop {
    flex-direction: column;
    gap: 40px;
  }

  .why-choose-desktop .why-choose-phones {
    order: -1;
  }

  .phones-image {
    max-width: 500px;
  }

  .why-choose-left,
  .why-choose-right {
    display: flex;
    justify-content: center;
  }

  .why-choose-left img,
  .why-choose-right img {
    max-width: 400px;
  }
}

@media (max-width: 767px) {
  .why-choose-section {
    padding: 40px 0;
  }



  .why-choose-header .btn-primary-custom {
    display: none;
  }

  .why-choose-line {
    margin-bottom: 24px;
  }

  /* Switch layouts */
  .why-choose-desktop {
    display: none;
  }

  .why-choose-mobile {
    display: flex;
    flex-direction: column;
    gap: 24px;
  }

  .why-choose-mobile .why-choose-phones {
    order: 0;
  }

  .phones-image {
    max-width: 100%;
  }
}

/* ==================== FOR PROVIDERS SECTION ==================== */
.providers-section {
  background: #181d26;
  padding: 100px 0;
}

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

.providers-header .section-label {
  display: block;
  margin-bottom: 8px;
}

.providers-header .section-title {
  color: #fff;
  margin-bottom: 16px;
}

.providers-line {
  width: 100%;
  height: auto;
}

img.provider-card-image-smart {
  min-width: 310px !important;
  width: 100%;
  border-radius: 12px;
}

.provider-card-image img {
  width: 100% !important;
}

/* Cards Grid */
.providers-cards {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-bottom: 80px;
}

.providers-top-row {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.providers-bottom-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

/* Provider Card Base - Other 4 cards */
.provider-card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
}

/* Main Card - First card with border */
.provider-main-card {
  position: relative;
  border-radius: 12px;
  border: 1px solid #e1e6f1;
  background: #fff;
  padding: 32px;
}

/* For Providers label */
.provider-label {
  font-family: var(--font-dm-sans);
  font-size: 20px;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: -0.5px;
  color: #5b55ff;
  display: block;
  margin-bottom: 16px;
}

/* Main card title - "Smart tools for growing your auto service business" */
.provider-card-title {
  font-family: var(--font-space-grotesk);
  font-size: 38px;
  font-weight: 700;
  line-height: 42px;
  letter-spacing: -0.5px;
  color: #000;
  margin-bottom: 16px;
}

/* Main card description */
.provider-card-desc {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 500;
  line-height: 150%;
  color: #807fa1;
  margin-bottom: 60px;
}

.btn-signup {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(270deg, #5b55ff 0%, #b38dff 100%);
  box-shadow: 0 -4px 2px 0 rgba(0, 0, 0, 0.25) inset,
    0 2px 1px 0 rgba(255, 255, 255, 0.25) inset;
  color: #fff;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.36px;
  padding: 16px 20px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 72px;
}

.btn-signup:hover {
  opacity: 0.9;
  color: #fff;
  transform: translateY(-2px);
}

.btn-signup img {
  width: 20px;
  height: 20px;
}

/* Small Card Titles */
.provider-card-title-sm {
  font-family: var(--font-dm-sans);
  font-size: 24px;
  font-weight: 600;
  line-height: 150%;
  color: #32254c;
  margin-bottom: 8px;
}

/* Small Card Description */
.provider-card .provider-card-desc {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
  color: #807fa1;
  margin-bottom: 0;
}

.provider-card-image {
  margin-top: 20px;
  min-height: 150px;
  border-radius: 8px;
  background: #f5f5f5;
}

/* Stats Counter */
.providers-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}

.stat-item {
  text-align: center;
}

.stat-number,
.stat-prefix,
.stat-suffix {
  font-family: var(--font-dm-sans);
  font-size: 40px;
  font-weight: 500;
  line-height: 150%;
  background: linear-gradient(180deg, #5b55ff 0%, #fdfdfd 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-text {
  font-family: var(--font-dm-sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0.16px;
  color: #f1f1f1;
  margin-top: 8px;
}

.stat-divider {
  width: 2px;
  height: 48px;
  background: lightgray;
}

/* ==================== PROVIDERS RESPONSIVE ==================== */
@media (max-width: 991px) {
  .providers-section {
    padding: 80px 0;
  }

  .providers-top-row {
    grid-template-columns: 1fr;
  }

  .providers-bottom-row {
    grid-template-columns: 1fr 1fr;
  }

  .providers-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px 48px;
    justify-items: center;
    position: relative;
  }

  .providers-stats::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 2px;
    height: 80%;
    background: lightgray;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    width: auto;
  }
}

@media (max-width: 767px) {
  .providers-section {
    padding: 40px 0;
  }

  .providers-header {
    margin-bottom: 40px;
  }

  .providers-cards {
    margin-bottom: 60px;
    gap: 24px;
  }

  .providers-top-row {
    gap: 24px;
  }

  .providers-bottom-row {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .provider-card {
    padding: 20px;
  }

  .provider-main-card {
    padding: 24px;
  }

  .provider-card-title {
    font-size: 28px;
    line-height: 34px;
  }

  .stat-number,
  .stat-prefix,
  .stat-suffix {
    font-size: 32px;
  }

  .stat-item {
    width: auto;
  }

  .providers-stats {
    gap: 24px 32px;
  }
}

/* ==================== CTA SECTION ==================== */
.cta-section {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 100px 0;
}

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

.cta-logo {
  height: 80px;
  width: auto;
  margin-bottom: 24px;
}

.cta-line-decoration {
  width: 100%;
  height: auto;
  margin-bottom: 32px;
}

.cta-title {
  font-family: var(--font-space-grotesk);
  font-size: 48px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: -0.5px;
  color: #fff;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  gap: 24px;
  align-items: center;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.36px;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.btn-cta img {
  width: 20px;
  height: 20px;
}

.btn-cta-white {
  background: #fff;
  color: #5b55ff;
  padding: 16px 20px;
}

.btn-cta-white:hover {
  background: #f5f5f5;
  color: #5b55ff;
  transform: translateY(-2px);
}

.btn-cta-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid #fff;
  padding: 16px 20px;
}

.btn-cta-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  transform: translateY(-2px);
}

/* ==================== CTA RESPONSIVE ==================== */
@media (max-width: 991px) {
  .cta-section {
    padding: 80px 0;
  }

  .cta-title {
    font-size: 36px;
  }

  .cta-logo {
    height: 60px;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 40px 0;
  }

  .cta-logo {
    height: 50px;
    margin-bottom: 16px;
  }

  .cta-line-decoration {
    max-width: 100%;
    margin-bottom: 24px;
  }

  .cta-title {
    font-size: 28px;
    margin-bottom: 32px;
  }

  .cta-title br {
    display: none;
  }

  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .btn-cta {
    width: 100%;
    justify-content: center;
  }
}

/* ==================== FOOTER ==================== */
.footer-section {
  border-top: 1px solid rgba(214, 214, 214, 0.3);
  background: #000;
  padding: 48px 0 24px 0;
}

.footer-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-link {
  font-family: var(--font-dm-sans);
  font-size: 20px;
  font-weight: 400;
  line-height: 148%;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.footer-link:hover {
  color: #fff;
  opacity: 0.8;
}

.footer-copyright {
  font-family: var(--font-dm-sans);
  font-size: 18px;
  font-weight: 400;
  line-height: 148%;
  color: #fff;
  text-align: center;
  margin: 0;
}

/* ==================== FOOTER RESPONSIVE ==================== */
@media (max-width: 767px) {
  .footer-section {
    padding: 32px 0;
  }

  .footer-links {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
  }

  .footer-link {
    font-size: 18px;
  }

  .footer-copyright {
    font-size: 16px;
  }
}
