* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #0a2540;
  --secondary: #00d4ff;
  --accent: #7c3aed;
  --tertiary: #10b981;
  --light: #f0f9ff;
  --text-dark: #0f172a;
  --text-light: #475569;
  --border: #cbd5e1;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  background: #ffffff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--primary);
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.5rem;
}
h4 {
  font-size: 1.2rem;
}

p {
  margin-bottom: 1rem;
}

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

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

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

.btn-primary,
.btn-secondary,
.btn-outline,
.btn-primary-large {
  display: inline-block;
  padding: 14px 32px;
  font-size: 15px;
  font-weight: 500;
  border-radius: 8px;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-align: center;
  font-family: 'Space Grotesk', sans-serif;
}

.btn-primary {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(124, 58, 237, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  padding: 12px 30px;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: white;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-outline:hover {
  background: white;
  color: var(--secondary);
}

.btn-primary-large {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  padding: 18px 40px;
  font-size: 16px;
  box-shadow: 0 4px 20px rgba(0, 212, 255, 0.3);
}

.btn-primary-large:hover {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(124, 58, 237, 0.5);
}

.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary);
  color: white;
  padding: 20px 0;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
}

.privacy-popup.show {
  transform: translateY(0);
}

.privacy-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  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: 15px;
  align-items: center;
}

.privacy-actions a {
  color: var(--accent);
  font-size: 14px;
  text-decoration: underline;
}

.privacy-actions button {
  background: white;
  color: var(--primary);
  border: none;
  padding: 10px 24px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
}

.header {
  background: white;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: transform 0.3s ease;
}

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

.logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
}

.nav {
  display: flex;
  gap: 35px;
}

.nav a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--secondary);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--secondary);
  border-radius: 3px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  transition: all 0.3s ease;
  border-radius: 2px;
}

.mega-hero {
  position: relative;
  background: linear-gradient(
    135deg,
    var(--primary) 0%,
    #1e3a8a 50%,
    var(--accent) 100%
  );
  color: white;
  padding: 140px 0 100px;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}

.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.hero-shape.shape-1 {
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  top: -300px;
  right: -200px;
  animation: float 20s infinite ease-in-out;
}

.hero-shape.shape-2 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  bottom: -200px;
  left: -150px;
  animation: float 25s infinite ease-in-out reverse;
}

