/* ===================================
   FROZEN DRIFT - GRADIENT MODERN STYLE
   Modern design with gradient elements
   =================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2c3e50;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

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

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

ul {
  list-style: none;
}

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

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #1A2B3C 0%, #0A7FBF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: 48px; margin-bottom: 24px; }
h2 { font-size: 32px; margin-bottom: 24px; }
h3 { font-size: 24px; margin-bottom: 16px; }
h4 { font-size: 20px; }
p { margin-bottom: 16px; line-height: 1.8; }

/* BUTTONS */
.btn-primary,
.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 160px;
}

.btn-primary {
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(10, 127, 191, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(10, 127, 191, 0.4);
  background: linear-gradient(135deg, #0A7FBF 0%, #0d5a8f 100%);
}

.btn-secondary {
  background: transparent;
  color: #0A7FBF;
  border: 2px solid #0A7FBF;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 127, 191, 0.2);
}

/* HEADER */
header {
  background: linear-gradient(135deg, #1A2B3C 0%, #2c4557 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
}

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

.main-nav a {
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  padding: 8px 0;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #0A7FBF, #E8F1F5);
  transition: width 0.3s ease;
}

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

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  color: #ffffff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(10, 127, 191, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(10, 127, 191, 0.4);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #1A2B3C 0%, #0A7FBF 100%);
  z-index: 1999;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  transition: right 0.3s ease;
}

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

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

.mobile-menu-close:hover {
  background: #ffffff;
  color: #1A2B3C;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  padding-left: 16px;
  color: #E8F1F5;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #1A2B3C 0%, #0A7FBF 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(232, 241, 245, 0.1) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subheadline {
  color: #E8F1F5;
  font-size: 20px;
  margin-bottom: 32px;
  line-height: 1.8;
}

.hero-benefits {
  margin-bottom: 32px;
}

.hero-benefits li {
  color: #ffffff;
  font-size: 16px;
  padding: 12px 0 12px 32px;
  position: relative;
}

.hero-benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E8F1F5;
  font-weight: 700;
  font-size: 20px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* PAGE HERO */
.page-hero {
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

.page-hero h1 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero p {
  color: #E8F1F5;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

/* SERVICES OVERVIEW */
.services-overview {
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.service-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 43, 60, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0A7FBF, #1A2B3C);
  border-radius: 16px 16px 0 0;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 30px rgba(10, 127, 191, 0.2);
  border-color: #0A7FBF;
}

.service-card h3 {
  margin-bottom: 16px;
}

.service-card p {
  color: #546e7a;
  margin-bottom: 16px;
}

.service-price {
  font-size: 24px;
  font-weight: 700;
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 16px;
}

/* WHY CHOOSE US */
.why-choose-us {
  background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
  border-radius: 20px;
}

.why-choose-us h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

.feature-card {
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 127, 191, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 16px;
  left: 16px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  border-radius: 50%;
  opacity: 0.1;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(10, 127, 191, 0.15);
}

.feature-card h3 {
  margin-bottom: 12px;
  position: relative;
}

.feature-card p {
  color: #546e7a;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 60px 20px;
  border-radius: 20px;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(26, 43, 60, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 280px;
  position: relative;
  border-left: 4px solid #0A7FBF;
}

.testimonial-card p:first-child {
  color: #2c3e50;
  font-size: 16px;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
}

.testimonial-author {
  color: #0A7FBF;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 0;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 80% 50%, rgba(232, 241, 245, 0.1) 0%, transparent 50%);
}

.cta-banner h2 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.cta-banner p {
  color: #E8F1F5;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-section {
  background: linear-gradient(135deg, #f8fbfd 0%, #E8F1F5 100%);
  padding: 60px 20px;
  border-radius: 20px;
  text-align: center;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  color: #546e7a;
  font-size: 18px;
  margin-bottom: 32px;
}

/* SERVICES DETAILED */
.services-detailed .service-item {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 127, 191, 0.1);
  margin-bottom: 24px;
  border-left: 4px solid #0A7FBF;
  transition: all 0.3s ease;
}

.services-detailed .service-item:hover {
  transform: translateX(8px);
  box-shadow: 0 6px 30px rgba(10, 127, 191, 0.15);
}

.service-features {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  border-radius: 20px;
}

/* STORY & VALUES */
.story,
.values {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

.story h2,
.values h2 {
  text-align: center;
  margin-bottom: 32px;
}

.story p {
  font-size: 18px;
  line-height: 1.8;
  color: #546e7a;
  max-width: 800px;
  margin: 0 auto 32px;
}

.milestones ul {
  max-width: 600px;
  margin: 0 auto;
}

.milestones li {
  padding: 16px 0 16px 40px;
  position: relative;
  font-size: 16px;
  color: #2c3e50;
  font-weight: 600;
}

.milestones li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  border-radius: 50%;
}

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

.value-card {
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 127, 191, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  transition: all 0.3s ease;
}

.value-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(10, 127, 191, 0.15);
}

/* TEAM */
.team {
  background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
}

.team h2 {
  margin-bottom: 24px;
}

.team p {
  max-width: 800px;
  margin: 0 auto 32px;
  font-size: 18px;
  line-height: 1.8;
  color: #546e7a;
}

.expertise-list {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

.expertise-list li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2c3e50;
}

.expertise-list li::before {
  content: '◆';
  position: absolute;
  left: 0;
  color: #0A7FBF;
  font-size: 16px;
}

/* DIAGNOSTIC */
.diagnostic-promo {
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.promo-box {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.promo-box h2 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.promo-box p {
  color: #E8F1F5;
  font-size: 18px;
}

.diagnostic-systems,
.diagnostic-pricing {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.system-card,
.pricing-card {
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 127, 191, 0.1);
  flex: 1 1 calc(50% - 12px);
  min-width: 250px;
  transition: all 0.3s ease;
  border-top: 4px solid #0A7FBF;
}

.system-card:hover,
.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(10, 127, 191, 0.15);
}

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

.pricing-card .price {
  font-size: 32px;
  font-weight: 700;
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 16px 0;
}

/* PRICING TABLE */
.pricing-intro {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 60px;
}

.pricing-intro h2 {
  margin-bottom: 16px;
}

.pricing-intro p {
  color: #546e7a;
  font-size: 16px;
  line-height: 1.8;
}

.pricing-table {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  border-radius: 20px;
  padding: 60px 20px;
}

.pricing-category {
  margin-bottom: 48px;
}

.pricing-category h2 {
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 3px solid #0A7FBF;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 127, 191, 0.1);
  gap: 16px;
  flex-wrap: wrap;
}

.service-name {
  color: #2c3e50;
  font-size: 16px;
  flex: 1 1 200px;
}

.service-price {
  color: #0A7FBF;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
}

/* CONTACT */
.contact-info {
  margin-bottom: 60px;
}

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

.contact-card {
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 127, 191, 0.1);
  flex: 1 1 calc(33.333% - 16px);
  min-width: 250px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(10, 127, 191, 0.15);
}

.contact-card h2 {
  margin-bottom: 16px;
}

.contact-card p {
  color: #546e7a;
}

.contact-form-section {
  background: linear-gradient(135deg, #f8fbfd 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 60px 20px;
  margin-bottom: 60px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 40px;
}

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

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

.form-field label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #2c3e50;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #E8F1F5;
  border-radius: 12px;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #0A7FBF;
  box-shadow: 0 0 0 3px rgba(10, 127, 191, 0.1);
}

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

.form-notice {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  padding: 24px;
  border-radius: 12px;
  border-left: 4px solid #0A7FBF;
  margin-top: 24px;
}

.form-notice p {
  color: #546e7a;
  margin-bottom: 0;
}

.map-section {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 20px;
}

.map-section h2 {
  margin-bottom: 16px;
}

.map-section p {
  color: #546e7a;
  line-height: 1.8;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(10, 127, 191, 0.1);
  margin-bottom: 24px;
}

.legal-section h2 {
  margin-bottom: 16px;
  font-size: 24px;
}

.legal-section p {
  color: #546e7a;
  line-height: 1.8;
}

/* THANK YOU */
.thank-you-section {
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  border-radius: 20px;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

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

.thank-you-content h1 {
  margin-bottom: 24px;
}

.thank-you-content p {
  font-size: 18px;
  color: #546e7a;
  line-height: 1.8;
  margin-bottom: 32px;
}

.thank-you-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
}

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

.thank-you-content li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #2c3e50;
}

.thank-you-content li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0A7FBF;
  font-weight: 700;
  font-size: 20px;
}

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

.contact-info-section {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  border-radius: 20px;
  padding: 60px 20px;
  text-align: center;
}

.contact-info-section h2 {
  margin-bottom: 16px;
}

.contact-info-section p {
  color: #546e7a;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 8px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #1A2B3C 0%, #0d1a26 100%);
  color: #E8F1F5;
  padding: 60px 20px 24px;
  margin-top: 60px;
}

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

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

.footer-section h3 {
  color: #ffffff;
  background: linear-gradient(135deg, #ffffff 0%, #E8F1F5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  font-size: 20px;
}

.footer-section p {
  color: #E8F1F5;
  line-height: 1.8;
  margin-bottom: 8px;
}

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

.footer-nav a {
  color: #E8F1F5;
  transition: all 0.3s ease;
  padding: 4px 0;
}

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

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

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

/* COOKIE CONSENT BANNER */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1A2B3C 0%, #2c4557 100%);
  padding: 24px;
  z-index: 1998;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

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

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

.cookie-text {
  color: #E8F1F5;
  flex: 1 1 300px;
}

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

.cookie-btn {
  padding: 12px 24px;
  border: none;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
  color: #ffffff;
}

.cookie-btn.accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(10, 127, 191, 0.3);
}

.cookie-btn.reject {
  background: transparent;
  color: #E8F1F5;
  border: 2px solid #E8F1F5;
}

.cookie-btn.reject:hover {
  background: rgba(232, 241, 245, 0.1);
}

.cookie-btn.settings {
  background: transparent;
  color: #E8F1F5;
  text-decoration: underline;
}

/* COOKIE MODAL */
#cookie-modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 43, 60, 0.9);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

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

.cookie-modal-content {
  background: linear-gradient(135deg, #ffffff 0%, #f8fbfd 100%);
  padding: 40px;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: linear-gradient(135deg, #E8F1F5 0%, #ffffff 100%);
  border-radius: 12px;
}

.cookie-category h3 {
  margin-bottom: 8px;
  font-size: 18px;
}

.cookie-category p {
  color: #546e7a;
  margin-bottom: 12px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
  width: 50px;
  height: 26px;
  appearance: none;
  background: #ccc;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked {
  background: linear-gradient(135deg, #0A7FBF 0%, #1A2B3C 100%);
}

.cookie-toggle input[type="checkbox"]::before {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #ffffff;
  top: 3px;
  left: 3px;
  transition: transform 0.3s ease;
}

.cookie-toggle input[type="checkbox"]:checked::before {
  transform: translateX(24px);
}

.cookie-toggle input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  /* Hide desktop nav, show mobile menu */
  .main-nav,
  .header-cta {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
  }
  
  /* Cards */
  .service-card,
  .feature-card,
  .testimonial-card,
  .value-card,
  .system-card,
  .pricing-card,
  .contact-card {
    flex: 1 1 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-section {
    flex: 1 1 100%;
  }
  
  /* Cookie Banner */
  .cookie-content {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  /* Pricing */
  .price-item {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .service-price {
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  /* Container */
  .container {
    padding: 0 16px;
  }
  
  /* Sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  /* Buttons */
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  /* Typography */
  h1 { font-size: 28px; }
  h2 { font-size: 22px; }
  
  /* Hero */
  .hero h1 {
    font-size: 28px;
  }
  
  /* Cards padding */
  .service-card,
  .feature-card,
  .testimonial-card,
  .value-card,
  .legal-section,
  .contact-card {
    padding: 24px;
  }
  
  /* Cookie Modal */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons .cookie-btn {
    width: 100%;
  }
}

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

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

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

/* ACCESSIBILITY */
:focus-visible {
  outline: 3px solid #0A7FBF;
  outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
  outline: 3px solid #0A7FBF;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  #cookie-banner,
  #cookie-modal,
  .btn-primary,
  .btn-secondary {
    display: none;
  }
  
  body {
    background: white;
  }
}