/* Teclogically brand site — warm, energetic, local-business friendly */
:root {
  --ink: #17223b;
  --muted: #5f6678;
  --cream: #fff7ea;
  --paper: #fffdf8;
  --soft: #eef7ff;
  --line: #eadfce;
  --green: #12624f;
  --teal: #18a999;
  --coral: #ff5a3d;
  --orange: #ff8a00;
  --sun: #ffd166;
  --blue: #335cff;
  --lavender: #7c5cff;
  --pink: #ff4f8b;
  --shadow: 0 26px 70px rgba(23, 34, 59, 0.16);
  --shadow-soft: 0 12px 32px rgba(23, 34, 59, 0.10);
  --radius: 30px;
}

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

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 209, 102, 0.42), transparent 22rem),
    radial-gradient(circle at 88% 6%, rgba(124, 92, 255, 0.18), transparent 26rem),
    radial-gradient(circle at 72% 52%, rgba(24, 169, 153, 0.12), transparent 24rem),
    linear-gradient(180deg, #fffdf8 0%, var(--cream) 54%, #f7efe2 100%);
  line-height: 1.5;
}

a { color: inherit; text-decoration: none; }
img, svg { max-width: 100%; }

.wrap { width: min(1160px, calc(100% - 40px)); margin: auto; }

.skip-link {
  position: absolute; left: -999px; top: 14px; z-index: 20;
  background: var(--ink); color: white; padding: 10px 14px; border-radius: 999px;
}
.skip-link:focus { left: 14px; }

.nav {
  display: flex; align-items: center; justify-content: space-between; gap: 18px;
  padding: 22px 0;
}
.brand {
  font-weight: 950; letter-spacing: -0.05em; font-size: 26px;
  display: inline-flex; align-items: center;
}
.logo-dot {
  display: inline-block; width: 11px; height: 11px; margin-left: 5px;
  background: linear-gradient(135deg, var(--coral), var(--sun));
  border: 2px solid var(--ink); border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(255, 90, 61, 0.12);
}
.navlinks { display: flex; gap: 22px; color: var(--muted); font-size: 14px; align-items: center; }
.navlinks a:hover { color: var(--coral); }

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  padding: 15px 21px; border-radius: 999px; font-weight: 850;
  border: 1px solid transparent; transition: 0.2s ease; cursor: pointer; line-height: 1;
}
.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  box-shadow: 0 16px 36px rgba(255, 90, 61, 0.30);
}
.btn.secondary {
  background: rgba(255, 255, 255, 0.88);
  color: var(--ink);
  border-color: rgba(23, 34, 59, 0.14);
  box-shadow: 0 10px 24px rgba(23, 34, 59, 0.06);
}
.btn:hover { transform: translateY(-2px); }

.pill {
  display: inline-flex; align-items: center; gap: 8px;
  border: 1px solid rgba(255, 90, 61, 0.24); border-radius: 999px;
  padding: 9px 14px;
  background: linear-gradient(135deg, rgba(255,255,255,.9), rgba(255, 209, 102, .18));
  color: #9b320d; font-size: 14px; font-weight: 850;
}
.pill::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--coral); box-shadow: 0 0 0 5px rgba(255,90,61,.12); }

.grid { display: grid; gap: 22px; }
.card {
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 34, 59, 0.10);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(8px);
}
.kicker {
  font-weight: 950; text-transform: uppercase; letter-spacing: 0.12em;
  font-size: 12px; color: var(--coral);
}

h1, h2, h3, p { margin-top: 0; }
h1 {
  font-size: clamp(44px, 7.2vw, 82px); line-height: 0.92;
  letter-spacing: -0.078em; margin-bottom: 24px;
}
h2 {
  font-size: clamp(33px, 5vw, 60px); line-height: 0.98;
  letter-spacing: -0.058em; margin-bottom: 16px;
}
h3 { font-size: 22px; letter-spacing: -0.03em; margin-bottom: 10px; }
p { color: var(--muted); font-size: 18px; }
.small { font-size: 14px; }
.lede { font-size: clamp(19px, 2vw, 22px); max-width: 700px; }

.section { padding: 86px 0; }
.hero { padding: 38px 0 84px; }
.hero-grid { grid-template-columns: minmax(0, 1fr) minmax(350px, 0.9fr); align-items: center; gap: 46px; }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }

