@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #fa7315;
  --primary-dark: #e06510;
  --secondary: #1A1A2E;
  --accent: #1A1A2E;
  --background: #ffffff;
  --foreground: #1A1A2E;
  --muted: #636e72;
  --border: #e0e0e0;
  --card: #ffffff;
  --card-foreground: #1A1A2E;
  --radius: 0.75rem;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

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

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--foreground);
  color: var(--foreground);
}

.btn-outline:hover {
  background: var(--foreground);
  color: white;
}

.btn-ghost {
  background: transparent;
  color: var(--primary);
  padding: 0.5rem 0;
}

.btn-ghost:hover {
  color: var(--primary-dark);
}

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

.btn-block {
  width: 100%;
}

.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, #ff8c5a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-primary {
  color: var(--primary);
}

.text-muted {
  color: var(--muted);
}

.glass {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.badge {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

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

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 1rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.0625rem;
}

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

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

/* Loading Screen */
.loading-screen {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: linear-gradient(135deg, #1A1A2E 0%, #0f0f1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loading-screen.exit {
  opacity: 0;
  visibility: hidden;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.logo-fill-container {
  position: relative;
  width: 140px;
  height: 140px;
}

.logo-grayscale {
  position: absolute;
  inset: 0;
  filter: grayscale(100%) brightness(0.3);
  opacity: 0.4;
}

.logo-grayscale img,
.logo-colored img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-colored {
  position: absolute;
  inset: 0;
  clip-path: inset(100% 0 0 0);
  animation: logoFillUp 2s ease-out forwards;
}

@keyframes logoFillUp {
  0% {
    clip-path: inset(100% 0 0 0);
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}

.loading-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  animation: textFade 1s ease-in-out infinite alternate;
}

@keyframes textFade {
  0% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  padding: 0.5rem 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0.75rem 1.5rem;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(12px);
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 40px;
  width: auto;
}

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

.nav-link {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.625rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  border-radius: 100px;
  transition: all 0.3s ease;
}

.nav-link:hover {
  background: rgba(0, 0, 0, 0.05);
}

.nav-dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding-top: 1rem;
  z-index: 100;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-content {
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  padding: 0.75rem;
  min-width: 220px;
}

.dropdown-content a {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--foreground);
  text-decoration: none;
  font-size: 0.9375rem;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}

.dropdown-content a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

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

.social-icons-desktop {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 1024px) {
  .social-icons-desktop {
    display: flex;
  }
}

.contact-icons {
  display: none;
  align-items: center;
  gap: 0.5rem;
}

@media (min-width: 768px) {
  .contact-icons {
    display: flex;
  }
}

.icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--foreground);
  transition: all 0.3s ease;
  text-decoration: none;
}

.icon-btn:hover {
  background: var(--primary);
  color: white;
}

.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--foreground);
}

@media (min-width: 1024px) {
  .mobile-menu-btn {
    display: none;
  }
  
  .nav-desktop {
    display: flex;
  }
}

@media (max-width: 1023px) {
  .nav-desktop {
    display: none;
  }
  
  .header-actions .btn-primary {
    display: none;
  }
}

.mobile-menu {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  bottom: 0;
  background: white;
  z-index: 999;
  padding: 1.5rem;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.open {
  transform: translateX(0);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu nav a {
  display: block;
  padding: 0.875rem 1rem;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  border-radius: var(--radius);
  transition: all 0.3s ease;
}

.mobile-menu nav a:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--primary);
}

.mobile-menu-submenu {
  margin-left: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.mobile-menu-submenu a {
  font-size: 1rem !important;
  padding: 0.75rem 1rem !important;
  color: var(--muted) !important;
}

.mobile-menu-submenu a:hover {
  color: var(--primary) !important;
}

.mobile-social {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.mobile-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: var(--foreground);
  transition: all 0.3s ease;
}

.mobile-social a:hover {
  background: var(--primary);
  color: white;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8rem 0 4rem;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.blob-1 {
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.4) 0%, rgba(255, 140, 90, 0.2) 100%);
  top: -200px;
  right: -200px;
}

.blob-2 {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(26, 26, 46, 0.2) 0%, rgba(26, 26, 46, 0.1) 100%);
  bottom: -100px;
  left: -100px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(0, 0, 0, 0.05) 1px, transparent 0);
  background-size: 40px 40px;
}

.hero-content {
  text-align: center;
  max-width: 800px;
  padding: 0 1.5rem;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin: 1.5rem 0;
  letter-spacing: -0.02em;
}

