/* ============================================
   HIDDEN GLOW - PROFESSIONAL CORPORATE DESIGN
   Modern Business Aesthetic with Blue/Gray Palette
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  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: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

/* PROFESSIONAL CORPORATE COLOR SCHEME */
:root {
  --primary-blue: #2C5AA0;
  --secondary-blue: #4A7FC1;
  --dark-gray: #2C3E50;
  --medium-gray: #5A6C7D;
  --light-gray: #E8EDF2;
  --white: #FFFFFF;
  --accent-teal: #0EA5A5;
  --success-green: #10B981;
  --warning-orange: #F59E0B;
  --border-color: #D1DCE5;
  --shadow: rgba(44, 90, 160, 0.1);
  --shadow-hover: rgba(44, 90, 160, 0.2);
}

/* TYPOGRAPHY - PROFESSIONAL BUSINESS FONTS */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Inter', sans-serif;
  font-weight: 600;
  line-height: 1.3;
  color: var(--dark-gray);
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 700;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  font-weight: 600;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  font-size: 16px;
  line-height: 1.7;
  color: var(--medium-gray);
  margin-bottom: 16px;
}

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

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

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

li {
  margin-bottom: 8px;
  color: var(--medium-gray);
}

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

/* HEADER - PROFESSIONAL BUSINESS STYLING */
header {
  background-color: var(--white);
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 2px 8px var(--shadow);
  position: sticky;
  top: 0;
  z-index: 900;
  transition: all 0.3s ease;
}

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

.logo {
  display: flex;
  align-items: center;
}

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

.logo img:hover {
  transform: scale(1.05);
}

/* MAIN NAVIGATION - STRUCTURED LAYOUT */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.main-nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

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

.main-nav a:hover {
  color: var(--primary-blue);
}

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

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  background-color: var(--primary-blue);
  color: var(--white);
  border: none;
  font-size: 24px;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 16px;
  z-index: 1100;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

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

/* MOBILE MENU OVERLAY */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: var(--white);
  box-shadow: -4px 0 16px var(--shadow);
  z-index: 1050;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: var(--dark-gray);
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  color: var(--primary-blue);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-gray);
  padding: 16px 0;
  border-bottom: 1px solid var(--light-gray);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: var(--primary-blue);
  padding-left: 8px;
  background-color: var(--light-gray);
}

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

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="none"/><path d="M0 0 L100 100 M100 0 L0 100" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></svg>');
  opacity: 0.3;
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  color: var(--white);
  font-size: 48px;
  margin-bottom: 24px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 32px;
  font-weight: 400;
}

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

.trust-badge {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  margin-top: 16px;
}

/* BUTTONS - PROFESSIONAL CORPORATE STYLE */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary {
  background-color: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
  background-color: var(--secondary-blue);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
  background-color: var(--white);
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
}

/* STATS BAR - STRUCTURED DATA PRESENTATION */
.stats-bar {
  background-color: var(--white);
  padding: 40px 20px;
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 150px;
  padding: 16px;
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  font-size: 14px;
  color: var(--medium-gray);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* SECTIONS - CONSISTENT SPACING */
section {
  padding: 60px 20px;
  margin-bottom: 0;
}

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

/* FEATURES SECTION */
.features {
  background-color: var(--light-gray);
}

.features h2 {
  text-align: center;
  margin-bottom: 48px;
}

.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 250px;
  max-width: 48%;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--primary-blue), var(--accent-teal));
  border-radius: 8px 0 0 8px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card h3 {
  color: var(--dark-gray);
  margin-bottom: 16px;
  font-size: 20px;
}

.feature-card p {
  color: var(--medium-gray);
  line-height: 1.6;
}

/* SERVICES PREVIEW - CARD GRID */
.services-preview {
  background-color: var(--white);
}

.services-preview h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.service-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.service-card.featured {
  border-color: var(--primary-blue);
  box-shadow: 0 4px 16px var(--shadow-hover);
  transform: scale(1.02);
}

