/* =================================================================
   GLADE EDUCATION - MONOCHROME SOPHISTICATED DESIGN
   ================================================================= */

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

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

body {
  font-family: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  margin-bottom: 16px;
}

h1 { font-size: 48px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 18px; }

p {
  margin-bottom: 16px;
  color: #333333;
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

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

ul {
  list-style: none;
}

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

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

header {
  background-color: #ffffff;
  border-bottom: 2px solid #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
  height: 48px;
  width: auto;
}

.main-nav {
  display: none;
}

.main-nav a {
  color: #000000;
  font-weight: 600;
  padding: 8px 16px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

.main-nav a:hover {
  border-bottom-color: #000000;
}

.cta-buttons {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  z-index: 1001;
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #333333;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000;
  padding: 24px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 16px rgba(0,0,0,0.2);
  display: flex;
  flex-direction: column;
}

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

.mobile-menu-close {
  align-self: flex-end;
  width: 40px;
  height: 40px;
  background-color: #000000;
  color: #ffffff;
  border: none;
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #333333;
}

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

.mobile-nav a {
  color: #000000;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  font-weight: 600;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background-color: #f5f5f5;
  border-left-color: #000000;
}

/* =================================================================
   BUTTONS
   ================================================================= */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  font-size: 16px;
}

.btn-primary {
  background-color: #000000;
  color: #ffffff;
}

.btn-primary:hover {
  background-color: #333333;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
  background-color: #ffffff;
  color: #000000;
}

.btn-secondary:hover {
  background-color: #000000;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

button.btn-primary,
button.btn-secondary {
  border: 2px solid #000000;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
}

/* =================================================================
   HERO SECTIONS
   ================================================================= */

.hero {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 4px solid #000000;
}

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

.hero h1 {
  font-size: 48px;
  margin-bottom: 24px;
  color: #000000;
}

.hero p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #333333;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

.trust-badge {
  font-size: 14px;
  color: #666666;
  font-style: italic;
}

.hero-internal {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.hero-internal h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.hero-internal p {
  color: #e0e0e0;
  font-size: 18px;
}

.hero-legal {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
  border-bottom: 2px solid #000000;
}

.hero-confirmation {
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.confirmation-icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
}

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

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666666;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* =================================================================
   CARDS & GRIDS
   ================================================================= */

.benefits-grid,
.services-grid,
.testimonials-grid,
.steps-grid,
.methods-grid,
.stats-grid,
.categories-grid,
.posts-grid,
.contact-grid,
.pricing-grid,
.info-grid,
.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.benefit-card,
.service-card,
.testimonial-card,
.method,
.stat,
.post-card,
.contact-card,
.pricing-card,
.info-card,
.suggestion-card {
  flex: 1 1 280px;
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.method:hover,
.post-card:hover,
.contact-card:hover,
.pricing-card:hover,
.info-card:hover,
.suggestion-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 #000000;
}

.benefit-card h3,
.service-card h3,
.method h3,
.contact-card h3,
.pricing-card h3,
.info-card h3,
.suggestion-card h3 {
  margin-bottom: 12px;
  color: #000000;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: #000000;
  margin: 16px 0;
  font-family: 'Playfair Display', serif;
}

/* TESTIMONIALS */
.testimonial-card {
  background-color: #f5f5f5;
  border: 2px solid #000000;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.testimonial-card .author {
  font-weight: 700;
  color: #000000;
  font-style: normal;
}

.rating {
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-top: 24px;
}

/* SERVICE FULL WIDTH */
.service-full {
  background-color: #ffffff;
  border: 2px solid #000000;
  padding: 40px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
  position: relative;
}

.service-full:hover {
  box-shadow: 8px 8px 0 #000000;
}

.service-full.featured {
  background-color: #000000;
  color: #ffffff;
}

.service-full.featured h2,
.service-full.featured p {
  color: #ffffff;
}

.service-full.featured .price {
  color: #ffffff;
}

.badge {
  display: inline-block;
  background-color: #ffffff;
  color: #000000;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
  border: 1px solid #ffffff;
}

.pricing-card.featured {
  background-color: #000000;
  color: #ffffff;
  transform: scale(1.05);
}

.pricing-card.featured h3,
.pricing-card.featured .price,
.pricing-card.featured li {
  color: #ffffff;
}

.pricing-card ul {
  list-style: none;
  margin: 24px 0;
}

.pricing-card li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333333;
}

.pricing-card.featured li {
  border-bottom-color: #444444;
}

/* STEPS */
.step {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
}

.step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  background-color: #000000;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px;
}

.step-detail {
  margin-bottom: 40px;
  padding: 32px;
  background-color: #f5f5f5;
  border-left: 4px solid #000000;
}

.step-num {
  font-size: 48px;
  font-weight: 700;
  color: #000000;
  display: block;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

/* STATS */
.stat {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
}

.stat h3 {
  font-size: 48px;
  color: #000000;
  margin-bottom: 8px;
}

.stat p {
  color: #666666;
  font-size: 14px;
}

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

.value-proposition,
.services-preview,
.how-it-works,
.testimonials,
.story,
.methodology,
.statistics,
.process-steps,
.timeline,
.what-you-get,
.guarantee,
.promotions,
.blog-featured,
.blog-categories,
.blog-grid,
.newsletter,
.contact-options,
.contact-form-section,
.consultation,
.legal-content,
.rights-summary,
.key-summary,
.cookie-settings,
.confirmation-details,
.meanwhile,
.social-proof,
.contact-reminder,
.thank-you-content,
.additional-info {
  margin-bottom: 60px;
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper p {
  margin-bottom: 24px;
  font-size: 18px;
  line-height: 1.8;
}

/* MILESTONES */
.milestones {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.milestone {
  flex: 1 1 200px;
  text-align: center;
  padding: 24px;
  background-color: #f5f5f5;
  border: 2px solid #000000;
}

.milestone h3 {
  font-size: 32px;
  color: #000000;
  margin-bottom: 8px;
}

/* TIMELINE */
.timeline ul {
  max-width: 600px;
  margin: 0 auto;
}

.timeline li {
  padding: 16px 0;
  border-left: 3px solid #000000;
  padding-left: 24px;
  margin-bottom: 16px;
  font-size: 16px;
  color: #333333;
}

.express {
  text-align: center;
  margin-top: 32px;
  font-weight: 700;
  color: #000000;
}

.what-you-get ul {
  max-width: 600px;
  margin: 0 auto;
}

.what-you-get li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #333333;
  font-size: 16px;
}

.what-you-get li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #000000;
  font-weight: 700;
}

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

.cta-banner,
.cta-section {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2,
.cta-section h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.cta-banner p,
.cta-section p {
  color: #e0e0e0;
  margin-bottom: 24px;
  font-size: 18px;
}

.cta-banner .btn-primary {
  background-color: #ffffff;
  color: #000000;
  border-color: #ffffff;
}

.cta-banner .btn-primary:hover {
  background-color: #e0e0e0;
}

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

.guarantee {
  font-size: 14px;
  color: #e0e0e0;
  margin-top: 16px;
}

/* =================================================================
   BLOG SECTIONS
   ================================================================= */

.featured-post {
  background-color: #f5f5f5;
  padding: 40px;
  border-left: 4px solid #000000;
  margin-bottom: 40px;
}

.featured-post h2 {
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

.category {
  display: block;
  padding: 16px 24px;
  background-color: #ffffff;
  border: 2px solid #000000;
  text-align: center;
  font-weight: 700;
  transition: all 0.3s ease;
  flex: 1 1 200px;
}

.category:hover {
  background-color: #000000;
  color: #ffffff;
}

/* NEWSLETTER */
.newsletter {
  background-color: #f5f5f5;
  padding: 60px 20px;
  text-align: center;
  border: 2px solid #000000;
}

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

.email-input {
  flex: 1 1 250px;
  padding: 14px 16px;
  border: 2px solid #000000;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
}

.privacy-note {
  font-size: 12px;
  color: #666666;
}

/* =================================================================
   FORMS
   ================================================================= */

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

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 700;
  color: #000000;
}

.input-field,
.textarea-field {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #000000;
  font-size: 16px;
  font-family: 'Lato', sans-serif;
  transition: border-color 0.3s ease;
}

.input-field:focus,
.textarea-field:focus {
  outline: none;
  border-color: #333333;
}

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

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: normal;
}

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

.form-note {
  font-size: 14px;
  color: #666666;
  margin-top: 16px;
}

/* COOKIE SETTINGS */
.cookie-toggles {
  max-width: 600px;
  margin: 0 auto 24px;
}

.toggle-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  background-color: #f5f5f5;
  margin-bottom: 12px;
  border: 1px solid #e0e0e0;
}

.toggle-item label {
  font-weight: 600;
  color: #000000;
}

.cookie-toggle {
  width: 50px;
  height: 24px;
  cursor: pointer;
}

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

footer {
  background-color: #000000;
  color: #ffffff;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

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

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-col nav a {
  color: #e0e0e0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-col nav a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #333333;
  padding-top: 24px;
  text-align: center;
}

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

.legal-links a {
  color: #e0e0e0;
  font-size: 14px;
}

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

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

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #000000;
  color: #ffffff;
  padding: 24px;
  z-index: 999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  border-top: 2px solid #ffffff;
}

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

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

.cookie-banner p {
  color: #e0e0e0;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border: 2px solid #ffffff;
  background-color: #ffffff;
  color: #000000;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Lato', sans-serif;
  font-size: 14px;
}

.cookie-buttons button:hover {
  background-color: #e0e0e0;
}

.cookie-buttons .btn-settings {
  background-color: transparent;
  color: #ffffff;
}

.cookie-buttons .btn-settings:hover {
  background-color: #333333;
}

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

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

.cookie-modal-content {
  background-color: #ffffff;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 3px solid #000000;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal h3 {
  margin-bottom: 24px;
}

.cookie-category {
  padding: 16px;
  background-color: #f5f5f5;
  margin-bottom: 16px;
  border: 1px solid #e0e0e0;
}

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

.cookie-category h4 {
  margin: 0;
  font-size: 16px;
}

.cookie-category p {
  font-size: 14px;
  color: #666666;
  margin: 0;
}

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

/* =================================================================
   RESPONSIVE - TABLET
   ================================================================= */

@media (min-width: 768px) {
  h1 { font-size: 56px; }
  h2 { font-size: 40px; }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .hero {
    padding: 120px 20px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  .benefit-card,
  .service-card,
  .method,
  .stat {
    flex: 1 1 calc(50% - 24px);
  }
  
  .step {
    flex: 1 1 calc(25% - 24px);
  }
  
  .pricing-card {
    flex: 1 1 calc(33.333% - 24px);
  }
  
  .footer-col {
    flex: 1 1 calc(25% - 32px);
  }
}

/* =================================================================
   RESPONSIVE - DESKTOP
   ================================================================= */

@media (min-width: 1024px) {
  .benefit-card,
  .service-card,
  .method {
    flex: 1 1 calc(25% - 24px);
  }
  
  .testimonial-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .post-card,
  .contact-card,
  .info-card,
  .suggestion-card {
    flex: 1 1 calc(33.333% - 24px);
  }
}

/* =================================================================
   UTILITY CLASSES
   ================================================================= */

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

.mt-24 {
  margin-top: 24px;
}

.mb-24 {
  margin-bottom: 24px;
}

/* =================================================================
   ANIMATIONS
   ================================================================= */

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

.fade-in {
  animation: fadeIn 0.6s ease;
}

/* =================================================================
   ACCESSIBILITY
   ================================================================= */

*:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* =================================================================
   PRINT STYLES
   ================================================================= */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none;
  }
}