/* =========================================================
   SolvTech — Design System (premium institutional)
   ========================================================= */
:root {
  /* Paleta alinhada à logo SolvTech */
  --primary: #1e4fb8;
  --primary-deep: #163a8c;
  --primary-bright: #3d74ef;
  --secondary: #2b5fd4;
  --accent: #e88712;
  --accent-soft: #f2b045;
  --accent-deep: #d06e08;
  --dark: #0f1a2e;
  --bg: #f4f7fc;
  --text: #1f2937;
  --border: #e2e8f0;
  --success: #16a34a;
  --muted: #5c6d86;
  --white: #ffffff;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow: 0 18px 50px rgba(22, 58, 140, 0.1);
  --shadow-sm: 0 8px 24px rgba(22, 58, 140, 0.07);
  --shadow-accent: 0 12px 28px rgba(232, 135, 18, 0.28);
  --font-display: "Poppins", system-ui, sans-serif;
  --font-body: "Inter", system-ui, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 80px;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--nav-h);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }

h1, h2, h3, h4,
.brand-text,
.btn {
  font-family: var(--font-display);
}

h1, h2, h3 {
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1.15;
  font-weight: 600;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--primary);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus { left: 0; }

/* ---------- Brand ---------- */
.brand-mark {
  object-fit: contain;
  width: 48px;
  height: 48px;
  filter: drop-shadow(0 4px 10px rgba(30, 79, 184, 0.2));
}

.brand-text {
  font-weight: 700;
  font-size: 1.28rem;
  letter-spacing: -0.03em;
  line-height: 1;
}

