:root {
  --navy: #102033;
  --blue: #2563eb;
  --cyan: #06b6d4;
  --ink: #1f2937;
  --muted: #667085;
  --soft: #f5f8fc;
  --white: #fff;
  --line: #e6edf5;
  --green: #16a34a;
  --shadow: 0 18px 45px rgba(16, 32, 51, .12);
  --shadow-sm: 0 4px 16px rgba(16, 32, 51, .07);
  --radius: 22px;
  --ease: .26s cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', 'Segoe UI', Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1120px, 92%); margin: auto; }

/* ── Topbar ── */
.topbar { background: var(--navy); color: #dbeafe; font-size: .9rem; }
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
}

/* ── Nav ── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--ease);
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(16, 32, 51, .08); }
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -.03em;
  transition: opacity var(--ease);
}
.brand:hover { opacity: .85; }
.brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 900;
  font-size: .95rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .3);
  transition: transform var(--ease), box-shadow var(--ease);
  flex-shrink: 0;
}
.brand:hover .brand-mark {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(37, 99, 235, .38);
}
.brand span small {
  display: block;
  font-size: .72rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0;
}
.nav-links {
  display: flex;
  gap: 22px;
  align-items: center;
  font-weight: 650;
  color: #344054;
}
.nav-links a:not(.btn) {
  position: relative;
  padding-bottom: 2px;
  transition: color var(--ease);
}
.nav-links a:not(.btn)::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: width var(--ease);
}
.nav-links a:not(.btn):hover { color: var(--blue); }
.nav-links a:not(.btn):hover::after { width: 100%; }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  background: var(--blue);
  color: #fff;
  padding: 13px 24px;
  font-weight: 750;
  font-size: .95rem;
  box-shadow: 0 8px 20px rgba(37, 99, 235, .28);
  cursor: pointer;
  transition: transform var(--ease), box-shadow var(--ease), background var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, .38);
  background: #1d4ed8;
}
.btn:active { transform: translateY(0); }
.btn.secondary {
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--line);
  box-shadow: none;
}
.btn.secondary:hover {
  background: var(--soft);
  border-color: #bfdbfe;
  box-shadow: 0 6px 18px rgba(16, 32, 51, .1);
}
.btn.dark { background: var(--navy); box-shadow: 0 8px 20px rgba(16, 32, 51, .25); }
.btn.dark:hover { background: #1a3250; }
.mobile-toggle {
  display: none;
  border: 0;
  background: #eef4ff;
  border-radius: 12px;
  padding: 10px 13px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background var(--ease);
}
.mobile-toggle:hover { background: #dbeafe; }

/* ── Hero ── */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(112deg, rgba(10, 22, 40, .97) 0%, rgba(16, 32, 51, .82) 55%, rgba(37, 99, 235, .5) 100%),
    url('https://images.unsplash.com/photo-1516321318423-f06f85e504b3?auto=format&fit=crop&w=1800&q=80') center / cover;
  min-height: 660px;
  display: flex;
  align-items: center;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 48px;
  align-items: center;
  padding: 80px 0;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .13);
  border: 1px solid rgba(255, 255, 255, .25);
  font-weight: 750;
  font-size: .88rem;
  letter-spacing: .01em;
}
.hero h1, .page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 4.9rem);
  line-height: 1.02;
  margin: 20px 0;
  letter-spacing: -.06em;
}
.hero p {
  font-size: 1.2rem;
  color: #d9e8fb;
  max-width: 560px;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 28px;
}
.hero-card {
  background: rgba(255, 255, 255, .97);
  color: var(--ink);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card h3 { margin-top: 0; color: var(--navy); margin-bottom: 16px; }

/* ── Check list ── */
.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}
.check-list li {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}
.check-list li::before {
  content: '✓';
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #dcfce7;
  color: var(--green);
  display: grid;
  place-items: center;
  flex: 0 0 24px;
  font-weight: 900;
  font-size: .82rem;
}

/* ── Trust strip ── */
.trust-strip {
  background: #fff;
  margin-top: -56px;
  position: relative;
  z-index: 3;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #fff;
  padding: 0;
  border-radius: 24px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.trust-item {
  padding: 22px 24px;
  border-right: 1px solid var(--line);
  position: relative;
}
.trust-item:last-child { border-right: none; }
.trust-item::before {
  content: '';
  display: block;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--cyan));
  border-radius: 2px;
  margin-bottom: 10px;
}
.trust-item strong {
  display: block;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1.2;
  margin-bottom: 3px;
}

