* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Sora", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #1a1a2e;
  background: #fff;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
}
h1 {
  font-size: 2.8rem;
}
h2 {
  font-size: 2.2rem;
}
h3 {
  font-size: 1.6rem;
}
p {
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a1a2e;
  color: #fff;
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.privacy-popup.show {
  transform: translateY(0);
}
.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.privacy-content p {
  margin: 0;
  font-size: 14px;
  flex: 1;
  min-width: 250px;
}
.privacy-actions {
  display: flex;
  gap: 10px;
}
.btn-accept {
  background: #6366f1;
  color: #fff;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  transition: background 0.3s;
}
.btn-accept:hover {
  background: #4f46e5;
}
.btn-learn {
  color: #fff;
  font-size: 14px;
  padding: 8px 20px;
  border: 1px solid #fff;
  border-radius: 4px;
  transition: all 0.3s;
}
.btn-learn:hover {
  background: #fff;
  color: #1a1a2e;
}
.header {
  background: #fff;
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: #1a1a2e;
  letter-spacing: -0.5px;
}
.nav {
  display: flex;
  gap: 30px;
}
.nav-link {
  color: #1a1a2e;
  font-size: 14px;
  font-weight: 400;
  position: relative;
  padding: 5px 0;
}
.nav-link:hover,
.nav-link.active {
  color: #6366f1;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.menu-toggle span {
  width: 25px;
  height: 2px;
  background: #1a1a2e;
  transition: all 0.3s;
}
.mega-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.float-object {
  position: absolute;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  backdrop-filter: blur(5px);
}
.obj-1 {
  width: 300px;
  height: 300px;
  top: -100px;
  left: -50px;
  animation: floatTopLeft 25s infinite ease-in-out;
}
.obj-2 {
  width: 200px;
  height: 200px;
  top: 10%;
  right: -80px;
  animation: floatTopRight 20s infinite ease-in-out;
}
.obj-3 {
  width: 150px;
  height: 150px;
  top: 40%;
  left: 5%;
  animation: floatLeft 18s infinite ease-in-out;
}
.obj-4 {
  width: 250px;
  height: 250px;
  bottom: -80px;
  right: 10%;
  animation: floatBottomRight 22s infinite ease-in-out;
}
.obj-5 {
  width: 180px;
  height: 180px;
  bottom: 15%;
  left: -60px;
  animation: floatBottomLeft 19s infinite ease-in-out;
}
.obj-6 {
  width: 120px;
  height: 120px;
  top: 60%;
  right: 15%;
  animation: floatRight 16s infinite ease-in-out;
}
@keyframes floatTopLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(50px, -30px) rotate(90deg);
  }
  50% {
    transform: translate(100px, 20px) rotate(180deg);
  }
  75% {
    transform: translate(50px, 50px) rotate(270deg);
  }
}
@keyframes floatTopRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  25% {
    transform: translate(-60px, 40px) rotate(-90deg);
  }
  50% {
    transform: translate(-120px, -20px) rotate(-180deg);
  }
  75% {
    transform: translate(-60px, -60px) rotate(-270deg);
  }
}
@keyframes floatLeft {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(80px, -50px) scale(1.2);
  }
  66% {
    transform: translate(40px, 60px) scale(0.9);
  }
}
@keyframes floatRight {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-70px, 50px) scale(1.1);
  }
  66% {
    transform: translate(-35px, -40px) scale(0.95);
  }
}
@keyframes floatBottomLeft {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(90px, -80px) rotate(180deg);
  }
}
@keyframes floatBottomRight {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-100px, -70px) rotate(-180deg);
  }
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left {
  color: #fff;
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
}
.hero-left h1 {
  font-size: 3.8rem;
  line-height: 1.1;
  margin-bottom: 25px;
  color: #fff;
}
.hero-left p {
  font-size: 1.2rem;
  line-height: 1.7;
  margin-bottom: 35px;
  opacity: 0.95;
}
.hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.btn-hero-primary {
  background: #1a1a2e;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s;
  display: inline-block;
}
.btn-hero-primary:hover {
  background: #0f0f1e;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}
.btn-hero-secondary {
  background: transparent;
  color: #fff;
  padding: 16px 36px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  transition: all 0.3s;
  display: inline-block;
}
.btn-hero-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: #fff;
}
.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.metric {
  text-align: left;
}
.metric-num {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}
.metric-text {
  font-size: 14px;
  opacity: 0.9;
}
.hero-right {
  display: grid;
  gap: 20px;
  position: relative;
}
.hero-card {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  transition: all 0.4s;
  cursor: pointer;
}
.hero-card:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}
.card-1 {
  animation: cardFloat1 6s infinite ease-in-out;
}
.card-2 {
  animation: cardFloat2 7s infinite ease-in-out;
}
.card-3 {
  animation: cardFloat3 8s infinite ease-in-out;
}
@keyframes cardFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
@keyframes cardFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}
@keyframes cardFloat3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-12px);
  }
}
.card-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.card-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.card-stat {
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  opacity: 0.95;
}
.section-header {
  text-align: left;
  margin-bottom: 50px;
}
.section-header.centered {
  text-align: center;
}
.section-label {
  display: inline-block;
  color: #6366f1;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.expertise {
  padding: 80px 0;
  background: #f8f9fa;
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.expertise-card {
  background: #fff;
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s;
  border: 1px solid #e5e7eb;
}
.expertise-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(99, 102, 241, 0.1);
  border-color: #6366f1;
}
.expertise-number {
  font-size: 3rem;
  font-weight: 700;
  color: #6366f1;
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 15px;
}
.expertise-card h3 {
  color: #1a1a2e;
  margin-bottom: 15px;
  font-size: 1.3rem;
}
.expertise-card p {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.7;
}
.methodology {
  padding: 80px 0;
}
.methodology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.methodology-visual {
  position: relative;
}
.methodology-visual img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.visual-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: #6366f1;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.methodology-content h2 {
  color: #1a1a2e;
  margin-bottom: 20px;
}
.methodology-content p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.8;
}
.methodology-steps {
  display: grid;
  gap: 25px;
  margin-bottom: 35px;
}
.method-step {
  display: flex;
  gap: 20px;
}
.step-icon {
  flex-shrink: 0;
}
.step-number {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}
.step-content h4 {
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.step-content p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.btn-secondary {
  display: inline-block;
  background: transparent;
  color: #6366f1;
  padding: 12px 28px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid #6366f1;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-secondary:hover {
  background: #6366f1;
  color: #fff;
}
.results {
  padding: 80px 0;
  background: #1a1a2e;
  color: #fff;
}
.results .section-label {
  color: #a5b4fc;
}
.results h2 {
  color: #fff;
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.result-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 12px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s;
}
.result-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.2);
}
.result-value {
  font-size: 3rem;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 10px;
}
.result-label {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}
.result-card p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}
.industries {
  padding: 80px 0;
  background: #f8f9fa;
}
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 15px;
}
.industry-item {
  background: #fff;
  padding: 18px 25px;
  border-radius: 8px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  color: #1a1a2e;
  border: 1px solid #e5e7eb;
  transition: all 0.3s;
}
.industry-item:hover {
  background: #6366f1;
  color: #fff;
  border-color: #6366f1;
  transform: translateY(-3px);
}
.testimonial {
  padding: 80px 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}
