:root {
  --navy: #0d1b2a;
  --navy-2: #081321;
  --blue: #0077ff;
  --cyan: #00c2ff;
  --gray: #4b5563;
  --light: #f5f7fa;
  --white: #ffffff;
  --line: rgba(255, 255, 255, 0.13);
  --shadow: 0 24px 80px rgba(0, 20, 50, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: var(--navy);
  background: var(--light);
  font-size: 15px;
}

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

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

.container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: 60px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(8, 19, 33, 0.78);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.announcement-bar {
  color: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--line);
  background: rgba(0, 119, 255, 0.16);
  font-size: 0.82rem;
  font-weight: 700;
}

.announcement-bar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
}

.announcement-bar a {
  color: var(--cyan);
  font-weight: 800;
}

.nav {
  width: min(1180px, calc(100% - 32px));
  min-height: 72px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
}

.brand img {
  width: 150px;
  height: 44px;
  object-fit: contain;
  padding: 5px 8px;
  border-radius: 8px;
  background: var(--white);
}

.brand span {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 600;
}

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

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

.nav-cta {
  padding: 11px 15px;
  color: var(--white) !important;
  border: 1px solid rgba(0, 194, 255, 0.55);
  border-radius: 999px;
  background: rgba(0, 119, 255, 0.18);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 30%, rgba(0, 194, 255, 0.24), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 54%, #0a2546);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  opacity: 0.23;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 90%);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 40px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 720px;
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 4.4vw, 4.35rem);
  line-height: 1;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.hero-text {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.68;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 20px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.btn.primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 18px 36px rgba(0, 119, 255, 0.28);
}

.btn.secondary {
  color: var(--white);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-row span {
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
}

.hero-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background:
    radial-gradient(circle at 24% 22%, rgba(0, 194, 255, 0.1), transparent 30%),
    linear-gradient(145deg, #ffffff, #f5f7fa);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.45;
  background-image:
    linear-gradient(rgba(13, 27, 42, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: 12%;
  border-radius: 999px;
  background: rgba(0, 194, 255, 0.12);
  filter: blur(48px);
}

.hero-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.28;
  object-fit: contain;
  padding: 38px;
  mix-blend-mode: normal;
  filter: saturate(1.08) contrast(1.02);
}

.hero-card-footer {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  color: var(--gray);
  border-top: 1px solid rgba(13, 27, 42, 0.09);
  font-size: 0.9rem;
}

.hero-card-footer strong {
  color: var(--navy);
}

.page-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 194, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 58%, #0a2546);
}

.page-hero h1 {
  max-width: 820px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.8vw, 3.4rem);
  line-height: 1.04;
}

.page-hero p:not(.eyebrow) {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 1rem;
  line-height: 1.68;
}

.intro-band {
  color: var(--white);
  background: var(--navy);
  border-top: 1px solid var(--line);
}

.intro-grid,
.about-grid,
.two-column,
.contact-grid,
.why-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 38px;
  align-items: center;
}

.intro-grid p:last-child,
.about-copy p,
.rich-text p,
.section-heading p,
.contact-copy p {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
}

.intro-grid p:last-child {
  color: rgba(255, 255, 255, 0.72);
}

.stats-section {
  padding: 34px 0;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stats-grid article,
.solution-grid article,
.feedback-card {
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
}

.stats-grid article {
  padding: 24px;
  text-align: center;
}

.stats-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: clamp(1.45rem, 2.2vw, 2.2rem);
  line-height: 1;
}

.stats-grid span {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 800;
}

.founder-frame {
  position: relative;
  height: 620px;
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(0, 119, 255, 0.18), rgba(0, 194, 255, 0.12));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.founder-frame img {
  width: 100%;
  height: 720px;
  object-fit: cover;
  object-position: center top;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-top: 22px;
}

.values-grid article,
.service-card,
.project-card,
.process-grid article,
.category-grid article,
.stack-grid article,
.package-grid article,
.faq-grid article,
.contact-card-grid article,
.map-card,
.hours-card,
.contact-form {
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
}

.values-grid article {
  padding: 20px;
}

