/* =========================================================
   Jyoti Telecommunication LLP — global stylesheet
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --navy-900: #06182c;
  --navy-800: #0b2a4a;
  --navy-700: #123b66;
  --blue-600: #1668c1;
  --blue-500: #2f86df;
  --blue-100: #d6e7f9;
  --blue-50: #eef5fd;

  --amber-600: #d98a00;
  --amber-500: #f5a524;
  --amber-400: #ffbb4d;
  --amber-50: #fff6e6;

  --ink-900: #0e1726;
  --ink-700: #33415c;
  --ink-500: #5a6b87;
  --ink-400: #7b8aa3;

  --line: #e3e9f2;
  --surface: #f5f8fc;
  --white: #ffffff;

  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(11, 42, 74, 0.06), 0 2px 8px rgba(11, 42, 74, 0.05);
  --shadow: 0 4px 12px rgba(11, 42, 74, 0.07), 0 14px 34px rgba(11, 42, 74, 0.08);
  --shadow-lg: 0 18px 50px rgba(6, 24, 44, 0.16);

  --container: 1160px;
  --header-h: 76px;

  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  --font-head: "Sora", var(--font-body);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-700);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: var(--blue-600);
  text-decoration: none;
}

a:hover {
  color: var(--navy-800);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-head);
  color: var(--navy-900);
  line-height: 1.18;
  margin: 0 0 0.6em;
  letter-spacing: -0.02em;
  font-weight: 700;
}

h1 {
  font-size: clamp(2.1rem, 1.35rem + 3.1vw, 3.5rem);
}

h2 {
  font-size: clamp(1.65rem, 1.2rem + 1.9vw, 2.5rem);
}

h3 {
  font-size: clamp(1.15rem, 1.05rem + 0.4vw, 1.35rem);
}

p {
  margin: 0 0 1.1em;
}

p:last-child {
  margin-bottom: 0;
}

ul,
ol {
  margin: 0 0 1.1em;
  padding-left: 1.15em;
}

li + li {
  margin-top: 0.45em;
}

strong {
  color: var(--ink-900);
  font-weight: 600;
}

:focus-visible {
  outline: 3px solid var(--amber-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(3.5rem, 2rem + 6vw, 6.5rem) 0;
}

.section--tint {
  background: var(--surface);
  border-block: 1px solid var(--line);
}

.section--navy {
  background: var(--navy-900);
  color: var(--blue-100);
}

.section--navy h2,
.section--navy h3 {
  color: var(--white);
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2rem, 1.2rem + 2.5vw, 3.25rem);
}

.section-head--center {
  margin-inline: auto;
  text-align: center;
}

.section-head p {
  font-size: 1.06rem;
  color: var(--ink-500);
}

.section--navy .section-head p {
  color: var(--blue-100);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue-600);
  margin-bottom: 0.9rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-500);
}

.section--navy .eyebrow {
  color: var(--amber-400);
}

.lead {
  font-size: clamp(1.05rem, 1rem + 0.35vw, 1.2rem);
  color: var(--ink-500);
}

.grid {
  display: grid;
  gap: clamp(1rem, 0.6rem + 1.2vw, 1.6rem);
}

.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(clamp(260px, 45%, 420px), 1fr));
}

.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(275px, 1fr));
}

.grid--4 {
  grid-template-columns: repeat(auto-fit, minmax(225px, 1fr));
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  padding: 0.95rem 1.6rem;
  border: 1px solid transparent;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    color 0.18s var(--ease), border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn:active {
  transform: translateY(0);
}

.btn svg {
  width: 18px;
  height: 18px;
  flex: none;
}

.btn--primary {
  background: var(--amber-500);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(217, 138, 0, 0.32);
}

.btn--primary:hover {
  background: var(--amber-400);
  color: var(--navy-900);
}

.btn--dark {
  background: var(--navy-800);
  color: var(--white);
}

.btn--dark:hover {
  background: var(--navy-900);
  color: var(--white);
}

.btn--outline {
  border-color: var(--line);
  background: var(--white);
  color: var(--navy-800);
}

.btn--outline:hover {
  border-color: var(--blue-500);
  color: var(--blue-600);
}

.btn--ghost {
  border-color: rgba(255, 255, 255, 0.35);
  color: var(--white);
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.2s var(--ease);
}

.site-header.is-stuck {
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--navy-900);
  flex: none;
}

.brand:hover {
  color: var(--navy-900);
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  flex: none;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.brand-tag {
  font-size: 0.68rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-400);
}

.nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1.85rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list li {
  margin: 0;
}

.nav-list a {
  position: relative;
  font-size: 0.94rem;
  font-weight: 500;
  color: var(--ink-700);
  padding: 0.4rem 0;
}

.nav-list a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--amber-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.22s var(--ease);
}

.nav-list a:hover,
.nav-list a[aria-current="page"] {
  color: var(--navy-900);
}

.nav-list a:hover::after,
.nav-list a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-cta {
  flex: none;
}

.nav-toggle {
  display: none;
  position: relative;
  margin-left: auto;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  padding: 0;
  place-items: center;
}

.nav-toggle span {
  position: relative;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: var(--navy-800);
  transition: transform 0.22s var(--ease), opacity 0.15s linear;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
}

.nav-toggle span::before {
  transform: translateY(-6px);
}

.nav-toggle span::after {
  transform: translateY(6px);
}

.site-header.nav-open .nav-toggle span {
  background: transparent;
}

.site-header.nav-open .nav-toggle span::before {
  transform: rotate(45deg);
}

.site-header.nav-open .nav-toggle span::after {
  transform: rotate(-45deg);
}

/* ---------- Top utility bar ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--blue-100);
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.4rem 1.5rem;
  padding: 0.55rem 0;
}

.topbar-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 1.4rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.topbar-list li {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.topbar a {
  color: var(--blue-100);
}

.topbar a:hover {
  color: var(--amber-400);
}

.topbar svg {
  width: 15px;
  height: 15px;
  color: var(--amber-400);
  flex: none;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(47, 134, 223, 0.38), transparent 62%),
    linear-gradient(155deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--blue-100);
  padding: clamp(3.5rem, 2rem + 7vw, 6.5rem) 0 clamp(4rem, 2rem + 8vw, 7rem);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.4;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: clamp(2rem, 1rem + 4vw, 4rem);
  align-items: center;
}

.hero h1 {
  color: var(--white);
}

.hero h1 .accent {
  color: var(--amber-400);
}

.hero p {
  font-size: clamp(1.02rem, 0.98rem + 0.35vw, 1.18rem);
  max-width: 34rem;
}

.hero .eyebrow {
  color: var(--amber-400);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.4rem 0.95rem 0.4rem 0.5rem;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-size: 0.82rem;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-badge b {
  background: var(--amber-500);
  color: var(--navy-900);
  border-radius: var(--radius-pill);
  padding: 0.18rem 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 1.8rem 0 0;
  display: grid;
  gap: 0.7rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin: 0;
  font-size: 0.96rem;
}

.hero-points svg {
  width: 20px;
  height: 20px;
  color: var(--amber-400);
  flex: none;
  margin-top: 2px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius-lg);
  padding: clamp(1.5rem, 1rem + 1.5vw, 2.1rem);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-lg);
}

.hero-card h2 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.hero-card > p {
  font-size: 0.92rem;
  color: var(--blue-100);
}

.hero-card-list {
  list-style: none;
  padding: 0;
  margin: 1.3rem 0 0;
  display: grid;
  gap: 0.9rem;
}

.hero-card-list li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  margin: 0;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-card-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.hero-card-list .ico {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(245, 165, 36, 0.18);
  color: var(--amber-400);
  display: grid;
  place-items: center;
  flex: none;
}

.hero-card-list .ico svg {
  width: 19px;
  height: 19px;
}

.hero-card-list span {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(214, 231, 249, 0.75);
}

.hero-card-list a,
.hero-card-list b {
  color: var(--white);
  font-weight: 600;
  font-size: 0.97rem;
}

.hero-card-list a:hover {
  color: var(--amber-400);
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(800px 400px at 88% 0%, rgba(47, 134, 223, 0.35), transparent 60%),
    linear-gradient(150deg, var(--navy-900), var(--navy-700));
  color: var(--blue-100);
  padding: clamp(2.75rem, 2rem + 4vw, 4.75rem) 0;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.page-hero p {
  max-width: 44rem;
  font-size: 1.05rem;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  font-size: 0.85rem;
  color: rgba(214, 231, 249, 0.8);
}

.breadcrumb li {
  margin: 0;
}

.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.45rem;
  color: rgba(214, 231, 249, 0.45);
}

.breadcrumb a {
  color: rgba(214, 231, 249, 0.9);
}

.breadcrumb a:hover {
  color: var(--amber-400);
}

/* ---------- Cards ---------- */
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.35rem, 1rem + 1vw, 1.85rem);
  box-shadow: var(--shadow-sm);
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease),
    border-color 0.22s var(--ease);
}

