/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --orange-primary: #ff6b00;
  --orange-light: #ff8c3f;
  --orange-dark: #e05a00;
  --orange-ultra-light: #fff0e6;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --gray-900: #111827;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  color: var(--gray-900);
  line-height: 1.5;
  overflow-x: hidden;
  background-color: var(--white);
}

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Utility classes */
.mt-4 {
  margin-top: 1rem;
}


.icon-inline {
  width: 1rem;
  height: 1rem;
  margin-left: 0.25rem;
}

.icon-sm {
  width: 1.25rem;
  height: 1.25rem;
}

.float-delay-500 {
  animation-delay: 0.5s;
}

.float-delay-1000 {
  animation-delay: 1s;
}

.hero-float-left {
  position: absolute;
  top: 15%;
  left: 10%;
  z-index: 0;
  opacity: 0.5;
}

.hero-float-right {
  position: absolute;
  bottom: 20%;
  right: 15%;
  z-index: 0;
  opacity: 0.5;
}

.cta-actions {
  margin-top: 1.5rem;
}

/* Header */
header {
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  z-index: 100;
  transition: all 0.3s ease;
}

header.scrolled {
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.header-container {
  display: flex;
  height: 4rem;
  align-items: center;
  justify-content: space-between;
  padding: 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--orange-primary);
}

nav {
  display: none;
}

@media (min-width: 768px) {
  nav {
    display: flex;
    gap: 1.5rem;
  }
}

nav a {
  font-size: 0.875rem;
  font-weight: 500;
  position: relative;
  color: var(--gray-700);
}

nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--orange-primary);
  transition: width 0.3s ease;
}

nav a:hover {
  color: var(--orange-primary);
}

nav a:hover::after {
  width: 100%;
}

.header-buttons {
  display: flex;
  gap: 1rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: -100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::after {
  left: 100%;
}

.btn-primary {
  background-color: var(--orange-primary);
  color: white;
  border: none;
}

.btn-primary:hover {
  background-color: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(255, 107, 0, 0.3), 0 2px 4px -1px rgba(255, 107, 0, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
}

.btn-outline:hover {
  border-color: var(--orange-primary);
  color: var(--orange-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(255, 107, 0, 0.1), 0 2px 4px -1px rgba(255, 107, 0, 0.06);
}

.btn-lg {
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
}

.btn-white {
  background-color: white;
  color: var(--orange-primary);
  border: none;
}

.btn-white:hover {
  background-color: var(--gray-50);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.btn-outline-white {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Main content */
main {
  flex: 1;
}

/* Hero section */
.hero {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--white), var(--orange-ultra-light));
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern-bg.png');
  opacity: 0.05;
  z-index: 0;
}

@media (min-width: 768px) {
  .hero {
    padding: 6rem 0;
  }
}

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

.hero-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

.hero-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-title span {
  color: var(--orange-primary);
}

@media (min-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
}

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

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

.hero-description {
  max-width: 600px;
  color: var(--white-500);
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.25rem;
  }
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

@media (min-width: 400px) {
  .hero-buttons {
    flex-direction: row;
  }
}

.hero-image {
  margin: 0 auto;
  position: relative;
}

.hero-image img {
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.hero-image:hover img {
  transform: translateY(-10px);
  box-shadow: 0 25px 30px -5px rgba(255, 107, 0, 0.2), 0 15px 15px -5px rgba(255, 107, 0, 0.1);
}

/* Floating elements animation */
.floating {
  animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Features section */
.features {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--white), var(--orange-ultra-light) 100%);
}

@media (min-width: 768px) {
  .features {
    padding: 6rem 0;
  }
}

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

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-tag {
  display: inline-block;
  background-color: var(--orange-ultra-light);
  color: var(--orange-primary);
  border-radius: 0.375rem;
  padding: 0.25rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.section-title span {
  color: var(--orange-primary);
}

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

.section-description {
  max-width: 900px;
  color: var(--gray-500);
}

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

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

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

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

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background-color: white;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(255, 107, 0, 0.1), 0 4px 6px -2px rgba(255, 107, 0, 0.05);
  border-color: var(--orange-light);
}

.feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-ultra-light);
  color: var(--orange-primary);
  border-radius: 9999px;
  padding: 0.75rem;
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
  background-color: var(--orange-primary);
  color: white;
  transform: scale(1.1);
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-description {
  text-align: center;
  color: var(--gray-500);
}

.feature-card-wide {
  grid-column: span 1;
}

@media (min-width: 768px) {
  .feature-card-wide {
    grid-column: span 2;
  }
}

@media (min-width: 1024px) {
  .feature-card-wide {
    grid-column: span 1;
  }
}

/* Business size section */
.business-size {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--orange-ultra-light), var(--white));
  position: relative;
  overflow: hidden;
}