.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.quote-mark {
  font-size: 8rem;
  line-height: 1;
  opacity: 0.2;
  margin-bottom: -40px;
}
.testimonial blockquote {
  position: relative;
  z-index: 2;
}
.testimonial blockquote p {
  font-size: 1.4rem;
  line-height: 1.8;
  margin-bottom: 30px;
  font-style: italic;
}
.testimonial footer {
  font-size: 14px;
}
.testimonial footer strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.testimonial footer span {
  opacity: 0.9;
}
.team-intro {
  padding: 80px 0;
}
.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.team-content h2 {
  color: #1a1a2e;
  margin-bottom: 20px;
}
.team-content p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.8;
}
.team-highlights {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}
.highlight-item {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
}
.highlight-item strong {
  display: block;
  font-size: 2rem;
  color: #6366f1;
  margin-bottom: 5px;
}
.highlight-item span {
  font-size: 13px;
  color: #6b7280;
}
.team-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.team-member {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
}
.team-member strong {
  display: block;
  font-size: 1.1rem;
  margin-bottom: 5px;
}
.team-member span {
  font-size: 13px;
  opacity: 0.9;
}
.final-cta {
  padding: 80px 0;
  background: #f8f9fa;
  text-align: center;
}
.final-cta-content {
  max-width: 700px;
  margin: 0 auto;
}
.final-cta h2 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 2.5rem;
}
.final-cta p {
  color: #6b7280;
  font-size: 1.2rem;
  margin-bottom: 35px;
}
.btn-primary-large {
  display: inline-block;
  background: #6366f1;
  color: #fff;
  padding: 18px 45px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-primary-large:hover {
  background: #4f46e5;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(99, 102, 241, 0.3);
}
.cta-note {
  margin-top: 20px;
  font-size: 14px;
  color: #6b7280;
}
.page-hero-alt {
  background: linear-gradient(135deg, #1a1a2e 0%, #6366f1 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.hero-alt-content {
  max-width: 700px;
  margin: 0 auto;
}
.hero-label {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
}
.page-hero-alt h1 {
  color: #fff;
  margin-bottom: 15px;
}
.page-hero-alt p {
  font-size: 1.1rem;
  opacity: 0.9;
}
.services-showcase {
  padding: 80px 0;
}
.service-block {
  margin-bottom: 80px;
}
.service-block-header {
  margin-bottom: 30px;
}
.service-number {
  display: inline-block;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 15px;
}
.service-block h2 {
  color: #1a1a2e;
  font-size: 2rem;
}
.service-block-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}
.service-block.reverse .service-block-content {
  direction: rtl;
}
.service-block.reverse .service-block-content > * {
  direction: ltr;
}
.service-description p {
  color: #6b7280;
  margin-bottom: 25px;
  line-height: 1.8;
}
.service-features-list {
  display: grid;
  gap: 20px;
}
.feature-item {
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border-left: 3px solid #6366f1;
}
.feature-item strong {
  display: block;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 1rem;
}
.feature-item p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.service-metrics {
  display: grid;
  gap: 20px;
}
.metric-box {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 30px;
  border-radius: 12px;
  text-align: center;
}
.metric-value {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.metric-label {
  font-size: 14px;
  opacity: 0.9;
}
.pricing-modern {
  padding: 80px 0;
  background: #f8f9fa;
}
.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.price-card {
  background: #fff;
  border-radius: 12px;
  padding: 40px;
  border: 2px solid #e5e7eb;
  transition: all 0.3s;
  position: relative;
}
.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}
.price-card.featured {
  border-color: #6366f1;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
}
.featured-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #1a1a2e;
  color: #fff;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}
.price-header {
  margin-bottom: 25px;
  text-align: center;
}
.price-header h3 {
  color: #1a1a2e;
  font-size: 1.5rem;
  margin-bottom: 8px;
}
.price-card.featured .price-header h3 {
  color: #fff;
}
.price-header p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
}
.price-card.featured .price-header p {
  color: rgba(255, 255, 255, 0.9);
}
.price-amount {
  text-align: center;
  margin-bottom: 30px;
}
.currency {
  font-size: 1.5rem;
  vertical-align: top;
}
.amount {
  font-size: 3.5rem;
  font-weight: 700;
  color: #1a1a2e;
}
.price-card.featured .amount {
  color: #fff;
}
.period {
  font-size: 1rem;
  color: #6b7280;
}
.price-card.featured .period {
  color: rgba(255, 255, 255, 0.8);
}
.price-features {
  display: grid;
  gap: 15px;
  margin-bottom: 30px;
}
.price-feature {
  padding: 12px 0;
  border-bottom: 1px solid #e5e7eb;
  font-size: 14px;
  color: #1a1a2e;
}
.price-card.featured .price-feature {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
.btn-price {
  display: block;
  width: 100%;
  background: #6366f1;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-price:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}
.price-card.featured .btn-price {
  background: #1a1a2e;
}
.price-card.featured .btn-price:hover {
  background: #0f0f1e;
}
.case-studies-modern {
  padding: 80px 0;
}
.case-study-item {
  margin-bottom: 100px;
}
.case-study-visual {
  position: relative;
  margin-bottom: 30px;
}
.case-study-visual img {
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  width: 100%;
}
.case-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #6366f1;
  color: #fff;
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
}
.case-study-content h2 {
  color: #1a1a2e;
  margin-bottom: 20px;
  font-size: 2rem;
}
.case-meta {
  display: flex;
  gap: 25px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}
.case-meta span {
  font-size: 13px;
  color: #6b7280;
  padding: 6px 15px;
  background: #f8f9fa;
  border-radius: 20px;
}
.case-challenge,
.case-solution {
  margin-bottom: 30px;
}
.case-challenge h3,
.case-solution h3 {
  color: #1a1a2e;
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.case-challenge p,
.case-solution p {
  color: #6b7280;
  line-height: 1.8;
}
.case-results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.case-result-box {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 8px;
  text-align: center;
  border: 1px solid #e5e7eb;
}
.result-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: #6366f1;
  margin-bottom: 8px;
}
.result-text {
  font-size: 13px;
  color: #6b7280;
}
.case-quote {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  padding: 35px;
  border-radius: 12px;
  margin-top: 30px;
}
.case-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 15px;
  font-style: italic;
}
.case-quote strong {
  font-size: 14px;
  opacity: 0.9;
}
.contact-modern {
  padding: 80px 0;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-section h2 {
  color: #1a1a2e;
  margin-bottom: 20px;
}
.contact-info-section p {
  color: #6b7280;
  margin-bottom: 40px;
  line-height: 1.8;
}
.contact-methods {
  display: grid;
  gap: 30px;
  margin-bottom: 40px;
}
.contact-method {
  display: flex;
  gap: 20px;
}
.icon-circle {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.method-details strong {
  display: block;
  color: #1a1a2e;
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.method-details p {
  color: #6b7280;
  margin-bottom: 5px;
  font-size: 14px;
}
.method-note {
  font-size: 13px;
  color: #9ca3af;
}
.contact-trust {
  display: flex;
  gap: 30px;
  padding: 25px;
  background: #f8f9fa;
  border-radius: 8px;
}
.trust-item {
  text-align: center;
  flex: 1;
}
.trust-item strong {
  display: block;
  font-size: 1.8rem;
  color: #6366f1;
  margin-bottom: 5px;
}
.trust-item span {
  font-size: 13px;
  color: #6b7280;
}
.contact-form-section {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 12px;
}
.form-header {
  margin-bottom: 30px;
}
.form-header h3 {
  color: #1a1a2e;
  margin-bottom: 8px;
}
.form-header p {
  color: #6b7280;
  font-size: 14px;
  margin: 0;
}
.contact-form-modern {
  display: grid;
  gap: 20px;
}
.form-row {
  display: grid;
}
.form-field {
  display: grid;
  gap: 8px;
}
.form-field label {
  color: #1a1a2e;
  font-weight: 600;
  font-size: 14px;
}
.form-field input,
.form-field textarea {
  padding: 14px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  font-family: "Sora", sans-serif;
  font-size: 14px;
  transition: border 0.3s;
  background: #fff;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #6366f1;
}
.form-checkbox {
  display: block;
}
.checkbox-container {
  display: flex;
  gap: 12px;
  align-items: start;
  cursor: pointer;
  font-size: 13px;
  color: #6b7280;
  position: relative;
  padding-left: 30px;
}
.checkbox-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  left: 0;
  top: 2px;
}
.checkmark {
  position: absolute;
  left: 0;
  top: 2px;
  height: 18px;
  width: 18px;
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 4px;
  transition: all 0.3s;
}
.checkbox-container:hover .checkmark {
  border-color: #6366f1;
}
.checkbox-container input:checked ~ .checkmark {
  background: #6366f1;
  border-color: #6366f1;
}
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 5px;
  top: 2px;
  width: 4px;
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.checkbox-container input:checked ~ .checkmark:after {
  display: block;
}
.checkbox-text a {
  color: #6366f1;
  text-decoration: underline;
}
.btn-submit {
  background: #6366f1;
  color: #fff;
  padding: 14px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-submit:hover {
  background: #4f46e5;
  transform: translateY(-2px);
}
.form-note {
  font-size: 13px;
  color: #6b7280;
  text-align: center;
  margin-top: 10px;
}
.map-modern {
  padding: 80px 0;
  background: #f8f9fa;
}
.map-header {
  text-align: center;
  margin-bottom: 40px;
}
.map-header h2 {
  color: #1a1a2e;
  margin-bottom: 10px;
}
.map-header p {
  color: #6b7280;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.thankyou-section,
.error-section {
  padding: 100px 0;
  text-align: center;
  min-height: calc(100vh - 130px);
  display: flex;
  align-items: center;
}
.thankyou-content,
.error-content {
  max-width: 600px;
  margin: 0 auto;
}
.thankyou-content h1,
.error-content h1 {
  color: #1a1a2e;
  margin-bottom: 20px;
}
.error-content h1 {
  font-size: 5rem;
  color: #6366f1;
}
.error-content h2 {
  color: #1a1a2e;
  margin-bottom: 15px;
}
.thankyou-content p,
.error-content p {
  color: #6b7280;
  margin-bottom: 30px;
  line-height: 1.8;
}
.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.policy-section {
  padding: 80px 0;
}
.policy-section h1 {
  color: #1a1a2e;
  margin-bottom: 10px;
}
.policy-date {
  color: #6b7280;
  font-size: 14px;
  margin-bottom: 40px;
}
.policy-content {
  max-width: 900px;
}
.policy-content h2 {
  color: #1a1a2e;
  margin-top: 35px;
  margin-bottom: 15px;
  font-size: 1.5rem;
}
.policy-content h3 {
  color: #1a1a2e;
  margin-top: 25px;
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.policy-content p {
  color: #6b7280;
  margin-bottom: 15px;
  line-height: 1.8;
}
.policy-content ul {
  list-style: disc;
  margin-left: 25px;
  margin-bottom: 15px;
}
.policy-content ul li {
  color: #6b7280;
  margin-bottom: 8px;
  line-height: 1.8;
}
.footer {
  background: #1a1a2e;
  color: #fff;
  padding: 25px 0;
  margin-top: auto;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-info p {
  margin: 0;
  font-size: 13px;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  color: #fff;
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s;
}
.footer-links a:hover {
  opacity: 1;
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.6rem;
  }
  .mega-hero {
    min-height: auto;
    padding: 100px 0 60px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-left h1 {
    font-size: 2.5rem;
  }
  .hero-left p {
    font-size: 1rem;
  }
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  .hero-buttons a {
    width: 100%;
    text-align: center;
  }
  .hero-metrics {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .metric-num {
    font-size: 2rem;
  }
  .hero-right {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .float-object {
    display: none;
  }
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s;
    gap: 15px;
  }
  .nav.active {
    transform: translateX(0);
  }
  .menu-toggle {
    display: flex;
  }
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .methodology-layout {
    grid-template-columns: 1fr;
  }
  .team-layout {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .service-block-content {
    grid-template-columns: 1fr;
  }
  .case-results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-cards {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .team-highlights {
    grid-template-columns: 1fr;
  }
  .team-visual {
    grid-template-columns: 1fr;
  }
  .contact-trust {
    flex-direction: column;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-links {
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  h1 {
    font-size: 1.8rem;
  }
  .hero-left h1 {
    font-size: 2rem;
  }
  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 15px;
    text-align: center;
  }
  .metric {
    text-align: center;
  }
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 14px 28px;
    font-size: 15px;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .case-results-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats-inline {
    flex-direction: column;
    gap: 20px;
  }
  .industries-grid {
    grid-template-columns: 1fr;
  }
  .privacy-content {
    flex-direction: column;
    text-align: center;
  }
  .privacy-actions {
    width: 100%;
    justify-content: center;
  }
}
