/* ════════════════════════════════════════════
   White Sea Media Group — Landing Page
   landing.css
════════════════════════════════════════════ */

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

:root {
  /* Brand */
  --blue: #15309c;
  --blue-h: #286bb2;
  --blue-deep: #0b1f6b;
  --blue-light: #e8eef8;
  --blue-mid: #6b88c8;
  --bg: #f5f5f5;
  --white: #ffffff;
  --ink: #111827;
  --ink-mid: #374151;
  --ink-soft: #4b5563;
  --border: rgba(21, 48, 156, 0.12);

  /* Type */
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Mulish", sans-serif;

  /* Layout */
  --nav-h: 76px;
  --r: 4px;
  --max-w: 1160px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img {
  display: block;
  max-width: 100%;
}
a {
  text-decoration: none;
  color: inherit;
}
button {
  cursor: pointer;
  font-family: var(--sans);
}

/* ── Layout ── */
.lp-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2.5rem;
}

/* ── Shared typographic atoms ── */
.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1rem;
}
.lp-eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--blue);
  flex-shrink: 0;
}

.lp-h2 {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--ink);
  margin-bottom: 1rem;
}
.lp-h2 em {
  font-style: italic;
  font-weight: 400;
  color: var(--blue);
}

.lp-lead {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 540px;
}

/* ── Buttons ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  transition:
    background 0.2s,
    transform 0.1s;
}
.btn-primary:hover {
  background: var(--blue-h);
}
.btn-primary:active {
  transform: scale(0.98);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: transparent;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 2px solid var(--blue);
  border-radius: var(--r);
  transition:
    background 0.2s,
    color 0.2s;
}
.btn-outline:hover {
  background: var(--blue);
  color: #fff;
}

.btn-primary-white {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.25rem;
  background: #fff;
  color: var(--blue);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--r);
  transition: opacity 0.2s;
}
.btn-primary-white:hover {
  opacity: 0.9;
}

/* ════════════════════════════════════════════
   NAV
════════════════════════════════════════════ */
#lp-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s;
}
#lp-nav.scrolled {
  border-color: var(--border);
  box-shadow: 0 2px 24px rgba(21, 48, 156, 0.07);
}
.nav-wrap {
  width: 100%;
  padding: 0 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo img {
  height: auto;
  width: clamp(140px, 24vw, 320px);
  max-height: 44px;
  object-fit: contain;
  display: block;
}
.nav-links {
  display: flex;
  gap: 0;
  list-style: none;
}
.nav-links a {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ink-mid);
  padding: 0.5rem 1.25rem;
  display: block;
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--blue);
}
.nav-cta {
  flex-shrink: 0;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: none;
  border: none;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}
.nav-hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: #fff;
  z-index: 199;
  overflow-y: auto;
  flex-direction: column;
  padding: 2rem 2.5rem 3rem;
  gap: 0.25rem;
}
.mobile-nav.open {
  display: flex;
}
.mobile-nav a {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink-mid);
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}
.mobile-nav a:hover {
  color: var(--blue);
}
.mobile-nav .mob-cta {
  margin-top: 1.5rem;
  border-bottom: none;
}

/* ════════════════════════════════════════════
   HERO
════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* Colour fallback — visible instantly; photo fades in over it */
  background-color: #0b1f6b;
  background-image:
    linear-gradient(
      160deg,
      rgba(11, 31, 107, 0.88) 0%,
      rgba(21, 48, 156, 0.72) 45%,
      rgba(40, 107, 178, 0.55) 100%
    ),
    url("https://images.unsplash.com/photo-1505118380757-91f5f5632de0?w=1800&q=85");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/* Subtle animated shimmer layer — evokes light on water */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    rgba(255, 255, 255, 0.015) 0px,
    rgba(255, 255, 255, 0.015) 1px,
    transparent 1px,
    transparent 48px
  );
  animation: shimmer 12s linear infinite;
}
@keyframes shimmer {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 96px 96px;
  }
}

