/* ==========================================================================
   My IT Specialist — Design System
   Palette: Forest Green #1F6B1F, Leaf Green #7CB82F, Pale Green #E6F2D9,
            Ink #1A1A1A, Red accent #D62828 (sparing), Mist #F7F9F4, White
   Type: Space Grotesk (display) + Inter (body)
   Signature: a checkmark/"tick" stroke motif lifted from the logo's two
   diagonal bars, used as a recurring structural accent (corner of cards,
   section dividers, bullet markers).
   ========================================================================== */

:root {
  --teal-900: #163d16;   /* deepest green, was teal-900 */
  --teal-700: #1f6b1f;   /* primary green, was teal-700 */
  --teal-600: #2d7d2d;   /* mid green, was teal-600 */
  --cyan-500: #7cb82f;   /* leaf green accent, was cyan-500 */
  --cyan-300: #a8d568;   /* light leaf green, was cyan-300 */
  --cyan-100: #e9f3da;   /* pale green tint, was cyan-100 */
  --red-accent: #d62828; /* sparing accent only, from logo "_IT" */
  --ink: #1a1a1a;
  --ink-soft: #51564a;
  --mist: #f7f9f4;
  --white: #ffffff;
  --line: #dfe6d4;

  /* Lighter banner greens (top hero / page hero / footer), matched to logo's bright leaf green */
  --banner-light-1: #4f9c2e;
  --banner-light-2: #6cb83a;
  --banner-light-3: #8dcc52;

  --font-display: "Space Grotesk", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --radius: 4px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--teal-700);
  line-height: 1.15;
  margin: 0;
}

p { margin: 0; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Tick motif (signature element, from logo's diagonal bars) ---------- */
.cube-mark {
  position: relative;
  width: 15px;
  height: 14px;
  display: inline-block;
}
.cube-mark::before,
.cube-mark::after {
  content: "";
  position: absolute;
  border-radius: 3px;
}
.cube-mark::before {
  /* short diagonal stroke, lower-left */
  width: 5px; height: 9px;
  background: var(--cyan-500);
  bottom: 0; left: 1px;
  transform: rotate(34deg);
}
.cube-mark::after {
  /* long diagonal stroke, upper-right */
  width: 5px; height: 14px;
  background: var(--teal-700);
  top: -1px; left: 6px;
  transform: rotate(-22deg);
}

.corner-cube {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 20px;
  height: 20px;
  opacity: 0.5;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.corner-cube::before,
.corner-cube::after {
  content: "";
  position: absolute;
  border-radius: 3px;
}
.corner-cube::before {
  width: 6px; height: 11px;
  background: var(--cyan-300);
  bottom: 0; left: 1px;
  transform: rotate(34deg);
}
.corner-cube::after {
  width: 6px; height: 17px;
  background: var(--cyan-500);
  top: -2px; left: 8px;
  transform: rotate(-22deg);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.brand img {
  width: 1.5in;
  height: 1.5in;
  object-fit: contain;
}
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--teal-700);
  letter-spacing: -0.01em;
}
.brand-name span { color: var(--cyan-500); }

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}
.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  padding: 8px 2px;
  position: relative;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  height: 2px; width: 0;
  background: var(--cyan-500);
  transition: width 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }
