/* СОВЕРШЕННО НОВЫЕ СТИЛИ - СВЕТЛАЯ ТЕМА, ДРУГИЕ ЦВЕТА */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: "Inter Tight", sans-serif;
  background: #f0f9ff;
  color: #0f172a;
  line-height: 1.7;
  overflow-x: hidden;
  padding-top: 90px;
  opacity: 1;
  visibility: visible;
}
body,
main,
section,
div,
p,
h1,
h2,
h3,
h4,
h5,
h6,
a,
span,
ul,
li,
article,
aside,
header,
footer,
nav,
img,
button,
input,
textarea,
select,
label,
table,
tr,
td,
th,
thead,
tbody {
  opacity: 1 !important;
  visibility: visible !important;
}
[data-aos] {
  opacity: 1 !important;
  visibility: visible !important;
}
main.main *,
section *,
.container *,
.content *,
.hero-content *,
.pricing-container *,
.features-container *,
.testimonials-container *,
.process-flow-container *,
.story-container *,
.mission-container *,
.team-container *,
.values-container *,
.company-info-container *,
.contact-methods-container *,
.contact-form-container *,
.office-info-container *,
.support-options-container *,
.faq-container *,
.legal-container *,
.thanks-steps-container *,
.thanks-info-container *,
.thanks-cta-container *,
.footer-container * {
  opacity: 1 !important;
  visibility: visible !important;
}

a {
  color: #334155;
  text-decoration: none;
  transition: all 0.3s ease;
}
a:hover {
  color: #06b6d4;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #0f172a;
  margin-top: 0;
  margin-bottom: 1rem;
  font-weight: 700;
}
p {
  margin-bottom: 1rem;
  color: #334155;
}

/* Header - Completely New Design */
header.header-main-new {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.98) 0%, rgba(236, 253, 245, 0.98) 100%);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(125, 211, 252, 0.15);
  border-bottom: 2px solid rgba(125, 211, 252, 0.3);
  transition: all 0.3s ease;
}
header.header-main-new::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #7dd3fc 50%, transparent 100%);
}
.header-container-new {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
}
.header-wrapper-new {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  gap: 50px;
}
.header-logo-new {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.header-logo-new:hover {
  transform: translateY(-2px);
}
.logo-wrapper-new {
  display: flex;
  align-items: center;
  gap: 14px;
}
.logo-icon-new {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.4);
  transition: all 0.3s ease;
}
.header-logo-new:hover .logo-icon-new {
  transform: rotate(5deg) scale(1.05);
  box-shadow: 0 6px 24px rgba(125, 211, 252, 0.5);
}
.logo-img-new {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
}
.logo-content-new {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.logo-title-new {
  font-size: 26px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.logo-tagline-new {
  font-size: 11px;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}
.header-nav-new {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: center;
}
.nav-item-new {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  color: #334155;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  position: relative;
  background: transparent;
}
.nav-item-new i {
  font-size: 16px;
  opacity: 0.7;
  transition: all 0.3s ease;
}
.nav-item-new:hover {
  color: #0f172a;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  transform: translateY(-2px);
}
.nav-item-new:hover i {
  opacity: 1;
  color: #0ea5e9;
}
.nav-item-new::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 2px;
  transition: transform 0.3s ease;
}
.nav-item-new:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.header-cta-new {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.header-phone-new {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  color: #334155;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;
  background: rgba(125, 211, 252, 0.15);
  border: 1px solid rgba(125, 211, 252, 0.3);
  transition: all 0.3s ease;
}
.header-phone-new i {
  font-size: 16px;
  color: #0ea5e9;
}
.header-phone-new:hover {
  background: rgba(125, 211, 252, 0.25);
  border-color: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.3);
}
.btn-cta-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.4);
  border: none;
}
.btn-cta-new:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.5);
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
}
.btn-cta-new i {
  font-size: 16px;
  transition: transform 0.3s ease;
}
.btn-cta-new:hover i {
  transform: translateX(3px);
}
.mobile-toggle-new {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 10px;
  z-index: 1001;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.mobile-toggle-new:hover {
  background: rgba(125, 211, 252, 0.15);
}
.mobile-toggle-new span {
  width: 26px;
  height: 3px;
  background: linear-gradient(90deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 320px;
  max-width: 85vw;
  height: 100vh;
  background: #ffffff;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 100px 30px 30px;
  position: relative;
}
.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  color: #334155;
  font-size: 24px;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  padding: 0;
}
.mobile-menu-close:hover {
  background: #f0fdf4;
  color: #334155;
  transform: rotate(90deg);
}
.mobile-menu-close:active {
  transform: rotate(90deg) scale(0.95);
}
.mobile-menu-close i {
  display: block;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
}
.mobile-menu-link {
  display: flex;
  align-items: center;
  padding: 16px 20px;
  color: #334155;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.mobile-menu-link:hover {
  color: #334155;
  background: #e0f2fe;
}
.mobile-menu-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
  padding-top: 30px;
  border-top: 1px solid #0284c7;
}
.mobile-menu-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  color: #334155;
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.mobile-menu-phone:hover {
  color: #334155;
  background: #e0f2fe;
}
.mobile-menu-phone i {
  font-size: 18px;
  color: #334155;
}
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.4);
}
.mobile-menu-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(125, 211, 252, 0.5);
}
.mobile-menu-btn i {
  font-size: 16px;
}
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  display: none;
}
@media (max-width: 992px) {
  .mobile-menu-overlay {
    display: block;
  }
  .mobile-menu-overlay:not(.active) {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
  .mobile-menu-overlay.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* Main */
main.main {
  width: 100%;
  opacity: 1 !important;
  visibility: visible !important;
  display: block !important;
}
main.main *,
section *,
.container *,
.content * {
  opacity: 1 !important;
  visibility: visible !important;
}
section {
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Cookie Banner - New Design */
.cookie-banner-new {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 3px solid #2563eb;
  z-index: 10000;
  display: none;
  animation: slideUpBanner 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}
.cookie-banner-new.show {
  display: block;
}
@keyframes slideUpBanner {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes slideDownBanner {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(100%);
    opacity: 0;
  }
}
.cookie-banner-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.cookie-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  gap: 30px;
}
.cookie-banner-left {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
}
.cookie-icon-wrapper {
  width: 48px;
  height: 48px;
  background: #2563eb;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0f172a;
  flex-shrink: 0;
  animation: pulseIcon 2s ease-in-out infinite;
}
@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 0 0 8px rgba(37, 99, 235, 0);
  }
}
.cookie-text-wrapper h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}
.cookie-text-wrapper p {
  font-size: 14px;
  color: #cbd5e1;
  margin: 0;
  line-height: 1.5;
}
.cookie-text-wrapper a {
  color: #5eead4;
  text-decoration: underline;
  transition: color 0.3s ease;
}
.cookie-text-wrapper a:hover {
  color: #93c5fd;
}
.cookie-banner-right {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn-reject,
.cookie-btn-accept {
  padding: 10px 24px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}
.cookie-btn-reject {
  background: transparent;
  color: #475569;
  border: 1px solid #475569;
}
.cookie-btn-reject:hover {
  background: #334155;
  color: #0f172a;
  border-color: #475569;
}
.cookie-btn-accept {
  background: #7dd3fc;
  color: #0f172a;
}
.cookie-btn-accept:hover {
  background: #5eead4;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

/* Hero Section - New Design */
.hero-section-new {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  overflow: hidden;
}
.hero-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-gradient-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(125, 211, 252, 0.2) 0%, transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(134, 239, 172, 0.2) 0%, transparent 50%);
}
.hero-shapes-new {
  position: absolute;
  width: 100%;
  height: 100%;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  background: rgba(125, 211, 252, 0.2);
  animation: floatShape 20s ease-in-out infinite;
}
.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}
.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}
@keyframes floatShape {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  opacity: 0.3;
}
  33% {
    transform: translate(30px, -30px) scale(1.1);
    opacity: 0.5;
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
    opacity: 0.4;
  }
}
.hero-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-main-new {
  text-align: left;
}
.hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 211, 252, 0.3);
  border: 1px solid rgba(125, 211, 252, 0.4);
  color: #5eead4;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.hero-badge-new i {
  font-size: 16px;
  animation: pulseIcon 2s ease-in-out infinite;
}
.hero-heading-new {
  font-size: clamp(48px, 8vw, 80px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #0f172a;
}
.hero-accent-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-text-new {
  font-size: 20px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 40px;
  max-width: 600px;
}
.hero-cta-new {
  display: flex;
  gap: 16px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.hero-btn-primary-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(125, 211, 252, 0.4);
}
.hero-btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(125, 211, 252, 0.5);
}
.hero-btn-secondary-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #0f172a;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.hero-btn-secondary-new:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}
.hero-metrics-new {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}
.hero-metric-item {
  display: flex;
  flex-direction: column;
}
.metric-value {
  font-size: 36px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 14px;
  color: #475569;
  font-weight: 600;
}
.hero-cards-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hero-card-new {
  background: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 16px;
  padding: 28px;
  text-align: center;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.hero-card-new:hover {
  background: #f0fdf4;
  border-color: rgba(37, 99, 235, 0.5);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(37, 99, 235, 0.2);
}
.hero-card-icon-new {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0f172a;
  margin: 0 auto 16px;
  transition: transform 0.4s ease;
}
.hero-card-new:hover .hero-card-icon-new {
  transform: rotate(5deg) scale(1.1);
}
.hero-card-new h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.hero-card-new p {
  font-size: 14px;
  color: #334155;
  margin: 0;
}
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.btn-primary-modern {
  padding: 18px 40px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.btn-primary-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  color: #0f172a;
}
.btn-secondary-modern {
  padding: 18px 40px;
  background: #86efac;
  color: #0f172a;
  border: 2px solid #7dd3fc;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.btn-secondary-modern:hover {
  background: #7dd3fc;
  color: #0f172a;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 4;
  justify-content: center;
}
.hero-feature-card {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 20px;
  padding: 35px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 280px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.hero-feature-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(125, 211, 252, 0.3);
}
.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.feature-icon-wrapper i {
  font-size: 36px;
  color: #0f172a;
}
.hero-feature-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}
.hero-feature-card p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Sections */
section {
  padding: 80px 0;
  position: relative;
  opacity: 1;
  visibility: visible;
}
section *,
.container,
.content {
  opacity: 1;
  visibility: visible;
}
.section-badge-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 10px 24px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.section-title-modern {
  font-size: clamp(32px, 5vw, 48px);
  font-weight: 800;
  margin-bottom: 20px;
  color: #0f172a;
}
.section-description-modern {
  font-size: 18px;
  color: #475569;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.highlight-text {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Pricing Section - New Design */
.pricing-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.pricing-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 50%, rgba(125, 211, 252, 0.15) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(134, 239, 172, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.pricing-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.pricing-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.pricing-label-new {
  display: inline-block;
  background: rgba(125, 211, 252, 0.2);
  color: #5eead4;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.pricing-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.pricing-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.pricing-cards-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}
.price-card-new {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
}
.price-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #7dd3fc 0%, #86efac 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.price-card-new:hover {
  transform: translateY(-8px);
  border-color: #475569;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.price-card-new:hover::before {
  transform: scaleX(1);
}
.price-card-popular {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  border-color: #7dd3fc;
  transform: scale(1.05);
}
.price-card-popular::before {
  transform: scaleX(1);
  height: 4px;
}
.price-card-popular:hover {
  transform: scale(1.05) translateY(-8px);
}
.popular-badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #86efac;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  animation: bounceBadge 2s ease-in-out infinite;
}
@keyframes bounceBadge {
  0%, 100% {
    transform: translateY(0);
}
  50% {
    transform: translateY(-4px);
  }
}
.price-card-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.price-card-top {
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid #cbd5e1;
}
.price-plan-name {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 20px;
}
.price-value-new {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}
.price-currency-new {
  font-size: 20px;
  font-weight: 600;
  color: #334155;
}
.price-number-new {
  font-size: 56px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
}
.price-unit-new {
  font-size: 16px;
  color: #334155;
  font-weight: 600;
}
.price-number-custom {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
}
.price-plan-desc-new {
  color: #334155;
  font-size: 14px;
  margin: 0;
}
.price-card-features-new {
  flex: 1;
  margin-bottom: 32px;
}
.price-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  color: #0f172a;
  font-size: 15px;
  transition: transform 0.2s ease;
}
.price-feature-item:hover {
  transform: translateX(4px);
}
.price-feature-item i {
  color: #06b6d4;
  font-size: 16px;
  flex-shrink: 0;
}
.price-card-btn-new {
  display: block;
  text-align: center;
  padding: 14px 28px;
  background: #7dd3fc;
  color: #0f172a;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.price-card-btn-new:hover {
  background: #5eead4;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
}
.price-card-btn-popular {
  background: #86efac;
  color: #0f172a;
}
.price-card-btn-popular:hover {
  background: #ecfdf5;
  color: #06b6d4;
}
.pricing-guarantee-new {
  text-align: center;
  padding: 20px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #0f172a;
  font-size: 14px;
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
}
.pricing-guarantee-new i {
  color: #5eead4;
  font-size: 16px;
}