/* ── Sections ── */
.section { padding: 82px 0; }
.section.soft { background: var(--soft); }
.section-title { max-width: 760px; margin: 0 auto 46px; text-align: center; }
.section-title.left { text-align: left; margin-left: 0; }
.section-title h2 {
  font-size: clamp(2rem, 3vw, 3.1rem);
  line-height: 1.1;
  margin: 0 0 14px;
  color: var(--navy);
  letter-spacing: -.045em;
}
.section-title p { color: var(--muted); font-size: 1.05rem; margin: 0; }

/* ── Cards ── */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #bfdbfe;
}
.icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #eef4ff, #dbeafe);
  color: var(--blue);
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  margin-bottom: 18px;
  transition: transform var(--ease);
}
.card:hover .icon { transform: scale(1.12) rotate(-3deg); }
.card h3 { color: var(--navy); margin: 0 0 10px; font-size: 1.1rem; }
.card p { color: var(--muted); margin: 0; }

/* ── Split / Photo ── */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.photo {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 420px;
  background: center / cover;
  transition: transform var(--ease);
}
.photo:hover { transform: scale(1.015); }
.photo.office  { background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?auto=format&fit=crop&w=1400&q=80'); }
.photo.laptop  { background-image: url('https://images.unsplash.com/photo-1517694712202-14dd9538aa97?auto=format&fit=crop&w=1400&q=80'); }
.photo.repair  { background-image: url('https://images.unsplash.com/photo-1581090464777-f3220bbe1b8b?auto=format&fit=crop&w=1400&q=80'); }

/* ── Badges ── */
.badge-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
.badge {
  background: #fff;
  border: 1px solid var(--line);
  padding: 16px 18px;
  border-radius: 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: .93rem;
  transition: border-color var(--ease), box-shadow var(--ease), transform var(--ease);
}
.badge:hover {
  border-color: #bfdbfe;
  box-shadow: 0 4px 14px rgba(37, 99, 235, .1);
  transform: translateY(-2px);
}

/* ── CTA ── */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, #1e40af 100%);
  color: #fff;
  border-radius: 32px;
  padding: 48px 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow);
}
.cta h2 { margin: 0 0 8px; font-size: 2.1rem; }
.cta p { margin: 0; color: #bfdbfe; font-size: 1.05rem; }

/* ── Page hero ── */
.page-hero {
  background:
    linear-gradient(112deg, rgba(16, 32, 51, .97) 0%, rgba(37, 99, 235, .72) 100%),
    url('https://images.unsplash.com/photo-1556761175-b413da4baf72?auto=format&fit=crop&w=1800&q=80') center / cover;
  color: #fff;
  padding: 96px 0 100px;
}
.page-hero .eyebrow { margin-bottom: 18px; display: inline-flex; }
.page-hero p {
  max-width: 760px;
  font-size: 1.16rem;
  color: #d9e8fb;
  line-height: 1.75;
  margin-top: 14px;
}

/* ── Services ── */
.service-row {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: 28px;
  border-bottom: 1px solid var(--line);
  padding: 36px 0;
  transition: background var(--ease);
}
.service-row:first-child { padding-top: 0; }
.service-row:last-child { border-bottom: none; }
.service-row h2 {
  color: var(--navy);
  margin: 0;
  font-size: 1.5rem;
  line-height: 1.25;
}
.pill-list { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 16px; }
.pill {
  background: #eef4ff;
  color: #1d4ed8;
  border: 1px solid #dbeafe;
  border-radius: 999px;
  padding: 7px 14px;
  font-weight: 700;
  font-size: .87rem;
  transition: background var(--ease), color var(--ease), border-color var(--ease);
  cursor: default;
}
.pill:hover { background: #dbeafe; color: #1e40af; border-color: #93c5fd; }

/* ── Pricing ── */
.pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.price-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--ease), box-shadow var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.price-card h3 { color: var(--navy); margin: 0 0 6px; font-size: 1.05rem; }
.price-card p { color: var(--muted); margin: 0; font-size: .93rem; }
.price-card.featured {
  border: 2px solid var(--blue);
  border-top-width: 4px;
}
.price-card.featured::before {
  content: 'Popular';
  position: absolute;
  top: -1px;
  right: 24px;
  background: var(--blue);
  color: #fff;
  font-size: .74rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 0 0 10px 10px;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.price {
  font-size: 2.5rem;
  color: var(--navy);
  font-weight: 850;
  letter-spacing: -.05em;
  line-height: 1;
  margin: 10px 0 14px;
}
.price small { font-size: 1rem; color: var(--muted); font-weight: 650; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 32px; }
.form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 26px;
  padding: 30px;
  box-shadow: var(--shadow);
}
.form h2 { margin-top: 0; color: var(--navy); margin-bottom: 6px; }
label {
  font-weight: 750;
  color: var(--navy);
  display: block;
  margin: 14px 0 6px;
  font-size: .93rem;
}
input, textarea, select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid #cfd8e3;
  border-radius: 14px;
  font: inherit;
  font-size: .95rem;
  color: var(--ink);
  background: #fff;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  appearance: none;
}
input:focus, textarea:focus, select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .13);
}
textarea { min-height: 140px; resize: vertical; }
select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 44px;
}

