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

:root {
  --primary: #0052cc;
  --secondary: #00c9ff;
  --accent: #ff6b35;
  --dark: #0a1128;
  --light: #f5f7fa;
  --gray: #64748b;
  --white: #ffffff;
}

body {
  font-family: 'Space Grotesk', sans-serif;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  font-size: 15px;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}

h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}

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;
}

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

.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;
  flex: 1;
  min-width: 250px;
  font-size: 14px;
}

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

.btn-accept,
.btn-learn {
  padding: 8px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
}

.btn-accept {
  background: var(--primary);
  color: var(--white);
}

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

.btn-learn {
  background: transparent;
  color: var(--white);
  border: 1px solid var(--white);
  display: inline-block;
}

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

.header {
  background: var(--white);
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  z-index: 100;
}

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

.logo {
  font-family: 'Syne', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

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

.menu-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}

.nav {
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-link {
  font-size: 14px;
  font-weight: 500;
  color: var(--dark);
  position: relative;
  padding: 5px 0;
}

.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.hero-mega {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2847 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  min-height: 85vh;
  display: flex;
  align-items: center;
}

.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: var(--secondary);
  top: -200px;
  right: -100px;
  animation: float 20s infinite ease-in-out;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: var(--primary);
  bottom: -150px;
  left: -100px;
  animation: float 25s infinite ease-in-out reverse;
}

.shape-3 {
  width: 350px;
  height: 350px;
  background: var(--accent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 15s infinite ease-in-out;
}

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

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  background: rgba(0, 201, 255, 0.15);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 201, 255, 0.3);
}

.hero-text h1 {
  font-size: 3.2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  line-height: 1.1;
}

.hero-text p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.btn-primary,
.btn-outline,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 201, 255, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--white);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stat-number {
  font-family: 'Syne', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.7);
}

.hero-visual {
  position: relative;
  height: 450px;
}

.hero-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 16px;
  display: flex;
  gap: 15px;
  align-items: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.hero-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
}

.card-1 {
  top: 20px;
  left: 0;
  width: 280px;
  animation: cardFloat1 6s infinite ease-in-out;
}

.card-2 {
  top: 180px;
  right: 20px;
  width: 260px;
  animation: cardFloat2 7s infinite ease-in-out;
}

.card-3 {
  bottom: 40px;
  left: 40px;
  width: 270px;
  animation: cardFloat3 8s infinite ease-in-out;
}

@keyframes cardFloat1 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

@keyframes cardFloat2 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes cardFloat3 {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.card-icon {
  font-size: 2rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  flex-shrink: 0;
}

.card-title {
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 3px;
}

.card-desc {
  font-size: 13px;
  color: var(--gray);
}

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

.section-header.centered {
  text-align: center;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 3.5rem;
}

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

.services-modern {
  padding: 90px 0;
  background: var(--light);
}

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

.service-modern {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.06);
  position: relative;
}

.service-modern:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  border-color: var(--primary);
}

.service-number {
  font-family: 'Syne', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.1;
  line-height: 1;
  margin-bottom: 1rem;
}

.service-modern h3 {
  margin-bottom: 1rem;
  color: var(--dark);
}

.service-modern p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.showcase {
  padding: 90px 0;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.showcase-content h2 {
  margin-bottom: 1.5rem;
}

.showcase-content > p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.showcase-features {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 2.5rem;
}

.feature-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

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

.feature-text h4 {
  margin-bottom: 0.3rem;
  color: var(--dark);
}

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

.showcase-image img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

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

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

.testimonial {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.testimonial-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  color: var(--white);
  position: relative;
}

.quote-mark {
  font-family: 'Syne', sans-serif;
  font-size: 8rem;
  line-height: 1;
  opacity: 0.2;
  margin-bottom: -40px;
}

blockquote p {
  font-size: 1.3rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
}

blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

blockquote strong {
  font-size: 1.1rem;
  font-weight: 700;
}

blockquote span {
  font-size: 14px;
  opacity: 0.85;
}

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

.process-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 20px;
  align-items: start;
}

.process-step {
  grid-column: span 1;
  text-align: center;
}