.service-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: translateY(-4px);
}

.service-card h3 {
  color: var(--dark-gray);
  font-size: 22px;
}

.service-card p {
  color: var(--medium-gray);
  flex-grow: 1;
}

.price {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

.price span {
  font-size: 16px;
  font-weight: 400;
  color: var(--medium-gray);
}

.badge {
  display: inline-block;
  background-color: var(--accent-teal);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

/* TESTIMONIALS - PROFESSIONAL REVIEWS */
.testimonials {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 280px;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 24px;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 64px;
  color: var(--light-gray);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card p {
  color: var(--dark-gray);
  font-size: 16px;
  line-height: 1.7;
  position: relative;
  z-index: 2;
  font-style: italic;
}

.testimonial-card .author {
  color: var(--primary-blue);
  font-weight: 600;
  font-style: normal;
  margin-top: 8px;
  font-size: 14px;
}

/* CTA BANNER - CALL TO ACTION */
.cta-banner, .cta-section {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

.cta-banner h2, .cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
}

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

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

.cta-link {
  text-align: center;
  margin-top: 32px;
}

.cta-link a {
  color: var(--primary-blue);
  font-weight: 600;
  font-size: 18px;
  transition: all 0.3s ease;
}

.cta-link a:hover {
  color: var(--secondary-blue);
  text-decoration: underline;
}

/* PAGE HERO - INTERNAL PAGES */
.page-hero {
  background: linear-gradient(135deg, var(--dark-gray) 0%, var(--medium-gray) 100%);
  color: var(--white);
  padding: 60px 20px;
  text-align: center;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

.breadcrumbs {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 24px;
  text-align: left;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s ease;
}

.breadcrumbs a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* TRENDING LIST */
.trending-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.app-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  display: flex;
  align-items: center;
  gap: 24px;
  transition: all 0.3s ease;
  margin-bottom: 16px;
}

.app-item:hover {
  box-shadow: 0 4px 16px var(--shadow-hover);
  transform: translateX(8px);
}

.rank {
  font-size: 32px;
  font-weight: 700;
  color: var(--primary-blue);
  min-width: 60px;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
}

.app-item h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.app-item p {
  color: var(--medium-gray);
  font-size: 14px;
  margin: 0;
}

.category {
  font-weight: 500;
  color: var(--medium-gray);
  font-size: 14px;
}

.rating {
  color: var(--warning-orange);
  font-weight: 600;
  font-size: 14px;
}

/* CATEGORIES GRID */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 240px;
  max-width: 48%;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.category-card:hover {
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: translateY(-4px);
}

.category-card h3 {
  color: var(--dark-gray);
  font-size: 20px;
}

.category-card p {
  color: var(--medium-gray);
  font-size: 14px;
}

.category-card a {
  color: var(--primary-blue);
  font-weight: 600;
  margin-top: auto;
}

/* REVIEW PROCESS */
.criteria-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.criteria-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 200px;
  max-width: 48%;
  text-align: center;
  margin-bottom: 24px;
}

.criteria-item h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 8px;
}

.criteria-item p {
  color: var(--medium-gray);
  font-size: 14px;
}

/* REVIEW CARDS */
.review-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.review-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 280px;
  max-width: 48%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.review-card:hover {
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: translateY(-4px);
}

.review-card h3 {
  color: var(--dark-gray);
  font-size: 22px;
}

.review-card .category {
  display: inline-block;
  background-color: var(--light-gray);
  color: var(--primary-blue);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

/* PRICING CARDS */
.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.pricing-card {
  background-color: var(--white);
  border: 2px solid var(--border-color);
  padding: 40px 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 24px;
}

.pricing-card.featured {
  border-color: var(--primary-blue);
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 8px 32px var(--shadow-hover);
}

.pricing-card:hover {
  border-color: var(--primary-blue);
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: translateY(-4px);
}

.pricing-card h3 {
  color: var(--dark-gray);
  font-size: 24px;
  text-align: center;
}

.features-list {
  list-style: none;
  margin: 24px 0;
  padding: 0;
  flex-grow: 1;
}

.features-list li {
  padding: 12px 0;
  padding-left: 28px;
  position: relative;
  color: var(--medium-gray);
  border-bottom: 1px solid var(--light-gray);
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--success-green);
  font-weight: 700;
  font-size: 18px;
}

/* TRUST SECTION */
.trust-section, .trust-grid {
  background-color: var(--light-gray);
  padding: 40px 20px;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  padding: 0;
}

.trust-item {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 200px;
  text-align: center;
  margin-bottom: 24px;
}

.trust-item h3 {
  font-size: 16px;
  color: var(--primary-blue);
  font-weight: 600;
}

/* BLOG SECTIONS */
.blog-featured {
  background-color: var(--white);
  padding: 60px 20px;
}

.featured-post {
  background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
  color: var(--white);
  padding: 48px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
}

.featured-post h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
}

