/* styles.css */
*, *:before, *:after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #1fa67a;
  --primary-dark: #1b926c;
  --dark: #2d2d2d;
  --darker: #1a1a1a;
  --text: #6b6b6b;
  --text-heading: #454545;
  --white: #fff;
  --light-bg: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

body {
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

.top-bar {
  color: #aaa;
  background: #333;
  padding: 8px 0;
  font-size: 13px;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.top-bar a {
  color: #aaa;
  text-decoration: none;
  transition: color .2s;
}

.top-bar a:hover {
  color: var(--white);
}

.lang-selector {
  display: flex;
  gap: 12px;
}

.lang-selector a.active {
  color: var(--white);
}

.header {
  background: var(--white);
  display: flex;
  position: sticky;
  z-index: 100;
  align-items:  center;
  height: 66px;
  top: 0;
  box-shadow: 0 1px 3px #00000014;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items:  center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.logo {
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -.5px;
  font-size: 24px;
  font-weight: 700;
}

.logo span {
  color: var(--text-heading);
}

nav {
  display: flex;
  gap: 28px;
}

nav a {
  color: var(--text-heading);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .5px;
  transition: color .2s;
  font-size: 14px;
  font-weight: 500;
}

nav a:hover {
  color: var(--primary);
}

.nav-toggle {
  display: none;
  cursor: pointer;
  color: var(--text-heading);
  background: none;
  border: none;
  font-size: 24px;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--darker);
  height: 500px;
}

.hero-slide {
  position: absolute;
  display: flex;
  opacity: 0;
  background-position: center;
  background-size: cover;
  justify-content: center;
  align-items:  center;
  transition: opacity .8s;
  inset: 0;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide:after {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #1fa67ad9, #1b926cb3);
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  max-width: 800px;
  padding: 0 40px;
}

.hero-content h1 {
  text-shadow: 0 2px 4px #0003;
  margin-bottom: 16px;
  font-size: 48px;
  font-weight: 700;
}

.hero-content p {
  opacity: .9;
  font-size: 20px;
}

.hero-dots {
  position: absolute;
  z-index: 2;
  display: flex;
  gap: 10px;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}

.hero-dot {
  cursor: pointer;
  background: #fff6;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: background .3s;
}

.hero-dot.active {
  background: var(--white);
}

.features {
  background: var(--primary);
  padding: 60px 0;
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.feature-card {
  text-align: center;
  color: var(--white);
}

.feature-icon {
  display: flex;
  background: #ffffff26;
  border-radius: 50%;
  justify-content: center;
  align-items:  center;
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.about {
  background: var(--white);
  padding: 80px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title h2 {
  color: var(--text-heading);
  margin-bottom: 12px;
  font-size: 32px;
}

.section-title p {
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items:  center;
  gap: 60px;
}

.about-text h3 {
  color: var(--text-heading);
  margin-bottom: 16px;
  font-size: 24px;
}

.about-text p {
  margin-bottom: 16px;
  font-size: 15px;
}

.about-image {
  background: var(--light-bg);
  display: flex;
  color: var(--primary);
  border-radius: 8px;
  justify-content: center;
  align-items:  center;
  height: 320px;
  font-size: 48px;
}

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

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

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.recognition-card {
  background: var(--white);
  border-radius: 8px;
  padding: 32px;
  box-shadow: 0 2px 8px #0000000f;
}

.recognition-card h4 {
  color: var(--text-heading);
  margin-bottom: 12px;
  font-size: 16px;
  font-weight: 600;
}

.recognition-card p {
  font-size: 14px;
  line-height: 1.6;
}

.recognition-card .badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  border-radius: 4px;
  margin-bottom: 12px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
}

blockquote {
  border-left: 3px solid var(--primary);
  color: var(--text);
  padding-left: 16px;
  font-style: italic;
}

.policies {
  background: var(--white);
  padding: 48px 0;
}

.policies-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.policy-link {
  color: var(--primary);
  text-decoration: none;
  border: 1px solid var(--primary);
  border-radius: 4px;
  padding: 8px 16px;
  transition: all .2s;
  font-size: 14px;
  font-weight: 500;
}

.policy-link:hover {
  background: var(--primary);
  color: var(--white);
}

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

.contact-inner {
  text-align: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact h2 {
  margin-bottom: 12px;
  font-size: 32px;
}

.contact p {
  opacity: .9;
  margin-bottom: 8px;
  font-size: 16px;
}

.contact .phone {
  margin-top: 16px;
  font-size: 28px;
  font-weight: 700;
}

.footer {
  background: var(--dark);
  color: #999;
  padding: 32px 0;
  font-size: 13px;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items:  center;
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer a {
  color: #999;
  text-decoration: none;
  transition: color .2s;
}

.footer a:hover {
  color: var(--white);
}

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

@media (width <= 768px) {
  .features-inner, .about-grid, .recognition-grid {
    grid-template-columns: 1fr;
  }

  .hero-content h1 {
    font-size: 32px;
  }

  nav {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  nav.open {
    display: flex;
    position: absolute;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    top: 66px;
    left: 0;
    right: 0;
    box-shadow: 0 4px 8px #0000001a;
  }
}
