:root {
  --primary: #64748b;
  --primary-foreground: #FFFFFF;
  --secondary: #8b5cf6;
  --secondary-foreground: #FFFFFF;
  --accent: #dc2626;
  --accent-foreground: #FFFFFF;
  --background: #FFFFFF;
  --foreground: #111827;
  --card: #FFFFFF;
  --card-foreground: #111827;
  --border: #E5E7EB;
  --input: #E5E7EB;
  --ring: #64748b;
  --muted: #F3F4F6;
  --muted-foreground: #6B7280;
  --font-family: 'Roboto', sans-serif;
  --radius: 0.75rem;
}

* {
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  line-height: 1.6;
  color: var(--foreground);
  background: var(--background);
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
}

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

.hidden {
  display: none !important;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
  margin: 0 0 1rem 0;
  color: var(--foreground);
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--secondary);
}

ul, ol {
  margin: 0 0 1rem 0;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

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

/* Icons */
.icon-sm { width: 16px; height: 16px; }
.icon-md { width: 24px; height: 24px; }
.icon-lg { width: 32px; height: 32px; }
.icon-xl { width: 48px; height: 48px; }

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }

/* Buttons */
.btn-primary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--primary-foreground);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
  color: var(--primary-foreground);
}

.btn-primary:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--primary-foreground);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

.btn-outline:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Grid Layouts */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

@media (max-width: 768px) {
  .grid-2, .grid-3 {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* Forms */
.form-input {
  width: 100%;
  padding: 0.75rem;
  border: 2px solid var(--input);
  border-radius: var(--radius);
  font-family: var(--font-family);
  font-size: 1rem;
  background: var(--background);
  color: var(--foreground);
  transition: border-color 0.3s ease;
}

.form-input:focus {
  outline: none;
  border-color: var(--ring);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

.success-message {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  border: 2px solid #22c55e;
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-top: 1rem;
  text-align: center;
}

.success-content h3 {
  color: #16a34a;
  margin-bottom: 0.5rem;
}

.success-content p {
  color: #15803d;
  margin: 0;
}

/* Cookie Consent */
.fastlineprois_cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--card);
  border-top: 1px solid var(--border);
  z-index: 9999;
  padding: 1rem 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.fastlineprois_cookie-banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.fastlineprois_cookie-banner-text {
  flex: 1;
}

.fastlineprois_cookie-banner-text p {
  margin: 0;
  color: var(--card-foreground);
}

.fastlineprois_cookie-banner-actions {
  display: flex;
  gap: 0.5rem;
}

.fastlineprois_cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
}

.fastlineprois_cookie-modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.fastlineprois_cookie-modal-content {
  background: var(--card);
  border-radius: var(--radius);
  padding: 2rem;
  max-width: 500px;
  width: 100%;
  color: var(--card-foreground);
}

.cookie-toggles {
  margin: 1.5rem 0;
}

.fastlineprois_cookie-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.fastlineprois_cookie-toggle-row:last-child {
  border-bottom: none;
}

.fastlineprois_cookie-modal-actions {
  display: flex;
  gap: 1rem;
  justify-content: flex-end;
  margin-top: 1.5rem;
}

@media (max-width: 768px) {
  .fastlineprois_cookie-banner-inner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }
  
  .fastlineprois_cookie-banner-actions {
    justify-content: center;
  }
  
  .fastlineprois_cookie-modal-actions {
    flex-direction: column;
  }
}

/* Top Bar */
.topbar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--primary-foreground);
  padding: 0.5rem 0;
  font-size: 0.875rem;
}

.topbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-contact, .topbar-hours {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.topbar a {
  color: var(--primary-foreground);
  text-decoration: none;
}

.topbar a:hover {
  color: var(--primary-foreground);
  opacity: 0.8;
}

@media (max-width: 768px) {
  .topbar-content {
    flex-direction: column;
    gap: 0.5rem;
  }
  
  .topbar-contact, .topbar-hours {
    gap: 0.5rem;
    font-size: 0.75rem;
  }
}

/* Navigation */
.navbar {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  backdrop-filter: blur(10px);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--foreground);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.fastlineprois_mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
}

.fastlineprois_mobile-menu {
  background: var(--card);
  border-top: 1px solid var(--border);
  padding: 1rem 0;
}

