/* ============================================
   DEEPSTONE DRIVE - MODERN BOLD DESIGN SYSTEM
   ============================================ */

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

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul, ol {
  list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY - MODERN BOLD
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}

h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 32px;
}

h2 {
  font-size: 36px;
  font-weight: 800;
}

h3 {
  font-size: 28px;
  font-weight: 700;
}

h4 {
  font-size: 24px;
  font-weight: 700;
}

p {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 16px;
  color: #333333;
}

strong {
  font-weight: 700;
  color: #1a1a1a;
}

/* ============================================
   LAYOUT & CONTAINERS
   ============================================ */

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

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

/* ============================================
   HEADER - BOLD NAVIGATION
   ============================================ */

header {
  background: #1a4a63;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
}

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

.main-nav a {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  background-color: #c77a3d;
  transform: translateY(-2px);
}

/* ============================================
   MOBILE MENU - HAMBURGER NAVIGATION
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: #c77a3d;
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 8px;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(199, 122, 61, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #a66330;
  transform: scale(1.05);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 350px;
  height: 100vh;
  background: #1a4a63;
  z-index: 1999;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #c77a3d;
  color: #ffffff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 0;
  border-bottom: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #c77a3d;
  padding-left: 10px;
}

/* ============================================
   BUTTONS - BOLD CALL TO ACTIONS
   ============================================ */

.btn {
  display: inline-block;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #c77a3d;
  color: #ffffff;
  border-color: #c77a3d;
  box-shadow: 0 4px 12px rgba(199, 122, 61, 0.3);
}

.btn-primary:hover {
  background: #a66330;
  border-color: #a66330;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(199, 122, 61, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #1a4a63;
  border-color: #1a4a63;
}

.btn-secondary:hover {
  background: #1a4a63;
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(26, 74, 99, 0.3);
}

/* ============================================
   HERO SECTION - BOLD STATEMENT
   ============================================ */

.hero {
  background: linear-gradient(135deg, #1a4a63 0%, #2C5F7C 100%);
  color: #ffffff;
  padding: 80px 20px;
  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="%23c77a3d" opacity="0.05"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
  font-size: 22px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
}

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

.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-badges span {
  font-size: 16px;
  font-weight: 700;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

/* ============================================
   PAGE HERO - INTERNAL PAGES
   ============================================ */

.page-hero {
  background: linear-gradient(135deg, #1a4a63 0%, #2C5F7C 100%);
  color: #ffffff;
  padding: 60px 20px 40px;
  margin-bottom: 60px;
}

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

.page-hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  margin-bottom: 0;
}

.breadcrumbs {
  font-size: 14px;
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 600;
}

.breadcrumbs a {
  color: #c77a3d;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.last-updated {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-top: 16px;
}

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

.benefits-grid,
.services-grid,
.pricing-grid,
.values-grid,
.stats-grid,
.posts-grid,
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 40px;
}

.benefit-card,
.service-card,
.pricing-card,
.value-card,
.post-card,
.option-card,
.service-detail-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #1a4a63;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.benefit-card:hover,
.service-card:hover,
.pricing-card:hover,
.value-card:hover,
.post-card:hover,
.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(26, 74, 99, 0.2);
  border-color: #c77a3d;
}

.benefit-card h3,
.service-card h3,
.value-card h3,
.post-card h3,
.option-card h3 {
  color: #1a4a63;
  margin-bottom: 16px;
  font-size: 24px;
}

.service-detail-card {
  flex: 1 1 100%;
  margin-bottom: 32px;
}

.service-detail-card h2 {
  color: #1a4a63;
  border-bottom: 4px solid #c77a3d;
  padding-bottom: 16px;
  margin-bottom: 24px;
}

.service-detail-card ul {
  margin: 24px 0;
  padding-left: 0;
}

.service-detail-card li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  border-bottom: 1px solid #e0e0e0;
}

.service-detail-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c77a3d;
  font-weight: 900;
  font-size: 20px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #c77a3d;
  margin: 24px 0;
}

.price-large {
  font-size: 48px;
  font-weight: 900;
  color: #c77a3d;
  margin: 24px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.price-large span {
  font-size: 20px;
  font-weight: 600;
  color: #666;
}

/* ============================================
   PRICING CARDS - FEATURED
   ============================================ */

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

.pricing-card.featured {
  border-color: #c77a3d;
  border-width: 4px;
  transform: scale(1.02);
}

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-8px);
}

.badge {
  position: absolute;
  top: -12px;
  left: 24px;
  background: #c77a3d;
  color: #ffffff;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

.features-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid #e0e0e0;
}

.features-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #c77a3d;
  font-weight: 900;
  font-size: 18px;
}

/* ============================================
   TESTIMONIALS - HIGH CONTRAST
   ============================================ */