.values-grid span,
.service-card span,
.process-grid span,
.category-grid span,
.stack-grid span,
.package-grid span,
.contact-card-grid span {
  display: inline-block;
  margin-bottom: 14px;
  padding: 7px 10px;
  color: var(--blue);
  border: 1px solid rgba(0, 119, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 119, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.values-grid p,
.service-card p,
.project-card p,
.stack-grid p,
.faq-grid p {
  color: var(--gray);
  line-height: 1.65;
}

.about-company,
.core-values,
.process,
.tech-stack,
.faq,
.contact-info-band,
.problem-solution,
.feedback-section {
  background: var(--white);
}

.split-band {
  background: linear-gradient(180deg, var(--light), #ffffff);
}

.compact-section {
  padding-bottom: 32px;
}

.project-list-section {
  padding-top: 42px;
}

.feature-grid article {
  padding: 26px;
}

.compact-grid .service-card {
  min-height: 150px;
}

.compact-grid .service-card h3 {
  margin-bottom: 0;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-grid,
.stack-grid,
.package-grid,
.faq-grid {
  display: grid;
  gap: 18px;
}

.category-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stack-grid,
.faq-grid {
  grid-template-columns: repeat(3, 1fr);
}

.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.category-grid article,
.stack-grid article,
.package-grid article,
.faq-grid article {
  padding: 24px;
}

.package-grid article {
  display: flex;
  flex-direction: column;
}

.package-price {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.45rem;
  font-weight: 900;
}

.package-best,
.package-time,
.package-note {
  color: var(--gray);
  line-height: 1.6;
}

.package-best {
  margin: 0 0 18px;
}

.package-time {
  margin: 18px 0 0;
  font-weight: 800;
}

.package-note {
  margin: 18px 0 0;
  font-size: 0.92rem;
}

.category-grid ul,
.package-grid ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  color: var(--gray);
  list-style: none;
  line-height: 1.55;
}

.package-grid .card-link {
  margin-top: auto;
  padding-top: 18px;
}

.package-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 44px;
  margin-top: auto;
  padding: 0 18px;
  color: var(--white);
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
  box-shadow: 0 16px 32px rgba(0, 119, 255, 0.22);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.package-action::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.package-action:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(0, 119, 255, 0.3);
}

.package-action:hover::after {
  transform: translateX(4px);
}

.package-action-light {
  color: var(--navy);
  background: var(--cyan);
  box-shadow: 0 16px 32px rgba(0, 194, 255, 0.18);
}

.card-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 16px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 800;
}

.card-link::after {
  content: "→";
  margin-left: 8px;
  transition: transform 180ms ease;
}

.card-link:hover::after {
  transform: translateX(4px);
}

.light-link {
  color: var(--cyan);
}

.category-grid li,
.package-grid li {
  position: relative;
  padding-left: 18px;
}

.category-grid li::before,
.package-grid li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.featured-package {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 15%, rgba(0, 194, 255, 0.2), transparent 30%),
    linear-gradient(135deg, var(--navy), #0a2546) !important;
}

.featured-package p,
.featured-package li {
  color: rgba(255, 255, 255, 0.78);
}

.featured-package h3 {
  color: var(--white);
}

.featured-package .package-price,
.featured-package .package-time {
  color: var(--white);
}

.featured-package span {
  color: var(--navy);
  border-color: rgba(0, 194, 255, 0.3);
  background: var(--cyan);
}

.maintenance-package {
  grid-column: 1 / -1;
}

.pricing-notes {
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
}

.pricing-notes p {
  margin: 0;
  color: var(--gray);
  line-height: 1.65;
}

.process-grid article {
  min-height: 150px;
  padding: 22px;
}

.process-grid h3 {
  margin-bottom: 0;
}

.cta-band {
  color: var(--white);
  background:
    radial-gradient(circle at 75% 24%, rgba(0, 194, 255, 0.18), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.cta-box {
  text-align: center;
}

.cta-box h2 {
  max-width: 780px;
  margin: 0 auto 28px;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 24px;
}

.section-btn {
  margin-top: 28px;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.solution-grid article {
  padding: 30px;
}

.solution-grid p:not(.eyebrow) {
  color: var(--gray);
  line-height: 1.7;
}

.audience-section {
  background: linear-gradient(180deg, var(--light), #ffffff);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.audience-grid span {
  min-height: 56px;
  display: flex;
  align-items: center;
  padding: 0 18px;
  color: var(--navy);
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(13, 27, 42, 0.06);
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-service-grid .service-card {
  min-height: 190px;
}

.detailed-service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  padding: 24px;
  min-height: 220px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.detailed-service {
  min-height: 0;
}

.detailed-service ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.detailed-service li,
.tag-grid span {
  color: var(--gray);
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 999px;
  background: var(--light);
  font-size: 0.86rem;
  font-weight: 700;
}

.detailed-service li {
  padding: 9px 12px;
}

.tag-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tag-grid span {
  padding: 11px 15px;
}

.service-card:hover,
.project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.12);
}

.projects,
.contact {
  background: var(--white);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.project-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.project-card {
  overflow: hidden;
}

.project-detail-card {
  display: flex;
  flex-direction: column;
}

.project-card h3,
.project-card p {
  padding: 0 20px;
}

.project-card p {
  padding-bottom: 22px;
}

.project-card > .card-link {
  margin: -4px 20px 22px;
}

.project-detail-card h3,
.project-detail-card p {
  padding: 0;
}

.project-detail-card p {
  padding-bottom: 0;
}

.project-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.project-type {
  display: inline-block;
  margin-bottom: 12px;
  padding: 7px 10px;
  color: var(--blue);
  border: 1px solid rgba(0, 119, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 119, 255, 0.07);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0;
}

.project-meta span {
  padding: 7px 10px;
  color: var(--gray);
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 999px;
  background: var(--light);
  font-size: 0.8rem;
  font-weight: 800;
}

.project-detail-card ul {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--gray);
  list-style: none;
  line-height: 1.55;
}

.project-detail-card li {
  position: relative;
  padding-left: 18px;
}

.project-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cyan);
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: auto;
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-btn {
  min-height: 42px;
  padding: 0 16px;
  color: var(--gray);
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  background: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.button-link {
  padding: 0;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}

.featured-project {
  background: var(--white);
}

.featured-project-card {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 38px;
  align-items: center;
  padding: 18px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 18% 18%, rgba(0, 194, 255, 0.08), transparent 26%),
    linear-gradient(180deg, #ffffff, var(--light));
  box-shadow: 0 24px 72px rgba(13, 27, 42, 0.1);
}

.featured-project-copy {
  padding: 18px 12px 18px 0;
}

.project-browser-preview {
  overflow: hidden;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 8px;
  background: #050814;
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.18);
}

.browser-topbar {
  min-height: 38px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: #101827;
}

.browser-topbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #ff5f57;
}

.browser-topbar span:nth-child(2) {
  background: #ffbd2e;
}

.browser-topbar span:nth-child(3) {
  background: #28c840;
}

.browser-topbar strong {
  margin-left: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.status-badge {
  padding: 6px 9px;
  color: var(--gray);
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 999px;
  background: var(--light);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.status-badge.completed {
  color: #0b7a46;
  background: rgba(16, 185, 129, 0.12);
}

.status-badge.progress {
  color: #075985;
  background: rgba(0, 194, 255, 0.12);
}

.status-badge.upcoming {
  color: #7c2d12;
  background: rgba(251, 146, 60, 0.14);
}

.project-card.hidden {
  display: none;
}

.project-modal,
.package-modal,
.maintenance-modal {
  width: min(720px, calc(100% - 32px));
  border: 0;
  border-radius: 8px;
  padding: 32px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.project-modal::backdrop,
.package-modal::backdrop,
.maintenance-modal::backdrop {
  background: rgba(8, 19, 33, 0.72);
}

.package-modal,
.maintenance-modal {
  width: min(760px, calc(100% - 28px));
  max-height: calc(100vh - 40px);
  overflow: auto;
}

.package-modal h2,
.maintenance-modal h2 {
  margin-bottom: 10px;
}

.package-modal-copy {
  margin: 0 0 20px;
  color: var(--gray);
  line-height: 1.6;
}

.package-request-form {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  padding: 0;
  border: 0;
  box-shadow: none;
}

.package-request-form label:last-of-type,
.package-request-form .btn {
  grid-column: 1 / -1;
}

.maintenance-request-form .full-field,
.maintenance-request-form .checkbox-label,
.maintenance-request-form .privacy-note {
  grid-column: 1 / -1;
}

.checkbox-label {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: flex-start;
  gap: 10px !important;
  color: var(--gray) !important;
  line-height: 1.5;
}

.checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(13, 27, 42, 0.1);
  border-radius: 999px;
  background: var(--light);
  font-size: 1.35rem;
  cursor: pointer;
}

.modal-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.modal-grid article {
  padding: 18px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--light);
}

.modal-grid span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-weight: 800;
}

.project-visual {
  height: 155px;
  margin-bottom: 20px;
  background-color: var(--navy);
  position: relative;
  overflow: hidden;
}

.project-detail-card .project-visual {
  height: 260px;
  margin-bottom: 0;
}

.project-detail-card .image-visual img {
  object-position: top center;
}

.project-visual::before,
.project-visual::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.project-visual::before {
  width: 150px;
  height: 150px;
  right: -36px;
  top: -40px;
  background: rgba(0, 194, 255, 0.42);
}

.project-visual::after {
  width: 86px;
  height: 86px;
  left: 24px;
  bottom: 22px;
  border: 12px solid rgba(255, 255, 255, 0.2);
}

.image-visual {
  background: var(--light);
}

.image-visual::before,
.image-visual::after {
  display: none;
}

.image-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.featured-project-card .image-visual {
  height: auto;
  aspect-ratio: 2940 / 1601;
  margin-bottom: 0;
  border-radius: 0;
  background: #050814;
  box-shadow: none;
}

.featured-project-card .image-visual img {
  object-fit: cover;
  object-position: top left;
  padding: 0;
}

.visual-two {
  background: linear-gradient(135deg, #0d1b2a, #0b3d75);
}

.visual-three {
  background: linear-gradient(135deg, #0d1b2a, #0077ff);
}

.visual-four {
  background: linear-gradient(135deg, #081321, #00c2ff);
}

.why,
.promise-section {
  color: var(--white);
  background: linear-gradient(135deg, var(--navy), #07111f);
}

.why-list {
  display: grid;
  gap: 14px;
}

.why-list div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.why-list strong {
  color: var(--cyan);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.founder-home {
  background: linear-gradient(180deg, var(--light), #ffffff);
}

.founder-home-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 36px;
  align-items: center;
}

.founder-home-image {
  height: 360px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 76% 22%, rgba(0, 194, 255, 0.18), transparent 28%),
    linear-gradient(145deg, #ffffff, var(--light));
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.08);
  overflow: hidden;
}

.founder-home-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.founder-home p:not(.eyebrow),
.cta-box p:not(.eyebrow) {
  color: var(--gray);
  font-size: 0.98rem;
  line-height: 1.7;
}

.cta-box p:not(.eyebrow) {
  max-width: 640px;
  margin: 0 auto 24px;
  color: rgba(255, 255, 255, 0.74);
}

.feedback-card {
  max-width: 880px;
  padding: 34px;
  text-align: center;
}

.feedback-card h2 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.feedback-card p:not(.eyebrow) {
  max-width: 700px;
  margin: 0 auto;
  color: var(--gray);
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 28px;
  color: var(--navy);
  font-weight: 700;
}

.contact-card-grid,
.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.contact-card-grid article,
.map-card,
.hours-card {
  padding: 24px;
}

.contact-card-grid a {
  color: var(--blue);
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card-grid p,
.map-card p,
.hours-card p {
  color: var(--gray);
  line-height: 1.65;
}

.legal-section {
  background: var(--white);
}

.legal-grid,
.sitemap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.legal-card {
  padding: 28px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
}

.legal-card h2 {
  font-size: 1.35rem;
}

.legal-card p {
  color: var(--gray);
  line-height: 1.7;
}

.legal-card a {
  display: block;
  width: fit-content;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
}

.wide-card {
  grid-column: 1 / -1;
}

.whatsapp-section {
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(0, 194, 255, 0.18), transparent 26%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.whatsapp-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.whatsapp-card h2 {
  max-width: 720px;
  margin-bottom: 0;
}

.info-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.map-card {
  min-height: 620px;
  background:
    linear-gradient(rgba(13, 27, 42, 0.82), rgba(13, 27, 42, 0.82)),
    linear-gradient(135deg, #0d1b2a, #0a2546);
  color: var(--white);
}

.map-card p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.72);
}

.hours-list {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.hours-list div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 14px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--light);
}

.hours-list strong {
  color: var(--navy);
}

.hours-list span {
  color: var(--gray);
  text-align: right;
}

.support-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0;
}

.support-tags span {
  padding: 9px 12px;
  color: var(--blue);
  border: 1px solid rgba(0, 119, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 119, 255, 0.06);
  font-size: 0.82rem;
  font-weight: 800;
}

.hours-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.dark-btn {
  color: var(--navy);
  border-color: rgba(13, 27, 42, 0.12);
  background: var(--light);
}

.contact-details a {
  width: fit-content;
  color: var(--blue);
}

.anchor-offset {
  position: relative;
  top: -96px;
  display: block;
  width: 1px;
  height: 1px;
  visibility: hidden;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 800;
}

.contact-form .checkbox-label {
  display: flex;
  grid-template-columns: none;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray);
  line-height: 1.5;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 8px;
  padding: 14px 15px;
  color: var(--navy);
  font: inherit;
  background: var(--light);
}

.contact-form .checkbox-label input {
  width: auto;
  margin-top: 4px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.form-status {
  margin: 0;
  padding: 14px 15px;
  border-radius: 8px;
  font-size: 0.94rem;
  font-weight: 850;
  line-height: 1.45;
}

.form-status.success {
  border: 1px solid rgba(16, 185, 129, 0.26);
  background: rgba(16, 185, 129, 0.1);
  color: #047857;
}

.form-status.error {
  border: 1px solid rgba(239, 68, 68, 0.26);
  background: rgba(239, 68, 68, 0.1);
  color: #b91c1c;
}

.map-card iframe {
  display: block;
  margin-top: 18px;
  min-height: 470px;
}

.form-note,
.privacy-note {
  margin: 0;
  color: var(--gray);
  font-size: 0.88rem;
}

.privacy-note {
  padding: 14px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--light);
  line-height: 1.55;
}

.social-section {
  background: var(--white);
}

.social-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-grid a,
.social-grid span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  color: var(--navy);
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 999px;
  background: var(--light);
  font-weight: 800;
}

.social-grid a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.social-grid span {
  color: var(--gray);
  cursor: default;
}

.admin-page {
  min-height: 100vh;
  background:
    linear-gradient(rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13, 27, 42, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, #eef4fb, var(--light) 30%, #ffffff);
  background-size: 42px 42px, 42px 42px, auto;
}

.admin-hero {
  color: var(--white);
  background:
    radial-gradient(circle at 82% 22%, rgba(0, 194, 255, 0.22), transparent 30%),
    linear-gradient(135deg, var(--navy-2), var(--navy) 58%, #0a2546);
}

.admin-hero-grid,
.admin-layout,
.admin-toolbar,
.admin-card-header {
  display: grid;
  gap: 24px;
}

.admin-hero-grid {
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
}

.admin-hero h1 {
  max-width: 780px;
  font-size: clamp(2rem, 3.8vw, 3.5rem);
  line-height: 1.04;
}

.admin-hero p:not(.eyebrow) {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.7;
}

.admin-profile-panel,
.admin-card,
.admin-metric-grid article,
.quick-action-grid a {
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
}

.admin-card,
.admin-metric-grid article,
.admin-mini-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.admin-card:hover,
.admin-metric-grid article:hover,
.admin-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 255, 0.16);
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.11);
}

.admin-profile-panel {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: center;
  padding: 22px;
  color: var(--navy);
}

.admin-profile-panel img {
  width: 150px;
  height: 92px;
  object-fit: contain;
  padding: 10px;
  border-radius: 8px;
  background: var(--light);
}

.admin-profile-panel span,
.admin-profile-panel small,
.admin-metric-grid span,
.admin-metric-grid small {
  display: block;
  color: var(--gray);
  font-size: 0.82rem;
  font-weight: 800;
}

.admin-profile-panel strong {
  display: block;
  margin: 8px 0;
  font-size: 1.2rem;
}

.admin-toolbar {
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 22px;
}

.admin-toolbar h2,
.admin-card h2 {
  margin-bottom: 0;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.admin-actions button {
  min-height: 42px;
  padding: 0 16px;
  color: var(--navy);
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  background: var(--white);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.admin-actions button.active {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.admin-metric-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.admin-metric-grid article {
  padding: 22px;
}

.admin-metric-grid strong {
  display: block;
  margin: 12px 0 8px;
  color: var(--navy);
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1;
}

.admin-layout {
  grid-template-columns: minmax(0, 1fr) 340px;
  align-items: start;
}

.admin-main,
.admin-sidebar {
  display: grid;
  gap: 18px;
}

.admin-card {
  padding: 24px;
}

.admin-card-header {
  grid-template-columns: 1fr auto;
  align-items: center;
  margin-bottom: 20px;
}

.admin-chip {
  width: fit-content;
  padding: 8px 11px;
  color: var(--blue);
  border: 1px solid rgba(0, 119, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 119, 255, 0.06);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.admin-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
}

.admin-table th,
.admin-table td {
  padding: 15px 12px;
  border-bottom: 1px solid rgba(13, 27, 42, 0.08);
  text-align: left;
  white-space: nowrap;
}

.admin-table th {
  color: var(--gray);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.admin-table td {
  color: var(--navy);
  font-weight: 750;
}

.admin-empty-state {
  width: 100%;
  padding: 20px;
  border: 1px dashed rgba(13, 27, 42, 0.18);
  border-radius: 8px;
  background: rgba(245, 247, 250, 0.82);
  color: var(--gray);
  font-size: 0.95rem;
  font-weight: 850;
  line-height: 1.45;
  text-align: center;
  white-space: normal;
}

.pipeline-list,
.service-demand,
.activity-list {
  display: grid;
  gap: 14px;
}

.pipeline-list div,
.service-demand div,
.activity-list div {
  padding: 16px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: var(--light);
}

.pipeline-list div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px 16px;
  align-items: center;
}

.pipeline-list span,
.service-demand span,
.activity-list span {
  color: var(--gray);
  font-size: 0.9rem;
  font-weight: 800;
}

.pipeline-list strong,
.service-demand strong,
.activity-list strong {
  color: var(--navy);
  font-weight: 900;
}

.pipeline-list progress {
  grid-column: 1 / -1;
  width: 100%;
  height: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  background: rgba(13, 27, 42, 0.08);
}

.pipeline-list progress::-webkit-progress-bar {
  background: rgba(13, 27, 42, 0.08);
}

.pipeline-list progress::-webkit-progress-value {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.pipeline-list progress::-moz-progress-bar {
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.service-demand div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.activity-list div {
  display: grid;
  gap: 6px;
}

.quick-action-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.quick-action-grid a {
  min-height: 88px;
  display: flex;
  align-items: center;
  padding: 18px;
  color: var(--navy);
  font-weight: 900;
}

.quick-action-grid a:hover {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.admin-section-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 18px;
}

.admin-module-link {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  color: var(--navy);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 247, 250, 0.92));
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.admin-module-link:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 119, 255, 0.2);
  box-shadow: 0 24px 64px rgba(13, 27, 42, 0.11);
}

.admin-module-link span {
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-module-link strong {
  line-height: 1.45;
}

.admin-login-screen {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 48px 20px;
  background:
    radial-gradient(circle at 76% 22%, rgba(0, 194, 255, 0.2), transparent 28%),
    linear-gradient(135deg, var(--navy-2), var(--navy));
}

.admin-login-card {
  width: min(440px, 100%);
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-login-card img {
  width: 190px;
  height: 72px;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: var(--light);
}

.admin-login-card h1 {
  margin-bottom: 0;
  font-size: 2rem;
}

.admin-login-card label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-weight: 900;
}

.admin-login-card input {
  width: 100%;
  padding: 14px 15px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 8px;
  color: var(--navy);
  background: var(--light);
  font: inherit;
}

.admin-shell {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 28px 0 60px;
}

.admin-brandbar,
.admin-insight-strip {
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
  backdrop-filter: blur(18px);
}

.admin-brandbar {
  position: sticky;
  top: 14px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 78px;
  margin-bottom: 26px;
  padding: 14px 18px;
}

.admin-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--navy);
  font-weight: 900;
}

.admin-brand img {
  width: 150px;
  height: 48px;
  object-fit: contain;
  padding: 6px 8px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(13, 27, 42, 0.08);
}

.admin-brand span {
  color: var(--blue);
}

.admin-session {
  display: grid;
  gap: 4px;
  text-align: right;
}

.admin-session span {
  color: var(--gray);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.admin-topbar {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 24px;
}

.admin-topbar h1 {
  margin-bottom: 0;
  font-size: clamp(2rem, 3.6vw, 3.35rem);
  color: var(--navy);
}

.admin-insight-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-bottom: 22px;
  overflow: hidden;
}

.admin-insight-strip article {
  min-height: 74px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #ffffff, rgba(245, 247, 250, 0.82));
}

.admin-insight-strip span {
  color: var(--gray);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-insight-strip strong {
  color: var(--navy);
}

.admin-topbar-actions,
.admin-tabs,
.admin-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.admin-topbar-actions {
  justify-content: flex-end;
}

.admin-topbar-actions button,
.admin-tabs button,
.admin-tabs a,
.admin-primary-action,
.row-action {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 15px;
  border: 1px solid rgba(13, 27, 42, 0.12);
  border-radius: 999px;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  cursor: pointer;
}

.admin-topbar-actions button.active,
.admin-tabs button.active,
.admin-tabs a.active,
.admin-primary-action {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(135deg, var(--blue), var(--cyan));
}

.admin-tabs {
  position: sticky;
  top: 106px;
  z-index: 15;
  margin: 24px 0;
  padding: 10px;
  border: 1px solid rgba(13, 27, 42, 0.09);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 50px rgba(13, 27, 42, 0.07);
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-chart-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
}

.admin-chart-grid canvas {
  width: 100%;
  min-height: 280px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: var(--light);
}

.admin-filters {
  margin-bottom: 18px;
}

.admin-filters input,
.admin-filters select,
.pricing-editor-grid input,
.pricing-editor-grid textarea {
  min-height: 44px;
  padding: 12px 14px;
  border: 1px solid rgba(13, 27, 42, 0.14);
  border-radius: 8px;
  color: var(--navy);
  background: var(--light);
  font: inherit;
}

.admin-filters input {
  flex: 1 1 260px;
}

.project-admin-grid,
.client-admin-grid,
.pricing-editor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.admin-mini-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(13, 27, 42, 0.08);
  border-radius: 8px;
  background: var(--light);
}

.admin-mini-card h3 {
  margin-bottom: 0;
}

.admin-mini-card p,
.admin-mini-card small {
  margin: 0;
  color: var(--gray);
  line-height: 1.55;
}

.admin-mini-card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.row-action.danger {
  color: #9f1239;
  border-color: rgba(159, 18, 57, 0.18);
  background: rgba(244, 63, 94, 0.08);
}

.pricing-editor-grid label {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 0.9rem;
  font-weight: 900;
}

.pricing-editor-grid textarea {
  min-height: 90px;
  resize: vertical;
}

.admin-modal {
  width: min(720px, calc(100% - 32px));
  max-height: calc(100vh - 40px);
  overflow: auto;
  border: 0;
  border-radius: 8px;
  padding: 30px;
  color: var(--navy);
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-modal::backdrop {
  background: rgba(8, 19, 33, 0.72);
}

.admin-entry-form {
  box-shadow: none;
  border: 0;
  padding: 0;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.admin-form-grid .full-field,
.admin-form-grid .btn {
  grid-column: 1 / -1;
}

.status-badge.rejected {
  color: #9f1239;
  background: rgba(244, 63, 94, 0.12);
}

.status-badge.neutral {
  color: var(--gray);
  background: rgba(75, 85, 99, 0.12);
}

.footer {
  padding: 54px 0 24px;
  color: rgba(255, 255, 255, 0.75);
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 194, 255, 0.13), transparent 26%),
    linear-gradient(135deg, var(--navy-2), #06101d);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.75fr 1fr 1.15fr;
  gap: 34px;
  align-items: start;
}

.footer img {
  width: 210px;
  height: 78px;
  object-fit: contain;
  padding: 8px;
  background: var(--white);
  border-radius: 8px;
  margin-bottom: 18px;
}

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

.footer h2 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.footer h3 {
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.footer p {
  margin-bottom: 0;
  line-height: 1.65;
}

.footer-brand strong {
  display: inline-block;
  margin-top: 16px;
  color: var(--cyan);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column,
.footer-socials,
.footer-legal {
  display: grid;
  gap: 10px;
}

.footer-column a,
.footer-column span,
.footer-socials a,
.footer-socials span,
.footer-legal a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-column a:hover,
.footer-socials a:hover,
.footer-legal a:hover {
  color: var(--cyan);
}

.footer-contact a {
  overflow-wrap: anywhere;
}

.footer-lower {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.footer-socials,
.footer-legal {
  display: flex;
  flex-wrap: wrap;
}

.footer-socials {
  gap: 12px;
}

.footer-socials a {
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  font-weight: 800;
}

.footer-socials span {
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.48);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  font-weight: 800;
  cursor: default;
}

.footer-legal {
  justify-content: flex-end;
  gap: 16px;
}

.footer-copy {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
}

.footer-copy p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.86rem;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 20px 0 13px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.18), transparent 34%),
    linear-gradient(135deg, #18b857, #25d366);
  box-shadow:
    0 18px 42px rgba(37, 211, 102, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.28);
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.floating-whatsapp::before {
  content: "";
  position: absolute;
  inset: -6px;
  z-index: -1;
  border-radius: inherit;
  background: rgba(37, 211, 102, 0.2);
  animation: whatsappPulse 2.2s ease-out infinite;
}

.floating-whatsapp svg {
  width: 34px;
  height: 34px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  fill: currentColor;
}

.floating-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow:
    0 24px 58px rgba(37, 211, 102, 0.46),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

@keyframes whatsappPulse {
  0% {
    opacity: 0.75;
    transform: scale(0.96);
  }

  70% {
    opacity: 0;
    transform: scale(1.16);
  }

  100% {
    opacity: 0;
    transform: scale(1.16);
  }
}

@media (max-width: 920px) {
  .section {
    padding: 46px 0;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(8, 19, 33, 0.96);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 14px;
  }

  .hero-grid,
  .intro-grid,
  .about-grid,
  .two-column,
  .featured-project-card,
  .contact-grid,
  .why-grid,
  .founder-home-grid,
  .admin-hero-grid,
  .admin-layout,
  .admin-toolbar,
  .admin-topbar,
  .admin-chart-grid,
  .admin-insight-strip {
    grid-template-columns: 1fr;
  }

  .admin-brandbar {
    position: static;
  }

  .admin-tabs {
    position: static;
  }

  .hero {
    min-height: auto;
  }

  .service-grid,
  .home-service-grid,
  .stats-grid,
  .solution-grid,
  .audience-grid,
  .footer-grid,
  .legal-grid,
  .sitemap-grid,
  .detailed-service-grid,
  .category-grid,
  .stack-grid,
  .package-grid,
  .faq-grid,
  .contact-card-grid,
  .info-grid,
  .modal-grid,
  .project-grid,
  .project-showcase-grid,
  .process-grid,
  .admin-metric-grid,
  .quick-action-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .admin-actions {
    justify-content: flex-start;
  }

  .admin-topbar-actions {
    justify-content: flex-start;
  }

  .project-admin-grid,
  .client-admin-grid,
  .pricing-editor-grid,
  .admin-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .founder-frame img {
    height: 620px;
  }

  .compact-section {
    padding-bottom: 28px;
  }

  .project-list-section {
    padding-top: 36px;
  }

  .featured-project-copy {
    padding: 10px 6px 8px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    width: calc(100% - 24px);
    min-height: 62px;
    gap: 12px;
  }

  .brand img {
    width: 124px;
    height: 38px;
    padding: 4px 6px;
  }

  .nav-toggle {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
  }

  .nav-links {
    left: 12px;
    right: 12px;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    padding: 8px;
  }

  .nav-links a {
    padding: 12px;
    font-size: 0.92rem;
  }

  .brand span {
    display: none;
  }

  .announcement-bar .container {
    min-height: 42px;
    flex-direction: column;
    gap: 4px;
    padding: 8px 0;
  }

  h1 {
    font-size: 2rem;
    line-height: 1.08;
  }

  h2 {
    font-size: 1.5rem;
    line-height: 1.14;
  }

  .page-hero h1 {
    font-size: 1.85rem;
  }

  .hero-text {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero {
    align-items: flex-start;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .hero-grid {
    gap: 26px;
  }

  .hero-card img {
    aspect-ratio: 1.4;
    padding: 22px;
  }

  .trust-row span {
    width: 100%;
    border-radius: 8px;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 46px;
  }

  .hero-card-footer,
  .footer-lower,
  .footer-links,
  .whatsapp-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-legal {
    justify-content: flex-start;
  }

  .values-grid,
  .service-grid,
  .home-service-grid,
  .stats-grid,
  .solution-grid,
  .audience-grid,
  .footer-grid,
  .legal-grid,
  .sitemap-grid,
  .detailed-service-grid,
  .category-grid,
  .stack-grid,
  .package-grid,
  .faq-grid,
  .contact-card-grid,
  .info-grid,
  .modal-grid,
  .project-grid,
  .project-showcase-grid,
  .process-grid,
  .admin-metric-grid,
  .quick-action-grid,
  .admin-card-header,
  .admin-profile-panel,
  .project-admin-grid,
  .client-admin-grid,
  .pricing-editor-grid,
  .admin-section-grid,
  .admin-form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid article,
  .service-card,
  .project-body,
  .category-grid article,
  .stack-grid article,
  .package-grid article,
  .faq-grid article,
  .contact-card-grid article,
  .legal-card,
  .admin-card,
  .admin-mini-card {
    padding: 18px;
  }

  .home-service-grid .service-card,
  .service-card {
    min-height: auto;
  }

  .project-card h3,
  .project-card p {
    padding-right: 16px;
    padding-left: 16px;
  }

  .project-visual {
    height: 190px;
  }

  .project-detail-card .project-visual {
    height: 210px;
  }

  .featured-project-card {
    padding: 12px;
  }

  .founder-home-image {
    height: 300px;
  }

  .footer {
    padding-top: 42px;
  }

  .footer img {
    width: 170px;
    height: 62px;
  }

  .footer-socials a,
  .footer-legal a {
    width: 100%;
  }

  .admin-shell {
    width: min(100% - 28px, 1220px);
    padding: 18px 0 46px;
  }

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

  .admin-session {
    text-align: left;
  }

  .admin-tabs button,
  .admin-tabs a,
  .admin-topbar-actions button {
    flex: 1 1 130px;
  }

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

  .admin-topbar-actions button {
    flex: 1 1 100%;
  }

  .admin-table {
    min-width: 620px;
  }

  .admin-profile-panel img {
    width: 100%;
  }

  .detailed-service ul {
    grid-template-columns: 1fr;
  }

  .package-request-form {
    grid-template-columns: 1fr;
  }

  .founder-frame img {
    height: 560px;
  }

  .founder-frame {
    height: 420px;
  }

  .browser-topbar strong {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 380px) {
  .container {
    width: min(100% - 20px, 1120px);
  }

  h1 {
    font-size: 1.72rem;
  }

  h2,
  .page-hero h1 {
    font-size: 1.38rem;
  }

  .brand img {
    width: 112px;
  }

  .announcement-bar {
    font-size: 0.76rem;
  }

  .btn {
    padding-right: 14px;
    padding-left: 14px;
    font-size: 0.9rem;
  }

  .hero-card-footer {
    gap: 8px;
  }
}
