/* 
================================================================
   [00] VARIABLES, RESET & GLOBAL STYLES
   Global settings that affect the entire project.
================================================================ 
*/
:root {
  --bg: #ffffff;
  --panel: #f8f8f8;
  --ink: #0b4263;
  --ink-soft: #32566f;
  --deep: #014160;
  --teal: #0799a7;
  --teal-2: #0ba8b4;
  --line: #d8dde1;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(6, 34, 54, 0.1);
  --radius-xl: 24px;
  --radius-lg: 20px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1180px;
  --header-h: 88px;
  --branding-secondary: #003a56;
  --branding-primary: #00808d;
  --solution-chip-border: #18e4a1;
  /* Chip box: content 82×24, padding 8/10, 1px border → total 104×42 */
  --solution-chip-min-w: 104px;
  --solution-chip-min-h: 42px;
  --step-badge-size: 78.795px;
  --step-badge-stroke: #d1d5db;
  --step-badge-stroke-w: 4.666px;
  --hero-person-w: 520px;
  --hero-person-h: 322px;
  --hero-logo-w: 406px;
  --hero-logo-h: 103px;
  --hero-min-h: 640px;
  /* Elevated panel (solution card) — tertiary-style surface */
  --solution-panel-bg: #f2f4f6;
  /* CTA band — “Make inventory control effortless today” (Figma) */
  --cta-band-max-w: 1088px;
  --cta-band-min-h: 487px;
  --cta-band-pad-left: 183.79px;
  --cta-band-pad-right: 48px;
  --cta-band-pad-y: 56px;
  /* Pricing cards (Figma) */
  --price-card-w: 307px;
  --price-card-min-h: 362px;
  --price-card-radius: 24px;
  --price-card-pad-top: 56px;
  --price-card-pad-right: 57px;
  --price-card-pad-bottom: 80px;
  --price-card-pad-left: 71px;
}

* { 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.5;
}

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

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

button, input, textarea { 
  font: inherit; 
}

section[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

/* Layout Container */
.container {
  width: min(calc(100% - 48px), var(--container));
  margin: 0 auto;
}

/* Common Section Spacing */
.section { 
  padding: 72px 0; 
}

/* 
================================================================
   [01] SHARED UTILITY COMPONENTS
   Reusable elements like buttons, chips, and headings.
================================================================ 
*/

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease;
}

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

.btn-primary,
.btn-pill {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 14px 28px rgba(7,153,167,.25);
}

.btn-primary:hover,
.btn-pill:hover { 
  background: var(--teal-2); 
}

.btn-secondary {
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: rgba(255,255,255,.16);
  color: var(--white);
  border: 1px solid rgba(255,255,255,.28);
}

.btn-white {
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: var(--white);
  color: var(--ink);
}

.btn-pill.small { 
  min-height: 38px; 
  padding-inline: 16px; 
  font-size: 12px; 
}

/* Panels & Labels */
.panel {
  background: var(--panel);
  border-radius: var(--radius-xl);
  box-shadow: inset 0 0 0 1px rgba(11,66,99,.04);
}

.eyebrow, .chip, .section-mini {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.section-heading.center {
  text-align: center;
  margin-bottom: 28px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(34px, 4.8vw, 52px);
  line-height: 1.1;
  letter-spacing: -.05em;
  font-weight: 900;
  color: var(--ink);
}

/* 
================================================================
   [02] SITE HEADER & NAVIGATION
   Sticky header, desktop links, and mobile menu toggle.
================================================================ 
*/
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(214, 224, 232, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(0, 58, 86, 0.06);
  border-bottom: 1px solid rgba(0, 58, 86, 0.07);
  border-bottom-left-radius: 28px;
  border-bottom-right-radius: 28px;
  box-shadow: 0 8px 28px rgba(1, 65, 96, 0.12);
}

.nav-wrap {
  position: relative;
  width: 100%;
  min-height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}

.desktop-nav {
  display: flex;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
  justify-content: space-evenly;
  align-items: center;
  flex-wrap: nowrap;
  gap: clamp(8px, 2.5vw, 48px);
}

.desktop-nav a,
.mobile-nav a {
  text-decoration: none;
  font-family: 'Calistoga', Georgia, serif;
  font-size: 32px;
  font-weight: 400;
  font-style: normal;
  line-height: 98.8%;
  color: var(--branding-secondary, #003a56);
}

@media (min-width: 761px) {
  .desktop-nav a {
    white-space: nowrap;
    flex: 0 0 auto;
    font-weight: 700;
    letter-spacing: 0.01em;
    font-size: clamp(22px, 2.35vw, 32px);
  }
}

.desktop-nav a:hover,
.mobile-nav a:hover {
  color: var(--teal);
}

.menu-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 26px;
  color: var(--branding-secondary, #003a56);
  cursor: pointer;
}

.mobile-nav {
  display: none;
  padding: 0 24px 18px;
  gap: 14px;
  flex-direction: column;
  align-items: center;
}

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

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: min(var(--hero-min-h), 92vh);
  padding-top: var(--header-h);
  padding-bottom: 0;
  overflow: hidden;
  background: url('assets/hero-bg.png') center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(1, 65, 96, 0.91) 0%, rgba(1, 65, 96, 0.78) 30%, rgba(1, 65, 96, 0.26) 55%, rgba(1, 65, 96, 0.05) 100%);
}

