/* Variables */
:root {
  /* Colors */
  --faxilolo-dark-1: #222831;
  --faxilolo-dark-2: #31363f;
  --faxilolo-accent: #76abae;
  --faxilolo-light: #eeeeee;
  --faxilolo-white: #ffffff;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 6rem;

  /* Typography */
  --font-primary: 'Montserrat', sans-serif;
  --font-secondary: 'Playfair Display', serif;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  color: var(--faxilolo-dark-1);
  background-color: var(--faxilolo-white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-secondary);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: var(--space-sm);
}

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2.2rem;
}

h3 {
  font-size: 1.8rem;
}

p {
  margin-bottom: var(--space-sm);
}

a {
  text-decoration: none;
  color: var(--faxilolo-dark-1);
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

section {
  padding: var(--space-lg) 0;
}

/* Container */
.faxilolo-container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

/* Buttons */
.faxilolo-btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.faxilolo-btn-primary {
  background-color: var(--faxilolo-accent);
  color: var(--faxilolo-white);
}

.faxilolo-btn-primary:hover {
  background-color: #5d8a8d;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(118, 171, 174, 0.3);
}

.faxilolo-btn-secondary {
  background-color: transparent;
  color: var(--faxilolo-dark-1);
  border: 2px solid var(--faxilolo-dark-1);
}

.faxilolo-btn-secondary:hover {
  background-color: var(--faxilolo-dark-1);
  color: var(--faxilolo-white);
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(34, 40, 49, 0.2);
}

/* Section Headers */
.faxilolo-section-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.faxilolo-section-header h2 {
  position: relative;
  display: inline-block;
  margin-bottom: var(--space-sm);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.faxilolo-section-header h2::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--faxilolo-accent);
  transform: translateX(-50%);
}

.faxilolo-section-header p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--faxilolo-dark-2);
}

/* Header & Navigation */
.faxilolo-header {
  position: sticky;
  top: 0;
  background-color: var(--faxilolo-white);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  padding: var(--space-sm) 0;
}

.faxilolo-navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faxilolo-logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: var(--faxilolo-accent);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.faxilolo-nav-list {
  display: flex;
  gap: var(--space-md);
}

.faxilolo-nav-list a {
  font-weight: 500;
  position: relative;
}

.faxilolo-nav-list a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--faxilolo-accent);
  transition: width 0.3s ease;
}

.faxilolo-nav-list a:hover {
  color: var(--faxilolo-accent);
}

.faxilolo-nav-list a:hover::after {
  width: 100%;
}

.faxilolo-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.faxilolo-burger span {
  display: block;
  width: 25px;
  height: 3px;
  background-color: var(--faxilolo-dark-1);
  transition: all 0.3s ease;
}

/* Hero Section */
.faxilolo-hero {
  padding: var(--space-xl) 0;
  background-color: var(--faxilolo-light);
  position: relative;
  overflow: hidden;
}

.faxilolo-hero .faxilolo-container {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.faxilolo-hero-content {
  flex: 1;
}

.faxilolo-hero-content h2 {
  font-size: 2.5rem;
  margin-bottom: var(--space-sm);
  color: var(--faxilolo-dark-1);
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.1);
}

.faxilolo-hero-content p {
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  color: var(--faxilolo-dark-2);
}

.faxilolo-hero-buttons {
  display: flex;
  gap: var(--space-sm);
}

.faxilolo-hero-image {
  flex: 1;
  position: relative;
}

.faxilolo-hero-shape {
  position: absolute;
  top: -20px;
  left: -20px;
  width: 100%;
  height: 100%;
  background-color: var(--faxilolo-accent);
  z-index: 1;
  border-radius: 10px;
}

.faxilolo-hero-image img {
  position: relative;
  z-index: 2;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.faxilolo-services {
  padding: var(--space-xl) 0;
}

.faxilolo-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--space-md);
}