.card--link:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue-100);
}

.card h3 {
  margin-bottom: 0.5rem;
}

.card p {
  font-size: 0.96rem;
  color: var(--ink-500);
}

.card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--blue-50);
  color: var(--blue-600);
  margin-bottom: 1.1rem;
}

.card-icon svg {
  width: 25px;
  height: 25px;
}

.card--amber .card-icon {
  background: var(--amber-50);
  color: var(--amber-600);
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 1.1rem 0 0;
  display: grid;
  gap: 0.5rem;
}

.card-list li {
  position: relative;
  margin: 0;
  padding-left: 1.5rem;
  font-size: 0.92rem;
  color: var(--ink-500);
}

.card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber-500);
}

.card-num {
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--blue-500);
  display: block;
  margin-bottom: 0.6rem;
}

/* ---------- Stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.stat {
  background: var(--white);
  padding: 1.6rem 1.4rem;
  text-align: center;
}

.stat b {
  display: block;
  font-family: var(--font-head);
  font-size: clamp(1.7rem, 1.3rem + 1.6vw, 2.4rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.88rem;
  color: var(--ink-500);
}

.section--navy .stats {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.14);
}

.section--navy .stat {
  background: var(--navy-900);
}

.section--navy .stat b {
  color: var(--amber-400);
}

.section--navy .stat span {
  color: var(--blue-100);
}

/* ---------- Split media/content ---------- */
.split {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: clamp(1.8rem, 1rem + 3.5vw, 4rem);
  align-items: center;
}

