/* ===================================
   MAXIS ARC - TECH FUTURISTIC DESIGN
   CSS Reset & Base Styles
   =================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1629 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - TECH FUTURISTIC
   =================================== */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
  line-height: 1.2;
  text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #00D9FF 0%, #00FF88 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 32px;
  margin-bottom: 24px;
  color: #00D9FF;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #00FF88;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

p {
  margin-bottom: 16px;
  color: #B8C5D6;
  font-size: 16px;
}

a {
  color: #00D9FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #00FF88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

ul, ol {
  margin-left: 24px;
  margin-bottom: 16px;
}

li {
  margin-bottom: 8px;
  color: #B8C5D6;
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */

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

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.6));
  transition: all 0.3s ease;
}

.logo:hover {
  filter: drop-shadow(0 0 20px rgba(0, 255, 136, 0.8));
  transform: scale(1.05);
}

.main-nav {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  color: #B8C5D6;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 16px;
  border-radius: 20px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

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

.main-nav a:hover::before {
  left: 100%;
}

.main-nav a:hover {
  color: #00D9FF;
  border-color: rgba(0, 217, 255, 0.5);
  background: rgba(0, 217, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 217, 255, 0.3);
}

/* ===================================
   MOBILE MENU - BURGER NAVIGATION
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF 0%, #00FF88 100%);
  border: none;
  color: #0A0E27;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.5);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(90deg);
  box-shadow: 0 6px 30px rgba(0, 255, 136, 0.7);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  z-index: 1999;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.5);
  overflow-y: auto;
  border-left: 2px solid rgba(0, 217, 255, 0.3);
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: transparent;
  border: 2px solid #00D9FF;
  color: #00D9FF;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00D9FF;
  color: #0A0E27;
  transform: rotate(90deg);
  box-shadow: 0 0 20px rgba(0, 217, 255, 0.6);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mobile-nav a {
  color: #B8C5D6;
  font-size: 16px;
  font-weight: 500;
  padding: 12px 20px;
  border-radius: 8px;
  border: 1px solid rgba(0, 217, 255, 0.2);
  background: rgba(0, 217, 255, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: #00D9FF;
  color: #00D9FF;
  transform: translateX(5px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

/* ===================================
   BUTTONS - TECH FUTURISTIC STYLE
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #00FF88 100%);
  color: #0A0E27;
  border-color: #00D9FF;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.6);
  background: linear-gradient(135deg, #00FF88 0%, #00D9FF 100%);
}

.btn-secondary {
  background: transparent;
  color: #00D9FF;
  border-color: #00D9FF;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.3);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
  justify-content: center;
}

/* ===================================
   HERO SECTION - TECH FUTURISTIC
   =================================== */

.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 136, 0.05) 100%);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

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

.hero-subtitle {
  font-size: 18px;
  color: #B8C5D6;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.trust-indicators span {
  padding: 12px 24px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  font-size: 14px;
  color: #00D9FF;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.2);
}

.stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 32px 0;
}

.stats span {
  padding: 12px 24px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 20px;
  font-size: 14px;
  color: #00FF88;
  font-weight: 600;
}

/* ===================================
   CARDS & GRIDS - FLEXBOX LAYOUTS
   =================================== */

.benefits-grid,
.services-grid,
.reasons-grid,
.categories-grid,
.tools-grid,
.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.benefit-card,
.service-card,
.reason,
.category,
.tool,
.contact-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 24px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.benefit-card::before,
.service-card::before,
.reason::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00D9FF 0%, #00FF88 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover::before,
.service-card:hover::before,
.reason:hover::before {
  transform: scaleX(1);
}