.featured-post p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 16px;
}

.posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.post-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.post-card:hover {
  box-shadow: 0 8px 24px var(--shadow-hover);
  transform: translateY(-4px);
}

.post-card h3 {
  color: var(--dark-gray);
  font-size: 20px;
}

.post-card p {
  color: var(--medium-gray);
  flex-grow: 1;
}

.post-card .meta {
  color: var(--medium-gray);
  font-size: 13px;
}

.post-card a {
  color: var(--primary-blue);
  font-weight: 600;
  margin-top: auto;
}

/* ABOUT PAGE SECTIONS */
.stats-section {
  background-color: var(--white);
  padding: 60px 20px;
}

.stats-section .stats-grid {
  margin-top: 40px;
}

.stat-box {
  background-color: var(--light-gray);
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px var(--shadow-hover);
}

.stat-box h3 {
  font-size: 48px;
  color: var(--primary-blue);
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-box p {
  color: var(--medium-gray);
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.mission, .values {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.mission h2 {
  color: var(--dark-gray);
  margin-bottom: 24px;
  text-align: center;
}

.mission p {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 18px;
  line-height: 1.7;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 40px;
}

.value-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 240px;
  max-width: 48%;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-hover);
}

.value-card h3 {
  color: var(--primary-blue);
  margin-bottom: 12px;
}

/* CONTACT PAGE */
.contact-methods {
  background-color: var(--white);
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.method-card {
  background-color: var(--light-gray);
  padding: 32px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 48%;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.method-card:hover {
  box-shadow: 0 4px 16px var(--shadow-hover);
  transform: translateY(-2px);
}

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

.method-card p {
  color: var(--dark-gray);
  line-height: 1.6;
}

.office-info, .office-details {
  background-color: var(--light-gray);
  padding: 40px 20px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  margin-top: 24px;
}

.office-details p {
  flex: 1;
  min-width: 250px;
}

/* CONTACT FORM */
.contact-form-section {
  background-color: var(--white);
  padding: 60px 20px;
}

.form-container {
  max-width: 700px;
  margin: 0 auto;
  background-color: var(--light-gray);
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
}

.form-intro {
  text-align: center;
  margin-bottom: 32px;
  color: var(--medium-gray);
}

.form-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  font-weight: 600;
  color: var(--dark-gray);
  font-size: 14px;
}

.field-placeholder {
  background-color: var(--white);
  padding: 12px 16px;
  border: 2px solid var(--border-color);
  border-radius: 6px;
  color: var(--medium-gray);
  font-style: italic;
}

.form-actions {
  margin-top: 24px;
  text-align: center;
}

.btn-placeholder {
  background-color: var(--primary-blue);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  display: inline-block;
}

.form-note {
  text-align: center;
  font-size: 13px;
  color: var(--medium-gray);
  margin-top: 16px;
}

/* DEPARTMENTS */
.departments {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.departments-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.dept-card {
  background-color: var(--white);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 240px;
  max-width: 48%;
  margin-bottom: 24px;
}

.dept-card h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 12px;
}

.dept-card p {
  color: var(--medium-gray);
  font-size: 14px;
  margin-bottom: 8px;
}

/* LEGAL CONTENT */
.legal-content {
  background-color: var(--white);
  padding: 60px 20px;
}

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.content-wrapper h2 {
  color: var(--dark-gray);
  margin-top: 40px;
  margin-bottom: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--light-gray);
}

.content-wrapper h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.content-wrapper h3 {
  color: var(--primary-blue);
  margin-top: 24px;
  margin-bottom: 12px;
}

.content-wrapper p {
  margin-bottom: 16px;
}

.content-wrapper ul, .content-wrapper ol {
  margin-bottom: 24px;
  padding-left: 32px;
}

.content-wrapper li {
  margin-bottom: 12px;
}

/* RIGHTS SECTIONS */
.rights-overview, .exercise-rights, .supervisory-authority {
  padding: 60px 20px;
}

.rights-overview {
  background-color: var(--white);
}

.rights-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.right-card {
  background-color: var(--light-gray);
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 240px;
  max-width: 48%;
  transition: all 0.3s ease;
  margin-bottom: 24px;
}

.right-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 16px var(--shadow-hover);
}