.split-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy-800), var(--blue-600));
  padding: clamp(1.5rem, 1rem + 2vw, 2.5rem);
  color: var(--blue-100);
  box-shadow: var(--shadow);
}

.split-visual h3 {
  color: var(--white);
}

.checklist {
  list-style: none;
  padding: 0;
  margin: 1.4rem 0 0;
  display: grid;
  gap: 0.8rem;
}

.checklist li {
  display: flex;
  gap: 0.7rem;
  align-items: flex-start;
  margin: 0;
  font-size: 0.97rem;
}

.checklist svg {
  width: 21px;
  height: 21px;
  flex: none;
  margin-top: 1px;
  color: var(--blue-600);
}

.split-visual .checklist svg {
  color: var(--amber-400);
}

/* ---------- Process timeline ---------- */
.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: clamp(1.4rem, 1rem + 1.5vw, 2rem);
}

.process-step {
  position: relative;
  padding-top: 3.6rem;
}

.process-step::before {
  counter-increment: step;
  content: "0" counter(step);
  position: absolute;
  top: 0;
  left: 0;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--blue-100);
  color: var(--blue-600);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
}

.process-step::after {
  content: "";
  position: absolute;
  top: 26px;
  left: 60px;
  right: -1rem;
  height: 2px;
  background: repeating-linear-gradient(
    90deg,
    var(--blue-100) 0 8px,
    transparent 8px 16px
  );
}

