:root {
  --bg: #050509;
  --bg-alt: #111118;
  --bg-soft: #181822;
  --card: #15151f;
  --border-subtle: #262634;
  --accent: #e02424;
  --accent-soft: rgba(224, 36, 36, 0.18);
  --text: #f5f5f7;
  --muted: #a0a0b5;
  --outline: rgba(255, 255, 255, 0.06);
  --radius-lg: 20px;
  --shadow-soft: 0 18px 50px rgba(0, 0, 0, 0.65);
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html, body {
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: radial-gradient(circle at top, #1a1a26 0, #050509 55%);
  color: var(--text);
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;

  background-image: url("assets/cargo-ship-carrying-shipping-containers-ocean.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  /* tuning for readability + smooth feel */
  opacity: 0.1;
  transform: scale(1.05);

  pointer-events: none;
  z-index: -2;
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(10, 10, 20, 0.25),
    rgba(5, 5, 9, 0.65)
  );
  pointer-events: none;
  z-index: -1;
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top right,
    rgba(255, 255, 255, 0.04),
    transparent 55%
  );
  pointer-events: none;
}


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

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

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(18px);
  background: linear-gradient(
    to bottom,
    rgba(5, 5, 9, 0.9),
    rgba(5, 5, 9, 0.8),
    rgba(5, 5, 9, 0.6)
  );
  border-bottom: 1px solid var(--outline);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}
.brand img {
  height: 44px;        /* desktop default */
  width: auto;
  display: block;
}
.brand-mark {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: radial-gradient(circle at 30% 0, #ff7070, #e02424);
  box-shadow: 0 0 18px rgba(224, 36, 36, 0.7);
  position: relative;
  overflow: hidden;
}

.brand-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--muted);
}

nav a {
  position: relative;
  padding-bottom: 2px;
}

nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.18s ease-out;
}

