:root {
  --orange: #f15a24;
  --orange-dark: #c93d14;
  --navy: #07111f;
  --navy-soft: #25364b;
  --ink: #111827;
  --muted: #667085;
  --line: #e5e7eb;
  --paper: #ffffff;
  --wash: #f4f7fb;
  --champagne: #fbfcfe;
  --silver: #eef2f7;
  --shadow: 0 28px 80px rgba(17, 24, 39, 0.12);
}

.admin-download-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 0 0 4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.admin-download-panel h2 {
  margin-bottom: 0.45rem;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.admin-download-panel p:not(.eyebrow) {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.modal-open {
  overflow: hidden;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(7, 17, 31, 0.68);
  backdrop-filter: blur(10px);
}

.modal-backdrop[aria-hidden="false"] {
  display: flex;
}

.enquiry-modal {
  position: relative;
  width: min(720px, 100%);
  max-height: min(92vh, 820px);
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.11), transparent 16rem);
  box-shadow: 0 36px 90px rgba(0, 0, 0, 0.28);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #ffffff;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
}

.modal-copy {
  max-width: 620px;
  color: var(--muted);
  line-height: 1.7;
}

.partner-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.4rem;
}

.partner-form label {
  display: grid;
  gap: 0.45rem;
}

.partner-form span {
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
}

.partner-form input,
.partner-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  outline: none;
}

.partner-form input:focus,
.partner-form textarea:focus {
  border-color: rgba(241, 90, 36, 0.7);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.12);
}

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

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.admin-page-hero {
  max-width: 900px;
  padding: 5rem 0 2rem;
}

.admin-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.75;
}

.admin-lock,
.admin-table-section {
  margin-bottom: 4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.admin-lock {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.55fr);
  gap: 2rem;
  align-items: center;
}

.admin-lock p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.65;
}

.admin-login-form {
  display: grid;
  gap: 0.85rem;
}

.admin-login-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
  outline: none;
}

.admin-login-form input:focus {
  border-color: rgba(241, 90, 36, 0.7);
  box-shadow: 0 0 0 4px rgba(241, 90, 36, 0.12);
}

.admin-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.danger-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid rgba(201, 61, 20, 0.28);
  border-radius: 8px;
  padding: 0 1.25rem;
  color: var(--orange-dark);
  background: rgba(241, 90, 36, 0.08);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.danger-button:hover {
  border-color: rgba(201, 61, 20, 0.5);
  background: rgba(241, 90, 36, 0.13);
}

.admin-toolbar h2 {
  margin-bottom: 0;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
}

.admin-table-wrap {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  min-width: 980px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.admin-table th,
.admin-table td {
  border-bottom: 1px solid var(--line);
  padding: 0.9rem;
  text-align: left;
  vertical-align: top;
}

.admin-table th {
  color: var(--navy);
  background: var(--silver);
  font-weight: 900;
}

.admin-table td {
  color: var(--muted);
  line-height: 1.55;
}

.empty-state {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 920px) {
  .admin-download-panel {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-lock {
    grid-template-columns: 1fr;
  }

  .admin-toolbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .admin-actions {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .partner-form {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 0%, rgba(241, 90, 36, 0.08), transparent 26rem),
    radial-gradient(circle at 92% 10%, rgba(7, 17, 31, 0.06), transparent 30rem),
    linear-gradient(180deg, #ffffff 0%, #f6f8fb 45%, #ffffff 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1180px, calc(100% - 32px));
  margin: 0.85rem auto 0;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(229, 231, 235, 0.9);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 18px 55px rgba(17, 24, 39, 0.08);
  backdrop-filter: blur(20px);
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand img {
  width: 104px;
  height: auto;
  display: block;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy-soft);
}

.nav a:hover {
  color: var(--orange);
}

.nav a[aria-current="page"] {
  color: var(--orange);
}

.header-cta,
.primary-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 8px;
  padding: 0 1.25rem;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.header-cta,
.primary-button {
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), #18263a);
  box-shadow: 0 18px 36px rgba(7, 17, 31, 0.2);
}

.secondary-button {
  color: var(--navy);
  border: 1px solid rgba(7, 17, 31, 0.14);
  background: rgba(255, 255, 255, 0.82);
}

.header-cta:hover,
.primary-button:hover,
.secondary-button:hover {
  transform: translateY(-2px);
}

main {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.72fr);
  align-items: center;
  gap: 3rem;
  min-height: calc(100vh - 104px);
  padding: 4.5rem 0 3.5rem;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 760px;
  margin-bottom: 1.25rem;
  color: var(--navy);
  font-size: clamp(2.4rem, 5.6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  color: var(--navy);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  line-height: 1.06;
  letter-spacing: 0;
}

h3 {
  color: var(--navy);
  font-size: 1.25rem;
}

.hero-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.hero-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  padding: 1.55rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.12), transparent 16rem);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 90, 36, 0.8), transparent);
}

