/* ===================== Sevensoft — Design Tokens ===================== */
:root {
  --navy-950: #161e30;
  --navy-900: #1d2940;
  --navy-800: #2c3b5c;
  --navy-700: #3a4c73;
  --navy-100: #eef1f6;
  --teal-600: #206577;
  --teal-500: #277285;
  --teal-400: #2e93a8;
  --teal-300: #7fc3d1;
  --bg: #f7f9fb;
  --surface: #ffffff;
  --text: #1f2635;
  --muted: #5b6472;
  --border: #e4e9f0;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(29, 41, 64, 0.06);
  --shadow-md: 0 8px 24px rgba(29, 41, 64, 0.1);
  --shadow-lg: 0 20px 48px rgba(29, 41, 64, 0.16);
  --container: 1180px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Outfit', 'Inter', sans-serif;
  font-weight: 700;
  color: var(--navy-900);
  line-height: 1.15;
  letter-spacing: -0.01em;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

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

.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(--teal-500);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--teal-400);
  border-radius: 2px;
}

.section-head {
  max-width: 620px;
  margin-bottom: 56px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); margin-bottom: 14px; }
.section-head p { color: var(--muted); font-size: 1.05rem; }

section { padding: 108px 0; position: relative; }

/* ===================== Buttons ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  color: #fff;
  box-shadow: 0 10px 24px rgba(39, 114, 133, 0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(39, 114, 133, 0.42); }
.btn-ghost {
  background: transparent;
  color: var(--navy-900);
  border-color: var(--border);
}
.btn-ghost:hover { border-color: var(--navy-800); background: var(--navy-100); }
.btn-light {
  background: #fff;
  color: var(--navy-900);
}
.btn-light:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===================== Header ===================== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease), padding 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(247, 249, 251, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(29,41,64,0.06);
  padding: 12px 0;
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 10px; }
.brand img { width: 38px; height: 38px; }
.brand .logo-text { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 1.28rem; color: var(--navy-900); }
.brand .logo-text .accent { color: var(--teal-500); }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a {
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--navy-900);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: "";
  position: absolute; left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--teal-400);
  transition: width 0.25s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.header-cta { display: flex; align-items: center; gap: 18px; }
.nav-toggle {
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: "";
  display: block;
  width: 18px; height: 2px;
  background: var(--navy-900);
  position: relative;
  transition: all 0.25s var(--ease);
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

/* ===================== Hero ===================== */
.hero {
  padding: 168px 0 120px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 88% -8%, rgba(46, 147, 168, 0.16), transparent 60%),
    radial-gradient(600px 460px at 5% 8%, rgba(44, 59, 92, 0.10), transparent 60%);
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }

.hero-content h1 { font-size: clamp(2.3rem, 4.4vw, 3.4rem); margin-bottom: 22px; }
.hero-content h1 .accent { color: var(--teal-500); }
.hero-content .lead { font-size: 1.12rem; color: var(--muted); max-width: 540px; margin-bottom: 34px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.hero-tags span {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--navy-800);
  background: #fff;
  border: 1px solid var(--border);
  padding: 7px 14px;
  border-radius: 999px;
}

