:root {
  --bg: #f7fafc;
  --bg-secondary: #ffffff;
  --primary: #193d71;
  --primary-light: #2b5ea8;
  --accent: #00a9cc;
  --text: #0f172a;
  --text-light: #5b6472;
  --border: #e8edf3;
  --shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
  --radius: 22px;
  --container: 1180px;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
} /* NAVBAR */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(247, 250, 252, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.nav-wrapper {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--primary);
}
.logo span {
  color: var(--accent);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: var(--text-light);
  transition: 0.2s ease;
  font-weight: 500;
}
.nav-links a:hover {
  color: var(--primary);
}
.nav-cta {
  padding: 12px 18px;
  border-radius: 14px;
  background: var(--primary);
  color: white !important;
  font-weight: 700;
  transition: 0.2s ease;
}
.nav-cta:hover {
  background: var(--primary-light);
}
.mobile-btn {
  display: none;
  background: none;
  border: none;
  color: var(--primary);
  font-size: 2rem;
  cursor: pointer;
} /* HERO */
.hero {
  padding: 120px 0 90px;
  background:
    radial-gradient(circle at top right, rgba(0, 169, 204, 0.08), transparent 30%),
    linear-gradient(to bottom, #ffffff, #f7fafc);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0, 169, 204, 0.08);
  border: 1px solid rgba(0, 169, 204, 0.18);
  color: var(--accent);
  padding: 10px 16px;
  border-radius: 999px;
  margin-bottom: 24px;
  font-size: 0.95rem;
  font-weight: 600;
}
h1 {
  font-size: clamp(3rem, 6vw, 4.5em);
  line-height: 0.95;
  letter-spacing: -0.06em;
  margin-bottom: 24px;
  color: var(--primary);
}
.accent-word {
  white-space: nowrap;
}
.badge-in-title {
  color: var(--accent);
  white-space: nowrap;
}
.hero p {
  color: var(--text-light);
  font-size: 1.15rem;
  max-width: 650px;
  margin-bottom: 40px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn {
  padding: 16px 24px;
  border-radius: 14px;
  font-weight: 700;
  transition: 0.25s ease;
}
.btn-primary {
  background: var(--primary);
  color: white;
}
.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
}
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--primary);
  background: white;
}
.btn-secondary:hover {
  background: #f3f6fa;
} /* HERO CARD */
.hero-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.hero-card h3 {
  margin-bottom: 20px;
  font-size: 1.4rem;
  color: var(--primary);
}
.hero-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.hero-list div {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.hero-list span {
  color: var(--accent);
  font-weight: 700;
}
.hero-list p {
  margin: 0;
  font-size: 1rem;
} /* SECTIONS */
section {
  padding: 80px 0;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 20px;
  letter-spacing: -0.05em;
  color: var(--primary);
}
.section-subtitle {
  color: var(--text-light);
  max-width: 700px;
  margin-bottom: 50px;
  font-size: 1.05rem;
} /* SERVICES */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: 0.3s ease;
  box-shadow: var(--shadow);
}
.service-card:hover {
  transform: translateY(-6px);
}
.service-card h3 {
  margin-bottom: 14px;
  color: var(--primary);
  font-size: 1.3rem;
}
.service-card p {
  color: var(--text-light);
}
/* Templates section */
#templates {
  padding: 80px 0;
  background: #f8fafc;
}
.templates-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
  margin-top: 40px;
}
.template-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  max-width: 500px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s;
}
.template-card:hover {
  transform: translateY(-6px);
}
.template-preview {
  position: relative;
}
.template-preview img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}
.template-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--accent);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
}
.template-info {
  padding: 24px;
}
.template-info h3 {
  font-size: 1.4rem;
  margin-bottom: 12px;
}
.template-actions {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}
.btn-outline-small {
  border: 1px solid var(--primary);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
  transition: 0.2s;
}
.btn-outline-small:hover {
  background: var(--primary);
  color: white;
}
.btn-small {
  background: var(--primary);
  border-radius: 40px;
  padding: 8px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
} /* ABOUT */
.about {
  background: #ffffff;
}
.about-content {
  max-width: 850px;
}
.about p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 1.05rem;
} /* CTA */
.cta-box {
  background: linear-gradient(135deg, rgba(25, 61, 113, 0.03), rgba(0, 169, 204, 0.06));
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 60px;
  text-align: center;
  box-shadow: var(--shadow);
}
.cta-box h2 {
  font-size: 2.6rem;
  margin-bottom: 18px;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.cta-box p {
  color: var(--text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
} /* FOOTER */
footer {
  border-top: 1px solid var(--border);
  background: white;
  padding: 40px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-content p {
  color: var(--text-light);
} /* MOBILE */
@media (max-width: 900px) {
  .hero {
    padding-top: 80px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .nav-links {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 30px;
    display: none;
  }
  .nav-links.active {
    display: flex;
  }
  .mobile-btn {
    display: block;
  }
  .nav-cta {
    width: 100%;
    text-align: center;
  }
  h1 {
    font-size: 3rem;
  }
  .cta-box {
    padding: 40px 24px;
  }
  .cta-box h2 {
    font-size: 2rem;
  }
}
@media (max-width: 640px) {
  section {
    padding: 20px 0;
  }
  h1 {
    font-size: 2rem;
  }
  .section-title {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1rem;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .hero-card,
  .service-card,
  .cta-box {
    padding: 24px;
  }
}

#services,
#about,
#contact {
  scroll-margin-top: 80px;
}