.hero-layout {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding-top: 8px;
  padding-bottom: 0;
}

.hero-logo {
  display: block;
  width: min(var(--hero-logo-w), 42vw);
  max-width: min(280px, 90vw);
  height: auto;
  aspect-ratio: 406 / 103;
  position: absolute;
  top: calc(var(--header-h) + 10px);
  right: clamp(16px, 4vw, 40px);
  z-index: 4;
  margin: 0;
  text-decoration: none;
  background-color: transparent;
  background-image: url('assets/logo.png');
  background-repeat: no-repeat;
  background-position: 100% 50%;
  background-size: contain;
}

.hero-logo:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.85);
  outline-offset: 4px;
  border-radius: 6px;
}

.hero-grid {
  position: relative;
  z-index: 2;
  flex: 1 1 auto;
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  grid-template-rows: 1fr;
  align-items: stretch;
  min-height: 0;
  gap: 28px;
}

.hero-copy {
  max-width: 560px;
  width: 100%;
  min-width: 0;
  margin-inline: auto;
  justify-self: center;
  align-self: stretch;
  justify-content: center;
  min-height: 0;
  color: var(--white);
  padding: 40px 0 28px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero h1 {
  margin: 0 0 8px;
  font-family: 'Inter', sans-serif;
  font-size: clamp(26px, 3.2vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--white);
  text-align: center;
  width: 100%;
}

.hero h1 .hero-line {
  display: block;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  width: 100%;
}

.hero-tagline {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.92);
  text-align: center;
  letter-spacing: 0.04em;
}