nav a:hover::after,
nav a.active::after {
  width: 100%;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid rgba(224, 36, 36, 0.5);
  background: linear-gradient(
    135deg,
    rgba(224, 36, 36, 0.12),
    rgba(224, 36, 36, 0.4)
  );
  box-shadow: 0 0 16px rgba(224, 36, 36, 0.35);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.nav-toggle {
  display: none;
  width: 26px;
  height: 22px;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}

/* Sections */

main {
  flex: 1;
}

.section {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 20px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 40px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 72px;
}

.hero-tag {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
  margin-bottom: 14px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title span {
  color: var(--accent);
}

.hero-sub {
  color: var(--muted);
  max-width: 34rem;
  font-size: 0.98rem;
  margin-bottom: 26px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 20px;
}

.btn-primary,
.btn-secondary {
  border-radius: 999px;
  padding: 11px 20px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 0 20px rgba(224, 36, 36, 0.6);
}

.btn-primary:hover {
  filter: brightness(1.05);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border-subtle);
  backdrop-filter: blur(10px);
}

.hero-footnote {
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-visual {
  position: relative;
}

.hero-card {
  background: radial-gradient(circle at top left, #27273a, #101018);
  border-radius: 26px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.hero-ship {
  height: 240px;
  border-radius: 20px;
  background: radial-gradient(circle at 20% 0, #3a5c8a, #020611 60%);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("hero-ship.jpg"); /* replace */
  position: relative;
}

.hero-ship::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(2, 6, 17, 0.7),
    rgba(2, 6, 17, 0.05)
  );
}

.hero-badge {
  position: absolute;
  bottom: 12px;
  left: 14px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.6);
  color: #f9fafb;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 10px rgba(34, 197, 94, 0.8);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-stat {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(9, 9, 16, 0.9);
  border: 1px solid var(--outline);
}

.hero-stat span {
  display: block;
}

.hero-stat .value {
  font-size: 1rem;
  color: #ffffff;
  font-weight: 600;
}

/* Section titles */

.section-header {
  max-width: 40rem;
  margin-bottom: 26px;
}

.eyebrow {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin-bottom: 8px;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.section-lead {
  color: var(--muted);
  font-size: 0.95rem;
}

/* Generic grids / cards */

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

.card {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 18px 18px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.6);
  font-size: 0.92rem;
}

.card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
  margin-bottom: 10px;
}

/* Forms */

.form-card {
  max-width: 640px;
  background: var(--card);
  border-radius: 22px;
  padding: 22px 22px 20px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
}

.form-row {
  display: flex;
  gap: 14px;
}

.form-group {
  flex: 1;
  margin-bottom: 14px;
}

label {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 4px;
}

input,
select,
textarea {
  width: 100%;
  padding: 9px 10px;
  border-radius: 10px;
  border: 1px solid var(--border-subtle);
  background: #090915;
  color: var(--text);
  font-size: 0.9rem;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

input:focus,
select:focus,
textarea:focus {
  outline: 1px solid var(--accent);
}

/* ================================
   Footer layout (fixed + responsive)
================================ */
.site-footer {
  margin-top: 56px;
  border-top: 1px solid var(--outline);
  background: linear-gradient(
    to top,
    rgba(5, 5, 9, 0.96),
    rgba(5, 5, 9, 0.82)
  );
}

.footer-top {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 46px 20px 26px;
}

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

.footer-col {
  min-width: 0; /* prevents overflow */
}

.footer-brand img {
  height: 34px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.footer-desc {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 34rem;
}

.footer-title {
  color: var(--text);
  font-size: 1.02rem;
  margin-bottom: 14px;
}

.footer-col a {
  display: block;
  color: var(--muted);
  margin-bottom: 10px;
  width: fit-content;
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-col a:hover {
  color: #ffffff;
  transform: translateX(2px);
}

.footer-contact {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-bottom {
  border-top: 1px solid var(--outline);
  padding: 18px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

/* Tablet */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

/* Mobile */
@media (max-width: 560px) {
  .footer-top {
    padding: 34px 16px 18px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand img {
    height: 30px;
  }
}

/* Responsive */

@media (max-width: 900px) {
  nav {
    display: none;
    position: absolute;
    top: 64px;
    right: 14px;
    width: calc(100vw - 28px);
    max-width: 360px;
    background: #050509;
    border-radius: 18px;
    border: 1px solid var(--outline);
    padding: 18px;
    flex-direction: column;
    gap: 14px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8);
  }

  nav.open {
    display: flex;
  }

  nav a {
    padding: 12px 10px;
    font-size: 1rem;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-top: 28px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-ctas {
    flex-direction: column;
    align-items: stretch;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }

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

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

  .section {
    padding-inline: 16px;
  }

  .form-row {
    flex-direction: column;
  }
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.35rem; }
  .card { padding: 16px; }

  .brand img {
    height: 24px;
  }
}
/* ================================
   Expanded index.html section styles
   (trust strip, process, testimonials, FAQ, CTA)
================================ */

/* Trust strip */
.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  background: linear-gradient(
    135deg,
    rgba(224, 36, 36, 0.22),
    rgba(5, 5, 9, 0.92)
  );
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(224, 36, 36, 0.35);
  box-shadow: var(--shadow-soft);
  margin-top: -30px;
}

.trust-item {
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(9, 9, 16, 0.65);
  border: 1px solid var(--outline);
}

.trust-item .k {
  font-size: 0.75rem;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 4px;
}

.trust-item .v {
  font-weight: 700;
  color: var(--text);
}

/* Process */
.process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 22px;
}

.step {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.step .n {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid rgba(224, 36, 36, 0.7);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  margin-bottom: 8px;
}

.step h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.step p {
  color: var(--muted);
  font-size: 0.88rem;
}

/* Home page: non-box process layout (adds rhythm between card sections) */
.process--line{
  gap: 0;
  padding-top: 18px;
  border-top: 1px solid var(--outline);
  position: relative;
}

.process--line .step--line{
  background: transparent;
  border: 0;
  box-shadow: none;
  padding: 0 18px;
  position: relative;
}

.process--line .step--line::before{
  content:"";
  position:absolute;
  left:0;
  top: 10px;
  bottom: 0;
  width: 1px;
  background: var(--outline);
}

.process--line .step--line:first-child::before{
  display:none;
}

.process--line .step--line .n{
  width: 34px;
  height: 34px;
  background: rgba(224,36,36,0.10);
  border-color: rgba(224,36,36,0.65);
  box-shadow: 0 0 14px rgba(224,36,36,0.25);
  margin-bottom: 10px;
}

@media (max-width: 900px){
  .process--line{
    border-top: 0;
    padding-top: 0;
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .process--line .step--line{
    padding: 14px 16px;
    border: 1px solid var(--outline);
    border-radius: var(--radius-lg);
    background: rgba(21,21,31,0.55);
    box-shadow: 0 10px 32px rgba(0,0,0,0.45);
  }
  .process--line .step--line::before{
    display:none;
  }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.testimonial {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 16px 18px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 2.2rem;
  line-height: 1;
  color: rgba(224, 36, 36, 0.35);
}

.testimonial p {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonial .by {
  margin-top: 10px;
  color: var(--text);
  font-weight: 700;
  font-size: 0.9rem;
}

.testimonial .role {
  color: var(--muted);
  font-size: 0.82rem;
}

/* FAQ */
.faq {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.faq-item {
  background: var(--card);
  border-radius: var(--radius-lg);
  padding: 14px 16px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.45);
}

.faq-item h3 {
  font-size: 0.95rem;
  margin-bottom: 6px;
}

.faq-item p {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA band */
.quote-cta {
  margin-top: 10px;
  background: radial-gradient(circle at top left, var(--accent-soft), #12121c);
  border-radius: 26px;
  padding: 22px;
  border: 1px solid rgba(224, 36, 36, 0.5);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  box-shadow: var(--shadow-soft);
}

.quote-cta p {
  color: var(--muted);
}

/* Responsive adjustments for new sections */
@media (max-width: 900px) {
  .trust-strip {
    grid-template-columns: 1fr;
    margin-top: 0;
  }

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

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

  .faq {
    grid-template-columns: 1fr;
  }
}

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

  .testimonials {
    grid-template-columns: 1fr;
  }
}
/* ================================
   Animations (subtle + premium)
================================ */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.65s ease, transform 0.65s ease;
  will-change: opacity, transform;
}

.reveal.in {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helper */
.reveal.d1 { transition-delay: 0.06s; }
.reveal.d2 { transition-delay: 0.12s; }
.reveal.d3 { transition-delay: 0.18s; }
.reveal.d4 { transition-delay: 0.24s; }

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

/* ================================
   Minimal icons + visual panels
================================ */
.card-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: rgba(224,36,36,0.12);
  border: 1px solid rgba(224,36,36,0.25);
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
  color: var(--accent);
}
.card-icon svg{
  width: 22px;
  height: 22px;
  display: block;
}
.visual-panel{
  border-radius: 26px;
  padding: 28px;
  border: 1px solid var(--outline);
  background:
    radial-gradient(circle at top right, rgba(224,36,36,0.10), transparent 55%),
    url("assets/world-map.svg") center/cover no-repeat,
    rgba(9,9,16,0.70);
  box-shadow: var(--shadow-soft);
}

/* Google Map embed */
.map-wrapper{
  width: 100%;
  height: 380px;
  border-radius: 26px;
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow-soft);
  background: #050509;
}
.map-wrapper iframe{
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(90%) contrast(1.1) brightness(0.92);
}
@media (max-width: 640px){
  .map-wrapper{ height: 300px; }
}

/* Subtle micro-interactions (professional) */
.card, .step, .testimonial, .faq-item{
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.card:hover, .step:hover, .testimonial:hover, .faq-item:hover{
  transform: translateY(-4px);
  border-color: rgba(224,36,36,0.35);
}
.btn-primary, .btn-secondary{
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.2s ease;
}
.btn-primary:hover, .btn-secondary:hover{ transform: translateY(-1px); }
.btn-primary:active, .btn-secondary:active{ transform: translateY(0) scale(0.99); }

.hero-badge-dot{
  animation: pulse 2.7s ease-in-out infinite;
}
@keyframes pulse{
  0%{ box-shadow: 0 0 0 0 rgba(34,197,94,0.55); }
  70%{ box-shadow: 0 0 0 10px rgba(34,197,94,0); }
  100%{ box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}
@media (prefers-reduced-motion: reduce){
  .hero-badge-dot{ animation: none !important; }
}
/* Contact page split layout */
.contact-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 20px;
  align-items: start;
  margin-top: 18px;
}

.contact-form {
  max-width: none; /* override form-card's max-width */
}

.contact-map .map-head {
  margin-bottom: 14px;
}

.form-note {
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--muted);
}

.form-note a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255,255,255,0.35);
}

/* Make the map height match the form better */
.contact-map .map-wrapper {
  height: 520px;
}

/* Tablet / mobile */
@media (max-width: 980px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
  .contact-map .map-wrapper {
    height: 320px;
  }
}

/* Option B map panel inside contact split */
.map-hero {
  position: relative;
  height: 520px; /* matches your current form height vibe */
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid var(--outline);
  box-shadow: var(--shadow-soft);
  background: #050509;
}

.map-hero iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(100%) contrast(1.15) brightness(0.85);
  opacity: 0.9;
}

.map-overlay {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(5, 5, 9, 0.72);
  border: 1px solid var(--outline);
  border-radius: 22px;
  padding: 16px 18px;
  backdrop-filter: blur(14px);
}

.map-overlay .section-title {
  margin-bottom: 6px;
}

.map-overlay .section-lead {
  margin-bottom: 10px;
}

.location-meta {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.55;
}

.location-meta a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.25);
}

/* Mobile */
@media (max-width: 980px) {
  .map-hero {
    height: 340px;
  }
}


/* Card variants to reduce "box fatigue" without removing structure */
.card{
  position: relative;
  overflow: hidden;
}

/* Unified service card treatment (keeps the look you liked, without implying a "top 3") */
.card--service{
  border-color: rgba(255,255,255,0.10);
  background:
    radial-gradient(circle at top right, rgba(224,36,36,0.10), transparent 58%),
    radial-gradient(circle at bottom left, rgba(255,255,255,0.06), transparent 55%),
    var(--card);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.55);
}

.card--service::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background: linear-gradient(90deg, rgba(224,36,36,0.0), rgba(224,36,36,0.85), rgba(224,36,36,0.0));
  opacity: 0.55;
}