.hero-shape.shape-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--tertiary) 0%, transparent 70%);
  top: 40%;
  left: 60%;
  animation: pulse 15s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(30px, -30px) rotate(5deg);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.15;
  }
}

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

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  backdrop-filter: blur(10px);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 2rem;
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.mega-hero-content h1 {
  font-size: 3.5rem;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.mega-hero-content p {
  font-size: 1.15rem;
  opacity: 0.95;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-cta-group {
  display: flex;
  gap: 15px;
  justify-content: center;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.hero-stats-inline {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-inline {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.stat-text {
  font-size: 13px;
  opacity: 0.9;
}

.trust-bar {
  background: var(--light);
  padding: 30px 0;
  border-bottom: 1px solid var(--border);
}

.trust-text {
  text-align: center;
  font-size: 13px;
  color: var(--text-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

.trust-logos {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}

.trust-logos span {
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
  padding: 8px 20px;
  background: white;
  border-radius: 6px;
  border: 1px solid var(--border);
}

.section-intro {
  margin-bottom: 3rem;
}

.section-intro.centered {
  text-align: center;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3rem;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.8rem;
}

.section-intro h2 {
  margin-bottom: 1rem;
}

.section-intro p {
  font-size: 1.05rem;
  color: var(--text-light);
  margin: 0;
}

.services-modern {
  padding: 80px 0;
  background: white;
}

.services-modern-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-modern-card {
  background: var(--light);
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.service-modern-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.service-number {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.3;
  margin-bottom: 1rem;
}

.service-modern-card h3 {
  margin-bottom: 1rem;
}

.service-modern-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.service-link {
  color: var(--secondary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.service-link:hover {
  gap: 10px;
}

.methodology {
  padding: 80px 0;
  background: var(--light);
}

.methodology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.methodology-visual {
  position: relative;
}

.methodology-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.visual-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: white;
  padding: 15px 25px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.methodology-content h2 {
  margin-bottom: 1rem;
}

.methodology-content > p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.method-steps {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.method-step {
  display: flex;
  gap: 20px;
}

.step-icon {
  flex-shrink: 0;
}

.step-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
}

.step-text h4 {
  margin-bottom: 0.5rem;
}

.step-text p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.case-preview {
  padding: 80px 0;
  background: white;
}

.case-preview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 3rem;
}

.case-preview-card {
  background: var(--light);
  padding: 35px;
  border-radius: 12px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.case-preview-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(59, 130, 246, 0.15);
}

.case-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.case-preview-card h3 {
  margin-bottom: 1rem;
}

.case-preview-card p {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 1.5rem;
}

.case-result {
  display: flex;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.result-label {
  font-size: 13px;
  color: var(--text-light);
}

.result-value {
  font-weight: 600;
  color: var(--primary);
  font-size: 14px;
}

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

.team-highlight {
  padding: 80px 0;
  background: var(--light);
}

.team-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.team-content h2 {
  margin-bottom: 1rem;
}

.team-content > p {
  color: var(--text-light);
  margin-bottom: 2.5rem;
}

.team-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
}

.team-feature {
  display: flex;
  gap: 15px;
}

.feature-icon {
  flex-shrink: 0;
}

.icon-check {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.2rem;
}

.feature-text h4 {
  margin-bottom: 0.3rem;
}

.feature-text p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.team-visual {
  position: relative;
}

.team-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.team-badge {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.badge-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.badge-text {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

.industries-showcase {
  padding: 80px 0;
  background: white;
}

.industries-showcase-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 3rem;
}

.industry-showcase-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.industry-showcase-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.industry-showcase-card h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}

.industry-showcase-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

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

.testimonial-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, #1e3a8a 100%);
  color: white;
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.testimonial-content h2 {
  color: white;
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  opacity: 0.95;
  margin-bottom: 2rem;
}

.testimonial-author {
  display: flex;
  justify-content: center;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.author-name {
  font-weight: 600;
  font-size: 1.05rem;
}

.author-title {
  font-size: 14px;
  opacity: 0.8;
}

.final-cta {
  padding: 80px 0;
  background: var(--light);
}

.final-cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.final-cta-content p {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 2rem;
}

.cta-note {
  font-size: 14px;
  color: var(--text-light);
  margin-top: 1rem;
  font-style: italic;
}

.footer {
  background: var(--primary);
  color: white;
  padding: 35px 0;
}

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

.footer-links {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
}

.footer-links a:hover {
  color: white;
}

.copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.cases-detailed {
  padding: 80px 0;
  background: white;
}

.case-detailed-item {
  margin-bottom: 60px;
  padding-bottom: 60px;
  border-bottom: 2px solid var(--border);
}

.case-detailed-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.case-header {
  margin-bottom: 2rem;
}

.case-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  margin-top: 0.5rem;
}

.case-body {
  display: grid;
  gap: 2rem;
}

.case-challenge h3,
.case-solution h3,
.case-outcomes h3 {
  color: var(--secondary);
  margin-bottom: 1rem;
}

.case-challenge p,
.case-solution p {
  color: var(--text-light);
  line-height: 1.8;
}

.outcomes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 25px;
  margin-top: 1.5rem;
}

.outcome-item {
  background: var(--light);
  padding: 25px;
  border-radius: 10px;
  text-align: center;
}

.outcome-number {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 0.5rem;
}

.outcome-label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
}

.results-summary {
  padding: 80px 0;
  background: var(--light);
}

.results-summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

.result-summary-card {
  background: white;
  padding: 35px;
  border-radius: 12px;
  border: 2px solid var(--border);
  transition: all 0.3s ease;
}

.result-summary-card:hover {
  border-color: var(--secondary);
  transform: translateY(-5px);
}

.result-icon {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 1.5rem;
}

.icon-symbol {
  font-weight: 700;
}

.result-summary-card h3 {
  margin-bottom: 1rem;
}

.result-summary-card p {
  color: var(--text-light);
  font-size: 14px;
  margin: 0;
}

.industries-comprehensive {
  padding: 80px 0;
  background: white;
}

.industry-deep-card {
  background: var(--light);
  padding: 40px;
  border-radius: 12px;
  margin-bottom: 30px;
  border: 2px solid transparent;
  transition: all 0.3s ease;
}

.industry-deep-card:hover {
  border-color: var(--secondary);
}

.industry-deep-content h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.industry-deep-content > p {
  color: var(--text-light);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.industry-expertise-list {
  display: grid;
  gap: 12px;
  margin-bottom: 2rem;
}

.expertise-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.check-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.expertise-item span:last-child {
  color: var(--text-dark);
  font-size: 14px;
  line-height: 1.7;
}

.industry-example {
  background: white;
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
}

.industry-example strong {
  color: var(--accent);
}

.consulting-packages {
  padding: 80px 0;
  background: var(--light);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-bottom: 2rem;
}

.package-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  border: 2px solid var(--border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s ease;
}

.package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.package-card.featured {
  border-color: var(--secondary);
  border-width: 3px;
}

.package-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.package-header {
  margin-bottom: 1.5rem;
}

.package-header h3 {
  margin-bottom: 1rem;
}

.package-price {
  font-family: 'Sora', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--secondary);
}

.price-period {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.package-description {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.package-includes {
  margin-bottom: 2rem;
  flex-grow: 1;
}

.package-includes h4 {
  font-size: 14px;
  margin-bottom: 1rem;
  color: var(--primary);
}

.package-includes ul {
  list-style: none;
  padding: 0;
}

.package-includes li {
  padding: 10px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border);
}

.package-includes li:last-child {
  border-bottom: none;
}

.package-includes li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--secondary);
  font-weight: 700;
}

.package-timeline {
  margin-bottom: 1.5rem;
  font-size: 14px;
  color: var(--text-light);
}

.packages-note {
  text-align: center;
  margin-top: 2rem;
}

.packages-note p {
  color: var(--text-light);
  font-size: 14px;
  font-style: italic;
}

.cross-industry {
  padding: 80px 0;
  background: white;
}

.cross-industry-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.cross-industry-content p {
  color: var(--text-light);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.cross-industry-visual {
  position: relative;
}

.cross-industry-visual img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.visual-stat {
  position: absolute;
  top: 20px;
  right: 20px;
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  text-align: center;
}

.stat-big {
  display: block;
  font-family: 'Sora', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  display: block;
  font-size: 13px;
  color: var(--text-light);
  font-weight: 600;
}

.contact-main-section {
  padding: 80px 0;
  background: white;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 60px;
}

.form-intro {
  margin-bottom: 2rem;
}

.form-intro h2 {
  margin-bottom: 0.8rem;
}

.form-intro p {
  color: var(--text-light);
  font-size: 14px;
}

.contact-form-modern {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: flex;
  flex-direction: column;
}

.form-field {
  display: flex;
  flex-direction: column;
}

.form-field label {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--primary);
}

.form-field input,
.form-field textarea {
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  transition: all 0.3s ease;
  background: white;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(59, 130, 246, 0.1);
}

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

.form-checkbox {
  display: flex;
  align-items: flex-start;
}

.checkbox-container {
  display: flex;
  gap: 12px;
  cursor: pointer;
  align-items: flex-start;
}

.checkbox-container input[type='checkbox'] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.checkbox-text {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

.checkbox-text a {
  color: var(--secondary);
  text-decoration: underline;
}

.contact-info-area {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.info-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
}

.info-card h3 {
  margin-bottom: 1rem;
  font-size: 1.2rem;
}

.info-detail {
  color: var(--text-dark);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.info-note {
  color: var(--text-light);
  font-size: 13px;
  margin-top: 0.8rem;
  line-height: 1.6;
}

.info-card.highlight {
  background: var(--secondary);
  color: white;
}

.info-card.highlight h3 {
  color: white;
}

.why-list {
  list-style: none;
  padding: 0;
}

.why-list li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  font-size: 14px;
}

.why-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  font-weight: 700;
}

.map-section-modern {
  padding: 80px 0;
  background: var(--light);
}

.map-section-modern h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.map-intro {
  text-align: center;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 2rem;
}

.map-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
}

.thankyou-section,
.error-section {
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: var(--light);
}

.thankyou-box,
.error-box {
  text-align: center;
  max-width: 650px;
  background: white;
  padding: 60px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.success-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #10b981;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  font-weight: 700;
  margin: 0 auto 2rem;
}

.thankyou-box h1 {
  margin-bottom: 1.5rem;
}

.thankyou-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.thankyou-actions,
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-code {
  font-size: 7rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 1rem;
  line-height: 1;
}

.error-box h2 {
  margin-bottom: 1rem;
}

.error-box p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 2.5rem;
}

.policy-page {
  padding: 80px 0;
  background: white;
}

.policy-page h1 {
  margin-bottom: 0.5rem;
}

.policy-date {
  color: var(--text-light);
  font-size: 14px;
  margin-bottom: 3rem;
}

.policy-content {
  max-width: 900px;
}

.policy-content h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.policy-content h4 {
  margin-top: 1.5rem;
  margin-bottom: 0.6rem;
}

.policy-content p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.policy-content ul {
  margin-bottom: 1.5rem;
  padding-left: 25px;
}

.policy-content li {
  color: var(--text-light);
  margin-bottom: 0.8rem;
  line-height: 1.7;
}

.policy-content strong {
  color: var(--text-dark);
}

@media (max-width: 968px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .mega-hero-content h1 {
    font-size: 2.3rem;
  }
  .mega-hero {
    padding: 100px 0 70px;
    min-height: 70vh;
  }
  .methodology-layout,
  .team-layout,
  .cross-industry-layout,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .methodology-visual,
  .cross-industry-visual {
    order: -1;
  }
  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    gap: 0;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    display: none;
    border-top: 1px solid var(--border);
  }
  .nav.active {
    display: flex;
  }
  .nav a {
    padding: 15px 0;
    border-bottom: 1px solid var(--border);
  }
  .nav a:last-child {
    border-bottom: none;
  }
  .nav a.active::after {
    display: none;
  }
  .menu-toggle {
    display: flex;
  }
  .packages-grid {
    grid-template-columns: 1fr;
    max-width: 450px;
    margin-left: auto;
    margin-right: auto;
  }
  .services-modern,
  .methodology,
  .case-preview,
  .team-highlight,
  .industries-showcase,
  .testimonial-section,
  .final-cta,
  .cases-detailed,
  .results-summary,
  .industries-comprehensive,
  .consulting-packages,
  .cross-industry,
  .contact-main-section,
  .map-section-modern {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 14px;
  }
  h1 {
    font-size: 1.7rem;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  .container {
    padding: 0 15px;
  }
  .mega-hero {
    padding: 70px 0 50px;
    min-height: 60vh;
  }
  .mega-hero-content h1 {
    font-size: 1.9rem;
  }
  .mega-hero-content p {
    font-size: 1rem;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-stats-inline {
    gap: 25px;
  }
  .stat-num {
    font-size: 2rem;
  }
  .services-modern-grid,
  .case-preview-grid,
  .industries-showcase-grid,
  .results-summary-grid {
    grid-template-columns: 1fr;
  }
  .outcomes-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 28px;
    font-size: 14px;
  }
  .btn-primary-large {
    padding: 16px 36px;
    font-size: 15px;
  }
  .service-modern-card,
  .case-preview-card,
  .industry-showcase-card,
  .result-summary-card,
  .industry-deep-card,
  .package-card,
  .info-card {
    padding: 25px;
  }
  .testimonial-content h2 {
    font-size: 1.8rem;
  }
  .testimonial-text {
    font-size: 1rem;
  }
  .final-cta-content h2 {
    font-size: 2rem;
  }
  .thankyou-box,
  .error-box {
    padding: 40px 25px;
  }
  .error-code {
    font-size: 5rem;
  }
  .success-icon {
    width: 70px;
    height: 70px;
    font-size: 2.5rem;
  }
}

@media (max-width: 380px) {
  .container {
    padding: 0 12px;
  }
  h1 {
    font-size: 1.5rem;
  }
  h2 {
    font-size: 1.3rem;
  }
  .mega-hero-content h1 {
    font-size: 1.6rem;
  }
  .logo {
    font-size: 1.2rem;
  }
  .mega-hero {
    padding: 60px 0 40px;
    min-height: 55vh;
  }
  .hero-stats-inline {
    flex-direction: column;
    gap: 20px;
  }
  .outcomes-grid {
    grid-template-columns: 1fr;
  }
  .trust-logos {
    flex-direction: column;
    gap: 10px;
  }
  .service-modern-card,
  .case-preview-card,
  .industry-deep-card,
  .package-card,
  .info-card {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  .container {
    padding: 0 10px;
  }
  h1 {
    font-size: 1.4rem;
  }
  h2 {
    font-size: 1.2rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  .mega-hero-content h1 {
    font-size: 1.5rem;
  }
  .mega-hero-content p {
    font-size: 0.95rem;
  }
  .logo {
    font-size: 1.1rem;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 20px;
    font-size: 13px;
  }
  .btn-primary-large {
    padding: 14px 28px;
    font-size: 14px;
  }
  .service-modern-card,
  .case-preview-card,
  .industry-deep-card,
  .package-card,
  .info-card {
    padding: 18px;
  }
  .stat-num {
    font-size: 1.8rem;
  }
  .hero-stats-inline {
    gap: 15px;
  }
  .mega-hero {
    padding: 50px 0 35px;
    min-height: 50vh;
  }
}

.why-choose {
  padding: 80px 0;
  background: white;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.why-card {
  background: var(--light);
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.why-card:hover {
  transform: translateY(-5px);
  border-color: var(--secondary);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.15);
}

.why-icon {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  margin-bottom: 1rem;
}

.why-card p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.process-timeline {
  padding: 80px 0;
  background: var(--light);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--secondary), var(--accent));
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.timeline-marker {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.timeline-content h3 {
  margin-bottom: 0.8rem;
  color: var(--primary);
}

.timeline-content p {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 968px) {
  .why-choose,
  .process-timeline {
    padding: 60px 0;
  }
}

@media (max-width: 640px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-marker {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  .timeline-item {
    gap: 20px;
  }
  .timeline-content {
    padding: 20px;
  }
}

@media (max-width: 320px) {
  .why-card {
    padding: 30px 20px;
  }
  .why-icon {
    font-size: 2.5rem;
  }
  .timeline-content {
    padding: 18px;
  }
}