.main-nav a.active { color: var(--teal-700); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.header-phone {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-700);
  white-space: nowrap;
}
.header-phone small {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.72rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle svg { width: 26px; height: 26px; color: var(--teal-700); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.18s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--teal-700);
  color: var(--white);
}
.btn-primary:hover { background: var(--teal-900); transform: translateY(-1px); }
.btn-accent {
  background: var(--cyan-500);
  color: var(--teal-900);
}
.btn-accent:hover { background: var(--cyan-300); transform: translateY(-1px); }
.btn-outline {
  background: transparent;
  border-color: var(--teal-700);
  color: var(--teal-700);
}
.btn-outline:hover { background: var(--teal-700); color: var(--white); }
.btn-ghost-light {
  background: transparent;
  border-color: rgba(255,255,255,0.5);
  color: var(--white);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(165deg, var(--banner-light-1) 0%, var(--banner-light-2) 55%, var(--banner-light-3) 100%);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 110px;
}
.hero-grid-decoration {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: radial-gradient(ellipse 80% 60% at 70% 30%, black 0%, transparent 70%);
  pointer-events: none;
}
.hero-cubes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-cube {
  position: absolute;
  border: 2px solid rgba(255, 255, 255, 0.4);
  border-radius: 4px;
  animation: floatCube 7s ease-in-out infinite;
}
.float-cube::after {
  content: "";
  position: absolute;
  inset: 30%;
  background: rgba(255, 255, 255, 0.55);
  border-radius: 2px;
}
@keyframes floatCube {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-16px) rotate(8deg); }
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-bottom: 22px;
}
.hero h1 em {
  font-style: normal;
  color: var(--teal-900);
}
.hero p.lead {
  font-size: 1.08rem;
  color: rgba(255,255,255,0.92);
  max-width: 540px;
  margin-bottom: 34px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.stat-card {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px;
  padding: 22px 20px;
  backdrop-filter: blur(4px);
}
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 600;
  color: var(--white);
  display: block;
}
.stat-card .label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.9);
  margin-top: 4px;
  display: block;
}

/* ---------- Section basics ---------- */
.section {
  padding: 88px 0;
}
.section-tight { padding: 64px 0; }
.section-mist { background: var(--mist); }
.section-dark {
  background: var(--teal-900);
  color: rgba(255,255,255,0.85);
}
.section-dark h2 { color: var(--white); }

.section-head {
  max-width: 660px;
  margin: 0 0 48px;
}
.section-head.center { margin: 0 auto 48px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cyan-500);
  margin-bottom: 12px;
}
.section-head h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 14px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.02rem;
}
.section-dark .section-head p { color: rgba(255,255,255,0.7); }

/* ---------- About / intro ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.about-media {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 4/3.1;
}
.about-media img { width: 100%; height: 100%; object-fit: cover; }
.about-media-frame {
  position: absolute;
  inset: 14px;
  border: 1.5px solid rgba(255,255,255,0.5);
  border-radius: 8px;
  pointer-events: none;
}
.about-copy h2 { margin-bottom: 18px; }
.about-copy p { color: var(--ink-soft); margin-bottom: 16px; font-size: 1.02rem; }
.about-points {
  list-style: none;
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 24px;
}
.about-points li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--teal-700);
}
.about-points .cube-mark { margin-top: 4px; flex-shrink: 0; }

/* ---------- Cards: services / solutions ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.card-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

.solution-card, .service-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 30px 26px 28px;
  transition: border-color 0.22s ease, transform 0.22s ease, box-shadow 0.22s ease;
}
.solution-card:hover, .service-card:hover {
  transform: translateY(-4px);
  border-color: var(--cyan-300);
  box-shadow: 0 16px 32px -20px rgba(22, 61, 22, 0.35);
}
.solution-card:hover .corner-cube, .service-card:hover .corner-cube {
  transform: rotate(20deg);
  opacity: 1;
}
.card-icon {
  width: 46px;
  height: 46px;
  border-radius: 7px;
  background: var(--cyan-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.card-icon svg { width: 24px; height: 24px; color: var(--teal-700); }

/* Fixed physical-size icon variant (1in x 1in at 96dpi) — homepage solutions cards */
.card-icon.icon-1in {
  width: 1in;
  height: 1in;
  border-radius: 10px;
}
.card-icon.icon-1in svg { width: 44px; height: 44px; }
.solution-card h3, .service-card h3 {
  font-size: 1.04rem;
  margin-bottom: 10px;
  padding-right: 20px;
}
.solution-card p, .service-card p {
  color: var(--ink-soft);
  font-size: 0.91rem;
  margin-bottom: 16px;
}
.card-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-700);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.18s ease; }
.solution-card:hover .card-link svg, .service-card:hover .card-link svg { transform: translateX(3px); }