.card--accent{
  border-color: rgba(224, 36, 36, 0.35);
  background:
    radial-gradient(circle at top right, rgba(224,36,36,0.12), transparent 55%),
    var(--card);
}

.card--accent::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:0;
  height:3px;
  background: linear-gradient(90deg, rgba(224,36,36,0.0), rgba(224,36,36,1), rgba(224,36,36,0.0));
  opacity: 0.95;
}

.card--soft{
  background: rgba(21, 21, 31, 0.55);
  border-color: rgba(255,255,255,0.08);
  box-shadow: 0 8px 26px rgba(0,0,0,0.45);
}

.card--soft .pill{
  border-color: rgba(255,255,255,0.14);
}

/* Services page: calmer, more "enterprise" grid */
.grid--two{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 900px){
  .grid--two{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 640px){
  .grid--two{
    grid-template-columns: 1fr;
  }
}



/* FAQ accordion (non-box) */
.faq-list{
  margin-top: 14px;
  border-top: 1px solid var(--outline);
}
.faq-item{
  padding: 10px 0;
  border-bottom: 1px solid var(--outline);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border-left: 0;
  border-right: 0;
  border-top: 0;
}
.faq-q{
  width: 100%;
  background: transparent;
  border: 0;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 0;
  text-align: left;
  font: inherit;
  cursor: pointer;
}
.faq-q-text{
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
}
.faq-q:focus-visible{
  outline: 2px solid rgba(224, 36, 36, 0.7);
  outline-offset: 6px;
  border-radius: 12px;
}
.faq-icon{
  width: 18px;
  height: 18px;
  position: relative;
  flex: 0 0 auto;
  opacity: 0.85;
}
.faq-icon::before,
.faq-icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 16px;
  height: 2px;
  background: rgba(245, 245, 247, 0.9);
  transform: translate(-50%, -50%);
  border-radius: 999px;
}
.faq-icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
  transition: transform 0.18s ease;
}
.faq-item.open .faq-icon::after{
  transform: translate(-50%, -50%) rotate(0deg);
}
.faq-a{
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transform: translateY(-2px);
  transition: max-height 0.28s ease, opacity 0.22s ease, transform 0.22s ease;
  color: var(--muted);
  padding-right: 8px;
}
.faq-item.open .faq-a{
  opacity: 1;
  transform: translateY(0);
  margin-top: 4px;
}
.faq-a p{
  margin: 0 0 10px;
  color: var(--muted);
}
.faq-a p:last-child{ margin-bottom: 12px; }