/* Services Section - New Design */
.services-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
  position: relative;
}
.services-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.services-label-new {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  animation: fadeInDown 0.6s ease;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.services-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.services-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.service-item-new {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 16px;
  padding: 45px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
}
.service-item-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.1) 0%, rgba(134, 239, 172, 0.1) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.service-item-new:hover {
  transform: translateY(-6px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.service-item-new:hover::after {
  opacity: 1;
}
.service-icon-box-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.service-item-new:hover .service-icon-box-new {
  transform: rotate(5deg) scale(1.1);
}
.service-title-new {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.service-text-new {
  color: #334155;
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.service-tags-new {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.service-tag-new {
  display: inline-block;
  background: rgba(125, 211, 252, 0.3);
  color: #5eead4;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.service-item-new:hover .service-tag-new {
  background: #7dd3fc;
  color: #0f172a;
  transform: translateY(-2px);
}
.feature-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 25px;
}
.feature-icon-modern {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.feature-icon-modern i {
  font-size: 36px;
  color: #0f172a;
}
.feature-number {
  font-size: 72px;
  font-weight: 800;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  opacity: 0.15;
}
.feature-content {
  flex: 1;
}
.feature-modern h4 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 18px;
  color: #0f172a;
}
.feature-modern p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}
.feature-tags-modern {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.tag-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #e0f2fe;
  border: 1px solid #2563eb;
  color: #334155;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}
.tag-modern i {
  font-size: 14px;
}

/* Comparison Section - New Design */
.comparison-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.comparison-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.comparison-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.comparison-label-new {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.comparison-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.comparison-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.comparison-table-new-wrapper {
  overflow-x: auto;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
  border: 2px solid #7dd3fc;
}
.comparison-table-new {
  display: grid;
  grid-template-columns: 1.5fr repeat(6, 1fr);
  min-width: 1000px;
}
.comparison-row-new {
  display: contents;
}
.comparison-header-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 16px 16px 0 0;
}
.comparison-header-new .comparison-cell-new {
  color: #0f172a;
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 20px;
  border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}
.comparison-cell-new {
  padding: 18px 20px;
  border-bottom: 1px solid #cbd5e1;
  display: flex;
  align-items: center;
  color: #0f172a;
  font-size: 14px;
  transition: background 0.3s ease;
}
.comparison-cell-feature {
  font-weight: 700;
  color: #0f172a;
  background: #f0fdf4;
  border-right: 2px solid #7dd3fc;
}
.comparison-row-new:not(.comparison-header-new):hover .comparison-cell-new:not(.comparison-cell-feature) {
  background: #ffffff;
}
.comparison-cell-new i.bi-check-circle-fill {
  color: #06b6d4;
  font-size: 20px;
}

/* Testimonials Section - New Design */
.testimonials-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.testimonials-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.testimonials-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.testimonials-label-new {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.testimonials-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.testimonials-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.testimonials-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testimonial-card-new {
  background: #ffffff;
  border: 2px solid #86efac;
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
  position: relative;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.testimonial-card-new:hover {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.testimonial-featured-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-color: #7dd3fc;
  color: #0f172a;
  transform: scale(1.05);
}
.testimonial-featured-new:hover {
  transform: scale(1.05) translateY(-6px);
}
.testimonial-badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #86efac;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  animation: bounceBadge 2s ease-in-out infinite;
}
.testimonial-rating-new {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testimonial-rating-new i {
  color: #5eead4;
  font-size: 16px;
}
.testimonial-featured-new .testimonial-rating-new i {
  color: #0f172a;
}
.testimonial-quote-new {
  color: #0f172a;
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 15px;
  font-style: italic;
}
.testimonial-featured-new .testimonial-quote-new {
  color: #334155;
}
.testimonial-author-new {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar-new {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.4);
}
.testimonial-featured-new .testimonial-avatar-new {
  background: rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}
.testimonial-avatar-new span {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.testimonial-info-new h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}
.testimonial-featured-new .testimonial-info-new h5 {
  color: #0f172a;
}
.testimonial-info-new span {
  font-size: 13px;
  color: #334155;
}
.testimonial-featured-new .testimonial-info-new span {
  color: #334155;
}

/* Process Section - New Design */
.process-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.process-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.process-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.process-label-new {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.process-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.process-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.process-steps-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.process-step-new {
  background: #ffffff;
  border: 2px solid #5eead4;
  border-radius: 20px;
  padding: 50px;
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
  position: relative;
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  text-align: center;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.process-step-new:hover {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.process-step-featured-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-color: #7dd3fc;
  color: #0f172a;
  transform: scale(1.05);
}
.process-step-featured-new:hover {
  transform: scale(1.05) translateY(-6px);
}
.process-step-badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #86efac;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  animation: bounceBadge 2s ease-in-out infinite;
}
.process-step-number-new {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.process-step-featured-new .process-step-number-new {
  background: rgba(255, 255, 255, 0.3);
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.process-step-icon-new {
  width: 72px;
  height: 72px;
  background: rgba(125, 211, 252, 0.3);
  border: 2px solid #7dd3fc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  transition: transform 0.4s ease;
}
.process-step-new:hover .process-step-icon-new {
  transform: rotate(5deg) scale(1.1);
}
.process-step-featured-new .process-step-icon-new {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}
.process-step-icon-new i {
  font-size: 32px;
  color: #5eead4;
}
.process-step-featured-new .process-step-icon-new i {
  color: #0f172a;
}
.process-step-title-new {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.process-step-featured-new .process-step-title-new {
  color: #0f172a;
}
.process-step-text-new {
  color: #334155;
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 15px;
}
.process-step-featured-new .process-step-text-new {
  color: #334155;
}
.process-step-features-new {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.process-feature-new {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #0f172a;
  font-size: 14px;
  font-weight: 600;
}
.process-step-featured-new .process-feature-new {
  color: #334155;
}
.process-feature-new i {
  color: #06b6d4;
  font-size: 16px;
}
.process-step-featured-new .process-feature-new i {
  color: #0f172a;
}
.process-arrow-new {
  font-size: 32px;
  color: #334155;
  flex-shrink: 0;
  animation: pulseArrow 2s ease-in-out infinite;
}
@keyframes pulseArrow {
  0%, 100% {
    transform: translateX(0);
    opacity: 0.6;
  }
  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

/* Page Hero - New Design */
.page-hero-new {
  background: linear-gradient(180deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 180px 0 120px;
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg-new {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(125, 211, 252, 0.2) 0%, transparent 60%);
  z-index: 1;
}
.page-hero-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-content-new {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  width: 100%;
  padding: 0 30px;
}
.page-hero-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(125, 211, 252, 0.3);
  border: 1px solid rgba(125, 211, 252, 0.4);
  color: #5eead4;
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.page-hero-heading-new {
  font-size: clamp(40px, 7vw, 72px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 24px;
  color: #0f172a;
}
.page-hero-accent-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-text-new {
  font-size: 20px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Stats Section - New Design */
.stats-section-new {
  background: #ffffff;
  padding: 80px 0;
}
.stats-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.stats-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item-new {
  background: #ecfdf5;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
}
.stat-item-new:hover {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.stat-icon-box-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin: 0 auto 20px;
  transition: transform 0.4s ease;
}
.stat-item-new:hover .stat-icon-box-new {
  transform: rotate(5deg) scale(1.1);
}
.stat-value-new {
  font-size: 48px;
  font-weight: 800;
  color: #0f172a;
  line-height: 1;
  margin-bottom: 12px;
}
.stat-label-new {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.stat-text-new {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Story Section - New Design with Colors */
.story-section-new {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 160px 0;
}
.story-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.story-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.story-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.story-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.story-accent-new {
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.story-content-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}
.story-content-new > * {
  min-width: 0;
  max-width: 100%;
}
.story-text-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.story-paragraph-new {
  font-size: 17px;
  color: #334155;
  line-height: 1.8;
  margin: 0;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.story-timeline-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding-left: 40px;
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.story-timeline-new::before {
  content: '';
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #86efac 0%, #6ee7b7 100%);
}
.timeline-item-new {
  position: relative;
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s ease;
}
.timeline-item-new::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 24px;
  width: 12px;
  height: 12px;
  background: #86efac;
  border-radius: 50%;
  border: 3px solid #ffffff;
  box-shadow: 0 0 0 2px #86efac;
}
.timeline-item-new:hover {
  border-color: #86efac;
  transform: translateX(4px);
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.2);
}
.timeline-item-active-new {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.1) 100%);
  border-color: #86efac;
}
.timeline-year-new {
  font-size: 20px;
  font-weight: 800;
  color: #06b6d4;
  margin-bottom: 8px;
}
.timeline-content-new h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.timeline-content-new p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

/* Business Model Section - New Design with Colors */
.business-model-section-new {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  padding: 160px 0;
}
.business-model-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.business-model-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.business-model-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.business-model-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.business-model-accent-new {
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.business-model-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.business-model-card-new {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 50px;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.business-model-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #5eead4 0%, #6ee7b7 100%);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.business-model-card-new:hover {
  border-color: #5eead4;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.business-model-card-new:hover::before {
  transform: scaleX(1);
}
.business-model-card-1 {
  border-top: 4px solid #5eead4;
}
.business-model-card-2 {
  border-top: 4px solid #34d399;
}
.business-model-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}
.business-model-card-new:hover .business-model-icon-new {
  transform: rotate(5deg) scale(1.1);
}
.business-model-card-new h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.business-model-card-new p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.business-model-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.business-model-list-new li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}
.business-model-list-new li i {
  color: #06b6d4;
  font-size: 16px;
}

/* Mission Vision Section - New Design with Colors */
.mission-vision-section-new {
  background: linear-gradient(180deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.mission-vision-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.mission-vision-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.mission-vision-badge-new {
  display: inline-block;
  background: rgba(125, 211, 252, 0.2);
  border: 1px solid rgba(125, 211, 252, 0.3);
  color: #5eead4;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.mission-vision-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.mission-vision-accent-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mission-vision-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}
.mission-vision-card-new {
  background: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 50px;
  transition: all 0.4s ease;
  backdrop-filter: blur(10px);
}
.mission-vision-card-new:hover {
  background: #f0fdf4;
  border-color: rgba(125, 211, 252, 0.5);
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.mission-vision-card-1 {
  border-left: 4px solid #7dd3fc;
}
.mission-vision-card-2 {
  border-left: 4px solid #86efac;
}
.mission-vision-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 24px;
  transition: transform 0.4s ease;
}
.mission-vision-card-new:hover .mission-vision-icon-new {
  transform: rotate(-5deg) scale(1.1);
}
.mission-vision-card-new h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.mission-vision-card-new p {
  font-size: 15px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 24px;
}
.mission-vision-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mission-vision-list-new li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
}
.mission-vision-list-new li i {
  color: #5eead4;
  font-size: 16px;
}

/* Team Section - New Design with Colors */
.team-section-new {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  padding: 160px 0;
}
.team-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.team-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.team-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.team-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.team-accent-new {
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-subtitle-new {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.team-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
.team-card-new {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}
.team-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(248, 113, 113, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card-new:hover {
  border-color: #6ee7b7;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(239, 68, 68, 0.15);
}
.team-card-new:hover::after {
  opacity: 1;
}
.team-card-1 {
  border-top: 4px solid #ef4444;
}
.team-card-2 {
  border-top: 4px solid #f87171;
}
.team-card-3 {
  border-top: 4px solid #fca5a5;
}
.team-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #ef4444 0%, #f87171 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.team-card-new:hover .team-icon-new {
  transform: rotate(10deg) scale(1.1);
}
.team-card-new h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.team-card-new p {
  font-size: 15px;
  color: #475569;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.team-skills-new {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.team-skill-new {
  display: inline-block;
  background: #f0fdf4;
  color: #334155;
  padding: 4px 12px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.team-card-new:hover .team-skill-new {
  background: #ef4444;
  color: #0f172a;
  transform: translateY(-2px);
}

/* Values Section - New Design with Colors */
.values-section-new {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 160px 0;
}
.values-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.values-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.values-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.values-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.values-accent-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.values-subtitle-new {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.values-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.value-card-new {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 36px;
  transition: all 0.4s ease;
  position: relative;
}
.value-card-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  border-radius: 20px 20px 0 0;
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.value-card-new:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.value-card-new:hover::before {
  transform: scaleX(1);
}
.value-card-1 {
  border-top: 4px solid #7dd3fc;
}
.value-card-1::before {
  background: linear-gradient(90deg, #7dd3fc 0%, #86efac 100%);
}
.value-card-2 {
  border-top: 4px solid #86efac;
}
.value-card-2::before {
  background: linear-gradient(90deg, #86efac 0%, #6ee7b7 100%);
}
.value-card-3 {
  border-top: 4px solid #5eead4;
}
.value-card-3::before {
  background: linear-gradient(90deg, #5eead4 0%, #6ee7b7 100%);
}
.value-card-4 {
  border-top: 4px solid #6ee7b7;
}
.value-card-4::before {
  background: linear-gradient(90deg, #6ee7b7 0%, #86efac 100%);
}
.value-icon-new {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}
.value-card-1 .value-icon-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
}
.value-card-2 .value-icon-new {
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
}
.value-card-3 .value-icon-new {
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
}
.value-card-4 .value-icon-new {
  background: linear-gradient(135deg, #6ee7b7 0%, #86efac 100%);
  color: #334155;
}
.value-card-new:hover .value-icon-new {
  transform: rotate(-5deg) scale(1.1);
}
.value-card-new h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}
.value-card-new p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Company Info Section - New Design with Colors */
.company-info-section-new {
  background: linear-gradient(180deg, #ffffff 0%, #f1f5f9 100%);
  padding: 160px 0;
}
.company-info-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.company-info-intro-new {
  text-align: center;
  margin-bottom: 100px;
}
.company-info-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.company-info-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.company-info-accent-new {
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.company-info-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 1200px;
  box-sizing: border-box;
}
.company-info-grid-new > * {
  min-width: 0;
  max-width: 100%;
}
.company-info-card-new {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 50px;
  transition: all 0.4s ease;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.company-info-card-new:hover {
  border-color: #06b6d4;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(6, 182, 212, 0.15);
}
.company-info-card-1 {
  border-left: 4px solid #06b6d4;
}
.company-info-card-2 {
  border-left: 4px solid #22d3ee;
}
.company-info-card-new h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 32px;
}
.company-details-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.company-detail-item-new {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.company-detail-item-new > div {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
.company-detail-icon-new {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f172a;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.company-detail-item-new:hover .company-detail-icon-new {
  transform: rotate(5deg) scale(1.1);
}
.company-detail-item-new strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 6px;
}
.company-detail-item-new p {
  font-size: 14px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}
.company-detail-item-new a {
  color: #06b6d4;
  text-decoration: none;
  transition: color 0.3s ease;
}
.company-detail-item-new a:hover {
  color: #0891b2;
  text-decoration: underline;
}

/* Office Section - New Design with Colors */
.office-section-new {
  background: linear-gradient(180deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.office-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.office-content-new {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}
.office-content-new > * {
  min-width: 0;
  max-width: 100%;
}
.office-map-new,
.office-details-new {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  min-width: 0;
}
.office-map-new {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  background: #ffffff;
  border: 1px solid rgba(125, 211, 252, 0.3);
}
.map-placeholder-new {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
}
.map-placeholder-new i {
  font-size: 48px;
  margin-bottom: 16px;
  color: #5eead4;
}
.map-placeholder-new p {
  font-size: 16px;
  margin: 0;
}
.office-details-new {
  color: #0f172a;
}
.office-badge-new {
  display: inline-block;
  background: rgba(96, 165, 250, 0.2);
  border: 1px solid rgba(96, 165, 250, 0.3);
  color: #5eead4;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.office-heading-new {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 32px;
  line-height: 1.2;
}
.office-accent-new {
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.office-address-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}
.office-address-item-new {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.office-address-icon-new {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: #0f172a;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.office-address-item-new:hover .office-address-icon-new {
  transform: rotate(5deg) scale(1.1);
}
.office-address-item-new strong {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.office-address-item-new p {
  font-size: 14px;
  color: #334155;
  margin: 0;
  line-height: 1.6;
}
.office-btn-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #60a5fa 0%, #3b82f6 100%);
  color: #0f172a;
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.office-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(96, 165, 250, 0.4);
  color: #0f172a;
}

/* Support Section - New Design with Colors */
.support-section-new {
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  padding: 160px 0;
}
.support-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.support-intro-new {
  text-align: center;
  margin-bottom: 80px;
}
.support-badge-new {
  display: inline-block;
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.support-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.support-accent-new {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.support-subtitle-new {
  font-size: 18px;
  color: #475569;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}
.support-grid-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.support-card-new {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 45px;
  transition: all 0.4s ease;
  position: relative;
}
.support-card-new::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.1) 0%, rgba(134, 239, 172, 0.1) 100%);
  border-radius: 20px;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.support-card-new:hover {
  border-color: #5eead4;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(245, 158, 11, 0.15);
}
.support-card-new:hover::after {
  opacity: 1;
}
.support-card-1 {
  border-top: 4px solid #f59e0b;
}
.support-card-2 {
  border-top: 4px solid #fbbf24;
}
.support-card-3 {
  border-top: 4px solid #fcd34d;
}
.support-card-4 {
  border-top: 4px solid #fde68a;
}
.support-icon-new {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: #0f172a;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.4s ease;
}
.support-card-1 .support-icon-new {
  background: linear-gradient(135deg, #f59e0b 0%, #fbbf24 100%);
}
.support-card-2 .support-icon-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
}
.support-card-3 .support-icon-new {
  background: linear-gradient(135deg, #fcd34d 0%, #fde68a 100%);
  color: #f59e0b;
}
.support-card-4 .support-icon-new {
  background: linear-gradient(135deg, #fde68a 0%, #fef3c7 100%);
  color: #f59e0b;
}
.support-card-new:hover .support-icon-new {
  transform: rotate(-5deg) scale(1.1);
}
.support-card-new h4 {
  font-size: 20px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.support-card-new p {
  font-size: 14px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 20px;
  position: relative;
  z-index: 1;
}
.support-link-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #f59e0b;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}
.support-link-new:hover {
  gap: 12px;
  color: #d97706;
}

/* FAQ CTA Section - New Design with Colors */
.faq-cta-section-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.faq-cta-section-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}
.faq-cta-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.faq-cta-content-new {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.faq-cta-badge-new {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #0f172a;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.faq-cta-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.faq-cta-accent-new {
  color: #5eead4;
}
.faq-cta-text-new {
  font-size: 18px;
  color: #334155;
  line-height: 1.7;
  margin: 0 0 40px;
}
.faq-cta-buttons-new {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.faq-cta-btn-primary-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #ffffff;
  color: #6366f1;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.faq-cta-btn-primary-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
  color: #6366f1;
}
.faq-cta-btn-secondary-new {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #0f172a;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
}
.faq-cta-btn-secondary-new:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
  transform: translateY(-2px);
}

/* Page Hero - Old (keep for compatibility) */
.page-hero-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 100px 0 70px;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.page-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(37, 99, 235, 0.1) 0%,
    transparent 60%
  );
  z-index: 1;
}
.page-hero-content {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.page-hero-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
  line-height: 1.2;
}
.page-hero-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #475569;
  line-height: 1.8;
}

/* About */
.intro-banner-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 100px 0 70px;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.highlights-showcase-section {
  background: #ffffff;
  padding: 80px 0;
}
.company-stats-container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.stat-card-modern {
  flex: 1;
  min-width: 280px;
  max-width: 320px;
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.stat-card-modern:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.stat-icon-modern {
  font-size: 56px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.stat-label-modern {
  color: #0f172a;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
}
.stat-description-modern {
  color: #475569;
  font-size: 16px;
  line-height: 1.7;
}
.journey-timeline-section {
  background: #ecfdf5;
  padding: 80px 0;
  width: 100%;
  overflow-x: hidden;
}
.story-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
}
.story-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  width: 100%;
}
.story-text {
  flex: 1;
  min-width: 0;
}
.story-text h2 {
  color: #0f172a;
  margin-bottom: 20px;
  font-size: 36px;
  font-weight: 800;
}
.story-text p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 18px;
}
.story-visual {
  flex: 1;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.story-timeline {
  position: relative;
  padding-left: 40px;
  width: 100%;
  max-width: 100%;
}
.story-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #2563eb 0%, #0ea5e9 100%);
  border-radius: 3px;
}
.timeline-item-modern {
  position: relative;
  margin-bottom: 40px;
  padding-left: 30px;
  padding-right: 0;
  width: 100%;
  max-width: 100%;
}
.timeline-item-modern::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border: 4px solid #f8fafc;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}
.timeline-year {
  font-size: 24px;
  font-weight: 800;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}
.timeline-content h4 {
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 20px;
  font-weight: 700;
}
.timeline-content p {
  color: #475569;
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}
.goals-principles-section {
  background: #ffffff;
  padding: 80px 0;
}
.mission-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.mission-card-modern {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.mission-card-modern:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.mission-icon-modern {
  font-size: 56px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.mission-card-modern h3 {
  font-size: 28px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 800;
}
.mission-card-modern p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 25px;
  font-size: 16px;
}
.mission-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mission-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: #334155;
  font-size: 15px;
}
.mission-list li i {
  color: #06b6d4;
  font-size: 20px;
  flex-shrink: 0;
}
.experts-team-section {
  background: #ecfdf5;
  padding: 80px 0;
}
.team-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.team-header {
  text-align: center;
  margin-bottom: 60px;
}
.team-structure {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.team-department {
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.team-department:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.department-icon {
  font-size: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.team-department h4 {
  color: #0f172a;
  margin-bottom: 10px;
  font-size: 22px;
  font-weight: 700;
}
.team-department p {
  color: #475569;
  font-size: 14px;
  margin-bottom: 20px;
}
.department-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
.skill-tag {
  background: #e0f2fe;
  color: #334155;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  border: 1px solid #2563eb;
  font-weight: 600;
}
.core-beliefs-section {
  background: #ffffff;
  padding: 80px 0;
}
.values-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.values-header {
  text-align: center;
  margin-bottom: 60px;
}
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.value-card-modern {
  flex: 1;
  min-width: 300px;
  max-width: 330px;
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.value-card-modern:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.value-icon-modern {
  font-size: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.value-card-modern h4 {
  color: #0f172a;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
}
.value-card-modern p {
  color: #475569;
  line-height: 1.8;
  font-size: 16px;
}
.business-details-section {
  background: #ecfdf5;
  padding: 80px 0;
}
.company-info-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.company-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.company-info-card-modern {
  flex: 1;
  min-width: 320px;
  max-width: 550px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.company-info-card-modern h3 {
  font-size: 28px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 30px;
  font-weight: 800;
}
.company-details-modern {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.detail-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.detail-item i {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}
.detail-item strong {
  display: block;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.detail-item p {
  color: #475569;
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}

/* Contact */
/* Contact Methods - New Design */
.contact-methods-new {
  background: #ecfdf5;
  padding: 120px 0;
}
.contact-methods-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.contact-methods-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.contact-method-item-new {
  background: #ffffff;
  border: 1px solid #7dd3fc;
  border-radius: 20px;
  padding: 50px;
  text-align: center;
  transition: all 0.4s ease;
}
.contact-method-item-new:hover {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.contact-method-icon-new {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #0f172a;
  margin: 0 auto 24px;
  transition: transform 0.4s ease;
}
.contact-method-item-new:hover .contact-method-icon-new {
  transform: rotate(5deg) scale(1.1);
}
.contact-method-title-new {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}
.contact-method-desc-new {
  font-size: 15px;
  color: #475569;
  margin: 0 0 20px;
}
.contact-method-link-new {
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #334155;
  text-decoration: none;
  margin-bottom: 16px;
  transition: color 0.3s ease;
}
.contact-method-link-new:hover {
  color: #06b6d4;
}
.contact-method-btn-new {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 12px 28px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  margin-bottom: 16px;
  transition: all 0.3s ease;
}
.contact-method-btn-new:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.4);
  color: #0f172a;
}
.contact-method-hours-new {
  font-size: 13px;
  color: #475569;
  margin: 0;
  line-height: 1.6;
}

.contact-methods-modern {
  background: #ffffff;
  padding: 80px 0;
}
.contact-methods-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.contact-method-card {
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.contact-method-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.method-icon-modern {
  font-size: 56px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.contact-method-card h3 {
  color: #0f172a;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.method-description {
  color: #475569;
  margin-bottom: 20px;
  font-size: 15px;
}
.method-link {
  display: inline-block;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  margin-bottom: 12px;
}
.method-link:hover {
  transform: translateX(5px);
}
.method-hours {
  color: #475569;
  font-size: 14px;
}
.contact-form-section-modern {
  background: #ecfdf5;
  padding: 80px 0;
}
.contact-form-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  width: 100%;
  box-sizing: border-box;
}
.contact-form-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
}
.contact-form-content > * {
  min-width: 0;
  max-width: 100%;
  box-sizing: border-box;
}
.form-header {
  flex: 1;
  min-width: 320px;
  position: sticky;
  top: 100px;
}
.form-benefits {
  margin-top: 30px;
}
.benefit-item {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
  color: #475569;
  font-size: 15px;
}
.benefit-item i {
  color: #06b6d4;
  font-size: 22px;
  flex-shrink: 0;
}
.form-wrapper {
  flex: 1.5;
  min-width: 320px;
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.contact-form-modern {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.form-group-modern {
  position: relative;
  flex: 1;
  min-width: 220px;
}
.form-group-modern label {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
}
.input-modern,
.textarea-modern {
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 15px;
  color: #334155;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
}
.input-modern:focus,
.textarea-modern:focus {
  outline: none;
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}
.textarea-modern {
  resize: vertical;
  min-height: 140px;
}
.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #475569;
  font-size: 14px;
  cursor: pointer;
}
.checkbox-label input[type="checkbox"] {
  margin-top: 4px;
  cursor: pointer;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}
.checkbox-label a {
  color: #334155;
  text-decoration: underline;
}
.checkbox-label a:hover {
  color: #06b6d4;
}
.btn-submit-modern {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.btn-submit-modern:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
}

/* Новая форма - стили на основе старой */
.contact-form-new {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1;
  pointer-events: auto;
}
.contact-form-new * {
  pointer-events: auto;
}
.contact-form-new button,
.contact-form-new input,
.contact-form-new textarea,
.contact-form-new select {
  pointer-events: auto !important;
}
.form-field-group {
  position: relative;
  margin-bottom: 25px;
  z-index: 1;
}
.form-label-new {
  display: block;
  color: #0f172a;
  font-weight: 700;
  margin-bottom: 10px;
  font-size: 15px;
}
.required-star {
  color: #e63946;
  margin-left: 4px;
}
.form-input-new,
.form-textarea-new {
  width: 100%;
  padding: 16px 20px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 15px;
  color: #334155;
  font-size: 16px;
  font-family: inherit;
  transition: all 0.3s ease;
  cursor: text !important;
  pointer-events: auto !important;
  user-select: text !important;
  -webkit-user-select: text !important;
  -moz-user-select: text !important;
  -ms-user-select: text !important;
  position: relative;
  z-index: 10;
}
.form-input-new[readonly],
.form-textarea-new[readonly],
.form-input-new[disabled],
.form-textarea-new[disabled] {
  cursor: not-allowed;
  opacity: 0.6;
}
.form-input-new:focus,
.form-textarea-new:focus {
  outline: none;
  border-color: #7dd3fc;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
  cursor: text;
}
.form-input-new:focus::placeholder,
.form-textarea-new:focus::placeholder {
  opacity: 0.5;
}
.form-input-new.is-invalid,
.form-textarea-new.is-invalid {
  border-color: #e63946;
  box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.1);
}
.form-input-new.is-valid,
.form-textarea-new.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.1);
}
.form-textarea-new {
  resize: vertical;
  min-height: 140px;
}
.invalid-feedback {
  display: none;
  color: #e63946;
  font-size: 14px;
  margin-top: 8px;
}
.form-input-new.is-invalid ~ .invalid-feedback,
.form-textarea-new.is-invalid ~ .invalid-feedback {
  display: block;
}
.form-submit-button {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  transition: all 0.3s ease;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
  pointer-events: auto !important;
  position: relative;
  z-index: 10;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-submit-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
  cursor: pointer !important;
}
.form-submit-button:active {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}
.form-submit-button:not(:disabled) {
  pointer-events: auto !important;
  cursor: pointer !important;
}
.form-submit-button:disabled {
  opacity: 0.7;
  cursor: not-allowed !important;
  transform: none;
  pointer-events: none !important;
}
.form-submit-button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.3), 0 6px 20px rgba(37, 99, 235, 0.3);
}
.form-status {
  margin-top: 20px;
}
.form-status .loading,
.form-status .error-message,
.form-status .sent-message {
  display: none;
  padding: 15px 20px;
  border-radius: 15px;
  font-size: 15px;
  text-align: center;
}
.form-status .loading {
  display: none;
  color: #334155;
  background: #e0f2fe;
  border: 2px solid #7dd3fc;
}
.form-status .error-message {
  display: none;
  color: #e63946;
  background: #fff5f5;
  border: 2px solid #e63946;
}
.form-status .sent-message {
  display: none;
  color: #06b6d4;
  background: #f0fff4;
  border: 2px solid #28a745;
}

.office-info-modern {
  background: #ffffff;
  padding: 80px 0;
}
.office-info-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.office-info-content {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: center;
}
.office-map {
  flex: 1;
  min-width: 320px;
}
.map-placeholder {
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  height: 450px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #475569;
}
.map-placeholder i {
  font-size: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 25px;
}
.office-details {
  flex: 1;
  min-width: 320px;
  padding: 40px;
}
.office-address {
  margin-top: 40px;
}
.address-item {
  display: flex;
  gap: 20px;
  margin-bottom: 35px;
  align-items: flex-start;
}
.address-item i {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 24px;
  margin-top: 4px;
  flex-shrink: 0;
}
.address-item strong {
  display: block;
  color: #0f172a;
  margin-bottom: 8px;
  font-size: 18px;
  font-weight: 700;
}
.address-item p {
  color: #475569;
  margin: 0;
  line-height: 1.7;
  font-size: 16px;
}
.support-options-modern {
  background: #ecfdf5;
  padding: 80px 0;
}
.support-options-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.support-header {
  text-align: center;
  margin-bottom: 60px;
}
.support-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}
.support-card-modern {
  flex: 1;
  min-width: 300px;
  max-width: 330px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.support-card-modern:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.support-icon-modern {
  font-size: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.support-card-modern h4 {
  color: #0f172a;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
}
.support-card-modern p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.support-link {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}
.support-link:hover {
  gap: 12px;
}

/* FAQ Categories - New Design */
.faq-categories-new {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 1px solid #7dd3fc;
}
.faq-categories-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
}
.faq-category-nav-new {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}
.category-btn-new {
  padding: 10px 24px;
  background: #ecfdf5;
  border: 1px solid #7dd3fc;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  color: #334155;
  cursor: pointer;
  transition: all 0.3s ease;
}
.category-btn-new:hover {
  background: #e0f2fe;
  border-color: #7dd3fc;
  color: #334155;
}
.category-btn-new.active {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-color: #7dd3fc;
  color: #0f172a;
}

/* FAQ - Old (keep for compatibility) */
.faq-categories-modern {
  background: #ffffff;
  padding: 40px 0;
  border-bottom: 2px solid #0284c7;
}
.faq-categories-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.faq-category-nav {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}
.category-btn {
  padding: 14px 28px;
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 25px;
  color: #475569;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  transition: all 0.3s ease;
}
.category-btn:hover,
.category-btn.active {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border-color: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.faq-section-modern {
  background: #ecfdf5;
  padding: 80px 0;
}
.faq-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 30px;
}
.faq-category-group {
  margin-bottom: 50px;
}
.faq-category-title {
  font-size: 32px;
  color: #0f172a;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 3px solid #2563eb;
  font-weight: 800;
}
.faq-accordion-modern {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item-modern {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.faq-item-modern:hover {
  border-color: #7dd3fc;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.15);
}
.faq-question {
  padding: 25px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-question:hover {
  background: #ecfdf5;
}
.faq-question h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
}
.faq-icon {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}
.faq-icon i {
  color: #0f172a;
  font-size: 16px;
}
.faq-item-modern.active .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-item-modern.active .faq-answer {
  max-height: 2000px;
}
.faq-answer p {
  padding: 0 25px 25px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}
.faq-answer ul {
  padding: 0 25px 25px;
  margin: 0;
  list-style: disc;
  padding-left: 40px;
  color: #475569;
}
.faq-answer li {
  margin-bottom: 8px;
  font-size: 16px;
}
.faq-answer a {
  color: #334155;
  text-decoration: underline;
}
.faq-answer a:hover {
  color: #06b6d4;
}
.faq-answer strong {
  color: #0f172a;
  font-weight: 700;
}
.faq-cta-modern {
  background: #ffffff;
  padding: 80px 0;
}
.faq-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
.faq-cta-content {
  text-align: center;
}
.faq-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Legal */
.legal-content-modern {
  background: #ecfdf5;
  padding: 80px 0;

}
.legal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
.legal-sidebar {
  position: sticky;
  top: 100px;
  width: 320px;
  flex-shrink: 0;
}
.legal-nav {
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.legal-nav h3 {
  color: #0f172a;
  font-size: 22px;
  margin-bottom: 20px;
  font-weight: 800;
}
.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.legal-nav li {
  margin-bottom: 12px;
}
.legal-nav a {
  color: #475569;
  text-decoration: none;
  font-size: 15px;
  display: block;
  padding: 10px 0;
  transition: all 0.3s ease;
}
.legal-nav a:hover {
  color: #334155;
  padding-left: 10px;
}
.legal-main {
  flex: 1;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 50px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.legal-section {
  margin-bottom: 50px;
  scroll-margin-top: 120px;
}
.legal-section:last-child {
  margin-bottom: 0;
}
.legal-section h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 3px solid #2563eb;
  font-weight: 800;
}
.legal-section h3 {
  font-size: 28px;
  color: #0f172a;
  margin-top: 40px;
  margin-bottom: 20px;
  font-weight: 700;
}
.legal-section p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.legal-section ul {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  padding-left: 30px;
  font-size: 16px;
}
.legal-section li {
  margin-bottom: 10px;
}
.legal-section a {
  color: #334155;
  text-decoration: underline;
}
.legal-section a:hover {
  color: #06b6d4;
}
.legal-info-box {
  background: #e0f2fe;
  border: 2px solid #7dd3fc;
  border-left: 5px solid #2563eb;
  border-radius: 15px;
  padding: 25px;
  margin: 25px 0;
}
.legal-info-box p {
  margin-bottom: 15px;
  color: #334155;
}
.legal-info-box p:last-child {
  margin-bottom: 0;
}
.legal-info-box a {
  color: #334155;
  text-decoration: underline;
}
.legal-info-box a:hover {
  color: #06b6d4;
}
.legal-info-box strong {
  color: #0f172a;
}
.cookie-types-grid,
.datenschutz-types-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}
.cookie-type-card,
.datenschutz-type-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.cookie-type-card:hover,
.datenschutz-type-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.cookie-type-card i,
.datenschutz-type-card i {
  font-size: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.cookie-type-card h4,
.datenschutz-type-card h4 {
  color: #0f172a;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.cookie-type-card p,
.datenschutz-type-card p {
  color: #475569;
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

/* Browser Instructions для Privacy Policy */
.browser-instructions {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  margin: 30px 0;
}
.browser-card {
  flex: 1;
  min-width: 280px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 35px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.browser-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.browser-card i {
  font-size: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.browser-card h4 {
  color: #0f172a;
  margin-bottom: 15px;
  font-size: 22px;
  font-weight: 700;
}
.browser-card p {
  color: #475569;
  font-size: 15px;
  margin: 0;
  line-height: 1.7;
}

/* Legal Warning для Privacy Policy */
.legal-warning {
  background: #fff5e6;
  border: 2px solid #ffc107;
  border-left: 5px solid #ffc107;
  border-radius: 15px;
  padding: 25px;
  margin: 30px 0;
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.legal-warning i {
  font-size: 32px;
  color: #ffc107;
  flex-shrink: 0;
  margin-top: 4px;
}
.legal-warning p {
  color: #334155;
  margin: 0;
  line-height: 1.8;
  font-size: 16px;
}
.legal-warning strong {
  color: #0f172a;
  font-weight: 700;
}

/* Thanks */
.thanks-hero-modern {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 100px 0 70px;
  position: relative;
  min-height: 450px;
  display: flex;
  align-items: center;
}
.thanks-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(40, 167, 69, 0.1) 0%,
    transparent 60%
  );
  z-index: 1;
}
.thanks-hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
  text-align: center;
  width: 100%;
  position: relative;
  z-index: 2;
}
.success-icon {
  font-size: 120px;
  color: #06b6d4;
  margin-bottom: 30px;
}
.thanks-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 25px;
  line-height: 1.2;
}
.thanks-description {
  font-size: clamp(16px, 2vw, 20px);
  color: #475569;
  line-height: 1.8;
}
.thanks-steps-modern {
  background: #ffffff;
  padding: 80px 0;
}
.thanks-steps-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.thanks-steps-header {
  text-align: center;
  margin-bottom: 60px;
}
.thanks-steps-header h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 800;
}
.thanks-steps-header p {
  color: #475569;
  font-size: 18px;
}
.thanks-steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.thanks-step-card {
  flex: 1;
  min-width: 320px;
  max-width: 380px;
  background: #ecfdf5;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  text-align: center;
  position: relative;
  margin-top: 30px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.thanks-step-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.step-number {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.step-icon {
  font-size: 56px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 30px 0 20px;
}
.thanks-step-card h3 {
  color: #0f172a;
  margin-bottom: 18px;
  font-size: 24px;
  font-weight: 700;
}
.thanks-step-card p {
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-size: 16px;
}
.thanks-info-modern {
  background: #ecfdf5;
  padding: 80px 0;
}
.thanks-info-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
}
.thanks-info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.thanks-info-card {
  flex: 1;
  min-width: 420px;
  max-width: 550px;
  background: #ffffff;
  border: 2px solid #7dd3fc;
  border-radius: 24px;
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}
.thanks-info-card:hover {
  border-color: #7dd3fc;
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.2);
}
.info-icon {
  font-size: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 20px;
}
.thanks-info-card h3 {
  color: #0f172a;
  margin-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
}
.thanks-info-card p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 16px;
}
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
  text-decoration: none;
  font-size: 18px;
}
.info-link:hover {
  gap: 18px;
}
.info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-link-small {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #475569;
  text-decoration: none;
  padding: 10px 0;
  transition: all 0.3s ease;
  font-size: 15px;
}
.info-link-small:hover {
  color: #334155;
  padding-left: 10px;
}
.info-link-small i {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  font-size: 18px;
}
.thanks-cta-modern {
  background: #ffffff;
  padding: 80px 0;
}
.thanks-cta-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 30px;
}
.thanks-cta-content {
  text-align: center;
}
.thanks-cta-content h2 {
  font-size: 36px;
  color: #0f172a;
  margin-bottom: 20px;
  font-weight: 800;
}
.thanks-cta-content p {
  color: #475569;
  font-size: 18px;
  margin-bottom: 40px;
}
.thanks-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer - Completely New Design */
.footer-main-new {
  background: linear-gradient(180deg, #f0f9ff 0%, #ecfdf5 100%);
  border-top: 3px solid rgba(125, 211, 252, 0.4);
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}
.footer-main-new::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, #7dd3fc 25%, #86efac 50%, #7dd3fc 75%, transparent 100%);
}
.footer-container-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 1;
}
.footer-top-new {
  display: grid;
  grid-template-columns: 1.4fr 2.6fr;
  gap: 80px;
  padding-bottom: 70px;
  border-bottom: 2px solid rgba(125, 211, 252, 0.3);
  margin-bottom: 40px;
}
.footer-brand-new {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.footer-logo-new {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 8px;
}
.footer-logo-icon-new {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.4);
}
.footer-logo-icon-new img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 8px;
}
.footer-logo-text-new h3 {
  font-size: 28px;
  font-weight: 900;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0 0 4px;
  line-height: 1.1;
  letter-spacing: -0.5px;
}
.footer-logo-text-new p {
  font-size: 12px;
  color: #64748b;
  margin: 0;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-desc-new {
  color: #475569;
  line-height: 1.8;
  font-size: 15px;
  margin: 0;
  max-width: 420px;
}
.footer-social-new {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.social-btn-new {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(125, 211, 252, 0.2);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 12px;
  color: #475569;
  text-decoration: none;
  font-size: 20px;
  transition: all 0.3s ease;
}
.social-btn-new:hover {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-color: #7dd3fc;
  color: #0f172a;
  transform: translateY(-4px) rotate(5deg);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.5);
}
.footer-links-new {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
}
.footer-col-new {
  display: flex;
  flex-direction: column;
}
.footer-title-new {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 14px;
}
.footer-title-new i {
  font-size: 18px;
  color: #0ea5e9;
}
.footer-title-new::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 2px;
}
.footer-list-new {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-list-new li a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #64748b;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 0;
}
.footer-list-new li a::before {
  content: '→';
  opacity: 0;
  transform: translateX(-10px);
  transition: all 0.3s ease;
  color: #0ea5e9;
  font-weight: 700;
}
.footer-list-new li a:hover {
  color: #0f172a;
  transform: translateX(6px);
}
.footer-list-new li a:hover::before {
  opacity: 1;
  transform: translateX(0);
}
.footer-bottom-new {
  padding: 40px 0 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}
.footer-bottom-left-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-copyright-new {
  color: #475569;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}
.footer-legal-new {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-legal-new a {
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s ease;
  padding: 4px 8px;
  border-radius: 6px;
}
.footer-legal-new a:hover {
  color: #0f172a;
  background: rgba(125, 211, 252, 0.15);
}
.footer-legal-new span {
  color: #cbd5e1;
  font-size: 12px;
}
.footer-bottom-right-new {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-end;
  text-align: right;
}
.footer-contact-new {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}
.footer-contact-item-new {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #475569;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 10px;
  background: rgba(125, 211, 252, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.2);
  transition: all 0.3s ease;
}
.footer-contact-item-new i {
  font-size: 16px;
  color: #0ea5e9;
}
.footer-contact-item-new:hover {
  background: rgba(125, 211, 252, 0.2);
  border-color: #7dd3fc;
  transform: translateX(-4px);
  color: #0f172a;
}
.footer-location-new {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 16px;
  background: rgba(134, 239, 172, 0.1);
  border-radius: 10px;
  border: 1px solid rgba(134, 239, 172, 0.2);
}
.footer-location-new i {
  font-size: 14px;
  color: #10b981;
}

/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
#preloader::before {
  content: "";
  width: 70px;
  height: 70px;
  border: 5px solid rgba(125, 211, 252, 0.3);
  border-top: 5px solid #7dd3fc;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Redesigned Sections - Completely New Styles */

/* Hero Section Redesigned */
.hero-section-redesigned {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  overflow: hidden;
}
.hero-bg-redesigned {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.hero-gradient-redesigned {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 40%, rgba(125, 211, 252, 0.25) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(134, 239, 172, 0.25) 0%, transparent 60%);
}
.hero-pattern-redesigned {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(125, 211, 252, 0.03) 10px, rgba(125, 211, 252, 0.03) 20px);
  opacity: 0.5;
}
.hero-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.hero-content-redesigned {
  text-align: left;
}
.hero-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.3) 0%, rgba(134, 239, 172, 0.3) 100%);
  border: 2px solid rgba(125, 211, 252, 0.4);
  color: #0ea5e9;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.hero-badge-redesigned i {
  font-size: 18px;
  animation: pulseIcon 2s ease-in-out infinite;
}
.hero-title-redesigned {
  font-size: clamp(42px, 7vw, 76px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 28px;
  color: #0f172a;
  letter-spacing: -1px;
}
.hero-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-description-redesigned {
  font-size: 20px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 40px;
  max-width: 580px;
}
.hero-actions-redesigned {
  display: flex;
  gap: 18px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.hero-btn-primary-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 6px 24px rgba(125, 211, 252, 0.4);
}
.hero-btn-primary-redesigned:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(125, 211, 252, 0.5);
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
}
.hero-btn-primary-redesigned i {
  font-size: 20px;
  transition: transform 0.3s ease;
}
.hero-btn-primary-redesigned:hover i {
  transform: translateX(4px);
}
.hero-btn-secondary-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  color: #334155;
  padding: 18px 36px;
  border-radius: 14px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  border: 2px solid rgba(125, 211, 252, 0.3);
  transition: all 0.3s ease;
}
.hero-btn-secondary-redesigned:hover {
  background: rgba(125, 211, 252, 0.1);
  border-color: #7dd3fc;
  transform: translateY(-3px);
  color: #0f172a;
}
.hero-btn-secondary-redesigned i {
  font-size: 20px;
  color: #0ea5e9;
}
.hero-benefits-redesigned {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  align-items: center;
}
.hero-benefit-item-redesigned {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  padding: 10px 20px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.15) 0%, rgba(134, 239, 172, 0.15) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 30px;
  transition: all 0.3s ease;
}
.hero-benefit-item-redesigned:hover {
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.25) 0%, rgba(134, 239, 172, 0.25) 100%);
  border-color: #7dd3fc;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(125, 211, 252, 0.2);
}
.hero-benefit-item-redesigned i {
  font-size: 18px;
  color: #10b981;
  flex-shrink: 0;
}
.hero-benefit-item-redesigned span {
  white-space: nowrap;
}
.hero-features-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.hero-feature-card-redesigned {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.1);
}
.hero-feature-card-redesigned:hover {
  border-color: #7dd3fc;
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(125, 211, 252, 0.25);
}
.feature-icon-wrapper-redesigned {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.feature-icon-wrapper-redesigned i {
  font-size: 32px;
  color: #0f172a;
}
.hero-feature-card-redesigned h4 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.hero-feature-card-redesigned p {
  font-size: 14px;
  color: #64748b;
  margin: 0;
  line-height: 1.6;
}

/* Excellence Section Redesigned */
.excellence-section-redesigned {
  background: #ffffff;
  padding: 120px 0;
  position: relative;
}
.excellence-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.excellence-header-redesigned {
  text-align: center;
  margin-bottom: 80px;
}
.excellence-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.excellence-badge-redesigned i {
  font-size: 16px;
}
.excellence-title-redesigned {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.excellence-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.excellence-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.excellence-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.excellence-card-redesigned {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.2);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.excellence-card-redesigned::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #7dd3fc 0%, #86efac 100%);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.excellence-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.excellence-card-redesigned:hover::before {
  transform: scaleX(1);
}
.excellence-card-icon-redesigned {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.excellence-card-icon-redesigned i {
  font-size: 28px;
  color: #0f172a;
}
.excellence-card-redesigned h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.excellence-card-redesigned p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Services Section Redesigned */
.services-section-redesigned {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 120px 0;
}
.services-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.services-header-redesigned {
  text-align: center;
  margin-bottom: 80px;
}
.services-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.services-title-redesigned {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.services-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.services-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.services-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.service-card-redesigned {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
}
.service-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.service-icon-redesigned {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.service-icon-redesigned i {
  font-size: 32px;
  color: #0f172a;
}
.service-card-redesigned h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 12px;
}
.service-card-redesigned p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.service-features-redesigned {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-features-redesigned span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}
.service-features-redesigned i {
  color: #10b981;
  font-size: 16px;
}

/* Methods Section Redesigned */
.methods-section-redesigned {
  background: #ffffff;
  padding: 120px 0;
}
.methods-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.methods-header-redesigned {
  text-align: center;
  margin-bottom: 80px;
}
.methods-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.methods-title-redesigned {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.methods-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.methods-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.methods-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.method-card-redesigned {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 24px;
  padding: 48px;
  position: relative;
  transition: all 0.3s ease;
}
.method-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 20px 56px rgba(125, 211, 252, 0.25);
}
.method-number-redesigned {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 900;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}
.method-icon-redesigned {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.3);
}
.method-icon-redesigned i {
  font-size: 36px;
  color: #0f172a;
}
.method-card-redesigned h4 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.method-card-redesigned p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.method-list-redesigned {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.method-list-redesigned li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}
.method-list-redesigned i {
  color: #10b981;
  font-size: 18px;
}

/* Pricing Section Redesigned */
.pricing-section-redesigned {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 120px 0;
}
.pricing-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.pricing-header-redesigned {
  text-align: center;
  margin-bottom: 80px;
}
.pricing-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.pricing-title-redesigned {
  font-size: clamp(36px, 6vw, 56px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.pricing-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pricing-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.pricing-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.pricing-card-redesigned {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 24px;
  padding: 48px 40px;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}
.pricing-card-redesigned:hover {
  transform: translateY(-10px);
  border-color: #7dd3fc;
  box-shadow: 0 20px 56px rgba(125, 211, 252, 0.3);
}
.pricing-card-featured-redesigned {
  border-color: #7dd3fc;
  border-width: 3px;
  transform: scale(1.05);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.pricing-badge-featured-redesigned {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.4);
}
.pricing-card-header-redesigned {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 2px solid rgba(125, 211, 252, 0.2);
}
.pricing-card-header-redesigned h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
}
.pricing-price-redesigned {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin-bottom: 12px;
}
.price-currency-redesigned {
  font-size: 24px;
  font-weight: 700;
  color: #0ea5e9;
}
.price-amount-redesigned {
  font-size: 64px;
  font-weight: 900;
  color: #0f172a;
  line-height: 1;
}
.price-period-redesigned {
  font-size: 18px;
  color: #64748b;
  font-weight: 600;
}
.pricing-description-redesigned {
  font-size: 15px;
  color: #64748b;
  margin: 0;
}
.pricing-features-redesigned {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.pricing-features-redesigned li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}
.pricing-features-redesigned i {
  color: #10b981;
  font-size: 18px;
  flex-shrink: 0;
}
.pricing-btn-redesigned {
  display: block;
  text-align: center;
  padding: 16px 32px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  border-radius: 12px;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}
.pricing-btn-redesigned:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.4);
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
}
.pricing-btn-featured-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  color: #ffffff;
  box-shadow: 0 6px 20px rgba(14, 165, 233, 0.4);
}
.pricing-btn-featured-redesigned:hover {
  background: linear-gradient(135deg, #06b6d4 0%, #059669 100%);
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.5);
}

@keyframes pulseIcon {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

/* Page Hero Redesigned (for About, Contact, FAQ pages) */
.page-hero-redesigned {
  min-height: 60vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  overflow: hidden;
}
.page-hero-bg-redesigned {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background: radial-gradient(circle at 30% 40%, rgba(125, 211, 252, 0.2) 0%, transparent 60%),
              radial-gradient(circle at 70% 60%, rgba(134, 239, 172, 0.2) 0%, transparent 60%);
}
.page-hero-wrapper-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  position: relative;
  z-index: 2;
}
.page-hero-content-redesigned {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.3) 0%, rgba(134, 239, 172, 0.3) 100%);
  border: 2px solid rgba(125, 211, 252, 0.4);
  color: #0ea5e9;
  padding: 10px 22px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 28px;
}
.page-hero-badge-redesigned i {
  font-size: 18px;
}
.page-hero-title-redesigned {
  font-size: clamp(40px, 7vw, 64px);
  font-weight: 900;
  line-height: 1.1;
  margin: 0 0 28px;
  color: #0f172a;
  letter-spacing: -1px;
}
.page-hero-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 50%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-description-redesigned {
  font-size: 20px;
  color: #475569;
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Company Info Section Redesigned */
.company-info-section-redesigned {
  background: #ffffff;
  padding: 100px 0;
}
.company-info-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.company-info-header-redesigned {
  text-align: center;
  margin-bottom: 60px;
}
.company-info-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.company-info-title-redesigned {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}
.company-info-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.company-info-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.company-info-card-redesigned {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.3s ease;
}
.company-info-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 20px 56px rgba(125, 211, 252, 0.25);
}
.company-card-icon-redesigned {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.company-card-icon-redesigned i {
  font-size: 28px;
  color: #0f172a;
}
.company-info-card-redesigned h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 32px;
}
.company-details-list-redesigned {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.company-detail-redesigned {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.company-detail-redesigned i {
  font-size: 24px;
  color: #0ea5e9;
  margin-top: 4px;
  flex-shrink: 0;
}
.company-detail-redesigned strong {
  display: block;
  font-size: 14px;
  color: #64748b;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}
.company-detail-redesigned p {
  font-size: 16px;
  color: #334155;
  margin: 0;
  line-height: 1.6;
}
.company-detail-redesigned a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.company-detail-redesigned a:hover {
  color: #10b981;
}

/* Values Section Redesigned */
.values-section-redesigned {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 100px 0;
}
.values-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.values-header-redesigned {
  text-align: center;
  margin-bottom: 60px;
}
.values-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.values-title-redesigned {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.values-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.values-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.values-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.value-card-redesigned {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}
.value-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.value-icon-redesigned {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.value-icon-redesigned i {
  font-size: 32px;
  color: #0f172a;
}
.value-card-redesigned h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.value-card-redesigned p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}

/* Business Model Section Redesigned */
.business-model-section-redesigned {
  background: #ffffff;
  padding: 100px 0;
}
.business-model-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.business-model-header-redesigned {
  text-align: center;
  margin-bottom: 60px;
}
.business-model-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.business-model-title-redesigned {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}
.business-model-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.business-model-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.business-model-card-redesigned {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.3s ease;
}
.business-model-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 20px 56px rgba(125, 211, 252, 0.25);
}
.business-model-icon-redesigned {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.3);
}
.business-model-icon-redesigned i {
  font-size: 36px;
  color: #0f172a;
}
.business-model-card-redesigned h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
}
.business-model-card-redesigned p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.business-model-list-redesigned {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.business-model-list-redesigned li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}
.business-model-list-redesigned i {
  color: #10b981;
  font-size: 18px;
}

/* Mission Vision Section Redesigned */
.mission-vision-section-redesigned {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 100px 0;
}
.mission-vision-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.mission-vision-header-redesigned {
  text-align: center;
  margin-bottom: 60px;
}
.mission-vision-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.mission-vision-title-redesigned {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0;
  line-height: 1.2;
}
.mission-vision-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.mission-vision-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.mission-vision-card-redesigned {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 24px;
  padding: 48px;
  transition: all 0.3s ease;
}
.mission-vision-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 20px 56px rgba(125, 211, 252, 0.25);
}
.mission-vision-icon-redesigned {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.3);
}
.mission-vision-icon-redesigned i {
  font-size: 36px;
  color: #0f172a;
}
.mission-vision-card-redesigned h3 {
  font-size: 28px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
}
.mission-vision-card-redesigned p {
  font-size: 16px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.mission-vision-list-redesigned {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mission-vision-list-redesigned li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}
.mission-vision-list-redesigned i {
  color: #10b981;
  font-size: 18px;
}

/* Team Section Redesigned */
.team-section-redesigned {
  background: #ffffff;
  padding: 100px 0;
}
.team-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.team-header-redesigned {
  text-align: center;
  margin-bottom: 60px;
}
.team-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.team-title-redesigned {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.team-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.team-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.team-card-redesigned {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  transition: all 0.3s ease;
}
.team-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.team-icon-redesigned {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.team-icon-redesigned i {
  font-size: 32px;
  color: #0f172a;
}
.team-card-redesigned h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
}
.team-card-redesigned p {
  font-size: 15px;
  color: #64748b;
  margin: 0 0 24px;
}
.team-skills-redesigned {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.team-skills-redesigned span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 14px;
  color: #334155;
  font-weight: 500;
}
.team-skills-redesigned i {
  color: #10b981;
  font-size: 16px;
}

/* Support Section Redesigned */
.support-section-redesigned {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 100px 0;
}
.support-container-redesigned {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.support-header-redesigned {
  text-align: center;
  margin-bottom: 60px;
}
.support-badge-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  color: #0ea5e9;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
}
.support-title-redesigned {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.2;
}
.support-highlight-redesigned {
  background: linear-gradient(135deg, #0ea5e9 0%, #10b981 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.support-subtitle-redesigned {
  font-size: 18px;
  color: #64748b;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}
.support-grid-redesigned {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}
.support-card-redesigned {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}
.support-card-redesigned:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.support-icon-redesigned {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.support-icon-redesigned i {
  font-size: 32px;
  color: #0f172a;
}
.support-card-redesigned h4 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.support-card-redesigned p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.support-link-redesigned {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
}
.support-link-redesigned:hover {
  color: #10b981;
  gap: 12px;
}
.support-link-redesigned i {
  transition: transform 0.3s ease;
}
.support-link-redesigned:hover i {
  transform: translateX(4px);
}

/* Thanks Page Redesigned */
.thanks-success-icon-redesigned {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 12px 40px rgba(125, 211, 252, 0.4);
  animation: pulseSuccess 2s ease-in-out infinite;
}
.thanks-success-icon-redesigned i {
  font-size: 64px;
  color: #0f172a;
}
@keyframes pulseSuccess {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 12px 40px rgba(125, 211, 252, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 16px 48px rgba(125, 211, 252, 0.6);
  }
}

/* Legal Content Sections Redesigned */
.legal-content-modern {
  background: #ffffff;
  padding: 100px 0;
}
.legal-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 60px;
}
.legal-sidebar {
  position: sticky;
  top: 120px;
  height: fit-content;
}
.legal-nav {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 32px 24px;
}
.legal-nav h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 24px;
}
.legal-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.legal-nav li a {
  display: block;
  font-size: 14px;
  color: #475569;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
}
.legal-nav li a:hover {
  background: rgba(125, 211, 252, 0.2);
  color: #0ea5e9;
}
.legal-main {
  background: #ffffff;
}
.legal-section {
  margin-bottom: 60px;
  padding-bottom: 40px;
  border-bottom: 2px solid rgba(125, 211, 252, 0.2);
}
.legal-section:last-child {
  border-bottom: none;
}
.legal-section h2 {
  font-size: 32px;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 24px;
  padding-top: 20px;
}
.legal-section h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 32px 0 16px;
}
.legal-section p {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  margin: 0 0 20px;
}
.legal-section ul {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
}
.legal-section ul li {
  font-size: 16px;
  color: #475569;
  line-height: 1.8;
  padding-left: 28px;
  position: relative;
  margin-bottom: 12px;
}
.legal-section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 8px;
  height: 8px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 50%;
}
.legal-info-box {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 16px;
  padding: 32px;
  margin: 24px 0;
}
.legal-info-box p {
  margin: 0 0 16px;
}
.legal-info-box p:last-child {
  margin-bottom: 0;
}
.legal-info-box strong {
  color: #0f172a;
  font-weight: 700;
}
.legal-info-box a {
  color: #0ea5e9;
  text-decoration: none;
  transition: color 0.3s ease;
}
.legal-info-box a:hover {
  color: #10b981;
}

/* Thanks Page Sections Redesigned */
.thanks-cta-modern {
  background: linear-gradient(135deg, #f0f9ff 0%, #ecfdf5 100%);
  padding: 100px 0;
}
.thanks-steps-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.thanks-steps-header {
  text-align: center;
  margin-bottom: 60px;
}
.thanks-steps-header h2 {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 16px;
}
.thanks-steps-header p {
  font-size: 18px;
  color: #64748b;
}
.thanks-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.thanks-step-card {
  background: #ffffff;
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 40px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.thanks-step-card:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.step-number {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.4);
}
.step-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(125, 211, 252, 0.2) 0%, rgba(134, 239, 172, 0.2) 100%);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}
.step-icon i {
  font-size: 32px;
  color: #0ea5e9;
}
.thanks-step-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.thanks-step-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0;
}
.thanks-info-modern {
  background: #ffffff;
  padding: 100px 0;
}
.thanks-info-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.thanks-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.thanks-info-card {
  background: linear-gradient(135deg, rgba(240, 249, 255, 0.5) 0%, rgba(236, 253, 245, 0.5) 100%);
  border: 2px solid rgba(125, 211, 252, 0.3);
  border-radius: 20px;
  padding: 40px;
  transition: all 0.3s ease;
}
.thanks-info-card:hover {
  transform: translateY(-8px);
  border-color: #7dd3fc;
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.25);
}
.info-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(125, 211, 252, 0.3);
}
.info-icon i {
  font-size: 28px;
  color: #0f172a;
}
.thanks-info-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.thanks-info-card p {
  font-size: 15px;
  color: #475569;
  line-height: 1.7;
  margin: 0 0 24px;
}
.info-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
}
.info-link:hover {
  color: #10b981;
  gap: 12px;
}
.info-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.info-link-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #0ea5e9;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
}
.info-link-small:hover {
  color: #10b981;
  gap: 12px;
}
.thanks-steps-modern {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 100px 0;
}
.thanks-cta-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.thanks-cta-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.thanks-cta-content h2 {
  font-size: clamp(36px, 6vw, 48px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
}
.thanks-cta-content p {
  font-size: 18px;
  color: #64748b;
  line-height: 1.7;
  margin: 0 0 40px;
}
.thanks-cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-primary-modern,
.btn-secondary-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.btn-primary-modern {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}
.btn-primary-modern:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(125, 211, 252, 0.4);
}
.btn-secondary-modern {
  background: #ffffff;
  color: #0ea5e9;
  border-color: rgba(125, 211, 252, 0.3);
}
.btn-secondary-modern:hover {
  background: rgba(125, 211, 252, 0.1);
  border-color: #7dd3fc;
  transform: translateY(-4px);
}

/* Responsive - New Header & Footer */
@media (max-width: 992px) {
  body {
    padding-top: 80px;
  }
  .header-wrapper-new {
    height: 80px;
    gap: 20px;
  }
  .header-nav-new {
    display: none;
  }
  .header-phone-new {
    display: none;
  }
  .mobile-toggle-new {
    display: flex;
  }
  .footer-top-new {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  .footer-links-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
  .footer-bottom-new {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
  }
  .footer-bottom-right-new {
    align-items: flex-start;
    text-align: left;
    width: 100%;
  }
  .footer-contact-new {
    align-items: flex-start;
  }
  .mobile-toggle-new.active span:nth-child(1) {
    transform: rotate(45deg) translate(10px, 10px);
  }
  .mobile-toggle-new.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .mobile-toggle-new.active span:nth-child(3) {
    transform: rotate(-45deg) translate(10px, -10px);
  }
  .header-wrapper {
    height: 70px;
  }
  .header-phone-link {
    display: none;
  }
  .mobile-menu-toggle {
    display: flex;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-bottom-right {
    align-items: flex-start;
    width: 100%;
  }
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(9px, 9px);
  }
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
  }
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -9px);
  }
  .pricing-cards-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .legal-container {
    flex-direction: column;
  }
  .legal-sidebar {
    position: static;
    width: 100%;
  }
  .contact-form-content {
    flex-direction: column;
  }
  .form-header {
    position: static;
  }
  .office-info-content {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }
  .header-container-new {
    padding: 0 20px;
  }
  .header-wrapper-new {
    height: 70px;
  }
  .logo-title-new {
    font-size: 22px;
  }
  .logo-tagline-new {
    font-size: 10px;
  }
  .btn-cta-new {
    padding: 10px 20px;
    font-size: 14px;
  }
  .footer-container-new {
    padding: 0 20px;
  }
  .footer-top-new {
    padding-bottom: 50px;
    gap: 40px;
  }
  .footer-links-new {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .footer-bottom-new {
    padding-top: 30px;
  }
  .footer-contact-item-new {
    font-size: 13px;
    padding: 6px 14px;
  }
  .footer-location-new {
    font-size: 12px;
  }
  /* Redesigned Sections Responsive */
  .hero-container-redesigned {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }
  .hero-content-redesigned {
    text-align: center;
  }
  .hero-description-redesigned {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions-redesigned {
    justify-content: center;
  }
  .hero-benefits-redesigned {
    justify-content: center;
  }
  .hero-features-redesigned {
    grid-template-columns: 1fr;
  }
  .excellence-grid-redesigned {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .services-grid-redesigned {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .methods-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .pricing-card-featured-redesigned {
    transform: scale(1);
  }
  .hero-container-new {
    grid-template-columns: 1fr;
    gap: 50px;
    padding: 0 20px;
  }
  .hero-main-new {
    text-align: center;
  }
  .hero-cards-new {
    grid-template-columns: 1fr;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
    justify-content: flex-start;
    width: 100%;
    margin: 0;
    padding: 0;
    justify-self: stretch;
  }
  .hero-card-new {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }
  .hero-card-new:hover {
    transform: translateY(-6px);
  }
  .comparison-table-new {
    grid-template-columns: 1.5fr repeat(6, 1.2fr);
    min-width: 800px;
  }
  .testimonials-grid-new {
    grid-template-columns: 1fr;
  }
  .testimonial-featured-new {
    transform: scale(1);
  }
  .testimonial-featured-new:hover {
    transform: translateY(-6px);
  }
  .process-steps-new {
    flex-direction: column;
  }
  .process-arrow-new {
    transform: rotate(90deg);
  }
  .process-step-featured-new {
    transform: scale(1);
  }
  .process-step-featured-new:hover {
    transform: translateY(-6px);
  }
  .header-wrapper {
    height: 60px;
  }
  .header-nav {
    display: none !important;
  }
  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .footer-contact-mini {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .logo-name {
    font-size: 22px;
  }
  .logo-subtitle {
    display: none;
  }
  .plans-grid,
  .services-grid,
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .story-content {
    flex-direction: column;
    gap: 40px;
  }
  .story-text {
    width: 100%;
    text-align: center;
  }
  .story-visual {
    width: 100%;
  }
  .story-timeline {
    padding-left: 25px;
  }
  .story-timeline::before {
    left: 12px;
  }
  .timeline-item-modern {
    padding-left: 20px;
  }
  .timeline-item-modern::before {
    left: 4px;
    width: 16px;
    height: 16px;
  }
  .timeline-year {
    font-size: 20px;
  }
  .timeline-content h4 {
    font-size: 18px;
  }
  .timeline-content p {
    font-size: 15px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 25px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .btn-primary-modern,
  .btn-secondary-modern {
    width: 100%;
  }
  .steps-container {
    flex-direction: column;
  }
  .steps-connector {
    display: none;
  }
  .step-modern {
    min-width: 100%;
  }
  .comparison-table-wrapper {
    margin: 0 -30px;
  }
  .comparison-table {
    font-size: 14px;
  }
  .comparison-table th,
  .comparison-table td {
    padding: 15px 20px;
  }
  .faq-category-nav {
    flex-direction: column;
  }
  .category-btn {
    width: 100%;
    padding: 18px;
  }
  .thanks-steps-grid,
  .thanks-info-grid {
    flex-direction: column;
  }
  .thanks-step-card,
  .thanks-info-card {
    max-width: 100%;
  }
  .contact-methods-container {
    flex-direction: column;
  }
  .contact-method-card {
    max-width: 100%;
  }
  .support-grid {
    flex-direction: column;
  }
  .support-card-modern {
    max-width: 100%;
  }
  .cookie-types-grid,
  .datenschutz-types-grid,
  .browser-instructions {
    flex-direction: column;
  }
  .cookie-type-card,
  .datenschutz-type-card,
  .browser-card {
    max-width: 100%;
  }
  .legal-warning {
    flex-direction: column;
    gap: 15px;
  }
  .legal-warning i {
    font-size: 28px;
  }
  .footer-content {
    flex-direction: column;
  }
  .footer-bottom-content {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  /* Redesigned Sections Mobile */
  .hero-container-redesigned {
    padding: 0 20px;
  }
  .hero-title-redesigned {
    font-size: 36px;
  }
  .hero-description-redesigned {
    font-size: 16px;
  }
  .hero-btn-primary-redesigned,
  .hero-btn-secondary-redesigned {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .hero-benefits-redesigned {
    gap: 20px;
    justify-content: center;
  }
  .hero-benefit-item-redesigned {
    font-size: 14px;
    padding: 8px 16px;
  }
  .excellence-container-redesigned,
  .services-container-redesigned,
  .methods-container-redesigned,
  .pricing-container-redesigned {
    padding: 0 20px;
  }
  .excellence-grid-redesigned,
  .services-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .excellence-card-redesigned,
  .service-card-redesigned {
    padding: 32px 24px;
  }
  .methods-grid-redesigned {
    gap: 28px;
  }
  .method-card-redesigned {
    padding: 36px 24px;
  }
  .pricing-grid-redesigned {
    gap: 28px;
  }
  .pricing-card-redesigned {
    padding: 36px 28px;
  }
  .price-amount-redesigned {
    font-size: 48px;
  }
}
@media (max-width: 480px) {
  .story-timeline {
    padding-left: 20px;
  }
  .timeline-item-modern {
    padding-left: 15px;
  }
  .timeline-year {
    font-size: 18px;
  }
  .timeline-content h4 {
    font-size: 16px;
  }
  .timeline-content p {
    font-size: 14px;
    line-height: 1.6;
  }
  .cookie-banner-content {
    flex-direction: column;
    gap: 20px;
    padding: 24px 0;
  }
  .cookie-banner-right {
    width: 100%;
    flex-direction: column;
  }
  .cookie-btn-reject,
  .cookie-btn-accept {
    width: 100%;
  }
  .pricing-cards-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .price-card-popular {
    transform: scale(1);
  }
  .price-card-popular:hover {
    transform: translateY(-8px);
  }
  .services-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  /* Redesigned Sections Mobile */
  .hero-container-redesigned {
    padding: 0 20px;
  }
  .hero-title-redesigned {
    font-size: 36px;
  }
  .hero-description-redesigned {
    font-size: 16px;
  }
  .hero-btn-primary-redesigned,
  .hero-btn-secondary-redesigned {
    padding: 14px 28px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }
  .hero-benefits-redesigned {
    gap: 20px;
    justify-content: center;
  }
  .hero-benefit-item-redesigned {
    font-size: 14px;
    padding: 8px 16px;
  }
  .excellence-container-redesigned,
  .services-container-redesigned,
  .methods-container-redesigned,
  .pricing-container-redesigned {
    padding: 0 20px;
  }
  .excellence-grid-redesigned,
  .services-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .excellence-card-redesigned,
  .service-card-redesigned {
    padding: 32px 24px;
  }
  .methods-grid-redesigned {
    gap: 28px;
  }
  .method-card-redesigned {
    padding: 36px 24px;
  }
  .pricing-grid-redesigned {
    gap: 28px;
  }
  .pricing-card-redesigned {
    padding: 36px 28px;
  }
  .price-amount-redesigned {
    font-size: 48px;
  }
  /* About, Contact, FAQ Pages Responsive */
  .company-info-grid-redesigned,
  .business-model-grid-redesigned,
  .mission-vision-grid-redesigned,
  .support-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .values-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .team-grid-redesigned {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .company-info-card-redesigned,
  .business-model-card-redesigned,
  .mission-vision-card-redesigned,
  .support-card-redesigned {
    padding: 36px 28px;
  }
  .page-hero-title-redesigned {
    font-size: 36px;
  }
  .page-hero-description-redesigned {
    font-size: 16px;
  }
  /* Legal & Thanks Pages Responsive */
  .legal-container {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  .legal-sidebar {
    position: static;
  }
  .legal-nav {
    padding: 24px 20px;
  }
  .thanks-steps-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .thanks-info-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .thanks-cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  .thanks-success-icon-redesigned {
    width: 100px;
    height: 100px;
  }
  .thanks-success-icon-redesigned i {
    font-size: 52px;
  }
}

/* Showcase Section - New Design */
.showcase-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.showcase-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.showcase-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.showcase-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #000000;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.showcase-badge-new i {
  font-size: 14px;
}
.showcase-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #06b6d4;
  margin: 0 0 20px;
  line-height: 1.1;
}
.showcase-accent-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.showcase-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.showcase-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.showcase-card-new {
  background: #ffffff;
  border: 2px solid #86efac;
  border-radius: 20px;
  padding: 45px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
}
.showcase-card-1 {
  border-color: #86efac;
}
.showcase-card-2 {
  border-color: #7dd3fc;
}
.showcase-card-3 {
  border-color: #86efac;
}
.showcase-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.showcase-featured-new {
  border-color: #5eead4;
  box-shadow: 0 12px 40px rgba(125, 211, 252, 0.2);
}
.showcase-featured-badge-new {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #86efac;
  color: #0f172a;
  padding: 6px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.showcase-card-header-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}
.showcase-rating-new {
  display: flex;
  gap: 4px;
}
.showcase-rating-new i {
  color: #5eead4;
  font-size: 16px;
}
.showcase-badge-card-new {
  background: rgba(125, 211, 252, 0.3);
  color: #06b6d4;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.showcase-card-2 .showcase-badge-card-new {
  background: rgba(125, 211, 252, 0.2);
  color: #06b6d4;
}
.showcase-card-3 .showcase-badge-card-new {
  background: rgba(134, 239, 172, 0.3);
  color: #06b6d4;
}
.showcase-quote-new {
  color: #0f172a;
  line-height: 1.7;
  margin: 0 0 24px;
  font-size: 15px;
  font-style: italic;
}
.showcase-author-new {
  display: flex;
  align-items: center;
  gap: 14px;
}
.showcase-avatar-new {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}
.showcase-card-2 .showcase-avatar-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
}
.showcase-card-3 .showcase-avatar-new {
  background: linear-gradient(135deg, #06b6d4 0%, #67e8f9 100%);
}
.showcase-avatar-new span {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
.showcase-info-new h5 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 4px;
}
.showcase-info-new span {
  font-size: 13px;
  color: #334155;
}

/* Methods Section - New Design */
.methods-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.methods-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.methods-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.methods-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: #0f172a;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.methods-badge-new i {
  font-size: 14px;
}
.methods-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #059669;
  margin: 0 0 20px;
  line-height: 1.1;
}
.methods-accent-new {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.methods-subtitle-new {
  font-size: 18px;
  color: #334155;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.methods-grid-new {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.method-card-new {
  background: #ffffff;
  border: 2px solid #5eead4;
  border-radius: 20px;
  padding: 50px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
}
.method-card-1 {
  border-color: #5eead4;
}
.method-card-2 {
  border-color: #3b82f6;
}
.method-card-3 {
  border-color: #5eead4;
}
.method-card-4 {
  border-color: #6ee7b7;
}
.method-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.method-icon-new {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
}
.method-card-2 .method-icon-new {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  box-shadow: 0 4px 16px rgba(59, 130, 246, 0.3);
}
.method-card-3 .method-icon-new {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  box-shadow: 0 4px 16px rgba(245, 158, 11, 0.3);
}
.method-card-4 .method-icon-new {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  box-shadow: 0 4px 16px rgba(239, 68, 68, 0.3);
}
.method-icon-new i {
  font-size: 28px;
  color: #0f172a;
}
.method-title-new {
  font-size: 24px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.method-text-new {
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
}
.method-features-new {
  list-style: none;
  padding: 0;
  margin: 0;
}
.method-features-new li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  color: #0f172a;
  font-size: 14px;
}
.method-features-new i {
  color: #06b6d4;
  font-size: 16px;
  flex-shrink: 0;
}
.method-card-2 .method-features-new i {
  color: #3b82f6;
}
.method-card-3 .method-features-new i {
  color: #f59e0b;
}
.method-card-4 .method-features-new i {
  color: #ef4444;
}

/* Excellence Section - New Design */
.excellence-section-new {
  background: linear-gradient(135deg, #e0f2fe 0%, #ecfdf5 100%);
  padding: 160px 0;
}
.excellence-wrapper-new {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}
.excellence-intro-new {
  text-align: center;
  margin-bottom: 120px;
}
.excellence-badge-new {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  color: #0f172a;
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}
.excellence-badge-new i {
  font-size: 14px;
}
.excellence-heading-new {
  font-size: clamp(40px, 6vw, 64px);
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 20px;
  line-height: 1.1;
}
.excellence-accent-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.excellence-subtitle-new {
  font-size: 18px;
  color: #475569;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}
.excellence-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.excellence-card-new {
  background: #ffffff;
  border: 2px solid #6366f1;
  border-radius: 20px;
  padding: 45px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 32px rgba(125, 211, 252, 0.15);
  text-align: center;
}
.excellence-card-1 {
  border-color: #7dd3fc;
}
.excellence-card-2 {
  border-color: #86efac;
}
.excellence-card-3 {
  border-color: #5eead4;
}
.excellence-card-4 {
  border-color: #6ee7b7;
}
.excellence-card-5 {
  border-color: #7dd3fc;
}
.excellence-card-6 {
  border-color: #86efac;
}
.excellence-card-new:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(125, 211, 252, 0.2);
}
.excellence-icon-new {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}
.excellence-card-2 .excellence-icon-new {
  background: linear-gradient(135deg, #86efac 0%, #6ee7b7 100%);
  box-shadow: 0 4px 16px rgba(134, 239, 172, 0.3);
}
.excellence-card-3 .excellence-icon-new {
  background: linear-gradient(135deg, #5eead4 0%, #6ee7b7 100%);
  box-shadow: 0 4px 16px rgba(94, 234, 212, 0.3);
}
.excellence-card-4 .excellence-icon-new {
  background: linear-gradient(135deg, #6ee7b7 0%, #86efac 100%);
  box-shadow: 0 4px 16px rgba(110, 231, 183, 0.3);
}
.excellence-card-5 .excellence-icon-new {
  background: linear-gradient(135deg, #7dd3fc 0%, #86efac 100%);
  box-shadow: 0 4px 16px rgba(125, 211, 252, 0.3);
}
.excellence-card-6 .excellence-icon-new {
  background: linear-gradient(135deg, #86efac 0%, #5eead4 100%);
  box-shadow: 0 4px 16px rgba(134, 239, 172, 0.3);
}
.excellence-icon-new i {
  font-size: 28px;
  color: #0f172a;
}
.excellence-title-new {
  font-size: 22px;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 16px;
}
.excellence-text-new {
  color: #334155;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 992px) {
  .showcase-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .methods-grid-new {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .excellence-grid-new {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .excellence-grid-new {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