/* ---------- Process / numbered steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
.process-step {
  position: relative;
  padding: 0 22px;
}
.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 26px;
  right: -2px;
  width: calc(100% - 30px);
  height: 1.5px;
  background: repeating-linear-gradient(90deg, var(--cyan-300) 0 6px, transparent 6px 12px);
}
.process-num {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--white);
  background: var(--teal-700);
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  position: relative;
  z-index: 2;
}
.process-step h4 {
  font-size: 0.98rem;
  margin-bottom: 8px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--ink-soft);
}

/* ---------- Testimonial / commitment ---------- */
.quote-block {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 28px;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--cyan-500);
  border-radius: 8px;
  padding: 36px 40px;
}
.quote-mark {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--cyan-300);
  line-height: 1;
}
.quote-block p.quote-text {
  font-size: 1.15rem;
  color: var(--teal-700);
  font-weight: 500;
  margin-bottom: 16px;
}
.quote-by { font-size: 0.88rem; color: var(--ink-soft); }
.quote-by strong { color: var(--ink); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--teal-700), var(--teal-900));
  border-radius: 14px;
  padding: 52px 56px;
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 30px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  width: 260px; height: 260px;
  border: 1px solid rgba(124,184,47,0.25);
  border-radius: 30px;
  right: -80px; top: -80px;
  transform: rotate(20deg);
}
.cta-band h2 { color: var(--white); margin-bottom: 10px; font-size: 1.7rem; }
.cta-band p { color: rgba(255,255,255,0.78); font-size: 0.98rem; }
.cta-band .cta-actions { display: flex; justify-content: flex-end; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--banner-light-1);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 0.8fr 1.1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand .brand-name { color: var(--white); }
.footer-brand .brand-name span { color: var(--teal-900); }
.footer-brand p {
  margin-top: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.85);
  max-width: 280px;
}
.footer-col h5 {
  font-family: var(--font-display);
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: 11px; font-size: 0.88rem; }
.footer-col a:hover { color: var(--teal-900); }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.footer-contact svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 3px; color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  flex-wrap: wrap;
  gap: 10px;
}

/* ---------- Page hero (sub-pages) ---------- */
.page-hero {
  background: linear-gradient(165deg, var(--banner-light-1) 0%, var(--banner-light-2) 100%);
  color: var(--white);
  padding: 64px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero .container { position: relative; z-index: 2; }
.breadcrumb {
  font-size: 0.84rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 16px;
}
.breadcrumb a:hover { color: var(--teal-900); }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.78);
  max-width: 600px;
  font-size: 1rem;
}

/* Fixed physical-size logo mark (1.5in x 1.5in at 96dpi = 144px x 144px) */
.logo-mark-1in {
  width: 1.5in;
  height: 1.5in;
  display: block;
  object-fit: contain;
}
.page-hero-with-mark {
  display: flex;
  align-items: flex-start;
  gap: 22px;
}
.page-hero-with-mark .logo-mark-1in {
  flex-shrink: 0;
  margin-top: 2px;
}

/* ---------- Generic content blocks ---------- */
.content-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 36px;
}
.numbered-point {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.numbered-point:last-child { border-bottom: none; }
.numbered-point .n {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--cyan-300);
  flex-shrink: 0;
  width: 36px;
}
.numbered-point p { color: var(--ink-soft); font-size: 0.96rem; }

.industry-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.industry-tags span {
  background: var(--cyan-100);
  color: var(--teal-700);
  font-size: 0.86rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: 1 / -1; }