.hero-visual { position: relative; height: 480px; }
.hero-card {
  position: absolute;
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
  padding: 20px;
}
.hero-card-main {
  inset: 20px 40px 60px 10px;
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800) 60%, var(--teal-600));
  color: #fff;
  border: none;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-card-main .mono {
  font-family: 'JetBrains Mono', 'SFMono-Regular', Menlo, monospace;
  font-size: 0.82rem;
  line-height: 1.9;
  opacity: 0.92;
}
.hero-card-main .mono .k { color: var(--teal-300); }
.hero-card-main .mono .s { color: #f0c987; }
.hero-card-main .mono .c { color: #8ea3c9; }
.hero-progress { display: flex; flex-direction: column; gap: 10px; }
.hero-progress-row { display: flex; align-items: center; gap: 10px; font-size: 0.78rem; }
.hero-progress-row span { min-width: 92px; white-space: nowrap; opacity: 0.85; }
.hero-progress-bar { flex: 1; height: 6px; border-radius: 4px; background: rgba(255,255,255,0.15); overflow: hidden; }
.hero-progress-bar i { display: block; height: 100%; background: linear-gradient(90deg, var(--teal-300), #fff); border-radius: 4px; }

.hero-card-float {
  width: 210px;
  top: -18px;
  right: 0;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-card-float .ico {
  width: 42px; height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-600));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 1rem;
}
.hero-card-float strong { display: block; font-size: 0.92rem; color: var(--navy-900); }
.hero-card-float span { font-size: 0.78rem; color: var(--muted); }

.hero-card-badge {
  bottom: 10px;
  left: -10px;
  width: 190px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.hero-card-badge .dot { width: 10px; height: 10px; border-radius: 50%; background: #37c98a; box-shadow: 0 0 0 4px rgba(55,201,138,0.18); }
.hero-card-badge strong { display: block; font-size: 0.86rem; color: var(--navy-900); }
.hero-card-badge span { font-size: 0.75rem; color: var(--muted); }

.hero-stats { display: flex; gap: 28px; margin-top: 46px; flex-wrap: wrap; }
.hero-stats div strong { display: block; font-family: 'Outfit', sans-serif; font-size: 1.5rem; color: var(--navy-900); }
.hero-stats div span { font-size: 0.82rem; color: var(--muted); }

/* ===================== Logos strip ===================== */
.trust-strip { padding: 46px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); background: #fff; }
.trust-strip .container { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: space-between; }
.trust-strip p { font-size: 0.85rem; color: var(--muted); font-weight: 600; white-space: nowrap; }
.trust-logos { display: flex; gap: 14px; flex-wrap: wrap; flex: 1; justify-content: flex-end; }
.trust-logos a {
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  color: var(--navy-700);
  font-size: 0.98rem;
  padding: 9px 18px;
  border: 1px solid var(--border);
  border-radius: 999px;
  transition: all 0.25s var(--ease);
}
.trust-logos a:hover { color: var(--teal-500); border-color: var(--teal-400); transform: translateY(-2px); }

/* ===================== Services ===================== */
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-bottom: 26px; }
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card.highlight {
  background: linear-gradient(155deg, var(--navy-900), var(--navy-800) 65%, var(--teal-600));
  color: #fff;
  border: none;
}
.service-card.highlight h3, .service-card.highlight .service-num { color: #fff; }
.service-card.highlight p { color: rgba(255,255,255,0.78); }
.service-card.highlight .service-list li { color: rgba(255,255,255,0.9); border-color: rgba(255,255,255,0.16); }
.service-card.highlight .service-list li::before { color: var(--teal-300); }
.service-card.highlight .pill { background: rgba(255,255,255,0.12); color: #fff; }

.service-num { font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 0.85rem; color: var(--teal-500); margin-bottom: 18px; display: block; }
.pill {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--navy-100);
  color: var(--navy-800);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1.45rem; margin-bottom: 12px; }
.service-card > p { color: var(--muted); margin-bottom: 22px; }
.service-list { display: grid; gap: 10px; }
.service-list li {
  font-size: 0.92rem;
  padding: 10px 0 10px 26px;
  position: relative;
  border-top: 1px solid var(--border);
  color: var(--text);
}
.service-list li:first-child { border-top: none; }
.service-list li::before {
  content: "→";
  position: absolute; left: 0; top: 10px;
  color: var(--teal-500);
  font-weight: 700;
}

.services-extra { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.mini-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.mini-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.mini-card .mini-ico {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--navy-100);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.mini-card h4 { font-size: 1.04rem; margin-bottom: 8px; }
.mini-card p { font-size: 0.9rem; color: var(--muted); }

/* ===================== Technologies ===================== */
.tech-section { background: var(--navy-950); color: #fff; }
.tech-section .section-head h2 { color: #fff; }
.tech-section .section-head p { color: rgba(255,255,255,0.6); }
.tech-section .eyebrow { color: var(--teal-300); }
.tech-section .eyebrow::before { background: var(--teal-300); }

.tech-groups { display: grid; gap: 40px; }
.tech-group-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-300);
  margin-bottom: 18px;
  display: flex; align-items: center; gap: 10px;
}
.tech-group-label::after { content: ""; flex: 1; height: 1px; background: rgba(255,255,255,0.12); }
.tech-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); gap: 14px; }
.tech-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease);
}
.tech-chip:hover { transform: translateY(-3px); background: rgba(255,255,255,0.08); border-color: rgba(46,147,168,0.5); }
.tech-chip .tech-ico {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.9);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.tech-chip .tech-ico img { width: 22px; height: 22px; object-fit: contain; }
.tech-chip .tech-ico svg { width: 20px; height: 20px; }
.tech-chip span { font-size: 0.88rem; font-weight: 500; color: #eef1f6; }

/* ===================== Sectors ===================== */
.sectors-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.sector-card {
  border-radius: var(--radius-lg);
  padding: 44px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: #fff;
  isolation: isolate;
}
.sector-card::before {
  content: "";
  position: absolute; inset: 0;
  z-index: -1;
}
.sector-card.health::before { background: linear-gradient(155deg, #1c5f6f, #123a44 75%); }
.sector-card.admin::before { background: linear-gradient(155deg, var(--navy-800), var(--navy-950) 75%); }
.sector-card .sector-ico {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: rgba(255,255,255,0.14);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.sector-card h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.sector-card p { color: rgba(255,255,255,0.75); margin-bottom: 20px; max-width: 420px; }
.sector-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.sector-tags span {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.2);
}

/* ===================== Clients ===================== */
.clients-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.client-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.client-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.client-mark {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--navy-900);
  margin-bottom: 8px;
}
.client-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 16px; }
.client-card a.visit { font-size: 0.82rem; font-weight: 600; color: var(--teal-500); display: inline-flex; align-items: center; gap: 6px; }
.client-card a.visit:hover { text-decoration: underline; }

/* ===================== About ===================== */
.about-section .container { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items: center; }
.about-visual {
  background: linear-gradient(155deg, var(--navy-900), var(--teal-600));
  border-radius: var(--radius-lg);
  padding: 44px;
  color: #fff;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.about-visual .quote { font-family: 'Outfit', sans-serif; font-size: 1.35rem; line-height: 1.45; }
.about-visual .who { display: flex; align-items: center; gap: 12px; margin-top: 30px; }
.about-visual .who img { width: 46px; height: 46px; border-radius: 12px; background: #fff; padding: 6px; }
.about-visual .who strong { display: block; font-size: 0.95rem; }
.about-visual .who span { font-size: 0.8rem; opacity: 0.75; }

.about-content p { color: var(--muted); margin-bottom: 18px; font-size: 1.02rem; }
.about-values { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 30px; }
.about-value { display: flex; gap: 14px; }
.about-value .v-ico {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--navy-100);
  color: var(--teal-600);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.about-value h4 { font-size: 0.98rem; margin-bottom: 4px; }
.about-value p { font-size: 0.86rem; color: var(--muted); margin: 0; }

/* ===================== Contact ===================== */
.contact-section { background: var(--navy-950); color: #fff; }
.contact-section .container { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; }
.contact-info h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.65); margin-bottom: 34px; }
.contact-detail { display: flex; gap: 14px; margin-bottom: 22px; }
.contact-detail .c-ico {
  width: 42px; height: 42px;
  border-radius: 11px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--teal-300);
}
.contact-detail strong { display: block; font-size: 0.92rem; }
.contact-detail span, .contact-detail a { font-size: 0.88rem; color: rgba(255,255,255,0.65); }
.contact-detail a:hover { color: #fff; }

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px; }
.field label { font-size: 0.82rem; font-weight: 600; color: rgba(255,255,255,0.75); }
.field input, .field select, .field textarea {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: #fff;
  font-family: inherit;
  font-size: 0.92rem;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.field select option { color: #1f2635; }
.field input::placeholder, .field textarea::placeholder { color: rgba(255,255,255,0.35); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  background: rgba(255,255,255,0.09);
}
.field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 0.78rem; color: rgba(255,255,255,0.4); margin-top: 14px; }
.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(55,201,138,0.12);
  border: 1px solid rgba(55,201,138,0.35);
  color: #7fe0b8;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-top: 16px;
}
.form-success.show { display: flex; }

.form-error {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(235,87,87,0.12);
  border: 1px solid rgba(235,87,87,0.35);
  color: #ff9b9b;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  margin-top: 16px;
}
.form-error.show { display: flex; }

.hp-field {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  margin: 0;
}

/* ===================== Footer ===================== */
.site-footer { background: #131b2c; color: rgba(255,255,255,0.6); padding: 64px 0 28px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand .brand .logo-text { color: #fff; }
.footer-brand p { font-size: 0.88rem; line-height: 1.7; max-width: 300px; margin-bottom: 20px; }
.social-row { display: flex; gap: 10px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.social-row a:hover { background: var(--teal-500); transform: translateY(-2px); }
.footer-col h5 { color: #fff; font-family: 'Outfit', sans-serif; font-size: 0.9rem; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 0.88rem; }
.footer-col a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 26px; font-size: 0.8rem; flex-wrap: wrap; gap: 12px; }
.footer-bottom .legal-links { display: flex; gap: 20px; }

/* ===================== Back to top ===================== */
.back-to-top {
  position: fixed;
  right: 24px; bottom: 24px;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--navy-900);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s var(--ease);
  z-index: 900;
  cursor: pointer;
  border: none;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--teal-500); }

/* ===================== Reveal animation ===================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ===================== Responsive ===================== */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { height: 380px; margin-top: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .services-extra { grid-template-columns: 1fr 1fr; }
  .sectors-grid { grid-template-columns: 1fr; }
  .clients-grid { grid-template-columns: 1fr; }
  .about-section .container { grid-template-columns: 1fr; }
  .about-visual { order: 2; }
  .contact-section .container { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .nav-links, .header-cta .btn-ghost { display: none; }
  .nav-toggle { display: flex; }
  .site-header.open .nav-links {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    padding: 20px 24px 28px;
    box-shadow: var(--shadow-md);
    gap: 18px;
  }
  section { padding: 76px 0; }
  .hero { padding-top: 132px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-stats { gap: 20px; }
  .trust-strip .container { flex-direction: column; align-items: flex-start; }
  .trust-logos { justify-content: flex-start; }
  .services-extra { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .tech-grid { grid-template-columns: repeat(auto-fill, minmax(130px, 1fr)); }
}
