﻿@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap");

:root {
  font-family: "Montserrat", "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  --bg: #ffffff;
  --surface: #ffffff;
  --surface-soft: #f5f5f5;
  --text: #111111;
  --muted: #333333;
  --primary: #1f6fb2;
  --accent: #27aaa9;
  --accent-warm: #f28c18;
  --accent-highlight: #6dde45;
  --border: #d9e8f7;
  --shadow: 0 18px 45px rgba(31, 111, 178, 0.12);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 60%, #f4f7fc 100%);
  color: var(--text);
  line-height: 1.7;
}

a {
  color: inherit;
}

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

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

header {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--border);
}

.topbar {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.6rem 2rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 2rem 1.25rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  transition: color 0.25s ease;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 2rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem 4rem;
}

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

.eyebrow {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.2vw, 4rem);
  line-height: 1.05;
  max-width: 55rem;
  margin-bottom: 1.5rem;
}

.hero p {
  max-width: 48rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cta-button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.95rem 1.9rem;
  font-weight: 700;
  text-decoration: none;
  transition:
    transform 0.25s ease,
    background 0.25s ease,
    color 0.25s ease;
}

.cta-button {
  background: var(--primary);
  color: #ffffff;
  box-shadow: 0 16px 35px rgba(31, 111, 178, 0.2);
}

.ghost-button {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: rgba(255, 255, 255, 0.94);
}

.cta-button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
}

.hero__stats {
  display: grid;
  gap: 1rem;
}

.stat-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 52, 96, 0.08);
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
}

.stat-card span {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 0.4rem;
}

.stat-card p {
  color: var(--muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
}

section {
  margin: 3.5rem 0;
}

h2 {
  color: var(--primary);
  font-size: clamp(2rem, 2.2vw, 2.6rem);
  margin-bottom: 1.5rem;
}

.services,
.feature-grid,
.about-grid,
.contact-grid {
  display: grid;
  gap: 1.6rem;
}

.services,
.feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.feature-card,
.contact-card,
.about-highlight {
  background: var(--surface);
  border-radius: 24px;
  padding: 2rem;
  box-shadow: var(--shadow);
}

.service-card h3,
.feature-card h3 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.service-card p,
.feature-card p,
.about-highlight p,
.contact-card p {
  color: var(--muted);
  line-height: 1.8;
}

.service-card:hover,
.feature-card:hover,
.contact-card:hover,
.about-highlight:hover {
  transform: translateY(-5px);
  transition: transform 0.25s ease;
}

.feature-block {
  background: linear-gradient(
    180deg,
    rgba(39, 170, 169, 0.08),
    rgba(255, 255, 255, 0.95)
  );
  border-radius: 32px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}

.about-section {
  padding: 1rem 0;
}

.about-grid {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.hero__visual,
.brand-image {
  display: grid;
  gap: 1.5rem;
}

.hero__image,
.brand-image img,
.brand-icon {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 24px;
}

.hero__visual {
  max-width: 420px;
  margin: 0 auto;
}

.brand-icon {
  width: 140px;
}

.about-grid ul {
  list-style: none;
  display: grid;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.about-grid li {
  position: relative;
  padding-left: 1.5rem;
  color: var(--muted);
}

.about-grid li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent-warm);
  font-weight: 800;
}

.about-highlight {
  min-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.9;
}

.contact-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-card h2,
.contact-card h3 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-card a {
  color: var(--primary);
  text-decoration: none;
}

.contact-cta {
  background: linear-gradient(180deg, #ffffff 0%, #eaf6ff 100%);
}

footer {
  padding: 2rem 2rem 3rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 980px) {
  .hero,
  .about-grid,
  .contact-grid,
  .services,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  .topbar,
  .navbar,
  .hero,
  .hero__actions,
  .container {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }

  .hero {
    padding-top: 3rem;
  }

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

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .cta-button,
  .ghost-button {
    width: 100%;
  }
}