/* ── Footer ── */
.footer {
  background: #0b1625;
  color: #d0d9e8;
  padding: 56px 0 26px;
}
.footer-grid { display: grid; grid-template-columns: 1.2fr repeat(3, 1fr); gap: 30px; }
.footer h4 { color: #fff; margin: 0 0 14px; font-size: .95rem; font-weight: 800; letter-spacing: -.01em; }
.footer a { display: block; color: #98a7bb; margin: 8px 0; font-size: .92rem; transition: color var(--ease); }
.footer a:hover { color: #fff; }
.footer p { color: #98a7bb; font-size: .9rem; line-height: 1.65; margin: 8px 0; }
.subfooter {
  border-top: 1px solid rgba(255, 255, 255, .09);
  margin-top: 36px;
  padding-top: 22px;
  font-size: .88rem;
  color: #98a7bb;
}

/* ── Notice ── */
.notice {
  background: #fff7ed;
  border: 1px solid #fed7aa;
  color: #9a3412;
  border-radius: 18px;
  padding: 18px 22px;
  margin-top: 22px;
  font-size: .93rem;
}

/* ── Gallery ── */
.gallery { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 18px; }
.gallery .photo { min-height: 280px; }
.gallery .photo:nth-child(1) {
  grid-row: span 2;
  min-height: 578px;
  background-image: url('https://images.unsplash.com/photo-1553877522-43269d4ea984?auto=format&fit=crop&w=1400&q=80');
}
.gallery .photo:nth-child(2) { background-image: url('https://images.unsplash.com/photo-1542744173-8e7e53415bb0?auto=format&fit=crop&w=1000&q=80'); }
.gallery .photo:nth-child(3) { background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?auto=format&fit=crop&w=1000&q=80'); }
.gallery .photo:nth-child(4) { background-image: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?auto=format&fit=crop&w=1000&q=80'); }
.gallery .photo:nth-child(5) { background-image: url('https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1000&q=80'); }

/* ── Scroll reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .58s ease, transform .58s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-fade {
  opacity: 0;
  transition: opacity .6s ease;
}
.reveal-fade.visible { opacity: 1; }

/* ── Form success message ── */
.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #86efac;
  color: #15803d;
  border-radius: 16px;
  padding: 18px 22px;
  margin-top: 16px;
  font-weight: 650;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .topbar .container { display: block; }
  .mobile-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    left: 4%;
    right: 4%;
    top: 74px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 18px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .nav-links.open { display: flex; }
  .nav-links a:not(.btn) { padding: 8px 4px; width: 100%; }
  .nav-links .btn { margin-top: 8px; }
  .hero { min-height: auto; }
  .hero-grid, .split, .contact-grid, .service-row { grid-template-columns: 1fr; }
  .trust-grid, .cards, .pricing, .footer-grid, .gallery { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 0; }
  .trust-grid { border-radius: 0; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: none; }
  .cta { display: block; padding: 36px 28px; }
  .cta .btn { margin-top: 24px; display: inline-flex; }
  .price-card.featured { transform: none; }
  .gallery .photo:nth-child(1) { grid-row: auto; min-height: 300px; }
  .photo.office, .photo.repair { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .badge-grid { grid-template-columns: 1fr; }
  .hero-grid { padding: 60px 0 40px; }
  .cta { padding: 28px 22px; }
}