/* Horizon rule — signature element */
.hero-horizon {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 2;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.35) 30%,
    rgba(168, 200, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.35) 70%,
    transparent 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: calc(var(--nav-h) + 5rem) 2.5rem 6rem;
  max-width: calc(var(--max-w) + 5rem);
  margin: 0 auto;
}
.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.75rem;
}
.hero-kicker::before {
  content: "";
  width: 36px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  flex-shrink: 0;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 6.5vw, 6rem);
  font-weight: 700;
  line-height: 1.04;
  color: #fff;
  max-width: 800px;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: #c8deff;
}
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.78;
  max-width: 540px;
  margin-bottom: 3rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
}
.hero-scroll-line {
  position: absolute;
  right: 3rem;
  bottom: 3.5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  writing-mode: vertical-lr;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
}
.hero-scroll-line::after {
  content: "";
  width: 1px;
  height: 52px;
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.35),
    transparent
  );
}

/* ════════════════════════════════════════════
   INTRO / PILLARS STRIP
════════════════════════════════════════════ */
.pillars-strip {
  background: var(--blue);
  padding: 0;
}
.pillars-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}
.pillar-item {
  padding: 2.5rem 2.25rem;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: none;
  transition: background 0.25s;
}
.pillar-item:hover {
  background: rgba(255, 255, 255, 0.06);
}
.pillar-num {
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.18);
  line-height: 1;
  margin-bottom: 0.85rem;
}
.pillar-title {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.5rem;
}
.pillar-text {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.62);
  line-height: 1.65;
}

/* ════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════ */
.services-section {
  padding: 7rem 0;
  background: var(--white);
}
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: end;
  margin-bottom: 4.5rem;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.svc-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.svc-card::after {
  content: "";
  position: absolute;
  inset: 0;
  left: -100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(21, 48, 156, 0.04),
    transparent
  );
  transition: left 0.5s;
}
.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 48px rgba(21, 48, 156, 0.12);
  border-color: rgba(21, 48, 156, 0.22);
}
.svc-card:hover::after {
  left: 100%;
}

.svc-card-line {
  width: 40px;
  height: 3px;
  background: var(--blue);
  border-radius: 2px;
  margin-bottom: 1.5rem;
  transition: width 0.3s;
}
.svc-card:hover .svc-card-line {
  width: 64px;
}