.faxilolo-service-card {
  background-color: var(--faxilolo-white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faxilolo-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faxilolo-service-icon {
  margin-bottom: var(--space-sm);
}

.faxilolo-service-icon svg {
  fill: none;
  stroke: var(--faxilolo-accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faxilolo-service-card h3 {
  font-size: 1.3rem;
  color: var(--faxilolo-dark-1);
  margin-bottom: var(--space-xs);
}

.faxilolo-service-card p {
  color: var(--faxilolo-dark-2);
  font-size: 0.95rem;
}

/* Process Section */
.faxilolo-process {
  background-color: var(--faxilolo-light);
  padding: var(--space-xl) 0;
}

.faxilolo-process-timeline {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}

.faxilolo-process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--faxilolo-dark-2);
  z-index: 1;
}

.faxilolo-timeline-item {
  position: relative;
  z-index: 2;
  width: 22%;
  background-color: var(--faxilolo-white);
  padding: var(--space-md);
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faxilolo-timeline-number {
  width: 60px;
  height: 60px;
  background-color: var(--faxilolo-accent);
  color: var(--faxilolo-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: -50px auto var(--space-sm);
}

.faxilolo-timeline-item h3 {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: var(--space-xs);
}

.faxilolo-timeline-item p {
  font-size: 0.9rem;
  text-align: center;
  color: var(--faxilolo-dark-2);
}

/* Case Studies Slider */
.faxilolo-case-studies {
  padding: var(--space-xl) 0;
}

.faxilolo-slider-container {
  position: relative;
  overflow: hidden;
}

.faxilolo-slider {
  display: flex;
  transition: transform 0.5s ease;
}

.faxilolo-slide {
  min-width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-md);
}

.faxilolo-case-image {
  flex: 1;
  min-width: 300px;
}

.faxilolo-case-image img {
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.faxilolo-case-image img:hover {
  transform: scale(1.05);
}

.faxilolo-case-content {
  flex: 1;
  min-width: 300px;
}

.faxilolo-case-content h3 {
  color: var(--faxilolo-dark-1);
  margin-bottom: var(--space-sm);
}

.faxilolo-case-content p {
  color: var(--faxilolo-dark-2);
  margin-bottom: var(--space-md);
}

.faxilolo-case-results {
  display: flex;
  gap: var(--space-md);
}

.faxilolo-result {
  text-align: center;
}

.faxilolo-result span {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--faxilolo-accent);
  display: block;
}

.faxilolo-result p {
  font-size: 0.9rem;
  color: var(--faxilolo-dark-2);
  margin: 0;
}

.faxilolo-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: var(--space-md);
  gap: var(--space-sm);
}

.faxilolo-prev,
.faxilolo-next {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--faxilolo-light);
  transition: all 0.3s ease;
}

.faxilolo-prev:hover,
.faxilolo-next:hover {
  background-color: var(--faxilolo-accent);
}

.faxilolo-prev svg,
.faxilolo-next svg {
  fill: none;
  stroke: var(--faxilolo-dark-1);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.3s ease;
}

.faxilolo-prev:hover svg,
.faxilolo-next:hover svg {
  stroke: var(--faxilolo-white);
}

.faxilolo-dots {
  display: flex;
  gap: 8px;
}

.faxilolo-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: var(--faxilolo-light);
  cursor: pointer;
  transition: all 0.3s ease;
}

.faxilolo-dot.active {
  background-color: var(--faxilolo-accent);
  transform: scale(1.2);
}

/* Pricing Section */
.faxilolo-pricing {
  background-color: var(--faxilolo-light);
  padding: var(--space-xl) 0;
}

.faxilolo-pricing-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-md);
}

.faxilolo-pricing-card {
  background-color: var(--faxilolo-white);
  border-radius: 8px;
  padding: var(--space-md);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  position: relative;
  display: flex;
  flex-direction: column;
}

.faxilolo-pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.faxilolo-pricing-highlighted {
  border: 2px solid var(--faxilolo-accent);
  transform: translateY(-15px);
}

.faxilolo-pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--faxilolo-accent);
  color: var(--faxilolo-white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
}

.faxilolo-pricing-header {
  text-align: center;
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--faxilolo-light);
}

.faxilolo-pricing-header h3 {
  font-size: 1.5rem;
}

.faxilolo-price {
  margin: var(--space-sm) 0;
}

.faxilolo-currency {
  font-size: 1.2rem;
  font-weight: 600;
  vertical-align: top;
  margin-right: 2px;
}