.hero-card img {
  display: block;
  width: min(100%, 320px);
  margin: 1rem auto 1.5rem;
}

.metric-row {
  display: grid;
  gap: 0.35rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.metric-row span {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.metric-row strong {
  color: var(--navy);
  font-size: 1.05rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(17, 24, 39, 0.07);
}

.trust-strip div {
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip strong {
  margin-bottom: 0.45rem;
  color: var(--navy);
}

.trust-strip span {
  color: var(--muted);
  line-height: 1.55;
}

.section {
  padding: 5.75rem 0;
}

.section-heading {
  max-width: 780px;
  margin-bottom: 2rem;
}

.section-heading p:not(.eyebrow),
.contact-panel p {
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.75;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.service-card {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.45rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.service-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 1.35rem;
  border-radius: 8px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--navy), #25364b);
  font-weight: 900;
}

.service-card:nth-child(2n) span {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
}

.service-card p {
  color: var(--muted);
  line-height: 1.7;
}

.split-section {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 3rem;
  align-items: start;
  padding: 4rem;
  border-radius: 8px;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(37, 54, 75, 0.96)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.28), transparent 18rem);
}

.split-section h2 {
  color: #ffffff;
}

.industry-list {
  display: grid;
  gap: 1rem;
}

.industry-list div {
  padding: 1.15rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.industry-list strong,
.industry-list span {
  display: block;
}

.industry-list strong {
  margin-bottom: 0.45rem;
  color: #ffffff;
  font-size: 1.08rem;
}

.industry-list span {
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin: 5.5rem 0 3rem;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  padding: 2.25rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.1), transparent 15rem);
  box-shadow: var(--shadow);
}

.contact-panel h2 {
  margin-bottom: 0.75rem;
}

.contact-panel p {
  max-width: 720px;
  margin-bottom: 0;
}

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(100vh - 88px);
  padding: 4rem 0;
}

.contact-intro p:not(.eyebrow) {
  max-width: 680px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.contact-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.12), transparent 16rem);
  box-shadow: var(--shadow);
}

.contact-card::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 90, 36, 0.8), transparent);
}

.contact-card img {
  display: block;
  width: min(100%, 300px);
  margin: 0.75rem auto 1.5rem;
}

.contact-item {
  display: grid;
  gap: 0.4rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
}

.contact-item span {
  color: var(--orange);
  font-size: 0.77rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-item strong {
  color: var(--navy);
  font-size: 1.03rem;
  line-height: 1.65;
}

.contact-item a:hover {
  color: var(--orange);
}

.about-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.7fr);
  gap: 3rem;
  align-items: center;
  min-height: calc(86vh - 88px);
  padding: 4rem 0;
}

.about-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.about-proof-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  padding: 1.5rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.92)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.12), transparent 15rem);
  box-shadow: var(--shadow);
}

.about-proof-card::before {
  content: "";
  position: absolute;
  inset: 1rem 1rem auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(241, 90, 36, 0.8), transparent);
}

.about-proof-card img {
  display: block;
  width: min(100%, 300px);
  margin: 0.75rem auto 1.5rem;
}

.about-proof-card strong,
.about-proof-card span {
  display: block;
}

.about-proof-card strong {
  margin-bottom: 0.55rem;
  color: var(--navy);
  font-size: 1.35rem;
}

.about-proof-card span {
  color: var(--muted);
  line-height: 1.7;
}

.testimonial-section {
  padding: 2rem 0 5.5rem;
}

.testimonial-page-hero {
  max-width: 900px;
  padding: 5rem 0 2rem;
}

.testimonial-page-hero p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.8;
}

.testimonial-page-section {
  padding-top: 2rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.testimonial-card {
  position: relative;
  min-height: 310px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.featured-testimonial {
  grid-column: span 2;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 17, 31, 0.98), rgba(37, 54, 75, 0.96)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.28), transparent 18rem);
}

.quote-mark {
  color: var(--orange);
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 0.9;
}

.testimonial-card p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.75;
}

.featured-testimonial p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.16rem;
}

.testimonial-author {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}

.featured-testimonial .testimonial-author {
  border-top-color: rgba(255, 255, 255, 0.18);
}

.testimonial-author strong,
.testimonial-author span {
  display: block;
}

.testimonial-author strong {
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.featured-testimonial .testimonial-author strong {
  color: #ffffff;
}

.testimonial-author span {
  color: var(--orange);
  font-size: 0.86rem;
  font-weight: 800;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 18px 50px rgba(6, 23, 47, 0.08);
}

.about-values div {
  padding: 1.35rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
}

.about-values span {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--orange);
  font-size: 0.84rem;
  font-weight: 900;
}