.right-card h3 {
  color: var(--primary-blue);
  font-size: 18px;
  margin-bottom: 12px;
}

.exercise-rights {
  background-color: var(--light-gray);
}

.exercise-rights ol {
  max-width: 700px;
  margin: 24px auto;
  padding-left: 32px;
}

.exercise-rights li {
  margin-bottom: 16px;
  color: var(--dark-gray);
}

.supervisory-authority {
  background-color: var(--white);
  text-align: center;
}

.related-docs {
  background-color: var(--light-gray);
  padding: 60px 20px;
  text-align: center;
}

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

.docs-nav a {
  background-color: var(--white);
  color: var(--primary-blue);
  padding: 12px 24px;
  border-radius: 6px;
  font-weight: 600;
  box-shadow: 0 2px 8px var(--shadow);
  transition: all 0.3s ease;
}

.docs-nav a:hover {
  background-color: var(--primary-blue);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px var(--shadow-hover);
}

/* KEY POINTS */
.key-points {
  background-color: var(--light-gray);
  padding: 40px 20px;
}

.key-points h2 {
  text-align: center;
  margin-bottom: 24px;
}

.key-points ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.key-points li {
  background-color: var(--white);
  padding: 16px 24px;
  margin-bottom: 12px;
  border-radius: 6px;
  border-left: 4px solid var(--primary-blue);
  box-shadow: 0 2px 4px var(--shadow);
}

.disclaimer {
  text-align: center;
  margin-top: 24px;
  font-size: 13px;
  color: var(--medium-gray);
  font-style: italic;
}

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

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

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

.subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 16px;
  font-weight: 600;
}