.process-arrow {
  grid-column: span 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--primary);
  margin-top: 40px;
}

.process-step:nth-child(2) {
  grid-column: span 2;
}
.process-step:nth-child(4) {
  grid-column: span 2;
}
.process-step:nth-child(6) {
  grid-column: span 2;
}
.process-step:nth-child(8) {
  grid-column: span 2;
}

.process-icon {
  margin-bottom: 1.5rem;
}

.icon-circle {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  margin: 0 auto;
  box-shadow: 0 10px 30px rgba(0, 82, 204, 0.2);
}

.process-step h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}

.process-step p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.industries {
  padding: 90px 0;
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

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

.industry-card:hover {
  border-color: var(--primary);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.industry-card h3 {
  color: var(--dark);
  margin-bottom: 0.8rem;
}

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

.team-intro {
  padding: 90px 0;
  background: var(--light);
}

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

.team-image img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

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

.team-content p {
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.team-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 2rem;
}

.value-item {
  padding: 20px;
  background: var(--white);
  border-radius: 12px;
  border-left: 3px solid var(--primary);
}

.value-item strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 15px;
}

.value-item p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}

.final-cta {
  padding: 90px 0;
  background: var(--dark);
}

.cta-card {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  border-radius: 24px;
  padding: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.3);
}

.cta-content-box {
  flex: 1;
  color: var(--white);
}

.cta-content-box h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-content-box p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
}

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

.btn-primary-large {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 16px;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
}

.btn-primary-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.cta-note {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

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

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

.footer-info p {
  margin: 0;
  font-size: 14px;
  opacity: 0.8;
}

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

.footer-links a {
  font-size: 13px;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-links a:hover {
  opacity: 1;
  color: var(--secondary);
}

.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #1a2847 100%);
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  margin-bottom: 0.8rem;
  font-size: 2.5rem;
}

.page-hero p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin: 0;
}

.benefits-main,
.benefits-detail,
.mission-statement,
.mission-approach,
.mission-commitment,
.mission-future {
  padding: 80px 0;
}

.benefits-intro,
.mission-content,
.future-content {
  max-width: 800px;
  margin: 0 auto 3rem;
  text-align: center;
}

.benefits-grid,
.commitment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.benefit-card,
.commitment-card {
  background: var(--white);
  padding: 35px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.benefit-card:hover,
.commitment-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
  border-color: var(--primary);
}

.benefit-card h3,
.commitment-card h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.benefit-card p,
.commitment-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.benefits-detail {
  background: var(--light);
}

.detail-wrapper,
.approach-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}

.detail-image img,
.approach-image img {
  border-radius: 20px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.detail-list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.detail-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.detail-item h4 {
  margin-bottom: 0.3rem;
  color: var(--dark);
}

.detail-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

.benefits-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 70px 0;
}

.cta-box {
  text-align: center;
  color: var(--white);
  max-width: 700px;
  margin: 0 auto;
}

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

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.mission-lead {
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: var(--gray);
}

.mission-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 2.5rem;
}

.pillar {
  text-align: center;
  padding: 35px;
  background: var(--light);
  border-radius: 16px;
}

.pillar h3 {
  margin-bottom: 0.8rem;
  color: var(--dark);
}

.pillar p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
}

.mission-approach {
  background: var(--light);
}

.approach-list {
  list-style: none;
}

.approach-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
  color: var(--gray);
}

.mission-future {
  background: var(--dark);
  color: var(--white);
  text-align: center;
}

.future-content p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

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

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

.contact-info-section h2,
.contact-form-section h2 {
  margin-bottom: 1.5rem;
}

.contact-info-section p {
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}

.contact-item h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--dark);
}

.contact-item p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 500;
  font-size: 14px;
  color: var(--dark);
}

.form-group input,
.form-group textarea {
  padding: 14px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 82, 204, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: flex-start;
}

.checkbox-label {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  cursor: pointer;
  font-size: 13px;
  color: var(--gray);
}

.checkbox-label input[type='checkbox'] {
  margin-top: 3px;
  cursor: pointer;
}

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

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

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