.process-step:last-child::after {
  display: none;
}

.process-step h3 {
  font-size: 1.08rem;
  margin-bottom: 0.4rem;
}

.process-step p {
  font-size: 0.93rem;
  color: var(--ink-500);
}

/* ---------- Clients ---------- */
.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 1rem;
}

.client {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  padding: 1.5rem 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: left;
  transition: transform 0.22s var(--ease), box-shadow 0.22s var(--ease);
}

.client:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.client-mark {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  background: var(--navy-800);
  color: var(--amber-400);
  margin-bottom: 0.55rem;
}

.client b {
  font-family: var(--font-head);
  font-size: 1rem;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.35;
}

.client span {
  font-size: 0.85rem;
  color: var(--ink-400);
}

.disclaimer {
  margin-top: 1.5rem;
  font-size: 0.85rem;
  color: var(--ink-400);
  max-width: 52rem;
}

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 1.4rem + 3vw, 3.5rem);
  background:
    radial-gradient(700px 320px at 90% 10%, rgba(245, 165, 36, 0.28), transparent 60%),
    linear-gradient(140deg, var(--navy-900), var(--navy-700));
  color: var(--blue-100);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.8rem;
  align-items: center;
}

.cta-band h2 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.cta-band p {
  max-width: 40rem;
}

/* ---------- Accordion / FAQ ---------- */
.accordion {
  display: grid;
  gap: 0.85rem;
  max-width: 52rem;
  margin-inline: auto;
}

.acc-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  overflow: hidden;
}

.acc-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  padding: 1.15rem 1.35rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy-900);
}

.acc-btn svg {
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--blue-600);
  transition: transform 0.24s var(--ease);
}

.acc-btn[aria-expanded="true"] svg {
  transform: rotate(45deg);
}

.acc-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s var(--ease);
}

.acc-panel > div {
  overflow: hidden;
}

.acc-item.is-open .acc-panel {
  grid-template-rows: 1fr;
}

.acc-panel p {
  padding: 0 1.35rem 1.35rem;
  font-size: 0.96rem;
  color: var(--ink-500);
  margin: 0;
}

/* ---------- Forms ---------- */
.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--ink-900);
}

.field label .req {
  color: #d64545;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink-900);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 0.75rem 0.9rem;
  transition: border-color 0.16s var(--ease), box-shadow 0.16s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--blue-500);
  box-shadow: 0 0 0 3px rgba(47, 134, 223, 0.16);
}

.field input:user-invalid,
.field textarea:user-invalid {
  border-color: #d64545;
}

.form-note {
  font-size: 0.85rem;
  color: var(--ink-400);
}