.svc-card-title {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 0.85rem;
}
.svc-card-desc {
  font-size: 0.88rem;
  color: var(--ink-soft);
  line-height: 1.72;
  margin-bottom: 1.5rem;
}
.svc-card-items {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.svc-card-item {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.8rem;
  color: var(--ink-mid);
}
.svc-card-item::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   WHY SECTION — split with photo
════════════════════════════════════════════ */
.why-section {
  padding: 0;
  background: var(--bg);
  overflow: hidden;
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 580px;
}

.why-photo {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(
      160deg,
      rgba(11, 31, 107, 0.55) 0%,
      rgba(21, 48, 156, 0.3) 40%,
      rgba(40, 107, 178, 0.1) 100%
    ),
    url(images/calm_white_sea.jpg) center / cover no-repeat;
  background-color: #0b1f6b; /* shows instantly while image loads */
}

.why-photo-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 2;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

.why-content {
  padding: 5rem 4rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--white);
}
.why-content .lp-eyebrow {
  margin-bottom: 1.25rem;
}
.why-tagline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--ink);
  line-height: 1.35;
  margin-bottom: 2rem;
  border-left: 3px solid var(--blue);
  padding-left: 1.25rem;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 2.5rem;
}
.why-item {
  display: flex;
  gap: 1.1rem;
  align-items: flex-start;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--border);
}
.why-item:first-child {
  border-top: 1px solid var(--border);
}
.why-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.why-check svg {
  color: var(--blue);
}
.why-item-title {
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--ink);
  margin-bottom: 0.15rem;
}
.why-item-desc {
  font-size: 0.82rem;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ════════════════════════════════════════════
   CREDENTIALS STRIP
════════════════════════════════════════════ */
.creds-strip {
  background: var(--blue-deep);
  padding: 3.5rem 0;
  display: flex;
  align-items: center;
}
.creds-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.cred-item {
  text-align: center;
  color: #fff;
  flex: 1;
  min-width: 120px;
}
.cred-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  display: block;
}
.cred-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 0.4rem;
  display: block;
}
.cred-divider {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════ */
.contact-section {
  padding: 7rem 0;
  background: var(--bg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 5rem;
  align-items: start;
}

.contact-left .lp-h2 {
  margin-bottom: 1.25rem;
}
.contact-tagline {
  font-size: 0.95rem;
  color: var(--ink-soft);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.5rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}
.contact-detail-icon {
  width: 38px;
  height: 38px;
  background: var(--blue-light);
  border-radius: var(--r);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg {
  color: var(--blue);
}
.contact-detail-label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 0.15rem;
  display: block;
}
.contact-detail-value {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
}

/* Form */
.contact-form {
  background: var(--white);
  border-radius: var(--r);
  padding: 2.75rem;
  border: 1px solid var(--border);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 0.9rem;
}
.form-group label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-mid);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.72rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--ink);
  background: var(--bg);
  outline: none;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(21, 48, 156, 0.1);
  background: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 12px;
}
.form-submit {
  width: 100%;
  padding: 0.95rem;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: var(--r);
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background 0.2s;
  margin-top: 0.5rem;
  cursor: pointer;
}
.form-submit:hover {
  background: var(--blue-h);
}
.form-note {
  font-size: 0.72rem;
  color: var(--ink-soft);
  text-align: center;
  margin-top: 0.85rem;
}

/* ════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════ */
.lp-footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.65);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 3rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-brand-logo img {
  height: auto;
  width: 72px;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.52);
  line-height: 1.7;
  max-width: 220px;
}
.footer-nav h4 {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 0.85rem;
}
.footer-nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-nav a:hover {
  color: #fff;
}
.footer-contact-val {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
  margin-bottom: 0.4rem;
}
.footer-contact-val a {
  color: rgba(255, 255, 255, 0.55);
  transition: color 0.2s;
}
.footer-contact-val a:hover {
  color: #fff;
}

.footer-bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-copy {
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}
.footer-legal-links a {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.38);
  transition: color 0.2s;
}
.footer-legal-links a:hover {
  color: #fff;
}

/* ════════════════════════════════════════════
   REVEAL ANIMATIONS
════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal-left,
  .reveal-right {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media (max-width: 960px) {
  .nav-links,
  .nav-cta {
    display: none;
  }
  .nav-hamburger {
    display: flex;
  }
  .services-header {
    grid-template-columns: 1fr;
  }
  .services-grid {
    grid-template-columns: 1fr 1fr;
  }
  .why-grid {
    grid-template-columns: 1fr;
  }
  .why-photo {
    min-height: 320px;
  }
  .why-content {
    padding: 3.5rem 2.5rem;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
  .pillars-inner {
    grid-template-columns: 1fr;
  }
  .pillar-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .pillars-inner {
    border-left: none;
  }
  .creds-inner {
    justify-content: center;
    gap: 2rem;
  }
  .cred-divider {
    display: none;
  }
}
@media (max-width: 600px) {
  .lp-container {
    padding: 0 1.25rem;
  }
  .hero-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .services-grid {
    grid-template-columns: 1fr;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    grid-template-columns: 1fr;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  /* .hero-scroll-line removed */
  .contact-form {
    padding: 1.75rem 1.25rem;
  }
  .creds-strip .lp-container {
    padding: 0 1.25rem;
  }
  .services-section {
    padding: 5rem 0;
  }
  .contact-section {
    padding: 5rem 0;
  }
}

/* Required field marker */
.req {
  color: #b91c1c;
  font-weight: 700;
  margin-left: 0.15em;
}