.testimonials {
  background: #f5f5f5;
  padding: 80px 20px;
  margin-bottom: 60px;
}

.testimonials h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.testimonial-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-left: 6px solid #c77a3d;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 18px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card .author {
  font-size: 16px;
  font-weight: 700;
  color: #1a4a63;
  font-style: normal;
  margin-bottom: 0;
}

/* ============================================
   CTA SECTIONS - BOLD CONVERSIONS
   ============================================ */

.cta-final,
.cta-section,
.guarantee {
  background: linear-gradient(135deg, #c77a3d 0%, #a66330 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  margin: 60px 0;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta-section::before,
.guarantee::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.cta-final h2,
.cta-section h2,
.guarantee h2 {
  color: #ffffff;
  font-size: 42px;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-final p,
.cta-section p,
.guarantee p {
  color: rgba(255, 255, 255, 0.95);
  font-size: 20px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.contact-info {
  font-size: 18px;
  font-weight: 700;
  margin-top: 32px;
  position: relative;
  z-index: 1;
}

/* ============================================
   STATS SECTION - GEOMETRIC NUMBERS
   ============================================ */

.stats {
  background: #1a4a63;
  color: #ffffff;
  padding: 80px 20px;
  margin: 60px 0;
}

.stats h2 {
  text-align: center;
  color: #ffffff;
  margin-bottom: 48px;
}

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

.stat-item {
  flex: 1 1 calc(25% - 32px);
  min-width: 200px;
  text-align: center;
  padding: 32px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  border: 3px solid rgba(199, 122, 61, 0.5);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-8px);
  border-color: #c77a3d;
  background: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #c77a3d;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  margin: 0;
}

/* ============================================
   INDUSTRIES GRID
   ============================================ */

.industries {
  padding: 60px 20px;
  background: #f5f5f5;
}

.industries h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #1a4a63;
}

.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
}

.industry-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 180px;
  padding: 24px;
  background: #ffffff;
  border: 3px solid #1a4a63;
  border-radius: 8px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #1a4a63;
  transition: all 0.3s ease;
}

.industry-item:hover {
  background: #1a4a63;
  color: #ffffff;
  transform: scale(1.05);
}

/* ============================================
   BLOG & POSTS
   ============================================ */

.blog-categories {
  padding: 40px 20px;
  background: #f5f5f5;
}

.categories-list {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.category {
  padding: 12px 24px;
  background: #ffffff;
  border: 3px solid #1a4a63;
  border-radius: 8px;
  font-weight: 700;
  color: #1a4a63;
  transition: all 0.3s ease;
}

.category:hover,
.category.active {
  background: #1a4a63;
  color: #ffffff;
}

.featured-post {
  padding: 60px 20px;
  background: linear-gradient(135deg, #1a4a63 0%, #2C5F7C 100%);
  margin-bottom: 60px;
}

.post-featured {
  max-width: 800px;
  margin: 0 auto;
  color: #ffffff;
  position: relative;
}

.post-featured h2 {
  color: #ffffff;
  font-size: 36px;
  margin-bottom: 16px;
}

.post-featured p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
}

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

.post-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
}

.post-card .post-meta {
  color: #666;
  margin-top: 16px;
}

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

.contact-methods {
  padding: 60px 20px;
}

.methods-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.method-card {
  flex: 1 1 calc(50% - 32px);
  min-width: 280px;
  padding: 40px;
  background: #f5f5f5;
  border-radius: 12px;
  border: 3px solid #1a4a63;
  text-align: center;
}

.method-card h3 {
  color: #1a4a63;
  margin-bottom: 16px;
}

.contact-detail {
  font-size: 22px;
  font-weight: 700;
  color: #c77a3d;
  margin: 16px 0;
}

.contact-form-section {
  padding: 60px 20px;
  background: #f5f5f5;
}

.form-note {
  max-width: 600px;
  margin: 40px auto;
  padding: 32px;
  background: #ffffff;
  border-left: 6px solid #c77a3d;
  border-radius: 8px;
}

.form-note p {
  font-weight: 700;
  color: #1a4a63;
  margin-bottom: 16px;
}

.form-note ul {
  list-style: none;
  padding: 0;
}

.form-note li {
  padding: 8px 0;
  font-size: 16px;
}

.form-note a {
  color: #c77a3d;
  font-weight: 700;
}

.form-note a:hover {
  text-decoration: underline;
}

.office-info {
  padding: 60px 20px;
}

.office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.info-block {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 250px;
  padding: 32px;
  background: #f5f5f5;
  border-radius: 8px;
  border-top: 4px solid #c77a3d;
}

.info-block h3 {
  color: #1a4a63;
  margin-bottom: 16px;
}