.form-field label { font-size: 0.84rem; font-weight: 600; color: var(--teal-700); }
.form-field input, .form-field textarea, .form-field select {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--radius);
  background: var(--mist);
  color: var(--ink);
  transition: border-color 0.18s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  border-color: var(--cyan-500);
  outline: none;
  background: var(--white);
}
.form-note { font-size: 0.8rem; color: var(--ink-soft); margin-top: 14px; }

.contact-info-card {
  background: var(--teal-700);
  color: var(--white);
  border-radius: 10px;
  padding: 36px;
}
.contact-info-card h3 { color: var(--white); margin-bottom: 22px; }
.contact-info-card .info-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  align-items: flex-start;
}
.contact-info-card .info-item svg { width: 20px; height: 20px; color: var(--cyan-300); flex-shrink: 0; margin-top: 2px; }
.contact-info-card .info-item .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.05em; color: rgba(255,255,255,0.6); margin-bottom: 3px; }
.contact-info-card .info-item .value { font-size: 0.96rem; font-weight: 500; }
.map-embed {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line);
  margin-top: 28px;
}
.map-embed iframe { width: 100%; height: 280px; border: 0; display: block; }

.job-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 26px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.job-card h3 { font-size: 1.05rem; margin-bottom: 6px; }
.job-meta { display: flex; gap: 14px; font-size: 0.85rem; color: var(--ink-soft); flex-wrap: wrap; }
.job-meta span { display: flex; align-items: center; gap: 5px; }

.perks-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.perk { display: flex; gap: 14px; align-items: flex-start; }
.perk .card-icon { margin-bottom: 0; flex-shrink: 0; }
.perk h4 { font-size: 0.98rem; margin-bottom: 6px; }
.perk p { font-size: 0.88rem; color: var(--ink-soft); }

.partner-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.partner-logo-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--teal-700);
  font-size: 0.92rem;
  min-height: 90px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.partner-logo-card:hover { border-color: var(--cyan-300); transform: translateY(-2px); }

.tier-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.tier-card {
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 32px 28px;
}
.tier-card.featured {
  border-color: var(--cyan-500);
  background: var(--cyan-100);
  position: relative;
}
.tier-tag {
  position: absolute;
  top: -12px;
  left: 28px;
  background: var(--cyan-500);
  color: var(--teal-900);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.tier-card h3 { margin-bottom: 8px; }
.tier-card .tier-desc { font-size: 0.88rem; color: var(--ink-soft); margin-bottom: 20px; }
.tier-card ul { list-style: none; margin: 0 0 24px; padding: 0; }
.tier-card li {
  display: flex;
  gap: 9px;
  font-size: 0.88rem;
  margin-bottom: 11px;
  color: var(--ink);
}
.tier-card li svg { width: 15px; height: 15px; color: var(--cyan-500); flex-shrink: 0; margin-top: 3px; }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .card-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 32px; }
  .process-step:nth-child(2)::after { display: none; }
  .partner-logos { grid-template-columns: repeat(3, 1fr); }
  .tier-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

@media (max-width: 900px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; }
  .header-phone { display: none; }
  .hero-inner { grid-template-columns: 1fr; }
  .hero-stats { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; }
  .about-media { max-width: 480px; }
  .content-columns { grid-template-columns: 1fr; }
  .cta-band { grid-template-columns: 1fr; text-align: center; padding: 40px 28px; }
  .cta-band .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .perks-grid { grid-template-columns: 1fr; }

  .main-nav.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 24px -10px rgba(0,0,0,0.15);
  }
  .main-nav.open ul {
    flex-direction: column;
    width: 100%;
    padding: 12px 24px 20px;
    gap: 4px;
  }
  .main-nav.open li { width: 100%; }
  .main-nav.open a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .card-grid, .card-grid.cols-4 { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none !important; }
  .form-row { grid-template-columns: 1fr; }
  .partner-logos { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .quote-block { grid-template-columns: 1fr; padding: 28px 24px; }
  .hero { padding: 64px 0 80px; }
  .job-card { flex-direction: column; align-items: flex-start; }
}