.business-size::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern-bg.png');
  opacity: 0.05;
  z-index: 0;
}

@media (min-width: 768px) {
  .business-size {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .business-size {
    padding: 8rem 0;
  }
}

.business-grid {
  display: grid;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 1024px) {
  .business-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

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

.business-list {
  display: grid;
  gap: 0.75rem;
  list-style: none;
}

.business-list-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: transform 0.3s ease;
}

.business-list-item:hover {
  transform: translateX(5px);
}

.check-icon {
  color: var(--orange-primary);
}

.business-image {
  margin: 0 auto;
  position: relative;
}

.business-image img {
  transition: transform 0.5s ease;
}

.business-image:hover img {
  transform: scale(1.05);
}

/* Trust section */
.trust {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(180deg, var(--orange-ultra-light), var(--white));
}

@media (min-width: 768px) {
  .trust {
    padding: 6rem 0;
  }
}

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

.logos-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  align-items: center;
  justify-content: center;
  margin-top: 3rem;
  margin-bottom: 4rem;
}

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

@media (min-width: 1024px) {
  .logos-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-item img {
  opacity: 0.7;
  transition: all 0.3s ease;
  filter: grayscale(100%);
}

.logo-item:hover img {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.1);
}

.testimonials-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 4rem;
}

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

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 0.5rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  transition: all 0.3s ease;
  background-color: white;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 25px -5px rgba(255, 107, 0, 0.1), 0 10px 10px -5px rgba(255, 107, 0, 0.05);
  border-color: var(--orange-light);
}

.stars {
  display: flex;
  gap: 0.25rem;
  color: var(--orange-primary);
}

.testimonial-text {
  color: var(--gray-500);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--orange-ultra-light);
  border-radius: 9999px;
  padding: 0.25rem;
  transition: transform 0.3s ease;
}

.testimonial-card:hover .author-avatar {
  transform: scale(1.1);
}

.author-avatar img {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
}

.author-info {
  display: flex;
  flex-direction: column;
}

.author-name {
  font-weight: 500;
}

.author-company {
  font-size: 0.875rem;
  color: var(--gray-500);
}

/* CTA section */
.cta {
  width: 100%;
  padding: 3rem 0;
  background: linear-gradient(135deg, var(--orange-primary), var(--orange-dark));
  color: white;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('/assets/images/pattern-bg.png');
  opacity: 0.1;
  z-index: 0;
}

@media (min-width: 768px) {
  .cta {
    padding: 6rem 0;
  }
}

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

.cta .section-header {
  position: relative;
  z-index: 1;
}

.cta-description {
  color: rgba(255, 255, 255, 0.8);
}

/* Footer */
footer {
  border-top: 1px solid var(--gray-200);
  background-color: var(--white);
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem 1rem;
}

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

.footer-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-top {
    flex-direction: row;
    align-items: center;
    gap: 2rem;
  }
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-nav {
    gap: 1.5rem;
    margin-left: auto;
  }
}

.footer-nav a {
  font-size: 0.875rem;
  position: relative;
  color: var(--gray-700);
}

.footer-nav a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -4px;
  left: 0;
  background-color: var(--orange-primary);
  transition: width 0.3s ease;
}

.footer-nav a:hover {
  color: var(--orange-primary);
}

.footer-nav a:hover::after {
  width: 100%;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    flex-direction: row;
    align-items: center;
  }
}

.copyright {
  font-size: 0.875rem;
  color: var(--gray-500);
}

.footer-links {
  display: flex;
  gap: 1rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--gray-500);
  position: relative;
}

.footer-links a::after {
  content: '';
  position: absolute;
  width: 0;
  height: 1px;
  bottom: -2px;
  left: 0;
  background-color: var(--orange-primary);
  transition: width 0.3s ease;
}

.footer-links a:hover {
  color: var(--orange-primary);
}

.footer-links a:hover::after {
  width: 100%;
}

/* Parallax effect */
.parallax {
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation */
.pulse {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0.7);
  }

  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(255, 107, 0, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 107, 0, 0);
  }
}

/* Rotate animation */
.rotate {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* Accessibility - respect user preferences */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
