/* ===================================
   BRILLIANT ROVER - CREATIVE ARTISTIC STYLES
   Mobile-First Responsive Design
   =================================== */

/* CSS RESET & BASE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1e293b;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 25%, #fca5a5 50%, #c084fc 75%, #93c5fd 100%);
  background-attachment: fixed;
  overflow-x: hidden;
}

/* CREATIVE ARTISTIC TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 32px;
  background: linear-gradient(135deg, #2563EB 0%, #7c3aed 50%, #F59E0B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 28px;
  color: #1e40af;
  position: relative;
  padding-bottom: 12px;
}

h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #F59E0B, #2563EB);
  border-radius: 2px;
}

h3 {
  font-size: 22px;
  color: #1e40af;
}

h4 {
  font-size: 18px;
  color: #0f172a;
}

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

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

a:hover {
  color: #F59E0B;
  transform: translateY(-2px);
}

ul {
  list-style: none;
}

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 700;
  color: #0f172a;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* HEADER */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 4px solid #F59E0B;
}

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

.logo img {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo img:hover {
  transform: rotate(-5deg) scale(1.1);
}

.main-nav {
  display: none;
}

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.main-nav a:hover {
  background: linear-gradient(135deg, #2563EB, #7c3aed);
  color: white;
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #2563EB, #7c3aed);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.mobile-menu-toggle:hover {
  transform: rotate(90deg) scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  z-index: 1002;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
}

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

.mobile-menu-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 32px;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: white;
  padding: 16px 20px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateX(8px);
  color: #fbbf24;
}

/* BUTTONS */
.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 700;
  font-size: 16px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  min-height: 48px;
}

.btn-primary {
  background: linear-gradient(135deg, #2563EB 0%, #7c3aed 100%);
  color: white;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.5);
  background: linear-gradient(135deg, #1e40af 0%, #6b21a8 100%);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: #1e40af;
  border: 3px solid #2563EB;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
  color: white;
  border-color: #f59e0b;
  transform: translateY(-3px) scale(1.05);
}

.btn-link {
  background: transparent;
  color: #2563EB;
  padding: 8px 16px;
  font-weight: 600;
  border: 2px solid #2563EB;
}

.btn-link:hover {
  background: #2563EB;
  color: white;
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(124, 58, 237, 0.95) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
  animation: rotate 20s linear infinite;
}

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

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

.hero h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  font-size: 36px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* HERO PAGE */
.hero-page {
  background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #ef4444 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 50% 50% / 0 0 60px 60px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.hero-page h1 {
  color: white;
  background: none;
  -webkit-text-fill-color: white;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-page p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 18px;
  font-weight: 600;
}

/* CARDS & GRIDS */
.card-container,
.stats-grid,
.services-grid,
.benefits-grid,
.testimonials-grid,
.process-steps,
.pricing-grid,
.projects-grid,
.posts-grid,
.contact-grid,
.tech-grid,
.industries-grid,
.expertise-grid,
.resources-grid,
.payment-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.stat-card,
.service-card,
.benefit-card,
.testimonial-card,
.step,
.pricing-card,
.project-card,
.post-card,
.contact-card,
.expertise-card,
.resource-card,
.payment-option {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  flex: 1 1 100%;
  border: 3px solid transparent;
}

.stat-card::before,
.service-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #2563EB, #7c3aed, #F59E0B);
}

.stat-card:hover,
.service-card:hover,
.benefit-card:hover,
.project-card:hover,
.post-card:hover,
.contact-card:hover,
.expertise-card:hover,
.resource-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
  border-color: #2563EB;
}

.stat-card h3 {
  font-size: 48px;
  background: linear-gradient(135deg, #2563EB, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-card p {
  color: #64748b;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-card h3,
.benefit-card h3 {
  color: #1e40af;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit-card p {
  color: #475569;
  margin-bottom: 20px;
}

.price {
  font-size: 32px;
  font-weight: 800;
  color: #F59E0B;
  margin: 20px 0;
  display: block;
}

/* TESTIMONIALS */
.testimonial-card {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.15) 0%, rgba(245, 158, 11, 0.15) 100%);
  border-left: 5px solid #F59E0B;
  padding: 32px;
}

.testimonial-card p {
  font-style: italic;
  font-size: 16px;
  color: #1e293b;
  margin-bottom: 20px;
  line-height: 1.8;
}

.client-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 16px;
}

.client-info strong {
  color: #1e40af;
  font-size: 16px;
}

