/* ========================================
   SHIMMER ARCADE - VIBRANT ENERGETIC CSS
   Modern Video Content Training Platform
   ======================================== */

/* 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: #1a1a1a;
  background: #ffffff;
  overflow-x: hidden;
}

/* VIBRANT COLOR PALETTE */
:root {
  --primary: #6B46C1;
  --primary-dark: #4A2C8F;
  --secondary: #F59E0B;
  --accent: #EC4899;
  --success: #10B981;
  --white: #FFFFFF;
  --black: #0F0F0F;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-700: #374151;
  --gray-900: #111827;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
}

h2 {
  font-size: 36px;
  letter-spacing: -0.5px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  color: var(--gray-700);
}

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

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

/* CONTAINER */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* HEADER */
header {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(107, 70, 193, 0.15);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.logo {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05) rotate(-2deg);
}

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

.main-nav a {
  color: var(--white);
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--secondary);
  transition: width 0.3s ease;
}

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

.cta-button {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 16px;
  box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(245, 158, 11, 0.5);
  color: var(--white);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background: var(--white);
  color: var(--primary);
  border: none;
  font-size: 28px;
  padding: 10px 15px;
  border-radius: 8px;
  cursor: pointer;
  z-index: 1001;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  background: var(--secondary);
  color: var(--white);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  z-index: 1000;
  transition: right 0.4s ease;
  box-shadow: -5px 0 25px rgba(0,0,0,0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: none;
  font-size: 32px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--accent);
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 30px 30px;
  gap: 0;
}

.mobile-nav a {
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  padding: 18px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  display: block;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
  padding-left: 30px;
  color: var(--secondary);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245,158,11,0.2) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 6s ease-in-out infinite;
}

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

.hero .container {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: var(--white);
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 4px 8px rgba(0,0,0,0.2);
  animation: fadeInUp 0.8s ease;
}

.hero .subheadline,
.hero .intro,
.hero .mission {
  font-size: 20px;
  max-width: 800px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.95);
  line-height: 1.7;
  animation: fadeInUp 1s ease;
}

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

.cta-group {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
  animation: fadeInUp 1.2s ease;
}

.cta-primary,
.btn-primary {
  background: var(--secondary);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(245,158,11,0.4);
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.cta-primary:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(245,158,11,0.5);
  background: #F59E0B;
  color: var(--white);
}

.cta-secondary,
.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 16px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  border: 2px solid var(--white);
  transition: all 0.3s ease;
  cursor: pointer;
  display: inline-block;
}

.cta-secondary:hover,
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* TRUST BAR */
.trust-bar {
  background: var(--gray-50);
  padding: 40px 20px;
  margin-bottom: 60px;
}

.stats-grid {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 32px;
}

.stat-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.stat-item strong {
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  display: block;
}

.stat-item span {
  font-size: 16px;
  color: var(--gray-700);
  font-weight: 600;
}

/* SECTIONS */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
  color: var(--gray-700);
}

section h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 42px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* SERVICES GRID */
.services-grid,
.benefits-grid,
.courses-grid,
.project-grid,
.resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.service-card,
.benefit-card,
.course-card,
.project-card,
.resource-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(107,70,193,0.1);
  transition: all 0.3s ease;
  position: relative;
  border: 2px solid transparent;
  margin-bottom: 20px;
}

.service-card:hover,
.course-card:hover,
.project-card:hover,
.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(107,70,193,0.2);
  border-color: var(--secondary);
}

.service-card h3,
.course-card h3,
.project-card h3,
.resource-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.course-card p,
.project-card p {
  color: var(--gray-700);
  margin-bottom: 20px;
  line-height: 1.7;
}

.price {
  font-size: 28px;
  font-weight: 800;
  color: var(--accent);
  margin: 20px 0;
  display: block;
}

.btn,
.btn-download {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(107,70,193,0.3);
}

.btn:hover,
.btn-download:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,70,193,0.4);
  color: var(--white);
}

/* BADGES */
.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 12px;
}