.faxilolo-amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--faxilolo-dark-1);
}

.faxilolo-period {
  font-size: 0.9rem;
  color: var(--faxilolo-dark-2);
}

.faxilolo-pricing-header p {
  font-size: 0.9rem;
  color: var(--faxilolo-dark-2);
}

.faxilolo-features {
  margin-bottom: var(--space-md);
  flex-grow: 1;
}

.faxilolo-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.faxilolo-features li svg {
  fill: none;
  stroke: var(--faxilolo-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faxilolo-features li span {
  font-size: 0.9rem;
}

.faxilolo-pricing-card .faxilolo-btn {
  width: 100%;
}

/* Stats Section */
.faxilolo-stats {
  padding: var(--space-xl) 0;
  background-color: var(--faxilolo-dark-1);
  color: var(--faxilolo-white);
}

.faxilolo-stats-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-md);
}

.faxilolo-stat-item {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.faxilolo-stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--faxilolo-accent);
  margin-bottom: var(--space-xs);
}

.faxilolo-stat-item p {
  font-size: 1rem;
  margin: 0;
}

/* Contact Section */
.faxilolo-contact {
  padding: var(--space-xl) 0;
}

.faxilolo-contact-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  background-color: var(--faxilolo-light);
  border-radius: 10px;
  padding: var(--space-sm);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.faxilolo-contact-info {
  flex: 1;
  min-width: 300px;
}

.faxilolo-contact-info h2 {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.faxilolo-contact-info p {
  margin-bottom: var(--space-md);
}

.faxilolo-contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.faxilolo-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}

.faxilolo-contact-item svg {
  fill: none;
  stroke: var(--faxilolo-accent);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faxilolo-contact-form {
  flex: 1;
  min-width: 300px;
}

.faxilolo-form-group {
  margin-bottom: var(--space-sm);
}

.faxilolo-form-full {
  width: 100%;
}

.faxilolo-contact-form form {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.faxilolo-form-group {
  flex: 0 0 calc(50% - var(--space-sm));
}

label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-family: var(--font-primary);
  transition: border-color 0.3s ease;
}

input:focus,
textarea:focus {
  outline: none;
  border-color: var(--faxilolo-accent);
}

/* Footer */
.faxilolo-footer {
  background-color: var(--faxilolo-dark-1);
  color: var(--faxilolo-white);
  padding: var(--space-lg) 0 var(--space-sm);
}

.faxilolo-footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-md);
}

.faxilolo-footer-info {
  flex: 2;
  min-width: 300px;
}

.faxilolo-footer-logo h2 {
  color: var(--faxilolo-accent);
  font-size: 1.8rem;
  margin-bottom: var(--space-sm);
}

.faxilolo-footer-info p {
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.faxilolo-footer-links,
.faxilolo-footer-legal {
  flex: 1;
  min-width: 200px;
}

.faxilolo-footer-links h3,
.faxilolo-footer-legal h3 {
  color: var(--faxilolo-white);
  font-size: 1.2rem;
  margin-bottom: var(--space-sm);
}

.faxilolo-footer-links ul,
.faxilolo-footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faxilolo-footer-links a,
.faxilolo-footer-legal a {
  color: rgba(255, 255, 255, 0.7);
  transition: color 0.3s ease;
}

.faxilolo-footer-links a:hover,
.faxilolo-footer-legal a:hover {
  color: var(--faxilolo-accent);
}

.faxilolo-footer-bottom {
  text-align: center;
}

.faxilolo-footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

/* Image Modal for zoom */
.faxilolo-image-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faxilolo-modal-content {
  max-width: 90%;
  max-height: 90vh;
  transition: transform 0.3s ease;
  transform: scale(0.9);
}

.faxilolo-modal-content img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 4px;
}

.faxilolo-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  color: var(--faxilolo-white);
  font-size: 2rem;
  cursor: pointer;
  z-index: 2001;
}

/* Policy Pages */
.faxilolo-policy {
  padding: var(--space-xl) 0;
}