.about-values strong {
  display: block;
  margin-bottom: 0.45rem;
  color: var(--navy);
  font-size: 1.12rem;
}

.about-values p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.65;
}

.clients-hero {
  max-width: 900px;
  padding: 5rem 0 2rem;
}

.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding: 1rem 0 5.5rem;
}

.client-logo-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 1.5rem;
  background: linear-gradient(180deg, #ffffff, #fbfcfe);
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.client-logo-image {
  display: block;
  max-width: 220px;
  max-height: 112px;
  object-fit: contain;
}

.rajparis-logo {
  padding: 0.75rem 1rem;
  background: #d70710;
  border-radius: 8px;
}

.text-logo {
  display: grid;
  justify-items: center;
  gap: 0.28rem;
  text-align: center;
  line-height: 1;
}

.text-logo span {
  color: var(--orange);
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.text-logo strong {
  color: var(--navy);
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  font-weight: 900;
}

.urban-hive-logo strong {
  color: #075b30;
}

.shiv-logo strong {
  color: var(--navy);
}

.green-leaf-logo span {
  color: #2d9f55;
}

.green-leaf-logo strong {
  color: #1a7f43;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: rgba(7, 17, 31, 0.62);
  backdrop-filter: blur(12px);
}

.modal-backdrop.is-open {
  display: flex;
}

.partner-modal {
  position: relative;
  width: min(100%, 560px);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
  border: 1px solid rgba(229, 231, 235, 0.95);
  border-radius: 8px;
  padding: 1.6rem;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.99), rgba(248, 250, 252, 0.96)),
    radial-gradient(circle at top right, rgba(241, 90, 36, 0.12), transparent 15rem);
  box-shadow: 0 35px 90px rgba(7, 17, 31, 0.28);
}

.modal-close {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--navy);
  background: #ffffff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
}

.modal-copy {
  color: var(--muted);
  line-height: 1.65;
}

.partner-form,
.admin-login {
  display: grid;
  gap: 1rem;
}

.partner-form label,
.admin-login label {
  display: grid;
  gap: 0.45rem;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 800;
}

.partner-form input,
.partner-form textarea,
.admin-login input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0.9rem 1rem;
  color: var(--ink);
  background: #ffffff;
  font: inherit;
}

.partner-form input:focus,
.partner-form textarea:focus,
.admin-login input:focus {
  outline: 2px solid rgba(241, 90, 36, 0.22);
  border-color: rgba(241, 90, 36, 0.55);
}

.form-status {
  min-height: 1.4rem;
  margin: 0;
  color: var(--orange);
  font-weight: 800;
}

.admin-panel {
  width: min(1040px, calc(100% - 32px));
  margin: 0 auto;
  padding: 5rem 0;
}

.admin-panel p {
  max-width: 720px;
  color: var(--muted);
  line-height: 1.7;
}

.admin-login {
  max-width: 460px;
  margin: 2rem 0;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.admin-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 2rem 0 1rem;
}

.admin-actions strong {
  color: var(--navy);
  font-size: 1.1rem;
}

.enquiry-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 16px 45px rgba(17, 24, 39, 0.06);
}

.enquiry-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 760px;
}

.enquiry-table th,
.enquiry-table td {
  padding: 0.95rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.enquiry-table th {
  color: var(--navy);
  background: var(--wash);
  font-size: 0.84rem;
  text-transform: uppercase;
}

.enquiry-table td {
  color: var(--muted);
  line-height: 1.5;
}

@media (max-width: 920px) {
  .site-header {
    position: static;
    flex-wrap: wrap;
  }

  .nav {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .hero,
  .about-hero,
  .contact-hero,
  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

  .contact-hero {
    min-height: auto;
  }

  .about-hero {
    min-height: auto;
  }

  .trust-strip,
  .about-values,
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .client-logo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .featured-testimonial {
    grid-column: span 2;
  }

  .split-section {
    padding: 2rem;
  }

  .contact-panel {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  main,
  .site-header {
    width: min(100% - 24px, 1180px);
  }

  .brand img {
    width: 96px;
  }

  .header-cta {
    display: none;
  }

  .nav {
    justify-content: flex-start;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.2rem;
  }

  .hero {
    gap: 2rem;
    padding-top: 2.5rem;
  }

  h1 {
    font-size: 2.55rem;
  }

  .trust-strip,
  .about-values,
  .testimonial-grid,
  .client-logo-grid,
  .service-grid {
    grid-template-columns: 1fr;
  }

  .featured-testimonial {
    grid-column: span 1;
  }

  .service-card {
    min-height: auto;
  }

  .split-section,
  .contact-panel {
    padding: 1.35rem;
  }

  .primary-button,
  .secondary-button,
  .danger-button {
    width: 100%;
  }
}