/* COURSE FEATURES */
.course-features {
  list-style: none;
  margin: 20px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.course-features li {
  color: var(--gray-700);
  padding-left: 8px;
  font-size: 15px;
}

/* FILTERS */
.course-filters,
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.filter-btn {
  background: var(--white);
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* WHY US */
.why-us {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 0;
}

.benefit-card {
  text-align: center;
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.benefit-card h3 {
  color: var(--accent);
  margin-bottom: 16px;
}

/* TESTIMONIALS */
.testimonials {
  background: var(--white);
  padding: 60px 20px;
}

.testimonial-grid {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  justify-content: center;
}

.testimonial-card {
  background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-left: 5px solid var(--accent);
  position: relative;
  margin-bottom: 20px;
}

.testimonial-card p {
  color: var(--gray-900);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  font-style: italic;
}

.client-name,
.author {
  font-weight: 700;
  color: var(--primary);
  margin-top: 16px;
  display: block;
}

.rating {
  color: var(--secondary);
  font-size: 20px;
  margin-top: 12px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
  border-radius: 20px;
  margin: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 38px;
  margin-bottom: 16px;
  -webkit-text-fill-color: var(--white);
  background: none;
}

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

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(107,70,193,0.1);
  border-top: 4px solid var(--secondary);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107,70,193,0.15);
}

.value-card h3 {
  color: var(--accent);
}

/* TEAM GRID */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.team-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107,70,193,0.2);
}

.role {
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
  display: block;
}

/* ACHIEVEMENTS */
.achievements {
  background: var(--gray-50);
  padding: 60px 20px;
  border-radius: 20px;
}

.stat-box {
  text-align: center;
  padding: 32px;
  background: var(--white);
  border-radius: 16px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
}

.stat-label {
  color: var(--gray-700);
  font-weight: 600;
  font-size: 16px;
}

/* STORY SECTION */
.story,
.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 24px;
  color: var(--gray-700);
}

/* SUCCESS STORIES */
.story-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.story-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 10px 30px rgba(107,70,193,0.3);
  position: relative;
  margin-bottom: 20px;
}

.story-card h3 {
  color: var(--white);
  margin-bottom: 20px;
}

.quote {
  font-size: 18px;
  line-height: 1.7;
  font-style: italic;
  color: rgba(255,255,255,0.95);
  margin-bottom: 20px;
}

/* CONTACT PAGE */
.contact-options {
  margin: 40px 0;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.option-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(107,70,193,0.1);
  text-align: center;
  border-top: 4px solid var(--accent);
  margin-bottom: 20px;
}

.option-card h3 {
  color: var(--primary);
  margin-bottom: 16px;
}

.note {
  font-size: 14px;
  color: var(--gray-700);
  font-style: italic;
  margin-top: 12px;
}

/* CONTACT FORM */
.contact-form-section {
  background: var(--gray-50);
  padding: 60px 20px;
  border-radius: 20px;
  margin: 40px 0;
}

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-field label {
  display: block;
  color: var(--gray-900);
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 16px;
}

.input-field {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--gray-200);
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: var(--white);
}

.input-field:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(107,70,193,0.1);
}

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

select.input-field {
  cursor: pointer;
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--gray-700);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.btn-submit {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 16px 48px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(107,70,193,0.4);
  width: 100%;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(107,70,193,0.5);
}

/* CONSULTATION */
.consultation {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  margin: 40px 0;
}

.consultation h2 {
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  background: none;
}

.benefits-list {
  list-style: none;
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.benefits-list li {
  font-size: 18px;
  padding-left: 10px;
  color: var(--white);
}

/* LOCATION */
.location-content {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.location-info {
  flex: 1 1 300px;
}

.location-info h3 {
  color: var(--primary);
  margin-top: 24px;
  margin-bottom: 12px;
}

.map-placeholder {
  flex: 1 1 400px;
  background: var(--gray-100);
  border-radius: 20px;
  padding: 80px 40px;
  text-align: center;
  color: var(--gray-700);
  border: 2px dashed var(--gray-300);
}

/* LEGAL PAGES */
.legal-page {
  padding: 40px 20px;
}

.legal-page .container {
  max-width: 900px;
}

.last-updated {
  color: var(--gray-700);
  font-size: 14px;
  margin-bottom: 32px;
  font-style: italic;
}

.legal-content {
  line-height: 1.8;
}

.legal-content h2 {
  color: var(--primary);
  font-size: 28px;
  margin-top: 40px;
  margin-bottom: 20px;
  text-align: left;
  background: none;
  -webkit-text-fill-color: var(--primary);
}

.legal-content h3 {
  color: var(--accent);
  font-size: 20px;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

.legal-content li {
  margin-bottom: 8px;
  color: var(--gray-700);
}

.contact-box {
  background: var(--gray-50);
  padding: 32px;
  border-radius: 16px;
  margin-top: 48px;
  border-left: 4px solid var(--accent);
}

.contact-box h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 20px;
  margin-bottom: 60px;
}

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

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.message {
  font-size: 20px;
  color: rgba(255,255,255,0.95);
  max-width: 600px;
  margin: 0 auto;
}

.steps-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step-card,
.suggestion-card {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  max-width: 350px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.step-card:hover,
.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107,70,193,0.2);
}

.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  margin: 0 auto 20px;
}