.note {
  margin-top: 40px;
  padding: 24px;
  background: #fff3e6;
  border-left: 4px solid #c77a3d;
  border-radius: 4px;
  font-weight: 600;
  color: #1a4a63;
}

.faq-contact {
  padding: 60px 20px;
  background: #f5f5f5;
}

.faq-list {
  max-width: 800px;
  margin: 40px auto 0;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  border-radius: 8px;
  border-left: 4px solid #1a4a63;
  margin-bottom: 20px;
}

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

.faq-item p {
  margin: 0;
  color: #333;
}

/* ============================================
   GUIDE & LEGAL SECTIONS
   ============================================ */

.guide-section {
  padding: 60px 20px;
}

.guide-section h2 {
  color: #1a4a63;
  margin-bottom: 24px;
}

.steps-list {
  margin: 40px 0;
}

.step {
  background: #f5f5f5;
  padding: 32px;
  border-left: 6px solid #c77a3d;
  border-radius: 8px;
  margin-bottom: 24px;
  transition: all 0.3s ease;
}

.step:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.step h3 {
  color: #1a4a63;
  margin-bottom: 12px;
}

.comparison {
  padding: 60px 20px;
  background: #f5f5f5;
}

.comparison h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 48px;
}

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

.rate {
  font-size: 24px;
  font-weight: 900;
  color: #c77a3d;
  margin: 16px 0;
}

.mistakes-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
}

.mistakes-list li {
  background: #fff3e6;
  padding: 24px;
  border-left: 6px solid #c77a3d;
  border-radius: 8px;
  margin-bottom: 16px;
  font-size: 18px;
}

.help-banner {
  background: #1a4a63;
  color: #ffffff;
  padding: 32px;
  border-radius: 8px;
  text-align: center;
  font-size: 20px;
  margin-top: 40px;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.benefits-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.95);
}

.benefits-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #ffffff;
  font-weight: 900;
  font-size: 20px;
}

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

.content-wrapper {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  padding: 48px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.content-wrapper h2 {
  color: #1a4a63;
  border-bottom: 3px solid #c77a3d;
  padding-bottom: 12px;
  margin-top: 40px;
  margin-bottom: 24px;
}

.content-wrapper h3 {
  color: #1a4a63;
  margin-top: 32px;
  margin-bottom: 16px;
}

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

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

.contact-dpo {
  padding: 60px 20px;
  background: #f5f5f5;
  text-align: center;
}

.contact-dpo h2 {
  color: #1a4a63;
  margin-bottom: 32px;
}

.legal-nav {
  padding: 60px 20px;
  background: #1a4a63;
  text-align: center;
}

.legal-nav h2 {
  color: #ffffff;
  margin-bottom: 32px;
}

.legal-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 400px;
  margin: 0 auto;
}

.legal-links a {
  padding: 16px 24px;
  background: #ffffff;
  color: #1a4a63;
  border-radius: 8px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.legal-links a:hover {
  background: #c77a3d;
  color: #ffffff;
  transform: translateX(8px);
}

.services-list {
  list-style: none;
  padding: 0;
  margin: 32px 0;
  max-width: 800px;
}

.services-list li {
  background: #f5f5f5;
  padding: 24px 32px;
  border-left: 4px solid #c77a3d;
  border-radius: 4px;
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  color: #1a4a63;
}

.additional-services {
  padding: 60px 20px;
  background: #f5f5f5;
}

.additional-services h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 40px;
}

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

.thank-you-hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, #1a4a63 0%, #2C5F7C 100%);
  color: #ffffff;
}

.success-icon {
  width: 100px;
  height: 100px;
  background: #c77a3d;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  font-weight: 900;
  color: #ffffff;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(199, 122, 61, 0.3);
}

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

.confirmation-details {
  padding: 60px 20px;
}

.confirmation-details h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 40px;
}

.helpful-links {
  padding: 60px 20px;
  background: #f5f5f5;
}

.helpful-links h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 40px;
}

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

.link-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border: 3px solid #1a4a63;
  text-align: center;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-8px);
  border-color: #c77a3d;
}

.link-card h3 {
  color: #1a4a63;
  margin-bottom: 24px;
}

.cta-secondary {
  padding: 60px 20px;
  text-align: center;
}

.cta-secondary h2 {
  color: #1a4a63;
  margin-bottom: 24px;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team {
  padding: 60px 20px;
  background: #f5f5f5;
}

.team h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 24px;
}

.team > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
}

.team-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.team-member {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  padding: 32px;
  border-radius: 12px;
  border-top: 4px solid #c77a3d;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.team-member h3 {
  color: #1a4a63;
  margin-bottom: 12px;
}

.team-member p {
  margin: 0;
  color: #666;
}

.team > p:last-child {
  text-align: center;
  font-weight: 700;
  color: #1a4a63;
  margin-top: 40px;
}