.brand-text .solv {
  background: linear-gradient(120deg, var(--primary-deep), var(--primary-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.brand-text .tech {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer .brand-text .solv {
  background: linear-gradient(120deg, #6a9bff, #9bbcff);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.site-footer .brand-text .tech {
  background: linear-gradient(120deg, var(--accent), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  border-radius: 999px;
  font-weight: 600;
  padding: 0.7rem 1.35rem;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 3px solid rgba(232, 135, 18, 0.35);
  outline-offset: 2px;
}

.btn-primary {
  background: linear-gradient(125deg, var(--accent-deep), var(--accent) 42%, var(--accent-soft));
  border-color: transparent;
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(125deg, #c46208, var(--accent) 45%, #f6c35c);
  color: #fff;
  box-shadow: 0 16px 34px rgba(232, 135, 18, 0.36);
}

.btn-outline-dark {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.75);
  color: var(--dark);
}

.btn-outline-dark:hover {
  background: #fff;
  border-color: #cbd5e1;
  color: var(--dark);
}

.btn-outline-primary {
  border-color: rgba(30, 79, 184, 0.35);
  color: var(--primary-deep);
  background: #fff;
}

.btn-outline-primary:hover {
  background: rgba(30, 79, 184, 0.06);
  color: var(--primary-deep);
  border-color: var(--primary);
}

.btn-light {
  background: #fff;
  color: var(--dark);
  box-shadow: var(--shadow-sm);
}

.btn-light:hover { background: #f8fafc; color: var(--dark); }

.btn-ripple .ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  background: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

@keyframes ripple {
  to { transform: scale(4); opacity: 0; }
}

/* ---------- Navbar ---------- */
.st-navbar {
  height: var(--nav-h);
  background: rgba(248, 250, 252, 0.72);
  backdrop-filter: blur(16px) saturate(1.2);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.st-navbar.scrolled {
  background: rgba(255, 255, 255, 0.92);
  border-bottom-color: var(--border);
  box-shadow: 0 8px 24px rgba(17, 24, 39, 0.05);
}

.st-navbar .nav-link {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--muted);
  padding: 0.5rem 0.85rem !important;
  border-radius: 999px;
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}

.st-navbar .nav-link:hover,
.st-navbar .nav-link:focus-visible,
.st-navbar .nav-link.active {
  color: var(--dark);
  background: rgba(30, 79, 184, 0.07);
}

.st-navbar .navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 0.4rem 0.55rem;
}

.st-navbar .navbar-toggler:focus { box-shadow: 0 0 0 3px rgba(232, 135, 18, 0.25); }

.btn-demo { white-space: nowrap; }

/* ---------- Sections ---------- */
.section { padding: clamp(4.5rem, 8vw, 7rem) 0; }

.section-soft { background: linear-gradient(180deg, #fff 0%, var(--bg) 100%); }

.section-head { max-width: 640px; margin: 0 auto 3rem; }

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 0.85rem;
}

.section-eyebrow.light { color: var(--accent-soft); }

.section-lead {
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 54ch;
}

.section h2 {
  font-size: clamp(1.85rem, 3.6vw, 2.75rem);
  margin-bottom: 0.9rem;
}

.glass {
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(229, 231, 235, 0.9);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow-sm);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 50% at 8% 15%, rgba(30, 79, 184, 0.14), transparent 60%),
    radial-gradient(ellipse 45% 40% at 92% 12%, rgba(232, 135, 18, 0.12), transparent 55%),
    linear-gradient(180deg, #ffffff 0%, #f4f7fc 100%);
}

.hero-bg { position: absolute; inset: 0; pointer-events: none; }

.grid-fade {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(30, 79, 184, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(30, 79, 184, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 40%, #000 20%, transparent 75%);
  opacity: 0.7;
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.shape-1 {
  width: 320px; height: 320px;
  top: -80px; right: 8%;
  background: rgba(30, 79, 184, 0.22);
}

.shape-2 {
  width: 240px; height: 240px;
  bottom: 10%; left: 5%;
  background: rgba(232, 135, 18, 0.16);
}

.shape-3 {
  width: 180px; height: 180px;
  top: 40%; right: 35%;
  background: rgba(61, 116, 239, 0.2);
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.4rem 0.9rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-deep);
  background: rgba(30, 79, 184, 0.08);
  border: 1px solid rgba(30, 79, 184, 0.15);
  margin-bottom: 1.1rem;
}

.badge-pill img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.35rem;
}

.hero-logo-lockup img {
  width: clamp(72px, 12vw, 96px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(30, 79, 184, 0.25));
}

.hero-logo-lockup .hero-brand {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  letter-spacing: -0.04em;
  line-height: 1;
}

.hero-logo-lockup .hero-brand .solv {
  background: linear-gradient(120deg, var(--primary-deep), var(--primary-bright));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-logo-lockup .hero-brand .tech {
  background: linear-gradient(120deg, var(--accent-deep), var(--accent-soft));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.75rem);
  font-weight: 700;
  margin-bottom: 1.15rem;
  max-width: 14ch;
}

.hero-sub {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 48ch;
  margin-bottom: 1.75rem;
}

.hero-slogan {
  font-size: 0.95rem;
  color: var(--muted);
  font-weight: 500;
}

.hero-visual { position: relative; padding: 1.5rem 0.5rem; }

.float-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  animation: floatY 5s ease-in-out infinite;
}

.float-chip i { color: var(--primary); }
.chip-1 { top: 8%; left: 0; animation-delay: 0s; }
.chip-2 { top: 28%; right: -2%; animation-delay: 0.8s; }
.chip-3 { bottom: 12%; left: 6%; animation-delay: 1.4s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Dashboard mock */
.dashboard-mock {
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: hidden;
  transform: perspective(1200px) rotateY(-6deg) rotateX(4deg);
  transition: transform 0.5s var(--ease);
}

.hero-visual:hover .dashboard-mock {
  transform: perspective(1200px) rotateY(-2deg) rotateX(1deg);
}

.dash-top {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.85rem 1rem;
  background: #f1f5f9;
  border-bottom: 1px solid var(--border);
}

.dash-top .dot {
  width: 9px; height: 9px; border-radius: 50%;
  background: #cbd5e1;
}
.dash-top .dot:nth-child(1) { background: #f87171; }
.dash-top .dot:nth-child(2) { background: #fbbf24; }
.dash-top .dot:nth-child(3) { background: #34d399; }

.dash-title {
  margin-left: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
}

.dash-body { display: grid; grid-template-columns: 56px 1fr; min-height: 320px; }

.dash-side {
  background: #0b1220;
  padding: 1rem 0.7rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.dash-side span {
  height: 28px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.dash-side span.active { background: rgba(232, 135, 18, 0.65); }

.dash-main { padding: 1rem; background: linear-gradient(180deg, #fff, #f8fafc); }

.dash-kpis {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1rem;
}

.kpi {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 0.7rem;
}

.kpi small { display: block; font-size: 0.7rem; color: var(--muted); }
.kpi strong { display: block; font-size: 0.95rem; color: var(--dark); margin: 0.15rem 0; }
.kpi em { font-style: normal; font-size: 0.72rem; color: var(--success); font-weight: 600; }

.dash-chart {
  height: 120px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  margin-bottom: 0.85rem;
}

.dash-chart svg { width: 100%; height: 100%; display: block; }

.dash-table {
  display: grid;
  gap: 0.45rem;
}

.dash-table > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.7rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.8rem;
}

.dash-table b {
  font-weight: 600;
  color: var(--success);
  font-size: 0.72rem;
  background: rgba(22, 163, 74, 0.1);
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

/* ---------- About ---------- */
.about-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid var(--border);
  font-size: 0.85rem;
  font-weight: 500;
}

.about-badges i { color: var(--success); }

.about-panel {
  border-radius: 24px;
  padding: 1.25rem;
}

.mini-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.25rem;
  height: 100%;
}

.mini-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.mini-stat span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.mini-stat.wide strong {
  font-size: 1.25rem;
  color: var(--dark);
}

/* ---------- Feature / Product cards ---------- */
.feature-card,
.product-card,
.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.6rem;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.03);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.feature-card:hover,
.product-card:hover,
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(30, 79, 184, 0.28);
}

.icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(30, 79, 184, 0.1), rgba(232, 135, 18, 0.08));
  color: var(--primary-deep);
  font-size: 1.25rem;
  margin-bottom: 1.1rem;
}

.feature-card:hover .icon-wrap,
.product-card:hover .icon-wrap {
  background: linear-gradient(145deg, rgba(30, 79, 184, 0.16), rgba(232, 135, 18, 0.14));
  color: var(--accent-deep);
}

.feature-card h3,
.product-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.55rem;
}

.feature-card p,
.product-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.product-card { display: flex; flex-direction: column; min-height: 100%; }

.stretched-link-btn {
  margin-top: auto;
  padding-top: 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--accent-deep);
  transition: gap 0.25s var(--ease);
}

.product-card:hover .stretched-link-btn { gap: 0.7rem; color: var(--accent); }

.product-wide { padding: 1.5rem 1.75rem; }

/* ---------- AI ---------- */
.section-ai {
  background:
    radial-gradient(ellipse 50% 60% at 85% 40%, rgba(232, 135, 18, 0.2), transparent 60%),
    linear-gradient(135deg, #0b1220 0%, #111827 50%, #0f1b33 100%);
  color: #fff;
}

.section-ai h2 { color: #fff; }

.ai-lead {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
  max-width: 48ch;
  margin-bottom: 1.5rem;
}

.ai-list { display: grid; gap: 0.85rem; margin-bottom: 0.5rem; }

.ai-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.ai-list i { color: var(--accent-soft); margin-top: 0.15rem; }

.ai-visual {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
}

.ai-orb {
  width: min(280px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, rgba(147, 197, 253, 0.85), transparent 40%),
    radial-gradient(circle at 70% 60%, rgba(30, 79, 184, 0.85), transparent 45%),
    radial-gradient(circle at 60% 80%, rgba(232, 135, 18, 0.35), transparent 55%),
    radial-gradient(circle, rgba(43, 95, 212, 0.4), transparent 70%);
  filter: blur(2px);
  animation: pulseOrb 6s ease-in-out infinite;
}

@keyframes pulseOrb {
  0%, 100% { transform: scale(1); opacity: 0.9; }
  50% { transform: scale(1.06); opacity: 1; }
}

.ai-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(12px);
  min-width: 200px;
}

.ai-card i {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: grid; place-items: center;
  background: rgba(232, 135, 18, 0.3);
  color: #fde68a;
}

.ai-card strong { display: block; font-size: 0.92rem; }
.ai-card span { display: block; font-size: 0.78rem; color: rgba(255,255,255,0.65); }

.ai-card.c1 { top: 12%; left: 4%; }
.ai-card.c2 { top: 42%; right: 0; }
.ai-card.c3 { bottom: 10%; left: 18%; }

/* ---------- Process ---------- */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: none;
  position: relative;
}

.process-timeline::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 4%;
  right: 4%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  z-index: 0;
}

.process-timeline li {
  position: relative;
  z-index: 1;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.4rem 1.1rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.process-timeline li:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-sm);
}

.process-timeline .step {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-deep), var(--primary-bright));
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 1rem;
  box-shadow: 0 8px 20px rgba(30, 79, 184, 0.3);
}

.process-timeline h3 {
  font-size: 1rem;
  margin-bottom: 0.45rem;
}

.process-timeline p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Stats ---------- */
.section-stats {
  background: #fff;
  border-block: 1px solid var(--border);
}

.stat-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.stat-item span {
  display: block;
  margin-top: 0.35rem;
  color: var(--muted);
  font-weight: 500;
}

/* ---------- Clients ---------- */
.clients-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.clients-track {
  display: flex;
  gap: 1rem;
  width: max-content;
  animation: marquee 32s linear infinite;
}

.client-logo {
  flex: 0 0 auto;
  min-width: 160px;
  height: 72px;
  display: grid;
  place-items: center;
  padding: 0 1.25rem;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  color: #64748b;
  letter-spacing: -0.02em;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Testimonials ---------- */
.testimonial-card {
  margin: 0;
  display: flex;
  flex-direction: column;
}

.stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  display: flex;
  gap: 0.15rem;
}

.testimonial-card blockquote {
  margin: 0 0 1.25rem;
  flex: 1;
}

.testimonial-card blockquote p {
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

.testimonial-card figcaption {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-card figcaption img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.testimonial-card figcaption strong {
  display: block;
  font-size: 0.95rem;
  color: var(--dark);
}

.testimonial-card figcaption span {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
}

/* ---------- CTA ---------- */
.cta-panel {
  border-radius: 28px;
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    radial-gradient(ellipse 50% 70% at 85% 20%, rgba(232, 135, 18, 0.28), transparent 55%),
    linear-gradient(135deg, var(--primary-deep) 0%, var(--dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-panel h2 {
  color: #fff;
  max-width: 18ch;
  margin: 0 auto 0.9rem;
}

.cta-panel p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 42ch;
  margin: 0 auto 1.5rem;
}

.cta-panel .btn-primary {
  background: linear-gradient(125deg, var(--accent-deep), var(--accent), var(--accent-soft));
  color: #fff;
  box-shadow: var(--shadow-accent);
}

.cta-panel .btn-primary:hover {
  background: linear-gradient(125deg, #c46208, var(--accent), #f6c35c);
  color: #fff;
}

/* ---------- Contact ---------- */
.contact-list { display: grid; gap: 1.1rem; margin-top: 1.75rem; }

.contact-list li {
  display: flex;
  gap: 0.9rem;
  align-items: flex-start;
}

.contact-list i {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(30, 79, 184, 0.08);
  color: var(--primary);
  flex-shrink: 0;
}

.contact-list strong {
  display: block;
  font-size: 0.85rem;
  color: var(--dark);
}

.contact-list a,
.contact-list span {
  color: var(--muted);
  font-size: 0.95rem;
}

.contact-list a:hover { color: var(--primary); }

.contact-form {
  border-radius: 24px;
  padding: 1.75rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--dark);
}

.form-control,
.form-select {
  border-radius: 12px;
  border-color: var(--border);
  padding: 0.75rem 0.95rem;
  background: #fff;
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(232, 135, 18, 0.55);
  box-shadow: 0 0 0 4px rgba(232, 135, 18, 0.12);
}

.form-note { font-size: 0.9rem; color: var(--accent-deep); }
.form-note.error { color: #dc2626; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}

.site-footer .brand-text { color: #fff; }

.footer-tag {
  margin-top: 0.85rem;
  max-width: 32ch;
  font-size: 0.95rem;
}

.footer-title {
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.footer-links { display: grid; gap: 0.55rem; }

.footer-links a,
.footer-links span {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s var(--ease);
}

.footer-links a:hover { color: #fff; }

.social {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease);
}

.social:hover {
  background: rgba(232, 135, 18, 0.4);
  transform: translateY(-2px);
}

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.45);
}
