/* Brand palette */
:root {
  --primary: #FF6B35;
  --secondary: #20639B;
  --accent: #F6D55C;
  --bg: #F7F9FC;
  --text: #1F2933;
  --muted: #52616B;
  --surface: #FFFFFF;
  --shadow: 0 15px 45px rgba(20, 36, 50, 0.08);
  --radius: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", "Inter", sans-serif;
  margin: 0 0 0.5em;
  color: var(--text);
}

p {
  margin: 0 0 1em;
}

a {
  color: var(--secondary);
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 96px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}

.section-lead {
  color: var(--muted);
  max-width: 640px;
  margin: 12px auto 0;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.muted {
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(120deg, var(--primary), #ff8e54);
  color: #fff;
  padding: 14px 18px;
  border-radius: 999px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
  box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(255, 107, 53, 0.3);
}

.btn:active {
  transform: translateY(0);
}

.btn-secondary {
  background: #fff;
  color: var(--secondary);
  border: 2px solid var(--secondary);
  box-shadow: none;
}

.btn-secondary:hover {
  background: var(--secondary);
  color: #fff;
}

.btn-ghost {
  background: transparent;
  color: var(--secondary);
  border: 2px solid rgba(32, 99, 155, 0.2);
  box-shadow: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(247, 249, 252, 0.98);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(32, 99, 155, 0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
}

.logo-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: conic-gradient(from 180deg, var(--primary), var(--secondary), var(--accent), var(--primary));
  position: relative;
  overflow: hidden;
}

.logo-icon::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 8px;
  background: #fff;
  opacity: 0.8;
}

.logo-text {
  font-size: 18px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text);
  transition: color 160ms ease, background 160ms ease;
}

.nav-links a:hover {
  color: var(--secondary);
  background: rgba(32, 99, 155, 0.08);
}

.nav-links a.active {
  color: var(--primary);
  background: rgba(255, 107, 53, 0.12);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 26px;
  height: 3px;
  border-radius: 999px;
  background: var(--text);
}

.hero {
  padding: 120px 0 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.stat-card {
  background: #fff;
  border-radius: 14px;
  padding: 12px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card strong {
  display: block;
  font-size: 18px;
}

.hero-visual .print-stack {
  position: relative;
  max-width: 420px;
  margin: 0 auto;
}

.sheet {
  position: absolute;
  inset: 0;
  border-radius: 20px;
  filter: drop-shadow(0 12px 30px rgba(20, 36, 50, 0.08));
}

.sheet-primary {
  background: linear-gradient(135deg, var(--primary), #ff8e54);
  transform: rotate(-6deg);
}

.sheet-secondary {
  background: linear-gradient(135deg, var(--secondary), #3b7ec1);
  inset: 14px;
  transform: rotate(4deg);
}

.sheet-accent {
  background: linear-gradient(135deg, var(--accent), #ffe082);
  inset: 24px;
  transform: rotate(-2deg);
}

.print-stack img {
  position: relative;
  border-radius: 20px;
  box-shadow: var(--shadow);
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  margin: 18px 0;
}

.hero-content h1 {
  font-size: clamp(32px, 4vw, 44px);
}

.services-highlight .card-grid {
  margin-top: 18px;
}

.section .card-grid,
.service-grid,
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}

.card {
  background: var(--surface);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.icon-circle {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(32, 99, 155, 0.12);
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 12px;
}

.link {
  font-weight: 700;
  color: var(--secondary);
}

.why-us {
  background: linear-gradient(180deg, #fff, rgba(255, 255, 255, 0.6));
}

.grid-two {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
  align-items: center;
}

.bullet-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.bullet-list li {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.testimonials .testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 22px;
}

.testimonial {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 16px;
  font-size: 48px;
  color: rgba(32, 99, 155, 0.15);
}

.author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(32, 99, 155, 0.1);
  color: var(--secondary);
  font-weight: 700;
}

.quote {
  background: linear-gradient(135deg, rgba(32, 99, 155, 0.08), rgba(255, 107, 53, 0.08));
}

.quote-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 26px;
  align-items: center;
  background: #fff;
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.quote-form {
  display: grid;
  gap: 14px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(31, 41, 51, 0.12);
  background: #fff;
  font-family: inherit;
  font-size: 16px;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--secondary);
  box-shadow: 0 0 0 4px rgba(32, 99, 155, 0.15);
}

textarea {
  resize: vertical;
}

.page-hero {
  padding: 120px 0 48px;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  align-items: center;
}

.highlight-card {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.chip {
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-right: 10px;
  margin-bottom: 10px;
  font-size: 13px;
}

.chip-light {
  background: rgba(32, 99, 155, 0.08);
  color: var(--secondary);
}

.chip-primary {
  background: rgba(255, 107, 53, 0.12);
  color: var(--primary);
}

.chip-outline {
  border: 1px solid rgba(31, 41, 51, 0.14);
  color: var(--text);
}

.pill-list {
  list-style: none;
  padding: 0;
  margin: 12px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-list li {
  background: rgba(32, 99, 155, 0.08);
  color: var(--secondary);
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 600;
}

.pricing {
  background: #fff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.pricing-card {
  border: 1px solid rgba(31, 41, 51, 0.06);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 14px 0 18px;
  display: grid;
  gap: 8px;
}

.pricing-card .badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(31, 41, 51, 0.06);
  font-weight: 700;
  font-size: 13px;
}

.badge-primary {
  background: rgba(255, 107, 53, 0.14);
  color: var(--primary);
}

.featured {
  border-color: rgba(255, 107, 53, 0.4);
}

.timeline {
  display: grid;
  gap: 14px;
  margin-top: 22px;
}

.timeline-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.step-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 107, 53, 0.16);
  font-weight: 700;
  color: var(--primary);
}

.values {
  display: grid;
  gap: 12px;
}

.value {
  background: #fff;
  padding: 16px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(320px, 2fr) minmax(220px, 1fr);
  gap: 26px;
  align-items: start;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
}

.align-center {
  align-items: center;
}

.file-upload {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(32, 99, 155, 0.08);
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
}

.file-upload input {
  display: none;
}

.form-success {
  background: rgba(46, 204, 113, 0.12);
  color: #1e8449;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid rgba(30, 132, 73, 0.2);
}

.contact-info {
  background: #fff;
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-placeholder {
  margin-top: 14px;
  background: repeating-linear-gradient(135deg, rgba(32, 99, 155, 0.12), rgba(32, 99, 155, 0.12) 12px, rgba(255, 107, 53, 0.12) 12px, rgba(255, 107, 53, 0.12) 24px);
  height: 180px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 700;
}

.legal {
  padding: 120px 0 80px;
}

.legal-content {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.legal-content ul {
  padding-left: 18px;
}

.site-footer {
  background: #0f1d2a;
  color: #e6ecf2;
  padding: 56px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 22px;
}

.footer-logo {
  color: #fff;
}

.footer-description {
  color: #b7c2cf;
  max-width: 420px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-links a {
  color: #e6ecf2;
}

.socials {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.socials a {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  margin-top: 24px;
  padding-top: 16px;
  color: #b7c2cf;
}

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 300ms ease, transform 300ms ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 960px) {
  .hero-grid,
  .quote-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding-top: 96px;
  }
}

@media (max-width: 760px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    right: 4%;
    left: 4%;
    background: #fff;
    border-radius: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    padding: 12px;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-container {
    padding: 14px 0;
  }

  .section {
    padding: 72px 0;
  }

  .hero-actions {
    flex-wrap: wrap;
  }

  .site-footer {
    margin-top: 12px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