.hero-description {
  font-size: 1.25rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
  color: var(--muted);
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* Pricing Section */
.pricing {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.blob-pricing {
  width: 500px;
  height: 500px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 90, 0.1) 100%);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (max-width: 1024px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .benefits-grid {
    grid-template-columns: 1fr;
  }
}

.benefit-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  background: rgba(250, 115, 21, 0.06);
  border: 1px solid rgba(250, 115, 21, 0.15);
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary);
}

.benefit-card:nth-child(odd) {
  background: rgba(250, 115, 21, 0.06);
  border-color: rgba(250, 115, 21, 0.15);
}
.benefit-card:nth-child(odd)::before {
  background: var(--primary);
}

.benefit-card:nth-child(even) {
  background: rgba(26, 26, 46, 0.04);
  border-color: rgba(26, 26, 46, 0.12);
}
.benefit-card:nth-child(even)::before {
  background: var(--foreground);
}

.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.benefit-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.benefit-card p {
  font-size: 0.9375rem;
  color: var(--muted);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto 3rem;
}

.pricing-card {
  position: relative;
  padding: 2.5rem;
  border-radius: 1.5rem;
  text-align: center;
}

.pricing-card.popular {
  border: 2px solid var(--primary);
  transform: scale(1.02);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
}

.pricing-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.pricing-card h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.pricing-card .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.pricing-card .description {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.features-list {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
}

.features-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9375rem;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list svg {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Services Section */
.services {
  padding: 6rem 0;
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.service-card {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.service-accent {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.bg-orange { background: var(--primary); }
.bg-teal { background: var(--foreground); }
.bg-blue { background: var(--primary); }
.bg-purple { background: var(--foreground); }
.bg-red { background: var(--primary); }
.bg-yellow { background: var(--foreground); }

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  background: rgba(0, 0, 0, 0.05);
  color: var(--foreground);
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card > p {
  color: var(--muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.service-price {
  font-weight: 600;
  color: var(--primary);
}

/* Partners Section */
.partners-section {
  padding: 6rem 0;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  overflow: hidden;
}

.partners-section .section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
}

.partners-grid {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
}

.partner-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: white;
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  text-decoration: none;
  color: inherit;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  min-width: 200px;
  text-align: center;
}

.partner-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(255, 107, 53, 0.15);
}

.partner-card img {
  max-height: 60px;
  width: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
}

.partner-card:hover img {
  transform: scale(1.1);
}

.partner-card span {
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--foreground);
}

.partners-marquee {
  display: flex;
  gap: 3rem;
  animation: marquee 30s linear infinite;
}

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

.partners-animated {
  position: relative;
  padding: 3rem 0;
}

.partners-animated::before,
.partners-animated::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 10;
  pointer-events: none;
}

.partners-animated::before {
  left: 0;
  background: linear-gradient(90deg, #f8f9fa 0%, transparent 100%);
}

.partners-animated::after {
  right: 0;
  background: linear-gradient(-90deg, #f8f9fa 0%, transparent 100%);
}

/* Portfolio Section */
.portfolio {
  padding: 6rem 0;
  background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
  color: white;
}

.portfolio-header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  margin-bottom: 4rem;
}

.portfolio-label {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
}

.portfolio-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-top: 1rem;
}

.portfolio-header p {
  color: rgba(255, 255, 255, 0.6);
  max-width: 400px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.portfolio-item {
  position: relative;
  padding: 2rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  color: white;
  transition: all 0.3s ease;
}

.portfolio-item:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

.portfolio-item .category {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 107, 53, 0.2);
  color: var(--primary);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 500;
  margin-bottom: 1rem;
}

.portfolio-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

/* Testimonials Section */
.testimonials {
  padding: 6rem 0;
  background: white;
}

.testimonials .stars {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-top: 1rem;
  color: #ffc107;
}

.testimonials-carousel {
  position: relative;
  overflow: hidden;
  margin: 0 -1.5rem;
  padding: 0 1.5rem;
}

.testimonials-track {
  display: flex;
  gap: 1.5rem;
  transition: transform 0.5s ease;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  padding: 2rem;
  border-radius: var(--radius);
  position: relative;
  min-width: 100%;
}

.quote-icon {
  color: rgba(255, 107, 53, 0.2);
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.testimonial-card .author h4 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.testimonial-card .author span {
  font-size: 0.875rem;
  color: var(--muted);
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-dot.active {
  background: var(--primary);
  width: 30px;
  border-radius: 5px;
}

/* Contact Section */
.contact {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
}

.blob-contact {
  width: 400px;
  height: 400px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.2) 0%, rgba(255, 140, 90, 0.1) 100%);
  bottom: -100px;
  right: -100px;
}

.contact-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.contact-content h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1rem;
}

.contact-content > p {
  color: var(--muted);
  margin-bottom: 2rem;
}

.contact-info {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 107, 53, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.contact-item span {
  font-size: 0.875rem;
  color: var(--muted);
}

.contact-item strong {
  display: block;
  font-size: 1rem;
}

.contact-box {
  padding: 2.5rem;
  border-radius: var(--radius);
}

.contact-box h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-box p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}

/* Footer */
.footer {
  background: var(--foreground);
  color: white;
  padding: 3rem 0 1.5rem;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
  height: 40px;
}

.footer-social {
  display: flex;
  gap: 0.75rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-btn:hover {
  background: var(--primary);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding-top: 1.5rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}

.footer-links a,
.footer-links button {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: 0.875rem;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-links button:hover {
  color: white;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background: white;
  border-radius: var(--radius);
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.05);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.modal-close:hover {
  background: rgba(0, 0, 0, 0.1);
}

.modal-body {
  padding: 2.5rem;
  color: var(--foreground);
}

.modal-body h2 {
  font-size: 1.75rem;
  margin-bottom: 2rem;
  padding-right: 2rem;
}

.modal-body h3 {
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.modal-body p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.modal-body a {
  color: var(--primary);
  text-decoration: none;
}

.modal-body a:hover {
  text-decoration: underline;
}

.modal-body .siret {
  font-weight: 600;
  background: rgba(255, 107, 53, 0.1);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  display: inline-block;
}

.modal-body .italic {
  font-style: italic;
  color: var(--muted);
}

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

/* Responsive */
@media (max-width: 768px) {
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-buttons .btn {
    width: 100%;
  }
  
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  
  .pricing-card.popular {
    transform: none;
  }
  
  .portfolio-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .contact-info {
    flex-direction: column;
    align-items: center;
  }
  
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
    .footer-links {
      justify-content: center;
    }
    
    .partners-animated::before,
    .partners-animated::after {
      display: none;
    }
    
    .partners-marquee {
      flex-direction: column;
      animation: none;
      gap: 1rem;
      align-items: stretch;
    }
    
    .partners-only-desktop {
      display: none;
    }
    
    .partner-card {
      min-width: auto !important;
      width: 100%;
    }
    
    .testimonials-carousel {
      overflow: visible;
    }
    
    .testimonials-track {
      display: block;
    }
    
    .testimonial-card {
      display: none;
    }
    
    .testimonial-card.active {
      display: block;
    }
    
    .carousel-arrows {
      display: flex;
    }
    
    .carousel-nav {
      display: none;
    }
  }

html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

.carousel-arrows {
  display: none;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.carousel-arrow {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.carousel-arrow:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* Service Pages */
.service-hero {
  padding: 8rem 0 4rem;
  background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--muted);
  text-decoration: none;
  font-size: 0.9375rem;
  margin-bottom: 2rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--primary);
}

.service-hero-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.service-icon-large {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
}

.service-icon-large.bg-orange { background: var(--primary); }
.service-icon-large.bg-teal { background: var(--foreground); }
.service-icon-large.bg-blue { background: var(--primary); }
.service-icon-large.bg-purple { background: var(--foreground); }
.service-icon-large.bg-red { background: var(--primary); }
.service-icon-large.bg-yellow { background: var(--foreground); }

.service-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 0.5rem;
}

.service-price-large {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.service-description {
  color: var(--muted);
  font-size: 1.0625rem;
  line-height: 1.7;
}

.service-details {
  padding: 4rem 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.service-box {
  padding: 2rem;
  border-radius: var(--radius);
}

.service-box h2 {
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--foreground);
}

.check-list {
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
}

.check-list li:last-child {
  border-bottom: none;
}

.check-list svg {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-list {
  list-style: none;
}

.feature-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
}

.feature-list li:last-child {
  border-bottom: none;
}

.service-cta {
  text-align: center;
  padding: 3rem;
  border-radius: var(--radius);
  max-width: 600px;
  margin: 0 auto;
}

.service-cta h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.service-cta p {
  color: var(--muted);
  margin-bottom: 1.5rem;
}