.faxilolo-policy-content {
  background-color: var(--faxilolo-white);
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.faxilolo-policy-content h1 {
  font-size: 2.2rem;
  margin-bottom: var(--space-md);
  color: var(--faxilolo-dark-1);
  text-align: center;
}

.faxilolo-policy-content h2 {
  font-size: 1.5rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-sm);
  color: var(--faxilolo-dark-1);
  border-bottom: 2px solid var(--faxilolo-accent);
  padding-bottom: 5px;
  display: inline-block;
}

.faxilolo-policy-content h3 {
  font-size: 1.2rem;
  margin-top: var(--space-sm);
  margin-bottom: var(--space-xs);
  color: var(--faxilolo-dark-2);
}

.faxilolo-policy-content p,
.faxilolo-policy-content ul {
  margin-bottom: var(--space-sm);
  color: var(--faxilolo-dark-2);
}

.faxilolo-policy-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.faxilolo-policy-content ul li {
  margin-bottom: 5px;
}

.faxilolo-policy-content a {
  color: var(--faxilolo-accent);
  text-decoration: underline;
  transition: color 0.3s ease;
}

.faxilolo-policy-content a:hover {
  color: var(--faxilolo-dark-2);
}

/* Thank You Page */
.faxilolo-thankyou {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--faxilolo-light);
}

.faxilolo-thankyou-content {
  background-color: var(--faxilolo-white);
  padding: var(--space-lg);
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  max-width: 600px;
}

.faxilolo-thankyou-icon {
  width: 80px;
  height: 80px;
  background-color: var(--faxilolo-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--space-md);
}

.faxilolo-thankyou-icon svg {
  fill: none;
  stroke: var(--faxilolo-white);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faxilolo-thankyou-content h2 {
  font-size: 2rem;
  margin-bottom: var(--space-sm);
}

.faxilolo-thankyou-content p {
  color: var(--faxilolo-dark-2);
  margin-bottom: var(--space-md);
}

/* Media Queries */
@media (max-width: 991px) {
  html {
    font-size: 14px;
  }

  h1 {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  section {
    padding: var(--space-md) 0;
  }

  .faxilolo-container {
    width: 95%;
    padding: 0 var(--space-xs);
  }

  .faxilolo-btn {
    padding: 0.7rem 1.2rem;
  }

  .faxilolo-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 250px;
    height: 100vh;
    background-color: var(--faxilolo-white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1001;
    padding: var(--space-lg) var(--space-md);
  }

  .faxilolo-nav.active {
    right: 0;
  }

  .faxilolo-nav-list {
    flex-direction: column;
    gap: var(--space-sm);
  }

  .faxilolo-burger {
    display: flex;
    z-index: 1002;
  }

  .faxilolo-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .faxilolo-burger.active span:nth-child(2) {
    opacity: 0;
  }

  .faxilolo-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .faxilolo-hero .faxilolo-container {
    flex-direction: column;
    gap: var(--space-md);
  }

  .faxilolo-hero-content,
  .faxilolo-hero-image {
    flex: none;
    width: 100%;
  }

  .faxilolo-timeline-item {
    width: 45%;
    margin-bottom: var(--space-md);
  }

  .faxilolo-process-timeline::before {
    display: none;
  }

  .faxilolo-slide {
    flex-direction: column;
  }

  .faxilolo-case-image,
  .faxilolo-case-content {
    flex: none;
    width: 100%;
  }
}

@media (max-width: 767px) {
  html {
    font-size: 13px;
  }

  .faxilolo-section-header {
    margin-bottom: var(--space-md);
  }

  .faxilolo-hero {
    padding: var(--space-md) 0;
  }

  .faxilolo-hero-buttons {
    flex-direction: column;
    gap: var(--space-xs);
  }

  .faxilolo-pricing-grid {
    flex-direction: column;
    align-items: center;
  }

  .faxilolo-pricing-card {
    max-width: 100%;
  }

  .faxilolo-pricing-highlighted {
    transform: none;
  }

  .faxilolo-timeline-item {
    width: 100%;
  }

  .faxilolo-form-group {
    flex: 0 0 100%;
  }
}

@media (max-width: 480px) {
  .faxilolo-hero-content h2 {
    font-size: 1.8rem;
  }

  .faxilolo-stat-item {
    flex: 0 0 100%;
    margin-bottom: var(--space-sm);
  }

  .faxilolo-case-results {
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
  }
}
