@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Source+Sans+3:wght@400;500;600&display=swap');

:root {
  --background: #ffffff;
  --foreground: #1d293a;
  --card: #f7f9fb;
  --secondary: #f7f9fb;
  --muted-foreground: #6b7684;
  --primary: #147a4c;
  --primary-foreground: #ffffff;
  --accent: #00c896;
  --accent-foreground: #ffffff;
  --border: #e2e8f0;
  --radius: 0.5rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--foreground);
  font-family: 'Source Sans 3', system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: 'Inter', system-ui, sans-serif;
  margin: 0;
}

p {
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background-color 0.15s ease, opacity 0.15s ease;
  white-space: nowrap;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-lg {
  padding: 0.85rem 1.75rem;
  font-size: 0.9375rem;
}

.btn-full {
  width: 100%;
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover {
  background: color-mix(in srgb, var(--primary) 90%, black);
}

.btn-accent {
  background: var(--accent);
  color: var(--accent-foreground);
}
.btn-accent:hover {
  background: color-mix(in srgb, var(--accent) 90%, black);
}

.btn-outline {
  background: transparent;
  border-color: var(--border);
  color: var(--foreground);
}
.btn-outline:hover {
  background: var(--secondary);
}

.icon-inline {
  width: 1rem;
  height: 1rem;
}

.text-primary {
  color: var(--primary);
}

.eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--border);
}

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

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-img {
  height: 4.5rem;
  width: auto;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-desktop a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  transition: color 0.15s ease;
}

.nav-desktop a:hover {
  color: var(--foreground);
}

.menu-toggle {
  background: none;
  border: none;
  color: var(--foreground);
  cursor: pointer;
  padding: 0.25rem;
}

.menu-toggle svg {
  width: 24px;
  height: 24px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--background);
  padding: 0.5rem 1.5rem 1rem;
}

.nav-mobile.open {
  display: flex;
}

.nav-mobile a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--muted-foreground);
  padding: 0.5rem 0;
}

@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .nav-mobile {
    display: none !important;
  }
}

/* Modal */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 60;
  background: rgba(15, 23, 42, 0.5);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.modal-box {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.75rem;
  max-width: 22rem;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.modal-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}

.modal-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: var(--accent);
}

.modal-box h3 {
  font-size: 1.125rem;
  font-weight: 700;
}

.modal-box p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

/* Hero */
.hero {
  padding-top: 5.5rem;
  overflow: hidden;
}

.hero-inner {
  display: flex;
  min-height: 600px;
}

.hero-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 1.5rem;
  flex: 1;
}

.hero-text h1 {
  font-size: 2.25rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--foreground);
}

.hero-desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 32rem;
  line-height: 1.7;
}

.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-image {
  display: none;
  flex-shrink: 0;
}

.hero-image img {
  height: 100%;
  width: auto;
  object-fit: contain;
}

@media (min-width: 1024px) {
  .hero-text {
    padding: 6rem 4rem;
  }
  .hero-text h1 {
    font-size: 3.75rem;
  }
  .hero-image {
    display: block;
  }
}

@media (min-width: 1280px) {
  .hero-text h1 {
    font-size: 4rem;
  }
}

/* Trust bar */
.trust-bar {
  background: var(--primary);
}

.trust-inner {
  padding: 3rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 2.5rem;
  width: 100%;
  justify-content: center;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-item:first-child {
  border-top: none;
}

.trust-item svg {
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
}

.trust-item span {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-foreground);
}

.icon-accent {
  color: var(--accent);
}

@media (min-width: 640px) {
  .trust-inner {
    flex-direction: row;
  }
  .trust-item {
    width: auto;
    border-top: none;
    border-left: 1px solid rgba(255, 255, 255, 0.2);
  }
  .trust-item:first-child {
    border-left: none;
  }
}

/* Sections */
.section {
  padding: 5rem 0;
  background: var(--background);
}

.section-muted {
  background: var(--secondary);
}

.section-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section-head h2 {
  font-size: 1.875rem;
  font-weight: 700;
}

.section-sub {
  margin-top: 1rem;
  color: var(--muted-foreground);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 1024px) {
  .section-head h2 {
    font-size: 2.25rem;
  }
}

/* Cards */
.cards-grid-2 {
  display: grid;
  gap: 1.5rem;
  max-width: 64rem;
  margin: 0 auto 1.5rem;
}

@media (min-width: 768px) {
  .cards-grid-2 {
    grid-template-columns: 1fr 1fr;
  }
}

.card {
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 1.5rem;
}

.card-wide {
  max-width: 64rem;
  margin: 0 auto 1.5rem;
}

.card-wide:last-child {
  margin-bottom: 0;
}

.card-icon {
  height: 2.5rem;
  width: 2.5rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-icon svg {
  width: 1.25rem;
  height: 1.25rem;
  color: var(--accent);
}

.card-icon-sm {
  height: 2rem;
  width: 2rem;
  border-radius: var(--radius);
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card-icon-sm svg {
  width: 1rem;
  height: 1rem;
  color: var(--accent);
}

.card h3 {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.card-head-inline {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.card-head-inline h3 {
  font-size: 1rem;
  margin-bottom: 0;
}

.card-text {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 0.75rem;
}

.list-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}

.dot-list {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.25rem;
}

.dot-list:last-child {
  margin-bottom: 0;
}

.dot-list li {
  display: flex;
  gap: 0.5rem;
  padding: 0.15rem 0;
}

.dot-list li::before {
  content: "·";
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.pill-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.pill {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 500;
  background: var(--secondary);
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--muted-foreground);
}

.pill-accent {
  background: color-mix(in srgb, var(--accent) 10%, transparent);
  border-color: color-mix(in srgb, var(--accent) 20%, transparent);
  color: var(--accent);
}

/* About */
.about-grid {
  display: grid;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-desc {
  margin-top: 1.5rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}

.check-list {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.check-list svg {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.check-list span {
  font-size: 0.875rem;
}

.quote-box {
  background: var(--secondary);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-box p {
  color: var(--muted-foreground);
  text-align: center;
  font-style: italic;
  line-height: 1.7;
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 1.5rem;
  max-width: 48rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: var(--background);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 2rem;
}

.contact-card svg {
  width: 1.5rem;
  height: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-label {
  font-weight: 600;
  font-size: 0.875rem;
}

.contact-value {
  color: var(--muted-foreground);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.social-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.social-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
  width: 2.5rem;
  border-radius: 999px;
  background: var(--background);
  border: 1px solid var(--border);
  color: var(--muted-foreground);
  transition: color 0.15s ease, border-color 0.15s ease;
}

.social-btn:hover {
  color: var(--accent);
  border-color: color-mix(in srgb, var(--accent) 50%, transparent);
}

.social-btn svg {
  width: 1rem;
  height: 1rem;
}

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

/* Footer */
.site-footer {
  background: var(--foreground);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.footer-logo {
  height: 3rem;
  width: auto;
  filter: brightness(2);
}

.footer-social {
  background: transparent;
  border: none;
  color: rgba(255, 255, 255, 0.5);
}

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

.footer-copy {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  text-align: center;
}

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
  }
  .footer-copy {
    text-align: right;
  }
}