/* ============================================
   STORY & VALUES SECTIONS
   ============================================ */

.story {
  padding: 60px 20px;
}

.story h2 {
  color: #1a4a63;
  text-align: center;
  margin-bottom: 40px;
}

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}

.mission {
  background: #fff3e6;
  padding: 32px;
  border-left: 6px solid #c77a3d;
  border-radius: 8px;
  margin-top: 40px;
  font-size: 20px;
  color: #1a4a63;
  text-align: center;
}

.values {
  padding: 60px 20px;
  background: #f5f5f5;
}

.values h2 {
  text-align: center;
  color: #1a4a63;
  margin-bottom: 48px;
}

/* ============================================
   SECTION INTRO
   ============================================ */

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

/* ============================================
   FOOTER - BOLD & STRUCTURED
   ============================================ */

footer {
  background: #1a1a1a;
  color: #ffffff;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-section {
  flex: 1 1 calc(33.333% - 40px);
  min-width: 250px;
}

.footer-section h4 {
  color: #c77a3d;
  font-size: 20px;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

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

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

.footer-nav a:hover {
  color: #c77a3d;
  padding-left: 8px;
}

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

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

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a1a;
  color: #ffffff;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 16px;
  line-height: 1.6;
}

.cookie-text a {
  color: #c77a3d;
  text-decoration: underline;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 6px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #c77a3d;
  color: #ffffff;
  border-color: #c77a3d;
}

.cookie-accept:hover {
  background: #a66330;
  border-color: #a66330;
}

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

.cookie-reject:hover {
  background: #666666;
}

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

.cookie-settings:hover {
  background: #c77a3d;
  color: #ffffff;
}

/* Cookie Preferences Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 10000;
  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: auto;
}

.cookie-modal-content {
  background: #ffffff;
  color: #1a1a1a;
  max-width: 600px;
  width: 100%;
  border-radius: 12px;
  padding: 40px;
  max-height: 80vh;
  overflow-y: auto;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.active .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: #1a4a63;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f5f5f5;
  border-radius: 8px;
  margin-bottom: 16px;
}

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

.cookie-category h4 {
  color: #1a4a63;
  margin: 0;
  font-size: 18px;
}

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

.cookie-toggle.active {
  background: #c77a3d;
}

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

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

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

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

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

.cookie-modal-buttons button {
  flex: 1 1 auto;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 700;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.cookie-save {
  background: #c77a3d;
  color: #ffffff;
}

.cookie-save:hover {
  background: #a66330;
}

.cookie-close {
  background: #e0e0e0;
  color: #1a1a1a;
}

.cookie-close:hover {
  background: #cccccc;
}

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

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 22px;
  }

  p {
    font-size: 16px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  /* Cards and grids to single column */
  .benefit-card,
  .service-card,
  .pricing-card,
  .value-card,
  .post-card,
  .option-card,
  .testimonial-card,
  .stat-item,
  .method-card,
  .link-card,
  .team-member,
  .info-block,
  .footer-section {
    flex: 1 1 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-card.featured:hover {
    transform: translateY(-8px);
  }

  /* Button sizing */
  .btn {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }

  /* CTA sections */
  .cta-buttons {
    flex-direction: column;
  }

  .cta-final h2,
  .cta-section h2 {
    font-size: 32px;
  }

  /* Cookie consent */
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }

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

  .cookie-btn {
    flex: 1 1 auto;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  /* Industries */
  .industry-item {
    flex: 1 1 calc(50% - 16px);
  }

  /* Categories */
  .categories-list {
    flex-direction: column;
  }

  .category {
    text-align: center;
  }

  /* Legal content */
  .content-wrapper {
    padding: 24px;
  }

  /* Sections padding */
  .section {
    padding: 32px 20px;
  }

  .hero,
  .page-hero,
  .cta-final,
  .cta-section {
    padding: 60px 20px;
  }

  /* Stats */
  .stat-number {
    font-size: 42px;
  }

  .price-large {
    font-size: 36px;
  }

  /* Header spacing */
  header {
    padding: 16px 0;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .mobile-menu {
    width: 90%;
  }

  .industry-item {
    flex: 1 1 100%;
  }

  .stat-number {
    font-size: 36px;
  }

  .price-large {
    font-size: 32px;
  }

  .btn {
    font-size: 14px;
    padding: 12px 20px;
  }
}

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

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

.text-bold {
  font-weight: 700;
}

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

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

.pt-40 {
  padding-top: 40px;
}

.pb-40 {
  padding-bottom: 40px;
}

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

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

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

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

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  header,
  footer,
  .cta-final,
  .cta-section,
  .btn {
    display: none !important;
  }

  body {
    color: #000000;
  }

  a {
    color: #000000;
    text-decoration: underline;
  }
}