.lead-card, .story-visual { padding: 28px; position: relative; overflow: hidden; }
.lead-card::before, .story-visual::before {
  content: ""; position: absolute; width: 260px; height: 260px; right: -110px; top: -120px;
  background: radial-gradient(circle, rgba(255, 209, 102, 0.62), rgba(255, 90, 61, 0.14) 58%, transparent 70%);
  border-radius: 999px;
}
.lead-card > *, .story-visual > * { position: relative; }

.illustration {
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(238,247,255,.92), rgba(255,247,234,.88));
  border: 1px solid rgba(23,34,59,.09);
  padding: 12px;
  margin: 12px 0 18px;
  overflow: hidden;
}
.illustration svg { display: block; width: 100%; height: auto; }

.bubble {
  background: white; border: 1px solid var(--line); border-radius: 22px;
  padding: 18px; margin: 12px 0;
  box-shadow: 0 10px 22px rgba(23,34,59,.06);
}
.bubble.team { background: linear-gradient(135deg, #e7fff7, #fff8dc); border-color: rgba(24,169,153,.24); }

.icon-row { display: flex; gap: 10px; align-items: center; margin: 12px 0 4px; color: var(--green); font-weight: 850; }
.services { grid-template-columns: repeat(3, 1fr); }
.service { padding: 28px; position: relative; overflow: hidden; }
.service::after {
  content: ""; position: absolute; right: -34px; top: -34px; width: 110px; height: 110px;
  border-radius: 50%; background: rgba(255, 209, 102, 0.22);
}
.service > * { position: relative; }
.service-icon {
  width: 58px; height: 58px; border-radius: 18px; margin-bottom: 18px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--coral), var(--orange));
  color: white; box-shadow: 0 14px 28px rgba(255, 90, 61, .22);
}
.service:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--blue), var(--lavender)); box-shadow: 0 14px 28px rgba(51,92,255,.20); }
.service:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--green), var(--teal)); box-shadow: 0 14px 28px rgba(18,98,79,.20); }
.service-icon svg { width: 31px; height: 31px; }

.steps { grid-template-columns: repeat(4, 1fr); }
.step { padding: 24px; }
.num {
  width: 38px; height: 38px; border-radius: 50%;
  background: linear-gradient(135deg, var(--sun), var(--orange));
  display: grid; place-items: center; font-weight: 950; margin-bottom: 18px; color: var(--ink);
}
.split { grid-template-columns: 0.95fr 1.05fr; align-items: start; }
.split .steps { grid-template-columns: repeat(2, 1fr); }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.checklist li {
  background: rgba(255,255,255,.80); border: 1px solid rgba(23,34,59,.10);
  border-radius: 18px; padding: 15px 16px; color: var(--muted);
}
.checklist li strong { color: var(--ink); }

.band {
  background:
    radial-gradient(circle at 85% 10%, rgba(255,209,102,.42), transparent 16rem),
    linear-gradient(135deg, #17223b, #12624f 58%, #18a999);
  color: white; border-radius: 38px; padding: clamp(30px, 5vw, 60px);
  overflow: hidden; position: relative; box-shadow: var(--shadow);
}
.band::after {
  content: ""; position: absolute; width: 280px; height: 280px; right: -120px; bottom: -140px;
  background: rgba(255, 90, 61, 0.24); border-radius: 50%;
}
.band p, .band .kicker { color: rgba(255,255,255,.80); }
.band .btn.secondary { background: white; color: var(--ink); }
.band .btn.primary { background: linear-gradient(135deg, var(--coral), var(--orange)); }

.story-visual { min-height: 260px; display: grid; gap: 14px; }
.visual-lane { display: grid; grid-template-columns: 1fr auto 1fr auto 1fr; gap: 10px; align-items: center; }
.visual-box {
  background: var(--paper); border: 1px solid var(--line); border-radius: 20px;
  padding: 16px; min-height: 92px; box-shadow: 0 10px 20px rgba(23,34,59,.06);
}
.arrow { color: var(--coral); font-weight: 950; }
.form-card { padding: 30px; }

.footer { padding: 44px 0; color: var(--muted); border-top: 1px solid rgba(23,34,59,.10); }
.footer-grid { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; }

@media (max-width: 940px) {
  .hero-grid, .services, .steps, .split { grid-template-columns: 1fr; }
  .visual-lane { grid-template-columns: 1fr; }
  .arrow { transform: rotate(90deg); text-align: center; }
}
@media (max-width: 760px) {
  .navlinks { display: none; }
  .wrap { width: min(100% - 28px, 1160px); }
  .nav .btn { display: none; }
  .section { padding: 58px 0; }
  .hero { padding-top: 20px; }
  h1 { font-size: clamp(42px, 13vw, 58px); }
}
