/* === Global === */
:root {
  --azure: #013f65;
  --light: #e6e5e0;
  --accent: #caa758;
  --text-main: #013f65;
  --text-muted: rgba(1, 63, 101, 0.8);
  --border-soft: rgba(1, 63, 101, 0.1);
  --radius-lg: 1.25rem;
  --shadow-card: 0 18px 45px rgba(0, 0, 0, 0.08);
}

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

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text-main);
  background: #ffffff;
  line-height: 1.5;
  scroll-behavior: smooth;
}

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

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

/* Layout helpers */
.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section {
  position: relative;
  padding: 5rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(230, 229, 224, 0.3), transparent);
  z-index: -1;
}

.section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.section-title {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 3vw, 2.9rem);
  font-weight: 600;
  color: var(--azure);
}

.section-subtitle {
  margin-top: 1rem;
  max-width: 44rem;
  margin-left: auto;
  margin-right: auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* NAV */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.9);
  border-bottom: 1px solid var(--border-soft);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1rem;
  max-width: 1120px;
  margin: 0 auto;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  border-radius: 0.75rem;
}

.nav-brand span {
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--azure);
}

.nav-links {
  display: none;
  gap: 2rem;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: #000;
}

.nav-cta {
  padding: 0.5rem 1.1rem;
  border-radius: 0.9rem;
  background: var(--azure);
  color: #fff;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.nav-cta:hover {
  opacity: 0.9;
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
}

/* HERO */
.hero {
  position: relative;
  overflow: hidden;
  background: rgba(230, 229, 224, 0.35);
  /*background-image:url('image-hero.jpg');*/
  background-repeat:no-repeat;
  background-size: cover;
  background-position:100% 75%;
  padding: 6rem 0 3rem;
  text-align: center;
}

.hero-bg-1,
.hero-bg-2 {
  position: absolute;
  inset: 0;
  opacity: 0.5;
  pointer-events: none;
  z-index: -1;
}

.hero-bg-1::before {
  content: "";
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 480px;
  border-radius: 999px;
  background: radial-gradient(circle at center, #e6e5e0, #ffffff);
  filter: blur(40px);
}

.hero-bg-2::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 220px;
  background: linear-gradient(to top, #ffffff, transparent);
}

.hero-title {
  font-size: clamp(2.6rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--azure);
  /*color: white;*/
  letter-spacing: 0.01em;
}

.hero-text {
  margin-top: 1.5rem;
  font-size: 1.05rem;
  color: var(--text-muted);
  /*color: white;*/
  max-width: 46rem;
  margin-left: auto;
  margin-right: auto;
}

/* FEATURES (PROCESS + BENEFITS) */
.two-col-grid {
  display: grid;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .two-col-grid {
    grid-template-columns: 1.1fr 1fr;
  }
}

.subheading {
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 1rem;
}

.process-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.process-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.process-number {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--azure);
  color: #fff;
  font-weight: 700;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-item-title {
  font-weight: 600;
  color: var(--azure);
}

.process-item-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
}

.benefit-check {
  width: 24px;
  height: 24px;
  border-radius: 99px;
  border: 2px solid var(--azure);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

.benefit-check::before {
  content: "✓";
  font-size: 0.85rem;
  color: var(--azure);
  font-weight: 700;
}

.benefit-title {
  font-weight: 600;
  color: var(--azure);
}

.benefit-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CARDS (Solutions / Integrations / FAQ) */
.cards-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 992px) {
  .cards-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

.card {
  position: relative;
  border-radius: var(--radius-lg);
  background: #ffffff;
  padding: 1.5rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card-gradient-border::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: linear-gradient(to bottom right, #e6e5e0, rgba(202, 167, 88, 0.5));
  opacity: 0.7;
  z-index: -2;
}

.card-gradient-border::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #ffffff;
  z-index: -1;
}

.solution-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 0.75rem;
}

.pill-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pill-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  background: rgba(230, 229, 224, 0.6);
  color: rgba(1, 63, 101, 0.9);
  font-size: 0.9rem;
}

.pill-item .pill-check {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 2px solid var(--azure);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  flex-shrink: 0;
}

.pill-item .pill-check::before {
  content: "✓";
  color: var(--azure);
  font-weight: 700;
}

.integration-icon {
  width: 40px;
  height: 40px;
  border-radius: 1rem;
  background: var(--light);
  flex-shrink: 0;
}

.integration-item {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.integration-title {
  font-weight: 600;
  color: var(--azure);
  margin-bottom: 0.25rem;
}

.integration-text {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* CTA */
.cta-panel {
  max-width: 640px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  background: var(--azure);
  color: #ffffff;
  padding: 1.8rem 1.5rem;
  box-shadow: 0 22px 55px rgba(1, 63, 101, 0.35);
}

@media (min-width: 768px) {
  .cta-inner {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 1.5rem;
    align-items: center;
  }
}

.cta-title {
  font-size: 1.5rem;
  font-weight: 600;
}

.cta-text {
  margin-top: 0.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
}

.cta-form {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-top: 1rem;
}

.input {
  width: 100%;
  padding: 0.55rem 0.9rem;
  border-radius: 0.9rem;
  border: none;
  font-size: 0.9rem;
  color: var(--azure);
}

.btn-primary {
  width: 100%;
  border-radius: 0.9rem;
  border: none;
  padding: 0.7rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  background: #ffffff;
  color: var(--azure);
}

.btn-primary:hover {
  opacity: 0.92;
}

/* FAQ */
.faq-card {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  background: #ffffff;
  height: 100%;
}

.faq-q {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--azure);
}

.faq-a {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* FOOTER */
.footer {
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 0;
}

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

@media (min-width: 768px) {
  .footer-inner {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
  }
}

.footer-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  font-size: 0.9rem;
  color: var(--azure);
}

@media (min-width: 768px) {
  .footer-columns {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.footer-heading {
  font-weight: 600;
}

.footer-list {
  list-style: none;
  margin-top: 0.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  opacity: 0.8;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(1, 63, 101, 0.6);
}

.footer-brand {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.footer-brand img {
  width: 32px;
  height: 32px;
  border-radius: 0.75rem;
  object-fit: contain;
}
