@font-face {
  font-family: 'Inter';
  src: url('fonts/inter_regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

body {
  font-family: 'Inter', Arial, sans-serif;
}

:root {
  --primary: #1a2238;
  --accent: #9fef00;
  --background: #f5f7fa;
  --surface: #fff;
  --text: #232946;
  --muted: #eaf6fb;
  --radius: 16px;
 --shadow: 0 4px 24px rgba(26,34,56,0.07);
}

body {
  background: var(--background);
  color: var(--text);
  font-family: 'Inter', Arial, sans-serif;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding: 0 1rem;
}

header {
  background: var(--surface);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.5rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: bold;
}

.logo-text {
  font-family: 'Inter', Arial, sans-serif;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1px;
}

nav {
  display: flex;
  align-items: center;
  gap: 2rem;
}

nav a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  position: relative;
  padding: 0.2rem 0;
  transition: color 0.2s;
}

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

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
}

@media (max-width: 800px) {
  nav {
    display: none;
    flex-direction: column;
    background: var(--surface);
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    box-shadow: var(--shadow);
    padding: 1.5rem 0;
    gap: 1.5rem;
  }
  nav.open {
    display: flex;
  }
  .nav-toggle {
    display: flex;
  }
}

/* Hero */
.hero {
  background: linear-gradient(90deg, var(--primary) 60%, var(--accent) 100%);
  color: #fff;
  padding: 4rem 0 2.5rem 0;
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.hero-content .subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  color: #eaf6fb;
}

.hero-img {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-img {
    margin-top: 2rem;
  }
}

/* Card Grids */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  width: 100%;
  margin: 2rem 0 0 0;
}

.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  position: relative;
  overflow: hidden;
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.card svg {
  margin-bottom: 1rem;
}

.card:hover {
  transform: translateY(-6px) scale(1.03);
  box-shadow: 0 8px 32px rgba(159,239,0,0.12);
}

.value-prop, .services, .testimonials, .cta {
  padding: 4rem 0 2rem 0;
}

.value-prop h2,
.services h2,
.testimonials h2 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--primary);
}

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

.btn-primary, .btn-secondary {
  display: inline-block;
  padding: 0.9rem 2.2rem;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: 1rem;
  transition: background 0.2s, color 0.2s, box-shadow 0.2s;
  box-shadow: 0 2px 8px rgba(26,34,56,0.08);
  border: none;
  cursor: pointer;
}

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

.btn-primary:hover {
  background: var(--primary);
  color: #fff;
}

.btn-secondary {
  background: var(--primary);
  color: #fff;
}

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

blockquote.card {
  font-style: italic;
  border-left: 4px solid var(--accent);
  padding-left: 1.5rem;
  background: var(--muted);
  color: var(--primary);
  min-height: 140px;
}

blockquote .client {
  display: block;
  margin-top: 1rem;
  font-size: 0.95rem;
  color: var(--primary);
  font-style: normal;
}

.cta {
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  padding: 3rem 0;
}

.cta .btn-primary {
  margin-top: 1.5rem;
}

.footer-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 2rem 0 1rem 0;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: bold;
  font-size: 1.2rem;
}

.footer-links a {
  color: var(--primary);
  text-decoration: none;
  margin-left: 2rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 0.95rem;
  color: #888;
}

@media (max-width: 700px) {
  .footer-flex {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  .hero-content h1 {
    font-size: 2rem;
  }
  .value-prop h2, .services h2, .testimonials h2 {
    font-size: 1.4rem;
  }
}

/* Team photos */
.team-photo {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

.team-bio {
  font-size: 0.98rem;
  color: #666;
  margin-top: 0.5rem;
}

/* Contact form */
.contact-form {
  max-width: 420px;
  margin: 2rem auto 0 auto;
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.contact-form .form-row {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.contact-form label {
  font-weight: 600;
  color: var(--primary);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.7rem;
  background: #f8fafc;
  transition: border 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border: 1.5px solid var(--accent);
  outline: none;
}

.contact-form button {
  align-self: flex-end;
}

@media (max-width: 600px) {
  .container { width: 98%; }
  h1, h2 { font-size: 1.5rem; }
  .hero-content h1 { font-size: 1.3rem; }
  .card-grid { gap: 1.2rem; }
}
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInMove 1s forwards;
}
@keyframes fadeInMove {
  to {
    opacity: 1;
    transform: none;
  }
}
