/* ===================================
   BOTFORGE - MONOCHROME SOPHISTICATED
   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', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   TYPOGRAPHY - MONOCHROME SOPHISTICATED
   =================================== */

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

h1 {
  font-size: 48px;
  font-weight: 800;
  letter-spacing: -0.03em;
}

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

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

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

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

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

a:hover {
  color: #666666;
}

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

li {
  margin-bottom: 8px;
  color: #333333;
}

strong {
  font-weight: 600;
  color: #000000;
}

small {
  font-size: 14px;
  color: #666666;
}

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

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

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

/* ===================================
   HEADER - MONOCHROME SOPHISTICATED
   =================================== */

header {
  background-color: #FFFFFF;
  border-bottom: 2px solid #000000;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

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

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

.main-nav a {
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #000000;
  transition: width 0.3s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
}

/* ===================================
   BUTTONS - MONOCHROME SOPHISTICATED
   =================================== */

.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 15px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: 2px solid #000000;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
}

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

.btn-secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #000000;
}

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

/* ===================================
   MOBILE MENU - MONOCHROME SOPHISTICATED
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  width: 50px;
  height: 50px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #FFFFFF;
  border-left: 2px solid #000000;
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #000000;
  color: #FFFFFF;
  border: 2px solid #000000;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  padding: 16px 0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  border-bottom: 1px solid #E0E0E0;
  transition: all 0.3s ease;
}

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

/* ===================================
   HERO SECTION - MONOCHROME SOPHISTICATED
   =================================== */

.hero {
  background-color: #000000;
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #FFFFFF;
  font-weight: 800;
  line-height: 1.1;
}

.hero-subtitle {
  font-size: 20px;
  margin-bottom: 32px;
  color: #E0E0E0;
  line-height: 1.6;
}

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

.hero-cta .btn-primary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.hero-cta .btn-primary:hover {
  background-color: #000000;
  color: #FFFFFF;
}

.hero-cta .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.hero-cta .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

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

.trust-badges span {
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #CCCCCC;
  padding: 8px 16px;
  border: 1px solid #666666;
}

/* ===================================
   HERO INTERNAL PAGES
   =================================== */

.hero-internal {
  background-color: #F5F5F5;
  padding: 60px 20px;
  margin-bottom: 60px;
  border-bottom: 2px solid #000000;
}

.hero-internal h1 {
  font-size: 42px;
  margin-bottom: 16px;
  text-align: center;
}

.hero-internal p {
  font-size: 18px;
  text-align: center;
  color: #666666;
  max-width: 700px;
  margin: 0 auto;
}

/* ===================================
   STATS SECTION - MONOCHROME SOPHISTICATED
   =================================== */