.map-container {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

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

.thankyou-content,
.error-content {
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.thankyou-content h1,
.error-content h1 {
  margin-bottom: 1.2rem;
  color: var(--dark);
}

.thankyou-content p,
.error-content p {
  font-size: 1.05rem;
  color: var(--gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

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

.error-code {
  font-family: 'Syne', sans-serif;
  font-size: 7rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 1.5rem;
}

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

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

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

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

.policy-content h2 {
  margin-top: 3rem;
  margin-bottom: 1.2rem;
  color: var(--dark);
  font-size: 1.6rem;
}

.policy-content h3 {
  margin-top: 2rem;
  margin-bottom: 0.8rem;
  color: var(--dark);
  font-size: 1.2rem;
}

.policy-content p {
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}

@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-visual {
    height: 350px;
  }

  .services-grid-modern {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-arrow {
    display: none;
  }

  .process-step:nth-child(2),
  .process-step:nth-child(4),
  .process-step:nth-child(6),
  .process-step:nth-child(8) {
    grid-column: span 1;
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .team-values {
    grid-template-columns: 1fr;
  }

  .cta-card {
    flex-direction: column;
    text-align: center;
    padding: 50px 40px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .logo {
    font-size: 0.8rem;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: none;
    gap: 15px;
  }

  .nav.active {
    display: flex;
  }

  .hero-mega {
    padding: 60px 0;
    min-height: auto;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-stats {
    gap: 25px;
  }

  .stat-number {
    font-size: 1.6rem;
  }

  .hero-visual {
    display: none;
  }

  .services-grid-modern {
    grid-template-columns: 1fr;
  }

  .showcase-grid,
  .detail-wrapper,
  .approach-wrapper,
  .contact-wrapper,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .detail-image,
  .approach-image,
  .team-image {
    order: -1;
  }

  .benefits-grid,
  .commitment-grid,
  .mission-pillars,
  .industries-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer-links {
    justify-content: center;
  }

  .cta-content-box h2 {
    font-size: 1.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-mega {
    padding: 50px 0;
  }

  .hero-text h1 {
    font-size: 1.8rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn-primary,
  .btn-outline,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: 20px;
  }

  .services-modern,
  .showcase,
  .process,
  .industries,
  .team-intro,
  .final-cta,
  .benefits-main,
  .benefits-detail,
  .mission-statement,
  .mission-approach,
  .mission-commitment,
  .mission-future,
  .contact-main,
  .map-section,
  .policy-page {
    padding: 60px 0;
  }

  .privacy-content {
    flex-direction: column;
    text-align: center;
  }

  .privacy-buttons {
    width: 100%;
    justify-content: center;
  }

  .error-code {
    font-size: 4.5rem;
  }

  .cta-card {
    padding: 40px 25px;
  }

  .team-values {
    gap: 15px;
  }

  .value-item {
    padding: 15px;
  }

  blockquote p {
    font-size: 1.1rem;
  }

  .section-header.centered {
    margin-bottom: 2.5rem;
  }
}

@media (max-width: 360px) {
  .hero-text h1 {
    font-size: 1.6rem;
  }

  h1 {
    font-size: 1.8rem;
  }
  h2 {
    font-size: 1.5rem;
  }

  .service-modern,
  .benefit-card,
  .commitment-card,
  .industry-card,
  .pillar {
    padding: 25px;
  }

  .cta-card {
    padding: 35px 20px;
  }
}

@media (max-width: 320px) {
  body {
    font-size: 14px;
  }

  .hero-text h1 {
    font-size: 1.5rem;
  }

  h1 {
    font-size: 1.6rem;
  }
  h2 {
    font-size: 1.4rem;
  }
  h3 {
    font-size: 1.2rem;
  }

  .btn-primary,
  .btn-outline,
  .btn-secondary,
  .btn-primary-large {
    padding: 12px 24px;
    font-size: 14px;
  }

  .service-modern,
  .benefit-card,
  .commitment-card,
  .industry-card,
  .pillar,
  .value-item {
    padding: 20px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 6px 14px;
  }

  .stat-number {
    font-size: 1.4rem;
  }

  .stat-label {
    font-size: 12px;
  }
}