.btn-hero-start {
  min-height: 44px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  background: #ffffff;
  color: var(--branding-secondary, #003a56);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
}

.btn-hero-start:hover {
  background: #f8fafb;
  color: var(--branding-secondary, #003a56);
  transform: translateY(-2px);
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.14);
}

.hero-visual {
  position: relative;
  width: 100%;
  min-height: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  align-self: end;
  overflow: visible;
  line-height: 0;
}

.hero-person {
  position: relative;
  display: block;
  width: min(var(--hero-person-w), 100%);
  height: auto;
  max-height: var(--hero-person-h);
  margin: 0;
  transform: translateX(-28px);
  object-fit: contain;
  object-position: bottom center;
  z-index: 1;
  pointer-events: none;
}

/* 
================================================================
   [04] SECTION: SOLUTION
   Details about medication waste and environmental impact.
   Overlaps hero slightly (negative margin) + rounded panel (24px).
================================================================ 
*/

/* Pull section up over hero; stack above hero content */
.solution-section {
  position: relative;
  z-index: 5;
  margin-top: -52px;
  padding-top: 36px;
  padding-bottom: 72px;
}

/* Full-bleed row (replaces .container max-width for this section) */
.solution-wrap {
  width: 100%;
  max-width: none;
  margin-inline: 0;
  box-sizing: border-box;
}

.solution-panel {
  width: 100%;
  padding: clamp(36px, 5vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1.18fr;
  gap: 42px;
  align-items: center;
  background: var(--solution-panel-bg);
  border-radius: 24px;
}

.solution-media {
  flex-shrink: 0;
}

.solution-media img {
  width: min(100%, 373px);
  height: auto;
  aspect-ratio: 74 / 49;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.solution-copy {
  text-align: left;
}

/* Solution section only — HTML: <span class="chip"> in .solution-copy */
.solution-copy .chip {
  box-sizing: border-box;
  min-width: var(--solution-chip-min-w);
  min-height: var(--solution-chip-min-h);
  padding: 8px 10px;
  margin-bottom: 16px;
  border-radius: 9px;
  border: 1px solid var(--solution-chip-border, #18e4a1);
  color: var(--branding-primary, #00808d);
  text-align: center;
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
  letter-spacing: -0.16px;
  text-transform: uppercase;
}

.solution-copy h2 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 12px;
  color: var(--ink);
  text-align: left;
}

.solution-copy p { 
  margin: 0 0 16px; 
  font-size: 15px;
  color: #617389;
  text-align: left;
}

.solution-copy .solution-highlight {
  font-weight: 700;
  color: var(--ink);
}

.solution-copy .btn-pill {
  font-family: "Plus Jakarta Sans", "Inter", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: -0.18px;
  border-radius: 25px;
  background: var(--branding-primary, #00808d);
}

.solution-copy .btn-pill:hover {
  background: #009eaa;
}

/*
================================================================
   [05] SECTION: WORKFLOW (HOW IT WORKS)
   Interactive accordion with process steps.
================================================================ 
*/
.workflow-section { 
  padding-top: 20px; 
}

.workflow-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.workflow-visual {
  position: relative;
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.workflow-visual img {
  width: 25rem;
  position: relative;
  z-index: 2;
  margin-top: 24px;
}

.workflow-visual .btn { 
  position: absolute; 
  bottom: 18px; 
}

/* Accordion (How it works) — step numbers inline in row, no top circles */
.accordion {
  display: grid;
  gap: 14px;
}

.accordion-item {
  background: #f3f3f3;
  border: 1px solid rgba(10, 51, 78, 0.06);
  border-radius: 18px;
  overflow: hidden;
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.accordion-item.active {
  background: var(--teal);
  border-color: transparent;
  color: #ffffff;
}

.accordion-trigger {
  width: 100%;
  background: transparent;
  border: 0;
  padding: 20px 22px;
  display: grid;
  grid-template-columns: 53px 1fr 24px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
}

.accordion-item.active .accordion-trigger {
  color: #ffffff;
}

.step-num {
  font-size: 28px;
  line-height: 1.2;
  font-weight: 300;
  color: #557090;
}

.accordion-item.active .step-num {
  color: #ffffff;
}

.step-title {
  font-size: 16px;
  font-weight: 700;
}

.step-icon {
  font-size: 24px;
  transition: transform .2s ease;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease;
}

.accordion-content p {
  margin: 0;
  padding: 0 22px 22px 82px;
  font-size: 14px;
  line-height: 1.6;
  color: #677b92;
}

.accordion-item.active .accordion-content {
  max-height: 200px;
}

.accordion-item.active .accordion-content p {
  color: #e8f8fb;
}

.accordion-item.active .step-icon {
  transform: rotate(180deg);
}

/* 
================================================================
   [06] SECTION: BENEFITS
   Grid of benefit cards.
================================================================ 
*/
.benefits-panel {
  padding: 40px 28px;
}

.benefits-panel .section-heading.center p {
  margin: 18px auto 0;
  max-width: 640px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: var(--ink-soft);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px 24px;
  padding-top: 42px;
}

.benefit-card {
  position: relative;
  min-height: 196px;
  padding: 48px 24px 28px;
  background: rgba(255, 255, 255, 0.8);
  border: 1.5px solid black;
  border-radius: 18px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  overflow: visible;
}

.benefit-card:hover {
  background: var(--teal);
  color: white;
  border-color: transparent;
}

.benefit-card.active {
  background: var(--teal);
  color: white;
  border-color: transparent;
}

/* Inventory system steps — same circle spec as Figma (overlap top of card) */
.benefit-card .benefit-number {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 2;
  transform: translate(-50%, -50%);
  width: var(--step-badge-size);
  height: var(--step-badge-size);
  box-sizing: border-box;
  border: var(--step-badge-stroke-w) solid var(--step-badge-stroke);
  border-radius: 50%;
  background: #ffffff;
  color: black;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-family: "Plus Jakarta Sans";
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.benefit-card:hover .benefit-number,
.benefit-card.active .benefit-number {
  background: var(--branding-primary, #00808d);
  color: #ffffff;
  border-color: var(--step-badge-stroke);
}

.benefit-card h3 {
  margin: 18px 0 12px;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.benefit-card p {
  margin: 0;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.6;
  opacity: 0.9;
  color: var(--ink-soft);
}

.benefit-card:hover h3,
.benefit-card:hover p,
.benefit-card.active h3,
.benefit-card.active p {
  color: #fff;
  opacity: 1;
}

.center-action {
  text-align: center;
  margin-top: 32px;
}

/* 
================================================================
   [07] SECTION: CTA BAND
   High-contrast banner for quick conversion.
================================================================ 
*/
.cta-band {
  width: 100%;
  max-width: var(--cta-band-max-w);
  min-height: var(--cta-band-min-h);
  margin-inline: auto;
  box-sizing: border-box;
  background: var(--branding-secondary, #003a56);
  color: white;
  padding: 93px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.quote-mark {
  font-size: 76px;
  font-weight: 800;
  line-height: .7;
  opacity: .2;
  margin-bottom: 4px;
}

.cta-band h2 {
  max-width: 520px;
  margin: 0 0 14px;
  color: #fff;
  font-weight: 800;
  font-size: clamp(28px, 3.6vw, 40px);
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.55;
}

/* 
================================================================
   [08] SECTION: FEATURES
   Product showcases with device-frame images.
================================================================ 
*/
.features-section { 
  padding-top: 20px; 
}

.feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
  align-items: center;
  margin-bottom: 60px;
}

.feature-row:last-of-type { 
  margin-bottom: 0; 
}

/* Device Frame Styles */
.device-card {
  position: relative;
  border-radius: 12px 12px 18px 18px;
  background: #fdfdfd;
  box-shadow: 0 15px 35px rgba(5, 24, 42, 0.12);
  padding: 14px 10px 16px;
  border-bottom: 4px solid #303030;
}

.device-topbar {
  height: 8px;
  border-radius: 8px;
  background: linear-gradient(90deg, #eef4f7, #ffffff);
  margin-bottom: 10px;
}

.device-card img {
  width: 100%;
  border-radius: 6px;
}

/* Lists with checkmarks */
.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
}

.feature-list li {
  position: relative;
  padding-left: 42px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.45;
  color: #1d2e40;
}

.feature-list li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--ink);
  color: #fff;
  font-size: 12px;
  display: grid;
  place-items: center;
}

/* 
================================================================
   [09] SECTION: PRICING
   Subscription tier grid.
================================================================ 
*/
.head-pricing {
  display: flex;
  justify-content: center;
}
.pricing-panel {
  padding: 48px 28px;
}

.pricing-section .section-heading.center h2 {
  font-weight: 900;
  letter-spacing: -0.05em;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, var(--price-card-w)));
  gap: 20px;
  justify-content: center;
}

.price-card {
  width: 100%;
  max-width: var(--price-card-w);
  min-height: var(--price-card-min-h);
  margin-inline: auto;
  box-sizing: border-box;
  padding: var(--price-card-pad-top) var(--price-card-pad-right) var(--price-card-pad-bottom)
    var(--price-card-pad-left);
  border-radius: var(--price-card-radius);
  color: #fff;
  text-align: center;
  transition: transform 0.3s ease;
}

.price-card:hover {
  transform: translateY(-5px);
}

.price-card.dark {
  background: var(--branding-secondary, #003a56);
}

.price-card.featured {
  background: var(--branding-primary, #00808d);
}

.price-card h3 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.price {
  margin: 0 0 40px;
  font-size: 36px;
  line-height: 1.1;
  font-weight: 800;
  display: flex;
  justify-content: center;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 6px 8px;
}

.price span {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  opacity: 0.95;
}

.price-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.96);
}

.price-card li {
  max-width: 100%;
  text-align: center;
}

/* 
================================================================
   [10] SECTION: TEAM
   Profiles of the designers and developers.
================================================================ 
*/
.team-section { 
  padding-top: 20px; 
}

.team-grid {
  display: grid;
  gap: 20px;
  justify-content: center;
}

.top-team-grid { 
  grid-template-columns: repeat(3, minmax(180px, 240px)); 
  margin-bottom: 20px; 
}

.bottom-team-grid { 
  grid-template-columns: repeat(4, minmax(180px, 220px)); 
}

.team-card {
  position: relative;
  background: #f5f5f5;
  border: 1px solid rgba(11,66,99,.08);
  border-radius: 20px;
  padding: 24px 18px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.02);
  transition: transform 0.3s ease;
}

.team-card img {
  width: 98px;
  height: 129px;
  object-fit: cover;
  margin: 4px auto 16px;
  border-radius: 10px;
}


.team-card:hover {
  cursor: pointer;
  transform: translateY(-5px);
}
.role-badge {
  position: absolute;
  top: -10px;
  left: 20px;
  background: var(--teal);
  color: white;
  min-height: 22px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
}

.role-badge.pm { background: #0e7a89; }


.team-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
}


.team-card .h3-jeff{
  font-size: 1rem;
}


.team-card p {
  margin: 0;
  font-size: 14px;
  color: var(--teal-2);
}

/* 
================================================================
   [11] SECTION: CONTACT
   Final section with form and branding background.
================================================================ 
*/
.contact-section {
  position: relative;
  margin-top: 60px;
  background: url('assets/contact-bg.png') center/cover no-repeat;
  padding: 60px 0;
  border-radius: 24px 24px 0 0;
  overflow: hidden;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    96deg,
    #003a56 38.05%,
    rgba(0, 58, 86, 0) 100%
  );
  pointer-events: none;
}

.contact-wrap { 
  position: relative; 
  z-index: 2; 
}

.contact-card {
  display: block;
  margin-inline: auto;
  
}

.contact-form-area {
  padding: 20px 0;
  color: white;
}

.contact-form-area h2 { 
  color: #fff; 
  margin-bottom: 10px;
}

.contact-form {
  max-width: 440px;
  display: grid;
  gap: 16px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  padding: 14px 16px;
  background: rgba(255,255,255,.98);
  color: var(--ink);
}

/* 
================================================================
   [12] RESPONSIVE MEDIA QUERIES
   Adjustments for tablets and mobile devices.
================================================================ 
*/

/* Tablet - 1080px */
@media (max-width: 1080px) {
  .solution-section {
    margin-top: -40px;
    padding-top: 28px;
  }

  .hero-grid,
  .solution-panel,
  .workflow-grid,
  .feature-row { 
    grid-template-columns: 1fr; 
  }
  
  .hero-grid {
    gap: 12px;
  }

  .hero-copy {
    padding: 44px 0 12px;
  }

  .hero-visual { 
    min-height: 0;
    width: min(100%, 600px); 
    margin: 8px auto 0;
    justify-content: center;
  }
  
  .workflow-visual { order: 2; }
  .accordion { order: 1; }
  
  .benefits-grid,
  .pricing-grid,
  .bottom-team-grid,
  .top-team-grid { 
    grid-template-columns: repeat(3, 1fr); 
  }
  
  .cta-band {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    min-height: auto;
    padding: 48px 40px;
  }
  
}

/* Mobile - 760px */
@media (max-width: 760px) {
  .solution-section {
    margin-top: -28px;
    padding-top: 20px;
    padding-bottom: 56px;
  }

  .solution-panel {
    padding: 28px 22px;
    gap: 28px;
  }

  .desktop-nav { display: none; }
  .menu-toggle { display: block; }

  .site-header {
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
  }

  .mobile-nav a {
    font-size: 24px;
  }

  .hero {
    min-height: auto;
  }

  .hero-logo {
    position: relative;
    top: auto;
    right: auto;
    margin: 12px auto 0;
    width: min(240px, 72vw);
    max-width: 240px;
  }

  .hero-layout {
    padding-top: 0;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero h1 { font-size: clamp(28px, 8.5vw, 40px); }

  .hero h1 .hero-line {
    white-space: normal;
  }

  .hero-tagline {
    font-size: 10px;
  }

  .btn-hero-start {
    min-height: 42px;
    padding-inline: 22px;
    font-size: 13px;
  }

  .hero-person {
    width: min(100%, 380px);
    max-height: none;
    transform: none;
  }
  
  .benefits-grid,
  .pricing-grid,
  .bottom-team-grid,
  .top-team-grid { 
    grid-template-columns: 1fr; 
  }
  
  .section-heading h2 { font-size: 38px; }

  .cta-band {
    min-height: auto;
    padding: 36px 24px;
  }

  .price-card {
    min-height: auto;
    padding: 40px 28px 48px;
  }
  .step-num{
    font-size: 21px;
  }

  .accordion-trigger {
    grid-template-columns: 40px 1fr 20px;
    padding: 16px;
  }

  .accordion-content p {
    padding: 0 16px 18px 56px;
  }

  .benefits-grid {
    gap: 40px 20px;
    padding-top: 36px;
  }

  .benefit-card .benefit-number {
    width: min(var(--step-badge-size), 21vw);
    height: min(var(--step-badge-size), 21vw);
    font-size: clamp(20px, 5vw, 28px);
    border-width: 3px;
  }
}