.form-status {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  display: none;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-ok {
  background: #e9f7ef;
  border: 1px solid #b6e2c6;
  color: #1d6b3e;
}

.form-status.is-error {
  background: #fdecec;
  border: 1px solid #f3c2c2;
  color: #a12626;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

/* ---------- Contact blocks ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: clamp(1.6rem, 1rem + 3vw, 3rem);
  align-items: start;
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.15rem;
}

.info-list li {
  display: flex;
  gap: 0.95rem;
  margin: 0;
}

.info-list .ico {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--blue-50);
  color: var(--blue-600);
  display: grid;
  place-items: center;
  flex: none;
}

.info-list .ico svg {
  width: 20px;
  height: 20px;
}

.info-list h3 {
  font-size: 0.98rem;
  margin-bottom: 0.15rem;
}

.info-list p,
.info-list address {
  font-size: 0.95rem;
  font-style: normal;
  color: var(--ink-500);
  margin: 0;
}

.info-list a {
  color: var(--ink-500);
}

.info-list a:hover {
  color: var(--blue-600);
}

.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  line-height: 0;
}

.map-frame iframe {
  width: 100%;
  height: 380px;
  border: 0;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(214, 231, 249, 0.82);
  padding-top: clamp(3rem, 2rem + 3vw, 4.5rem);
  font-size: 0.94rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) repeat(auto-fit, minmax(180px, 1fr));
  gap: clamp(1.8rem, 1rem + 3vw, 3rem);
  padding-bottom: 2.5rem;
}

.site-footer h3 {
  color: var(--white);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
}

.site-footer a {
  color: rgba(214, 231, 249, 0.82);
}

.site-footer a:hover {
  color: var(--amber-400);
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
  color: var(--white);
}

.footer-brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  background: var(--white);
  border-radius: 8px;
  flex: none;
}

.footer-brand .brand-name {
  color: var(--white);
  font-size: 1.05rem;
}

.footer-brand .brand-tag {
  color: rgba(214, 231, 249, 0.6);
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.6rem;
}

.footer-list li {
  margin: 0;
}

.footer-contact {
  font-style: normal;
  display: grid;
  gap: 0.7rem;
}

.footer-contact div {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}

.footer-contact svg {
  width: 17px;
  height: 17px;
  color: var(--amber-400);
  flex: none;
  margin-top: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 1.3rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.6rem 1.5rem;
  font-size: 0.87rem;
  color: rgba(214, 231, 249, 0.6);
}

.footer-bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-bottom li {
  margin: 0;
}

/* ---------- Floating actions ---------- */
.float-actions {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 55;
  display: grid;
  gap: 0.6rem;
}

.float-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow);
  border: 0;
  cursor: pointer;
  transition: transform 0.18s var(--ease), background-color 0.18s var(--ease),
    opacity 0.18s var(--ease), visibility 0.18s;
}

.float-btn:hover {
  transform: translateY(-3px);
  color: var(--white);
}

.float-btn svg {
  width: 24px;
  height: 24px;
}

.float-btn--call {
  background: var(--amber-500);
  color: var(--navy-900);
}

.float-btn--call:hover {
  background: var(--amber-400);
  color: var(--navy-900);
}

.float-btn--top {
  opacity: 0;
  visibility: hidden;
}

.float-btn--top.is-visible {
  opacity: 1;
  visibility: visible;
}

/* ---------- Skip link ---------- */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  background: var(--amber-500);
  color: var(--navy-900);
  padding: 0.7rem 1.1rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: top 0.2s var(--ease);
}

.skip-link:focus {
  top: 1rem;
  color: var(--navy-900);
}

/* ---------- Prose (policy pages) ---------- */
.prose {
  max-width: 48rem;
}

.prose h2 {
  font-size: 1.45rem;
  margin-top: 2.2rem;
}

.prose h2:first-child {
  margin-top: 0;
}

/* ---------- Reveal animation ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.55s var(--ease), transform 0.55s var(--ease);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-band {
    grid-template-columns: 1fr;
  }

  .process-step::after {
    display: none;
  }
}

@media (max-width: 860px) {
  .nav-toggle {
    display: grid;
  }

  .nav {
    position: fixed;
    inset: calc(var(--header-h)) 0 auto;
    margin: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 1.25rem 1.75rem;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }

  .site-header.nav-open .nav {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 0.85rem 0.25rem;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }

  .nav-list a::after {
    display: none;
  }

  .nav-cta {
    margin-top: 1.1rem;
  }

  .nav-cta .btn {
    width: 100%;
  }
}

@media (max-width: 620px) {
  .topbar-inner {
    justify-content: center;
    text-align: center;
  }

  .topbar-list {
    justify-content: center;
  }

  .brand-name {
    font-size: 0.7rem;
    max-width: 10.5rem;
  }

  .brand-tag {
    display: none;
  }

  .float-actions {
    right: 0.75rem;
    bottom: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .topbar,
  .float-actions,
  .cta-band,
  .site-footer {
    display: none !important;
  }
}