.client-info span {
  color: #64748b;
  font-size: 14px;
}

/* PROCESS STEPS */
.step {
  background: rgba(255, 255, 255, 0.95);
  text-align: center;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #2563EB, #7c3aed);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}

/* PRICING CARDS */
.pricing-card {
  flex: 1 1 100%;
  text-align: center;
  position: relative;
}

.pricing-card.featured {
  border: 4px solid #F59E0B;
  transform: scale(1.02);
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, #F59E0B, #ef4444);
  color: white;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card ul {
  text-align: left;
  margin: 24px 0;
}

.pricing-card li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  color: #475569;
}

.pricing-card li::before {
  content: '✓';
  color: #10b981;
  font-weight: 700;
  margin-right: 12px;
  font-size: 18px;
}

/* PROJECT & POST CARDS */
.project-card,
.post-card {
  flex: 1 1 100%;
  background: white;
}

.project-category,
.category {
  display: inline-block;
  background: linear-gradient(135deg, #2563EB, #7c3aed);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.read-time,
.post-meta {
  color: #64748b;
  font-size: 14px;
  margin-top: 16px;
}

.post-meta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* BLOG FEATURED */
.featured-post {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #2563EB;
  margin-bottom: 40px;
}

.featured-post .badge {
  display: inline-block;
  background: linear-gradient(135deg, #F59E0B, #ef4444);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

.faq-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 24px;
  border-radius: 16px;
  border-left: 4px solid #F59E0B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.faq-item h3 {
  color: #1e40af;
  margin-bottom: 12px;
  font-size: 18px;
}

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

/* CTA SECTIONS */
.cta-final,
.cta-section {
  background: linear-gradient(135deg, #1e40af 0%, #7c3aed 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  box-shadow: 0 15px 50px rgba(37, 99, 235, 0.3);
}

.cta-final h2,
.cta-section h2 {
  color: white;
  background: none;
  margin-bottom: 20px;
}

.cta-final h2::after,
.cta-section h2::after {
  display: none;
}

.cta-final p,
.cta-section p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  margin-bottom: 32px;
}

/* FORMS */
.form-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  margin-top: 40px;
}

.form-field {
  margin-bottom: 24px;
}

.form-field label {
  display: block;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 8px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.input-field,
.email-input {
  width: 100%;
  padding: 14px 16px;
  border: 3px solid #e2e8f0;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: white;
}

.input-field:focus,
.email-input:focus {
  outline: none;
  border-color: #2563EB;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

textarea.input-field {
  resize: vertical;
  min-height: 120px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 400;
  text-transform: none;
  color: #475569;
}

.checkbox-label input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

/* NEWSLETTER */
.newsletter {
  background: linear-gradient(135deg, rgba(251, 191, 36, 0.2) 0%, rgba(245, 158, 11, 0.2) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 500px;
  margin: 32px auto 0;
}

/* THANK YOU PAGE */
.thank-you {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.success-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background: white;
  color: #10b981;
  border-radius: 50%;
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 24px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.confirmation-message {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.step-card {
  flex: 1 1 100%;
  background: white;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.step-card .step-number {
  width: 50px;
  height: 50px;
  font-size: 20px;
}

.step-card .time {
  display: block;
  color: #F59E0B;
  font-weight: 700;
  margin-top: 12px;
  font-size: 14px;
}

.alert-box {
  background: rgba(239, 68, 68, 0.1);
  border: 3px solid #ef4444;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
}

.nav-buttons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-top: 40px;
}

/* TECH & INDUSTRY GRIDS */
.tech-item,
.industry-item {
  flex: 1 1 calc(50% - 12px);
  background: white;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: #1e40af;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.tech-item:hover,
.industry-item:hover {
  border-color: #2563EB;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.2);
}

/* LEGAL CONTENT */
.legal-content {
  padding: 40px 0;
}

.content-wrapper {
  background: rgba(255, 255, 255, 0.95);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  margin-top: 32px;
  margin-bottom: 16px;
}

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

.content-wrapper ul {
  margin-left: 24px;
  margin-bottom: 20px;
}

.content-wrapper li {
  list-style: disc;
  color: #475569;
  margin-bottom: 8px;
}

/* MISSION & VISION */
.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.mission-card,
.vision-card {
  flex: 1 1 100%;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(124, 58, 237, 0.1) 100%);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #2563EB;
}

.values {
  background: rgba(251, 191, 36, 0.1);
  padding: 40px;
  border-radius: 20px;
  border-left: 6px solid #F59E0B;
  margin-top: 40px;
}

.values ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.values li {
  background: white;
  padding: 16px;
  border-radius: 12px;
  font-weight: 600;
  color: #1e40af;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.values li::before {
  content: '★';
  color: #F59E0B;
  margin-right: 12px;
  font-size: 20px;
}

/* LOCATION INFO */
.location-info {
  background: rgba(255, 255, 255, 0.95);
  padding: 32px;
  border-radius: 20px;
  margin-top: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.location-info p {
  margin-bottom: 16px;
  font-size: 16px;
}

/* GUARANTEE */
.guarantee {
  background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(5, 150, 105, 0.15) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 30px;
  margin: 60px 0;
  border: 3px solid #10b981;
}

.guarantee h2 {
  color: #059669;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: white;
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 5px solid #F59E0B;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 8px;
  font-size: 14px;
}

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

.footer-section nav a:hover {
  color: #fbbf24;
  transform: translateX(4px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 16px;
  font-size: 14px;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.legal-links a:hover {
  color: #fbbf24;
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1e40af 0%, #0f172a 100%);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 4px solid #F59E0B;
}

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

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.cookie-text {
  color: rgba(255, 255, 255, 0.95);
  font-size: 14px;
  text-align: center;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border-radius: 24px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.cookie-accept {
  background: linear-gradient(135deg, #10b981, #059669);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cookie-settings {
  background: transparent;
  color: #fbbf24;
  border: 2px solid #fbbf24;
}

.cookie-settings:hover {
  background: #fbbf24;
  color: #0f172a;
}

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

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

.modal-content {
  background: white;
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.modal-close {
  background: none;
  border: none;
  font-size: 32px;
  cursor: pointer;
  color: #64748b;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

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

.cookie-category {
  padding: 20px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.02);
  margin-bottom: 16px;
  border: 2px solid #e2e8f0;
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.category-header h3 {
  font-size: 16px;
  color: #1e40af;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #cbd5e1;
  transition: 0.4s;
  border-radius: 26px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: 0.4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #10b981;
}

input:checked + .slider:before {
  transform: translateX(24px);
}

input:disabled + .slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.save-preferences {
  flex: 1;
  padding: 14px 24px;
  background: linear-gradient(135deg, #2563EB, #7c3aed);
  color: white;
  border: none;
  border-radius: 24px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.save-preferences:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

/* RESPONSIVE - TABLET */
@media (min-width: 768px) {
  h1 { font-size: 48px; }
  h2 { font-size: 36px; }
  h3 { font-size: 24px; }
  
  .mobile-menu-toggle { display: none; }
  .main-nav { display: flex; gap: 8px; }
  
  .hero h1 { font-size: 52px; }
  .hero-cta { flex-direction: row; }
  
  .stat-card,
  .service-card,
  .benefit-card,
  .project-card,
  .post-card,
  .contact-card,
  .pricing-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .step-card,
  .expertise-card,
  .resource-card,
  .payment-option {
    flex: 1 1 calc(50% - 12px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 12px);
  }
  
  .footer-section {
    flex: 1 1 calc(33.333% - 27px);
  }
  
  .newsletter-form { flex-direction: row; }
  .nav-buttons { flex-direction: row; }
  
  .cookie-content { flex-direction: row; justify-content: space-between; }
  .cookie-text { text-align: left; flex: 1; }
}

/* RESPONSIVE - DESKTOP */
@media (min-width: 1024px) {
  .service-card { flex: 1 1 calc(25% - 18px); }
  .stat-card { flex: 1 1 calc(25% - 18px); }
  .benefit-card { flex: 1 1 calc(25% - 18px); }
  .step { flex: 1 1 calc(25% - 18px); }
  .project-card { flex: 1 1 calc(33.333% - 16px); }
  .post-card { flex: 1 1 calc(33.333% - 16px); }
  .contact-card { flex: 1 1 calc(33.333% - 16px); }
  .pricing-card { flex: 1 1 calc(25% - 18px); }
  .step-card { flex: 1 1 calc(25% - 18px); }
  .expertise-card { flex: 1 1 calc(25% - 18px); }
  .resource-card { flex: 1 1 calc(33.333% - 16px); }
}

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

@keyframes slideIn {
  from { transform: translateX(-100%); }
  to { transform: translateX(0); }
}

/* UTILITY CLASSES */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* SECTION SUBTITLE */
.section-subtitle {
  font-size: 18px;
  color: #64748b;
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  .btn-primary,
  .btn-secondary { display: none; }
}