.next-steps {
  background-color: var(--white);
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.step {
  background-color: var(--light-gray);
  padding: 24px;
  border-radius: 8px;
  flex: 1;
  min-width: 250px;
  text-align: center;
  box-shadow: 0 2px 8px var(--shadow);
  margin-bottom: 24px;
}

.response-badge {
  background-color: var(--success-green);
  color: var(--white);
  padding: 12px 24px;
  border-radius: 6px;
  display: inline-block;
  margin-top: 24px;
  font-weight: 600;
}

.continue-browsing {
  background-color: var(--light-gray);
  padding: 60px 20px;
}

.suggestions-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.suggestion-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px var(--shadow);
  flex: 1;
  min-width: 280px;
  max-width: 32%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.testimonial-section {
  background-color: var(--white);
  padding: 60px 20px;
}

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

/* FOOTER - PROFESSIONAL CORPORATE */
footer {
  background-color: var(--dark-gray);
  color: rgba(255, 255, 255, 0.9);
  padding: 60px 20px 24px;
  margin-top: 0;
}

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

.footer-section {
  flex: 1;
  min-width: 250px;
}

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

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

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

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

.footer-nav a:hover {
  color: var(--white);
  padding-left: 8px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 16px var(--shadow);
  padding: 24px;
  z-index: 1000;
  border-top: 3px solid var(--primary-blue);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1;
  min-width: 300px;
}

.cookie-text p {
  color: var(--dark-gray);
  font-size: 14px;
  margin: 0;
}

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

.cookie-buttons button {
  padding: 10px 20px;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.btn-accept {
  background-color: var(--primary-blue);
  color: var(--white);
}

.btn-accept:hover {
  background-color: var(--secondary-blue);
}

.btn-reject {
  background-color: var(--medium-gray);
  color: var(--white);
}

.btn-reject:hover {
  background-color: var(--dark-gray);
}

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

.btn-settings:hover {
  background-color: var(--primary-blue);
  color: var(--white);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background-color: var(--white);
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.cookie-modal.active .modal-content {
  transform: translateY(0);
}

.modal-content h3 {
  color: var(--dark-gray);
  margin-bottom: 24px;
}

.cookie-category {
  background-color: var(--light-gray);
  padding: 20px;
  border-radius: 6px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.category-info h4 {
  color: var(--dark-gray);
  font-size: 16px;
  margin-bottom: 8px;
}

.category-info p {
  color: var(--medium-gray);
  font-size: 13px;
  margin: 0;
}

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

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

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

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

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.modal-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* RESPONSIVE DESIGN - MOBILE FIRST */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Header adjustments */
  .header-content {
    padding: 12px 0;
  }
  
  .logo img {
    height: 32px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  /* Stats grid - stack on mobile */
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }
  
  .stat-item {
    min-width: 100%;
  }
  
  /* Feature cards - full width on mobile */
  .feature-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Service cards - stack on mobile */
  .service-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Testimonial cards - full width */
  .testimonial-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Category cards - full width */
  .category-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Review cards - full width */
  .review-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Pricing cards - stack on mobile */
  .pricing-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Blog post cards - full width */
  .post-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Value cards - full width */
  .value-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Method cards - full width */
  .method-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Department cards - full width */
  .dept-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Right cards - full width */
  .right-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Criteria items - full width */
  .criteria-item {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Trust items - full width */
  .trust-item {
    min-width: 100%;
  }
  
  /* Suggestion cards - full width */
  .suggestion-card {
    max-width: 100%;
    min-width: 100%;
  }
  
  /* Footer - stack sections */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    min-width: 100%;
  }
  
  /* Cookie consent - stack on mobile */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal adjustments */
  .modal-content {
    padding: 24px;
    margin: 20px;
  }
  
  /* Sections padding */
  section {
    padding: 40px 20px;
  }
  
  /* CTA buttons - stack on mobile */
  .cta-buttons, .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn, .cta-actions .btn {
    width: 100%;
  }
  
  /* App item - adjust layout */
  .app-item {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }
  
  .rank {
    min-width: auto;
  }
}

/* TABLET RESPONSIVE (768px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  .feature-card,
  .service-card,
  .testimonial-card,
  .category-card,
  .review-card {
    max-width: 48%;
  }
  
  .pricing-card {
    max-width: 48%;
  }
  
  .post-card {
    max-width: 48%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer {
    display: none;
  }
  
  body {
    background-color: white;
  }
  
  .hero {
    background: none;
    color: black;
  }
}

/* ACCESSIBILITY IMPROVEMENTS */
*:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid var(--primary-blue);
  outline-offset: 2px;
}

/* Reduced motion for users who prefer it */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-blue: #1a3a6b;
    --border-color: #000000;
  }
  
  .btn {
    border-width: 3px;
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.note {
  font-size: 13px;
  color: var(--medium-gray);
  font-style: italic;
  text-align: center;
  margin-top: 16px;
}

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

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

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

/* Smooth scroll behavior */
html {
  scroll-behavior: smooth;
}

/* Selection styling */
::selection {
  background-color: var(--primary-blue);
  color: var(--white);
}

::-moz-selection {
  background-color: var(--primary-blue);
  color: var(--white);
}