* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: "Arial", sans-serif;
  background: #F6F8FB;
  color: #2A3441;
  line-height: 1.7;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.site-header {
  background: #0B1220;
  color: #F6F8FB;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.logo-footer {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.main-nav {
  display: flex;
  gap: 24px;
}
.main-nav a {
  color: #F6F8FB;
  text-decoration: none;
  font-weight: 600;
}
.nav-toggle {
  display: none;
}
.burger {
  display: none;
  color: #F6F8FB;
  font-weight: 600;
  cursor: pointer;
}
.close-menu {
  display: none;
}
.hero, .page-hero {
  padding: 80px 0;
  background: #0B1220;
  color: #F6F8FB;
}
.hero-grid, .page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: center;
}
.hero h1, .page-hero h1 {
  font-size: 42px;
  margin-bottom: 16px;
}
.hero-stats {
  display: flex;
  gap: 24px;
  margin-top: 24px;
}
.hero-stats strong {
  color: #B8FF3D;
  font-size: 24px;
  display: block;
}
section {
  padding: 70px 0;
}
.proof, .services-preview, .case-studies, .methodology, .market-focus, .faq, .keywords, .contact-section,
.about-story, .values, .localization, .tooling, .office-info, .cta, .services-list, .service-process,
.industries, .compliance, .contact-details, .consultation, .response-standards, .legal, .thanks {
  background: #F6F8FB;
}
h2 {
  font-size: 32px;
  margin-bottom: 16px;
  color: #0B1220;
}
.cards, .proof-grid, .case-grid, .steps, .faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 24px;
}
.card, .case, .step {
  background: #FFFFFF;
  padding: 24px;
  border: 1px solid #E4E8EF;
  border-radius: 8px;
}
.card h3, .case h3, .step h3 {
  margin-bottom: 12px;
}
.focus-list {
  list-style: square;
  padding-left: 20px;
  margin-top: 16px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.contact-form {
  display: grid;
  gap: 12px;
}
.contact-form input, .contact-form textarea {
  padding: 12px;
  border: 1px solid #CAD2DD;
  border-radius: 6px;
  font-size: 16px;
}
.btn {
  background: #00D1FF;
  color: #0B1220;
  border: none;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: none;
  display: inline-block;
}
.btn-outline {
  background: transparent;
  border: 1px solid #00D1FF;
  color: #00D1FF;
}
.site-footer {
  background: #0B1220;
  color: #F6F8FB;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 24px;
}
.footer-nav a, .footer-legal a {
  color: #F6F8FB;
  text-decoration: none;
  display: block;
  margin-top: 8px;
}
.footer-bottom {
  border-top: 1px solid #2A3441;
  padding-top: 16px;
  margin-top: 24px;
  text-align: center;
}
.cookie-banner {
  background: #2A3441;
  color: #F6F8FB;
  padding: 16px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  display: none;
}
.cookie-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.thanks .submission-details {
  background: #FFFFFF;
  padding: 20px;
  border: 1px solid #E4E8EF;
  border-radius: 8px;
  margin-top: 20px;
}
@media (max-width: 900px) {
  .hero-grid, .page-hero-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 768px) {
  .burger {
    display: inline-block;
  }
  .main-nav {
    position: fixed;
    top: 0;
    left: 0;
    background: #0B1220;
    height: 100vh;
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 32px;
    transform: translateX(-100%);
    transition: none;
  }
  .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #F6F8FB;
    font-size: 24px;
    cursor: pointer;
    display: block;
  }
  .nav-toggle:checked + .burger + .main-nav {
    transform: translateX(0);
  }
}
@media (max-width: 480px) {
  .hero h1, .page-hero h1 {
    font-size: 32px;
  }
  .hero-stats {
    flex-direction: column;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}