.benefit-card:hover,
.service-card:hover,
.reason:hover,
.category:hover,
.tool:hover,
.contact-card:hover {
  transform: translateY(-5px);
  border-color: #00D9FF;
  background: rgba(26, 31, 58, 0.8);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.benefit-card h3,
.service-card h3,
.contact-card h3 {
  margin-bottom: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: #00FF88;
  margin: 16px 0;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

/* ===================================
   PROCESS STEPS & TIMELINE
   =================================== */

.process-steps,
.timeline-content,
.steps {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 32px;
}

.step,
.milestone {
  padding: 20px;
  background: rgba(26, 31, 58, 0.6);
  border-left: 4px solid #00D9FF;
  border-radius: 8px;
  transition: all 0.3s ease;
}

.step:hover,
.milestone:hover {
  background: rgba(26, 31, 58, 0.8);
  border-left-color: #00FF88;
  transform: translateX(10px);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.timeline {
  text-align: center;
  margin-top: 24px;
  padding: 16px;
  background: rgba(0, 217, 255, 0.1);
  border-radius: 8px;
  color: #00D9FF;
  font-weight: 600;
}

/* ===================================
   TESTIMONIALS - READABLE DESIGN
   =================================== */

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.4);
  border-color: #00FF88;
}

.testimonial-card p {
  color: #1A1F3A;
  font-style: italic;
  margin-bottom: 16px;
  font-size: 16px;
}

.testimonial-card .author {
  color: #0A0E27;
  font-weight: 700;
  font-style: normal;
  text-align: right;
  margin-top: 12px;
}

.rating {
  text-align: center;
  margin-top: 24px;
  font-size: 18px;
  font-weight: 700;
  color: #00FF88;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.quote {
  font-style: italic;
  color: #00D9FF;
  padding: 16px;
  border-left: 4px solid #00FF88;
  background: rgba(0, 217, 255, 0.1);
  margin: 24px 0;
}

/* ===================================
   SERVICE DETAILS & PROJECTS
   =================================== */

.service-detail,
.program,
.project-card,
.case {
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.service-detail:hover,
.program:hover,
.project-card:hover {
  border-color: #00D9FF;
  box-shadow: 0 8px 30px rgba(0, 217, 255, 0.3);
}

.funding-amount {
  font-size: 28px;
  font-weight: 700;
  color: #00FF88;
  margin: 16px 0;
  text-shadow: 0 0 15px rgba(0, 255, 136, 0.6);
}

.success-rate,
.stats-highlight,
.value-prop,
.urgency {
  padding: 16px 24px;
  background: rgba(0, 255, 136, 0.1);
  border: 1px solid rgba(0, 255, 136, 0.3);
  border-radius: 8px;
  margin: 16px 0;
  text-align: center;
  font-weight: 600;
  color: #00FF88;
}

/* ===================================
   FEATURED CONTENT SECTIONS
   =================================== */

.featured-project,
.mission,
.team,
.achievements,
.why-us,
.office-info,
.service-areas {
  padding: 40px 20px;
  background: rgba(26, 31, 58, 0.4);
  border-radius: 12px;
  margin-bottom: 40px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

.content-wrapper,
.text-section,
.values {
  margin-bottom: 24px;
}

.achievements-list,
.related-links ul {
  list-style: none;
  margin-left: 0;
}

.achievements-list li,
.related-links li {
  padding: 12px 20px;
  background: rgba(0, 217, 255, 0.05);
  border-left: 3px solid #00D9FF;
  margin-bottom: 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.achievements-list li:hover,
.related-links li:hover {
  background: rgba(0, 217, 255, 0.1);
  transform: translateX(10px);
  border-left-color: #00FF88;
}

/* ===================================
   FAQ SECTIONS
   =================================== */

.faq-section {
  margin-bottom: 40px;
}

.faq-item {
  padding: 20px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #00D9FF;
  background: rgba(26, 31, 58, 0.8);
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.2);
}

.faq-item h3,
.faq-item h4 {
  color: #00D9FF;
  margin-bottom: 12px;
}

.faq-item p {
  color: #B8C5D6;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta,
.cta-final {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(0, 255, 136, 0.1) 100%);
  border-radius: 12px;
  margin: 60px 0;
  border: 2px solid rgba(0, 217, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta::before,
.cta-final::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 217, 255, 0.1), transparent);
  animation: shine 3s infinite;
}

@keyframes shine {
  to { left: 100%; }
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you {
  padding: 80px 20px;
  text-align: center;
}

.success-message,
.response-time {
  font-size: 20px;
  color: #00FF88;
  font-weight: 600;
  margin: 24px 0;
  text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.next-steps,
.while-waiting,
.social-proof,
.related-links,
.faq-quick,
.contact-reasons {
  margin-top: 40px;
  padding: 32px;
  background: rgba(26, 31, 58, 0.6);
  border-radius: 12px;
  border: 1px solid rgba(0, 217, 255, 0.2);
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */

.legal-content {
  padding: 40px 20px;
}

.legal-content h1 {
  margin-bottom: 32px;
}

.legal-content h2 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 40px 20px 20px;
  margin-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.footer-column {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

.footer-column h4 {
  color: #00D9FF;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-column p {
  color: #B8C5D6;
  font-size: 14px;
  margin-bottom: 8px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
  padding: 4px 0;
}

.footer-nav a:hover {
  color: #00D9FF;
  padding-left: 10px;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

.footer-bottom p {
  color: #B8C5D6;
  font-size: 14px;
}

/* ===================================
   COOKIE CONSENT BANNER
   =================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.98);
  border-top: 2px solid #00D9FF;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 30px rgba(0, 217, 255, 0.3);
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  flex: 1 1 300px;
  color: #B8C5D6;
  font-size: 14px;
}

.cookie-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid;
}

.cookie-accept {
  background: linear-gradient(135deg, #00D9FF 0%, #00FF88 100%);
  color: #0A0E27;
  border-color: #00D9FF;
}

.cookie-accept:hover {
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.5);
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: #B8C5D6;
  border-color: #B8C5D6;
}

.cookie-reject:hover {
  background: rgba(184, 197, 214, 0.1);
  color: #FFFFFF;
}

.cookie-settings {
  background: transparent;
  color: #00D9FF;
  border-color: #00D9FF;
}

.cookie-settings:hover {
  background: rgba(0, 217, 255, 0.1);
}

/* Cookie Preferences Modal */
.cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border: 2px solid #00D9FF;
  border-radius: 12px;
  max-width: 500px;
  width: 100%;
  padding: 32px;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 10px 50px rgba(0, 217, 255, 0.5);
}

.cookie-category {
  padding: 16px;
  background: rgba(26, 31, 58, 0.6);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  margin-bottom: 16px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #FFFFFF;
  font-weight: 600;
  cursor: pointer;
}

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #555;
  border-radius: 13px;
  position: relative;
  transition: background 0.3s ease;
}

.cookie-toggle.active {
  background: #00D9FF;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  top: 3px;
  left: 3px;
  transition: left 0.3s ease;
}

.cookie-toggle.active::after {
  left: 27px;
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE FIRST
   =================================== */

@media (max-width: 768px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 60px 20px;
  }

  .trust-indicators,
  .stats,
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .reason,
  .category,
  .tool,
  .contact-card {
    flex: 1 1 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-buttons {
    justify-content: center;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

@media (min-width: 1025px) {
  .benefit-card,
  .service-card {
    flex: 1 1 calc(25% - 24px);
  }

  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
}

/* ===================================
   ANIMATIONS & TRANSITIONS
   =================================== */

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section {
  animation: fadeIn 0.6s ease-out;
}

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
textarea:focus {
  outline: 2px solid #00D9FF;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner {
    display: none !important;
  }
}