.stats {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.stats h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

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

.stat-card {
  background-color: #000000;
  color: #FFFFFF;
  padding: 32px 24px;
  text-align: center;
  min-width: 200px;
  flex: 1 1 calc(25% - 24px);
  max-width: 250px;
  border: 2px solid #000000;
  transition: all 0.3s ease;
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #FFFFFF;
}

.stat-label {
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #CCCCCC;
  font-weight: 600;
}

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

.services-preview {
  padding: 60px 20px;
  background-color: #F5F5F5;
  margin-bottom: 60px;
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  max-width: 500px;
  min-width: 280px;
  transition: all 0.3s ease;
  position: relative;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.service-card p {
  font-size: 15px;
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.6;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  color: #000000;
  margin-top: 16px;
}

.section-cta {
  text-align: center;
  margin-top: 40px;
}

/* ===================================
   SERVICES DETAILED PAGE
   =================================== */

.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-detailed h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.service-detail {
  background-color: #F5F5F5;
  border: 2px solid #000000;
  padding: 40px 32px;
  margin-bottom: 32px;
}

.service-detail h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #000000;
}

.service-detail p {
  font-size: 16px;
  margin-bottom: 20px;
  color: #333333;
  line-height: 1.7;
}

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

.service-detail ul li {
  font-size: 15px;
  margin-bottom: 12px;
  color: #333333;
  position: relative;
  padding-left: 8px;
}

.service-detail ul li::before {
  content: '■';
  position: absolute;
  left: -16px;
  color: #000000;
  font-size: 8px;
}

.service-detail .btn {
  margin-top: 24px;
}

/* ===================================
   BENEFITS SECTION
   =================================== */

.benefits {
  padding: 60px 20px;
  background-color: #FFFFFF;
  margin-bottom: 60px;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit-card {
  background-color: #F5F5F5;
  border: 2px solid #E0E0E0;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  max-width: 500px;
  min-width: 280px;
  transition: all 0.3s ease;
}

.benefit-card:hover {
  border-color: #000000;
  transform: translateY(-3px);
}

.benefit-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.benefit-card p {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
}

/* ===================================
   TESTIMONIALS - MONOCHROME SOPHISTICATED
   =================================== */

.testimonials {
  padding: 60px 20px;
  background-color: #F5F5F5;
  margin-bottom: 60px;
}

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

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

.testimonial-card {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 32px 28px;
  flex: 1 1 calc(50% - 24px);
  max-width: 550px;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #1A1A1A;
  font-style: italic;
  margin-bottom: 0;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
  border-top: 2px solid #E0E0E0;
}

.testimonial-author strong {
  font-size: 16px;
  font-weight: 700;
  color: #000000;
}

.testimonial-author span {
  font-size: 14px;
  color: #666666;
}

/* ===================================
   CASE STUDIES
   =================================== */

.case-studies {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.case-studies h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.case-study {
  background-color: #F5F5F5;
  border: 2px solid #000000;
  padding: 40px 32px;
  margin-bottom: 32px;
}

.case-study h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #000000;
}

.case-study p {
  font-size: 16px;
  margin-bottom: 16px;
  color: #333333;
  line-height: 1.7;
}

.case-study p strong {
  color: #000000;
  font-weight: 700;
}

/* ===================================
   RESULTS SUMMARY
   =================================== */

.results-summary {
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  margin-bottom: 60px;
}

.results-summary h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #FFFFFF;
  font-size: 36px;
}

.results-summary .stat-card {
  background-color: #1A1A1A;
  border: 2px solid #FFFFFF;
}

.results-summary .stat-card:hover {
  background-color: #FFFFFF;
  color: #000000;
}

.results-summary .stat-card:hover .stat-number,
.results-summary .stat-card:hover .stat-label {
  color: #000000;
}

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

.tech-stack {
  padding: 60px 20px;
  background-color: #F5F5F5;
  margin-bottom: 60px;
}

.tech-stack h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.tech-stack > p {
  text-align: center;
  font-size: 18px;
  color: #666666;
  margin-bottom: 48px;
}

.tech-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.tech-category {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  max-width: 500px;
  min-width: 280px;
  transition: all 0.3s ease;
}

.tech-category:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.tech-category h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.tech-category p {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
}

.ai-technologies {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.ai-technologies h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.tech-detail {
  background-color: #F5F5F5;
  border-left: 4px solid #000000;
  padding: 32px 28px;
  margin-bottom: 32px;
}

.tech-detail h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.tech-detail p {
  font-size: 16px;
  color: #333333;
  line-height: 1.7;
}

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

.pricing-tables {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.pricing-tables h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.pricing-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.pricing-card {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 40px 32px;
  flex: 1 1 calc(33.333% - 24px);
  max-width: 380px;
  min-width: 280px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pricing-card.featured {
  background-color: #000000;
  color: #FFFFFF;
  border: 3px solid #000000;
  transform: scale(1.05);
}

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

.pricing-card.featured .btn-primary {
  background-color: #FFFFFF;
  color: #000000;
  border-color: #FFFFFF;
}

.pricing-card.featured .btn-primary:hover {
  background-color: #CCCCCC;
  border-color: #CCCCCC;
}

.pricing-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background-color: #000000;
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-card.featured .badge {
  background-color: #FFFFFF;
  color: #000000;
}

.pricing-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.price {
  font-size: 36px;
  font-weight: 800;
  margin-bottom: 8px;
  color: #000000;
}

.billing {
  font-size: 14px;
  color: #666666;
  margin-bottom: 24px;
}

.pricing-card.featured .billing {
  color: #CCCCCC;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  flex-grow: 1;
}

.pricing-card ul li {
  font-size: 15px;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
  color: #333333;
}

.pricing-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
  color: #000000;
}

.pricing-card.featured ul li::before {
  color: #FFFFFF;
}

/* ===================================
   ABOUT US SECTIONS
   =================================== */

.our-story {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.our-story h2 {
  text-align: center;
  margin-bottom: 32px;
  font-size: 36px;
}

.our-story p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 900px;
  margin: 0 auto 24px;
  color: #333333;
}

.mission-vision {
  padding: 60px 20px;
  background-color: #F5F5F5;
  margin-bottom: 60px;
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.mission,
.vision {
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 40px 32px;
  flex: 1 1 calc(50% - 32px);
  max-width: 550px;
  min-width: 300px;
}

.mission h3,
.vision h3 {
  font-size: 24px;
  margin-bottom: 16px;
  color: #000000;
}

.mission p,
.vision p {
  font-size: 16px;
  line-height: 1.7;
  color: #333333;
}

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

.values h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card {
  background-color: #F5F5F5;
  border-left: 4px solid #000000;
  padding: 32px 24px;
  flex: 1 1 calc(50% - 24px);
  max-width: 500px;
  min-width: 280px;
  transition: all 0.3s ease;
}

.value-card:hover {
  border-left-width: 8px;
  transform: translateX(4px);
}

.value-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #000000;
}

.value-card p {
  font-size: 15px;
  color: #333333;
  line-height: 1.6;
}

.numbers {
  padding: 60px 20px;
  background-color: #000000;
  color: #FFFFFF;
  margin-bottom: 60px;
}

.numbers h2 {
  text-align: center;
  margin-bottom: 48px;
  color: #FFFFFF;
  font-size: 36px;
}

.numbers .stat-card {
  background-color: #1A1A1A;
  border: 2px solid #FFFFFF;
}

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

.contact-options {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
  font-size: 36px;
}

.contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.contact-option {
  background-color: #F5F5F5;
  border: 2px solid #000000;
  padding: 32px 28px;
  flex: 1 1 calc(50% - 24px);
  max-width: 500px;
  min-width: 280px;
  text-align: center;
}

.contact-option h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #000000;
}

.contact-option p {
  font-size: 16px;
  color: #333333;
  line-height: 1.6;
}

.contact-form-section {
  padding: 60px 20px;
  background-color: #F5F5F5;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
  font-size: 36px;
}

.contact-form-section > p {
  text-align: center;
  font-size: 16px;
  color: #666666;
  margin-bottom: 40px;
}

.form-placeholder {
  max-width: 600px;
  margin: 0 auto;
  background-color: #FFFFFF;
  border: 2px solid #000000;
  padding: 40px 32px;
}

.form-placeholder p {
  font-size: 15px;
  color: #333333;
  margin-bottom: 20px;
  padding: 12px;
  background-color: #F5F5F5;
  border: 1px solid #E0E0E0;
}

.form-note {
  font-size: 13px !important;
  color: #666666 !important;
  font-style: italic;
  background-color: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin-bottom: 24px !important;
}

.business-hours {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.business-hours h2 {
  margin-bottom: 24px;
  font-size: 32px;
}

.business-hours p {
  font-size: 16px;
  color: #333333;
  margin-bottom: 12px;
}

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

.thank-you {
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.thank-you-content {
  max-width: 700px;
  margin: 0 auto;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: #000000;
  color: #FFFFFF;
  font-size: 48px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 32px;
  font-weight: 700;
}

.thank-you h1 {
  font-size: 42px;
  margin-bottom: 20px;
}

.thank-you p {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
  line-height: 1.7;
}

.thank-you h2 {
  font-size: 28px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.thank-you ul {
  text-align: left;
  max-width: 500px;
  margin: 0 auto 32px;
  list-style: none;
  padding: 0;
}

.thank-you ul li {
  font-size: 16px;
  color: #333333;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}

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

.thank-you-cta {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

/* ===================================
   CTA SECTIONS - MONOCHROME SOPHISTICATED
   =================================== */

.cta-final,
.cta-services,
.cta-portfolio,
.cta-technology,
.cta-pricing,
.cta-about {
  padding: 80px 20px;
  background-color: #000000;
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 60px;
}

.cta-final h2,
.cta-services h2,
.cta-portfolio h2,
.cta-technology h2,
.cta-pricing h2,
.cta-about h2 {
  font-size: 38px;
  margin-bottom: 20px;
  color: #FFFFFF;
}

.cta-final p,
.cta-services p,
.cta-portfolio p,
.cta-technology p,
.cta-pricing p,
.cta-about p {
  font-size: 18px;
  margin-bottom: 32px;
  color: #E0E0E0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

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

.cta-benefits span {
  font-size: 15px;
  font-weight: 600;
  color: #FFFFFF;
  padding: 8px 16px;
  border: 1px solid #FFFFFF;
}

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

.cta-final .btn-primary,
.cta-services .btn-primary,
.cta-portfolio .btn-primary,
.cta-technology .btn-primary,
.cta-pricing .btn-primary,
.cta-about .btn-primary {
  background-color: #FFFFFF;
  color: #000000;
  border: 2px solid #FFFFFF;
}

.cta-final .btn-primary:hover,
.cta-services .btn-primary:hover,
.cta-portfolio .btn-primary:hover,
.cta-technology .btn-primary:hover,
.cta-pricing .btn-primary:hover,
.cta-about .btn-primary:hover {
  background-color: #E0E0E0;
  border-color: #E0E0E0;
}

.cta-final .btn-secondary,
.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.cta-final .btn-secondary:hover,
.cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #000000;
}

/* ===================================
   LEGAL CONTENT PAGES
   =================================== */

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

.legal-content h2 {
  font-size: 26px;
  margin-bottom: 20px;
  margin-top: 40px;
  color: #000000;
}

.legal-content p {
  font-size: 15px;
  line-height: 1.8;
  color: #333333;
  margin-bottom: 20px;
}

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

.legal-content li {
  font-size: 15px;
  line-height: 1.7;
  color: #333333;
  margin-bottom: 12px;
}

/* ===================================
   FOOTER - MONOCHROME SOPHISTICATED
   =================================== */

footer {
  background-color: #000000;
  color: #FFFFFF;
  padding: 60px 20px 20px;
  border-top: 2px solid #FFFFFF;
}

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

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

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}

.footer-column h4 {
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  color: #FFFFFF;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.7;
  color: #CCCCCC;
  margin-bottom: 8px;
}

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

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

.footer-nav a:hover {
  color: #FFFFFF;
  padding-left: 4px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid #666666;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: #CCCCCC;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #FFFFFF;
}

.footer-bottom p {
  font-size: 13px;
  color: #999999;
  margin: 0;
}

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

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #FFFFFF;
  border-top: 2px solid #000000;
  padding: 24px 20px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-banner-text {
  flex: 1 1 400px;
}

.cookie-banner-text p {
  font-size: 14px;
  color: #333333;
  margin-bottom: 0;
  line-height: 1.6;
}

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

.cookie-banner .btn {
  padding: 10px 24px;
  font-size: 14px;
  white-space: nowrap;
}

.cookie-settings-link {
  font-size: 13px;
  text-decoration: underline;
  color: #666666;
  cursor: pointer;
  transition: color 0.3s ease;
}

.cookie-settings-link:hover {
  color: #000000;
}

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

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

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

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #000000;
  color: #FFFFFF;
  border: none;
  width: 32px;
  height: 32px;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #666666;
}

.cookie-modal h3 {
  font-size: 26px;
  margin-bottom: 20px;
  color: #000000;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: #F5F5F5;
  border-left: 3px solid #000000;
}

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

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

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

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

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

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #CCCCCC;
  transition: 0.3s;
  border: 2px solid #000000;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: "";
  height: 18px;
  width: 18px;
  left: 2px;
  bottom: 2px;
  background-color: #000000;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #000000;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
  background-color: #FFFFFF;
}

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

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

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

@media (max-width: 768px) {
  /* Typography adjustments */
  h1 { font-size: 32px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }
  h4 { font-size: 16px; }
  
  .hero h1 { font-size: 36px; }
  .hero-subtitle { font-size: 17px; }
  
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Header adjustments */
  header {
    padding: 16px 0;
  }
  
  .logo img {
    height: 40px;
  }
  
  /* Hero section */
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
  
  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }
  
  .trust-badges span {
    width: 100%;
    text-align: center;
  }
  
  /* Stats grid */
  .stats-grid {
    flex-direction: column;
  }
  
  .stat-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Services grid */
  .services-grid {
    flex-direction: column;
  }
  
  .service-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Benefits grid */
  .benefits-grid {
    flex-direction: column;
  }
  
  .benefit-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    flex-direction: column;
  }
  
  .testimonial-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Tech categories */
  .tech-categories {
    flex-direction: column;
  }
  
  .tech-category {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Pricing grid */
  .pricing-grid {
    flex-direction: column;
  }
  
  .pricing-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  .pricing-card.featured {
    transform: scale(1);
  }
  
  /* Mission/Vision */
  .mission-vision .container {
    flex-direction: column;
  }
  
  .mission,
  .vision {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Values grid */
  .values-grid {
    flex-direction: column;
  }
  
  .value-card {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* Contact grid */
  .contact-grid {
    flex-direction: column;
  }
  
  .contact-option {
    flex: 1 1 100%;
    max-width: 100%;
  }
  
  /* CTA sections */
  .cta-benefits {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-benefits span {
    width: 100%;
    text-align: center;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-column {
    flex: 1 1 100%;
    text-align: center;
  }
  
  .footer-logo {
    margin: 0 auto 16px;
  }
  
  .footer-nav {
    align-items: center;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* Cookie banner */
  .cookie-banner-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-banner-buttons {
    flex-direction: column;
  }
  
  .cookie-banner .btn {
    width: 100%;
  }
  
  /* Cookie modal */
  .cookie-modal-content {
    padding: 32px 20px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .btn {
    width: 100%;
  }
  
  /* Thank you page */
  .thank-you h1 {
    font-size: 32px;
  }
  
  .thank-you-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .thank-you-cta .btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* Tablet adjustments */
  h1 { font-size: 40px; }
  h2 { font-size: 28px; }
  
  .hero h1 { font-size: 44px; }
  
  .container {
    padding: 0 32px;
  }
  
  .main-nav {
    gap: 24px;
  }
  
  .stat-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .pricing-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

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

/* Smooth scrolling for all browsers */
@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* Print styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}