@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@400;500;600&display=swap');

:root {
  --bg:           #F5EBE0;
  --dark:         #1B2C3A;
  --blue:         #4AAECF;
  --blue-light:   #EBF5FA;
  --orange:       #D96744;
  --orange-light: #FAF0EB;
  --green:        #6FAB72;
  --green-light:  #EDF5EC;
  --text:         #1a2530;
  --muted:        #4a5a65;
  --border:       #E5E0D8;
}

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

html { font-size: 120%; }

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

/* ── NAV ─────────────────────────────────────── */
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--dark);
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  border: 2.5px solid var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--blue);
}

.nav-logo-text strong {
  display: block;
  font-weight: 600;
  font-size: 1rem;
  color: var(--dark);
}

.nav-logo-text span {
  display: block;
  font-size: 0.62rem;
  letter-spacing: 2px;
  color: var(--muted);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

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

.btn-nav {
  background-color: var(--dark);
  color: #fff;
  text-decoration: none;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: background 0.2s;
}

.btn-nav:hover { background-color: #273d52; }

/* ── TICKER ──────────────────────────────────── */
.ticker {
  background: var(--dark);
  padding: 15px 0;
  display: flex;
  gap: 48px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-size: 0.88rem;
  font-weight: 500;
  white-space: nowrap;
}

.ticker-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── FOOTER ──────────────────────────────────── */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 52px 60px 36px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
}

.footer-brand {
  max-width: 260px;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.65;
}

.footer-cols {
  display: flex;
  gap: 60px;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 14px;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  text-decoration: none;
  color: var(--text);
  font-size: 1.05rem;
  transition: color 0.2s;
}

.footer-col ul li a:hover { color: var(--orange); }

/* ── BUTTONS ─────────────────────────────────── */
.btn-primary {
  display: inline-block;
  background-color: var(--dark);
  color: #fff;
  text-decoration: none;
  padding: 13px 28px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}

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

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--dark);
  text-decoration: none;
  padding: 13px 24px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  transition: border-color 0.2s, color 0.2s;
  cursor: pointer;
}

.btn-outline:hover { border-color: var(--dark); }

.btn-white {
  display: inline-block;
  background-color: #fff;
  color: var(--dark);
  text-decoration: none;
  padding: 13px 32px;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: opacity 0.2s;
}

.btn-white:hover { opacity: 0.9; }

/* ── PAGE WRAPPER ────────────────────────────── */
.page-content {
  max-width: 1100px;
  margin: 0 auto;
  padding: 72px 40px;
}

/* ── PAGE HEADER (inner pages) ───────────────── */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 72px 60px;
  text-align: center;
}

.page-hero .label {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 18px;
  font-weight: 600;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 18px;
}

.page-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.75;
}

/* ── SECTION LABEL ───────────────────────────── */
.section-label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 20px;
}

.section-label::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--orange);
  flex-shrink: 0;
}

/* ── DECORATIVE CIRCLE ───────────────────────── */
.deco-circle {
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
}

.deco-circle-blue {
  background: repeating-linear-gradient(
    -45deg,
    rgba(74,174,207,0.12),
    rgba(74,174,207,0.12) 1.5px,
    rgba(74,174,207,0.04) 1.5px,
    rgba(74,174,207,0.04) 14px
  );
  border: 3px solid var(--blue);
}

.deco-circle-green {
  background: repeating-linear-gradient(
    -45deg,
    rgba(111,171,114,0.14),
    rgba(111,171,114,0.14) 1.5px,
    rgba(111,171,114,0.04) 1.5px,
    rgba(111,171,114,0.04) 14px
  );
  border: 3px dashed var(--green);
}

/* ── TAGS ────────────────────────────────────── */
.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 7px 16px;
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 500;
}

.tag-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.tag-dot.orange { background: var(--orange); }
.tag-dot.blue   { background: var(--blue); }
.tag-dot.green  { background: var(--green); }

/* ── FLOATING BADGE ──────────────────────────── */
.badge-card {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 180px;
}

.badge-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.badge-icon.orange { background: var(--orange-light); color: var(--orange); }
.badge-icon.green  { background: var(--green-light);  color: var(--green); }
.badge-icon.blue   { background: var(--blue-light);   color: var(--blue); }

.badge-card strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--dark);
}

.badge-card small {
  font-size: 0.75rem;
  color: var(--muted);
}

/* ── CARDS GRILLE ────────────────────────────── */
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.service-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px 24px;
  text-decoration: none;
  color: var(--text);
  border: 1px solid var(--border);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.service-card.card-orange { background: var(--orange-light); border-color: transparent; }
.service-card.card-blue   { background: var(--blue-light);   border-color: transparent; }
.service-card.card-green  { background: var(--green-light);  border-color: transparent; }
.service-card.card-dark   { background: var(--dark);         border-color: transparent; color: #fff; }

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.card-orange .card-icon { background: rgba(217,103,68,0.15); color: var(--orange); }
.card-blue   .card-icon { background: rgba(74,174,207,0.15); color: var(--blue); }
.card-green  .card-icon { background: rgba(111,171,114,0.15); color: var(--green); }
.card-dark   .card-icon { background: rgba(255,255,255,0.12); color: #fff; }

.service-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
}

.card-orange h3 { color: var(--orange); }
.card-blue   h3 { color: var(--blue); }
.card-green  h3 { color: var(--green); }
.card-dark   h3 { color: #fff; }

.service-card p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.65;
  flex: 1;
}

.card-dark p { color: rgba(255,255,255,0.65); }

.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}

.card-orange .card-link { color: var(--orange); }
.card-blue   .card-link { color: var(--blue); }
.card-green  .card-link { color: var(--green); }
.card-dark   .card-link { color: rgba(255,255,255,0.9); }

/* ── CTA BAND ────────────────────────────────── */
.cta-band {
  background: var(--blue);
  border-radius: 20px;
  padding: 64px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(111,171,114,0.3);
}

.cta-band .section-label { justify-content: center; color: rgba(255,255,255,0.8); }
.cta-band .section-label::before { background: rgba(255,255,255,0.6); }

.cta-band h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}

.cta-band p {
  color: rgba(255,255,255,0.8);
  font-size: 1.15rem;
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.75;
  position: relative;
  z-index: 1;
}

/* ── STEPS ───────────────────────────────────── */
.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}

.step {
  background: var(--bg);
  border: 1px solid var(--border);
  border-left: 3px solid var(--orange);
  border-radius: 12px;
  padding: 20px 18px;
}

.step-num {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.step h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}

.step p {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .site-nav { padding: 14px 20px; }
  .page-hero { padding: 52px 24px; }
  .page-hero h1 { font-size: 2.2rem; }
  .site-footer { flex-direction: column; padding: 36px 20px; }
  .ticker { gap: 20px; padding: 12px 16px; }
  .cta-band { padding: 48px 24px; border-radius: 12px; }
  .cta-band h2 { font-size: 1.8rem; }
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .service-cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-cols { flex-direction: column; gap: 28px; }
}