.step-card h3,
.suggestion-card h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* NEWSLETTER */
.newsletter {
  background: var(--gray-50);
  padding: 60px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.newsletter h2 {
  -webkit-text-fill-color: var(--primary);
  background: none;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 32px auto;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1 1 300px;
  padding: 14px 20px;
  border: 2px solid var(--gray-200);
  border-radius: 50px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.email-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(107,70,193,0.1);
}

.btn-subscribe {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(107,70,193,0.3);
}

.btn-subscribe:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(107,70,193,0.4);
}

.privacy-note {
  font-size: 14px;
  color: var(--gray-700);
  margin-top: 16px;
}

/* DOWNLOADS */
.downloads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.download-item {
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  max-width: 380px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  border-top: 4px solid var(--secondary);
  margin-bottom: 20px;
}

.download-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* CATEGORIES */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.category-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 20px;
  flex: 1 1 calc(50% - 32px);
  min-width: 250px;
  max-width: 500px;
  box-shadow: 0 10px 30px rgba(107,70,193,0.3);
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(107,70,193,0.4);
}

.category-card h3 {
  color: var(--white);
  margin-bottom: 12px;
}

.category-card p {
  color: rgba(255,255,255,0.95);
}

.count {
  display: block;
  margin-top: 16px;
  font-weight: 700;
  font-size: 14px;
  color: var(--secondary);
}

/* NAVIGATION OPTIONS */
.navigation-options {
  text-align: center;
  margin: 60px 0;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 200px;
  min-width: 200px;
}

.footer-logo {
  height: 45px;
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
}

.footer-col h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 16px;
  font-weight: 700;
}

.footer-col p {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  line-height: 1.7;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-col a {
  color: rgba(255,255,255,0.8);
  transition: color 0.3s ease;
}

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

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

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

.legal-links a {
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  transition: color 0.3s ease;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--gray-900) 0%, var(--black) 100%);
  color: var(--white);
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-content {
  flex: 1 1 300px;
}

.cookie-content p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: var(--secondary);
  color: var(--white);
}

.cookie-accept:hover {
  background: #F59E0B;
  transform: translateY(-2px);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

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

.cookie-settings {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
}

.cookie-settings:hover {
  background: var(--secondary);
  color: var(--white);
}

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

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 28px;
  color: var(--gray-700);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--gray-100);
  color: var(--primary);
}

.cookie-category {
  padding: 20px;
  background: var(--gray-50);
  border-radius: 12px;
  margin-bottom: 16px;
}

.cookie-category h3 {
  color: var(--primary);
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--gray-300);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--primary);
}

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

.toggle-switch.active::after {
  transform: translateX(24px);
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero h1 { font-size: 40px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  header .cta-button {
    display: none;
  }
  
  .stats-grid,
  .services-grid,
  .benefits-grid,
  .courses-grid,
  .project-grid,
  .resources-grid,
  .testimonial-grid,
  .values-grid,
  .team-grid,
  .options-grid,
  .story-grid,
  .steps-grid,
  .suggestions-grid,
  .downloads-grid,
  .categories-grid {
    flex-direction: column;
    align-items: center;
  }
  
  .service-card,
  .benefit-card,
  .course-card,
  .project-card,
  .resource-card,
  .testimonial-card,
  .value-card,
  .team-card,
  .option-card,
  .story-card,
  .step-card,
  .suggestion-card,
  .download-item,
  .category-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .cta-group {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-primary,
  .cta-secondary,
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  .footer-grid {
    flex-direction: column;
  }
  
  .newsletter-form {
    flex-direction: column;
  }
  
  .email-input,
  .btn-subscribe {
    width: 100%;
  }
  
  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  .location-content {
    flex-direction: column;
  }
  
  section {
    padding: 32px 16px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  .hero,
  .cta-banner {
    padding: 48px 16px;
  }
  
  .service-card,
  .course-card,
  .project-card,
  .resource-card {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
}

/* ANIMATIONS */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

.service-card,
.course-card,
.project-card {
  animation: slideUp 0.6s ease forwards;
}

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

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu,
  .cookie-banner,
  .cta-banner,
  .cta-group {
    display: none;
  }
}