.fastlineprois_mobile-menu-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mobile-nav-link {
  color: var(--card-foreground);
  text-decoration: none;
  padding: 0.5rem 0;
  font-weight: 500;
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  
  .fastlineprois_mobile-menu-toggle {
    display: block;
  }
}

/* Hero Section */
.hero {
  background: var(--background);
  color: var(--foreground);
  padding: 4rem 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.hero-actions {
  display: flex;
  gap: 1rem;
}

.hero-img {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .hero {
    padding: 2rem 0;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Page Header */
.page-header {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
  text-align: center;
}

.page-header h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Sections */
section {
  padding: 3rem 0;
}

section:nth-child(odd):not(.stats):not(.newsletter):not(.hero):not(.featured-article):not(.cta) {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
}

section:nth-child(even):not(.stats):not(.newsletter):not(.hero):not(.featured-article):not(.cta) {
  background: linear-gradient(180deg, var(--muted) 0%, var(--background) 100%);
}

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

.section-header h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

/* Animation Classes */
.animate-slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.animate-in {
  opacity: 1 !important;
  transform: translateX(0) !important;
}

/* Cards */
.feature-card, .service-card, .pricing-card, .article-card, .testimonial-card, .value-card, .choice-card, .factor-card, .faq-item, .contact-method, .team-member, .stat-item, .process-step, .partner-item, .category-card, .service-item {
  background: var(--card);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  color: var(--card-foreground);
  border: 1px solid var(--border);
}

.feature-card:hover, .service-card:hover, .pricing-card:hover, .article-card:hover, .testimonial-card:hover, .value-card:hover, .choice-card:hover, .factor-card:hover, .category-card:hover, .service-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.feature-image, .service-image, .article-image, .testimonial-img, .value-img, .about-img, .story-img, .featured-img {
  border-radius: var(--radius);
  margin-bottom: 1rem;
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.feature-content, .service-content, .article-content {
  padding: 0;
}

.feature-content h3, .service-content h3, .article-content h3, .value-card h3, .choice-card h3, .factor-card h3 {
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.feature-content p, .service-content p, .article-content p, .value-card p, .choice-card p, .factor-card p {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

/* Service Features */
.service-features ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0 0 0;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  position: relative;
  text-align: center;
}

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

.pricing-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
  font-weight: 600;
}

.pricing-header {
  margin-bottom: 2rem;
}

.pricing-subtitle {
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.pricing-features {
  text-align: left;
  margin-bottom: 2rem;
}

.pricing-features h4 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

.pricing-features ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
  color: var(--card-foreground);
}

.pricing-value {
  background: var(--muted);
  padding: 1rem;
  border-radius: var(--radius);
  margin-top: 1rem;
}

.pricing-value p {
  margin: 0;
  color: var(--foreground);
}

.pricing-footer {
  margin-top: auto;
}

/* Stats */
.stats {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: var(--primary-foreground);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: center;
  background: rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 2rem 1rem;
  backdrop-filter: blur(10px);
}

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-foreground) !important;
  margin: 0.5rem 0;
}

.stat-label {
  font-size: 1rem;
  color: var(--primary-foreground) !important;
  opacity: 0.9;
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.process-step {
  position: relative;
  text-align: center;
}

.step-number {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.step-content {
  padding-top: 1rem;
}

/* Partner Logos */
.partner-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  text-align: center;
}

.partner-item {
  padding: 1rem;
}

.partner-item p {
  margin-top: 0.5rem;
  font-weight: 500;
  color: var(--foreground);
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

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

.faq-item h3 {
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

.faq-item p {
  color: var(--muted-foreground);
}

/* About */
.about-content, .story-content, .value-content, .achievements-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text, .story-text, .value-text {
  color: var(--foreground);
}

.about-text h2, .story-text h2, .value-text h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.about-text p, .story-text p, .value-text p {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.about-text ul, .value-text ul {
  margin: 1rem 0;
}

.about-text li, .value-text li {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

@media (max-width: 768px) {
  .about-content, .story-content, .value-content, .achievements-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Mission and Values */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

.member-avatar {
  width: 80px;
  height: 80px;
  margin: 0 auto 1rem auto;
  background: linear-gradient(135deg, var(--muted) 0%, var(--background) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.member-info h3 {
  margin-bottom: 0.25rem;
  color: var(--card-foreground);
}

.member-info p:first-of-type {
  color: var(--primary);
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.member-info p:last-of-type {
  color: var(--muted-foreground);
}

/* Achievements */
.achievements-text {
  color: var(--foreground);
}

.achievements-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.achievements-stats .stat-item {
  background: var(--card);
  color: var(--card-foreground) !important;
}

.achievements-stats .stat-number {
  color: var(--primary) !important;
}

.achievements-stats .stat-label {
  color: var(--muted-foreground) !important;
}

/* Contact */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.fastlineprois_contact-form-wrapper h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.fastlineprois_contact-form-wrapper p {
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.contact-info h2 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

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

.contact-methods {
  margin-bottom: 2rem;
}

.contact-method {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  background: none;
  box-shadow: none;
  padding: 0;
}

.method-info h3 {
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.method-info p {
  margin-bottom: 0.25rem;
  color: var(--foreground);
}

.method-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.business-hours {
  background: var(--muted);
  padding: 1.5rem;
  border-radius: var(--radius);
}

.business-hours h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.hours-list {
  margin-bottom: 1rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.hours-note {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin: 0;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Testimonials */
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.quote-icon {
  margin-bottom: 1rem;
}

.testimonial-content blockquote {
  font-size: 1.125rem;
  font-style: italic;
  margin: 0 0 1.5rem 0;
  color: var(--card-foreground);
}

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

.author-info .author-name {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: var(--card-foreground);
}

.author-info .author-role {
  color: var(--muted-foreground);
  margin: 0;
}

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

.testimonial-img {
  border-radius: var(--radius);
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .testimonial-card {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

/* CTA Section */
.cta {
  background: var(--background);
  padding: 4rem 0;
}

.cta-card {
  background: var(--card);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  border: 1px solid var(--border);
}

.cta-content h2 {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  color: var(--muted-foreground);
}

.cta-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

@media (max-width: 768px) {
  .cta-card {
    padding: 2rem;
  }
  
  .cta-actions {
    flex-direction: column;
    align-items: center;
  }
}

/* Services Accordion */
.services-accordion {
  max-width: 800px;
  margin: 0 auto;
}

.accordion-item {
  background: var(--card);
  border-radius: var(--radius);
  margin-bottom: 1rem;
  border: 1px solid var(--border);
  overflow: hidden;
}

.accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.accordion-header:hover {
  background: var(--muted);
}

.accordion-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.accordion-title h3 {
  margin: 0;
  color: var(--card-foreground);
}

.accordion-icon {
  transition: transform 0.3s ease;
  color: var(--primary);
}

.accordion-item.active .accordion-icon {
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 1.5rem 1.5rem 1.5rem;
  display: none;
}

.accordion-item.active .accordion-content {
  display: block;
}

.accordion-content p {
  margin-bottom: 1rem;
  color: var(--card-foreground);
}

.accordion-content ul {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.accordion-content li {
  margin-bottom: 0.5rem;
  color: var(--card-foreground);
}

/* Blog */
.featured-article {
  background: linear-gradient(180deg, var(--background) 0%, var(--muted) 100%);
  padding: 3rem 0;
}

.featured-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

.article-category {
  background: var(--primary);
  color: var(--primary-foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
}

.article-highlights {
  margin-top: 1.5rem;
}

.article-highlights ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.article-highlights li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.tag {
  background: var(--muted);
  color: var(--foreground);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-size: 0.75rem;
}

@media (max-width: 768px) {
  .featured-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Newsletter */
.newsletter {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%) !important;
  color: var(--primary-foreground);
  padding: 3rem 0;
}

.newsletter-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

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

.newsletter-text h2 {
  margin-bottom: 1rem;
  color: var(--primary-foreground);
}

.newsletter-text p {
  color: var(--primary-foreground);
  opacity: 0.9;
}

.newsletter-form .form-group {
  display: flex;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.newsletter-form .form-input {
  flex: 1;
}

.newsletter-note {
  font-size: 0.875rem;
  color: var(--primary-foreground);
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 768px) {
  .newsletter-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .newsletter-form .form-group {
    flex-direction: column;
  }
}

/* Categories */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

/* Additional Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

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

/* Cookie Table */
.cookie-table {
  margin: 2rem 0;
  overflow-x: auto;
}

.cookie-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
}

.cookie-table th,
.cookie-table td {
  padding: 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
  color: var(--card-foreground);
}

.cookie-table th {
  background: var(--muted);
  font-weight: 600;
  color: var(--foreground);
}

.cookie-table tr:last-child td {
  border-bottom: none;
}

/* Legal Content */
.legal-content {
  padding: 3rem 0;
}

.legal-intro {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  margin-bottom: 1rem;
}

.last-updated {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 2rem;
  font-style: italic;
}

.legal-content h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem 0;
  color: var(--foreground);
}

.legal-content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.5rem 0;
  color: var(--foreground);
}

.legal-content p {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-content ul,
.legal-content ol {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.legal-content li {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.legal-content a {
  color: var(--primary);
}

.legal-content a:hover {
  color: var(--secondary);
}

/* Footer */
footer {
  background: transparent;
  border-top: 1px solid var(--border);
  color: var(--foreground);
  padding: 3rem 0 1rem 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
}

.footer-brand h3 {
  margin: 0;
  color: var(--foreground);
}

.footer-brand p {
  color: var(--muted-foreground);
  margin: 0;
}

.footer-address p {
  margin-bottom: 0.5rem;
  color: var(--foreground);
}

.footer-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.footer-column h4 {
  margin-bottom: 1rem;
  color: var(--foreground);
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

.footer-column a {
  color: var(--primary);
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--secondary);
}

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

.footer-legal-links a {
  color: var(--primary);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-legal-links a:hover {
  color: var(--secondary);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

@media (max-width: 768px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .footer-right {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .footer-legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }
}

/* Text Utilities */
.text-lg { font-size: 1.125rem; }
.text-sm { font-size: 0.875rem; }
.font-semibold { font-weight: 600; }
.font-medium { font-weight: 500; }
.mb-4 { margin-bottom: 1rem; }
.text-center { text-align: center; }

/* Responsive Typography */
@media (max-width: 768px) {
  h1 { font-size: 2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.25rem; }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .page-header h1 {
    font-size: 2rem;
  }
  
  .section-header h2 {
    font-size: 1.75rem;
  }
}

/* === CLASS ALIAS FIXES (injected by engine) === */
.hero-image { /* alias for .hero-img */ }
.hero-image {
  border-radius: var(--radius);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}
.hero-text { /* alias for .hero-content */ }
.hero-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* === BASELINE SAFETY CSS (injected by engine) === */

/* Ensure .hidden works consistently even with ID-specific overrides */
.hidden { display: none !important; }

/* Prevent content overflow breaking layout */
img, video, iframe { max-width: 100%; height: auto; }
* { box-sizing: border-box; }

/* Ensure container has responsive padding */
.container { width: 100%; max-width: 1200px; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; }

/* Prevent flex/grid children from overflowing */
.grid-2, .grid-3, .grid-4 { display: grid; gap: 1.5rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Responsive grid fallbacks */
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

/* Ensure forms don't break layout */
.form-input, input[type="text"], input[type="email"], input[type="tel"], textarea, select {
  width: 100%;
  max-width: 100%;
}

/* Success message styling */
.success-message {
  margin-top: 1rem;
  padding: 1rem;
  background: #ecfdf5;
  border: 1px solid #6ee7b7;
  border-radius: 0.5rem;
  color: #065f46;
  text-align: center;
}

/* Stacking context for hero sections — prevents z-index:-1 children from going behind the page */
.hero, .hero-section, .page-header, .cta, .cta-section { isolation: isolate; position: relative; }

/* Desktop nav injected by engine — show on desktop, hide on mobile */
.nav-menu { display: flex; align-items: center; gap: 1.5rem; }
.nav-menu .nav-link { text-decoration: none; color: var(--foreground, #1f2937); font-weight: 500; font-size: 0.95rem; transition: color 0.2s; }
.nav-menu .nav-link:hover { color: var(--primary, #2563eb); }
@media (max-width: 768px) {
  .nav-menu { display: none !important; }
}

/* Fixed header body padding safety */
body { min-height: 100vh; }

/* Prevent long words breaking layout */
h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; word-wrap: break-word; }

/* === END BASELINE SAFETY CSS === */

/* Cookie banner visibility rules */
#fastlineprois_cookie-banner.hidden, #cookie-consent-banner.hidden { display: none !important; }
#fastlineprois_cookie-banner:not(.hidden), #cookie-consent-banner:not(.hidden) { display: block !important; }
#fastlineprois_cookie-modal.hidden { display: none !important; }
.hidden { display: none !important; }
