:root {
  --bg: #f5f7fa;
  --surface: #ffffff;
  --surface-alt: #eef4f7;
  --text: #18222d;
  --muted: #526171;
  --line: #d9e1e8;
  --primary: #0c5a68;
  --primary-dark: #083d47;
  --accent: #c98522;
  --success: #1f7a5a;
  --shadow: 0 18px 40px rgba(16, 35, 52, 0.08);
  --radius: 20px;
  --radius-sm: 14px;
  --max: 1180px;
}


/* Featured Project skills list - desktop/tablet/mobile */
#featuredproject .check-list {
  columns: 3 240px;
  column-gap: 42px;
  margin-top: 18px;
}

#featuredproject .check-list li {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 12px;
}

/* Featured Project skills list - desktop/tablet/mobile */
#latestproject .check-list {
  columns: 3 240px;
  column-gap: 42px;
  margin-top: 18px;
}

#latestproject .check-list li {
  break-inside: avoid;
  page-break-inside: avoid;
  margin-bottom: 12px;
}

/* Mobile: one column */
/*@media (max-width: 700px) {
  #featuredproject .check-list {
    columns: 1;
  }
}*/

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
.container { width: min(calc(100% - 32px), var(--max)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-sm { padding: 48px 0; }
.eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 800;
}
.section-title {
  margin: 0 0 12px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}
.section-intro {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.muted { color: var(--muted); }
.kicker { color: var(--accent); font-weight: 700; }
.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: linear-gradient(135deg, #0f766e, #14b8a6);/*#0f766e; /* strong teal */
  color: #ffffff; /* high contrast */
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  border: none;
}

.btn-primary:hover {
  background: #115e59; /* darker on hover */
  transform: translateY(-1px);
}
.nav .btn-primary {
  margin-left: 0;
  margin-right: 0;
  box-shadow: 0 4px 12px rgba(15, 118, 110, 0.25);
}
.btn-secondary { background: #fff; color: var(--text); border-color: var(--line); }
.btn-secondary:hover { background: #f8fafc; color: var(--text); }
/*.btn-ghost { color: #fff; border-color: rgba(255,255,255,0.4); }*/
.btn-ghost {
  background: transparent;
  color: #0f766e;
  border: 1px solid #cbd5f5;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); color: #fff; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }
.skip-link {
  position: absolute;
  left: 16px;
  top: -48px;
  background: #111;
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  z-index: 1000;
}
.skip-link:focus { top: 16px; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(217,225,232,0.8);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-weight: 800;
}
.brand img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
}
.brand small {
  display: block;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 600;
}
.nav-toggle {
  display: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  width: 46px;
  height: 46px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  content: '';
  transition: 0.2s ease;
}
.nav-toggle span { margin: 6px auto; }
.nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.nav a {
  color: var(--text);
  font-weight: 650;
  padding: 10px 14px;
  border-radius: 999px;
}
.nav a.active {
  background: #e6f4f1;
  color: #0f766e;
  border-radius: 999px;
  font-weight: 600;
}
.nav a:hover,
.nav a[aria-current="page"] {
  background: var(--surface-alt);
  color: var(--primary-dark);
}
.hero {
  position: relative;
  overflow: visible;
  background:
    linear-gradient(135deg, rgba(7, 28, 37, 0.88), rgba(12, 90, 104, 0.8)),
    url('../images/benjamin-yap.jpg') center 18% / cover no-repeat;
  margin-top: -30px;
  color: #fff;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto -10% -120px auto;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(255,255,255,0.18), rgba(255,255,255,0));
  pointer-events: none;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 32px;
  align-items: center;
  min-height: calc(100vh - 76px);
  padding: /*96px 0 72px;*/70px 0 30px;
}
.hero-copy{
    max-width:1100px;
}
.hero-main-intro > div:first-child{
    max-width:760px;
}
.hero h1 {
  /*margin: 0 0 5px;*/
  /*font-size: clamp(2.4rem, 5vw, 4.6rem);*/
  font-size: clamp(1.3rem, 3.5vw, 2.4rem);/*Minimum size, preferred size, maximum size*/
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-top:-5px;
  margin-bottom:20px;
}
.hero-copy h1 {
  /*margin: 0 0 5px;*/
  margin: 0 0 0px;
  /*font-size: clamp(2.4rem, 5vw, 4.6rem);*//*Minimum size, preferred size, maximum size*/
  line-height: 0.98;
  letter-spacing: -0.03em;

}

.hero h2 {
  /*margin: 0 0 5px;*/
  /*font-size: clamp(2.4rem, 5vw, 4.6rem);*/
  font-size: clamp(0.8rem, 2.0vw, 1.5rem);/*Minimum size, preferred size, maximum size*/
  line-height: 0.98;
  letter-spacing: -0.02em;
  margin-top:-5px;
  margin-bottom:20px;
}
.hero img{
    max-width:25%;
	margin: auto;
}
/*
.hero-copy p {
  max-width: 700px;
  margin: 0 0 16px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
}*/
.hero-copy p {
  max-width: 700px;
  /*margin: -20px 0 16px;*/
  /*margin: -1px 0 -1px;*/
  margin: 0 0 18px;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.9);
}
.hero-copy img {
  margin: 8px auto 3px;
  max-width: 100%;
}
.hero-note {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 999px;
  margin-bottom: 18px;
  font-weight: 700;
}
.hero-card {
  padding: 24px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 24px;
  box-shadow: 0 16px 44px rgba(0,0,0,0.18);
}
.hero-card h2 {
  margin-top: 0;
  font-size: 1.2rem;
}
.hero-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.hero-list li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
}
.hero-list li:first-child { border-top: 0; padding-top: 0; }
.hero-columns {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 5px;
  margin-top: 28px;
}
.hero-column {
  padding: 5px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}
.hero-column strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 28px;
}
.stat {
  padding: 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.15);
}
.stat h2 {
  margin-top:-5px;
}
/*.stat strong {
  display: block;
  font-size: 1.55rem;
  line-height: 1;
  margin-bottom: 8px;
}*/
.grid-2 { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.about-card { padding: 28px; }
.about-list,
.check-list,
.clean-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
}
.about-list li,
.check-list li,
.clean-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 14px;
}
.about-list li::before,
.check-list li::before,
.clean-list li::before {
  /*content: "\2022";*/   /* Unicode bullet */
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  position: absolute;
  left: 6px;
  top: 1px;
  color: var(--accent);
  font-size: 1.2rem;
  line-height: 1;
  font-weight: 700;
}
.service-card,
.trust-card,
.skill-card,
.contact-card,
.brand-card,
.timeline-card,
.case-card { padding: 24px; }
.service-card h3,
.trust-card h3,
.skill-card h3,
.brand-card h3,
.case-card h3,
.timeline-card h3 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.18rem;
}
.service-card p,
.trust-card p,
.skill-card p,
.brand-card p,
.timeline-card p,
.case-card p {
  margin: 0;
  color: var(--muted);
}
.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  align-items: stretch;
}
.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 132px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
}
.logo-item img {
  max-height: 64px;
  width: auto;
  object-fit: contain;
}
.band { background: var(--surface-alt); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.cta {
  padding: 36px;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  border-radius: 28px;
  display: grid;
  gap: 20px;
  align-items: center;
  grid-template-columns: 1.2fr auto;
}
.cta h2, .cta p { margin: 0; }
.contact-grid,
.footer-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 24px; }
.contact-card p,
.contact-card li { color: var(--muted); }
.contact-list {
  list-style: none;
  padding: 0;
  margin: 16px 0 0;
}
.contact-list li { margin-bottom: 12px; }
.contact-list strong {
  display: inline-block;
  min-width: 92px;
  color: var(--text);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-group { display: grid; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
label { font-weight: 700; }
input, textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  background: #fff;
}
input:focus, textarea:focus {
  outline: 2px solid rgba(12, 90, 104, 0.18);
  border-color: var(--primary);
}
textarea { min-height: 160px; resize: vertical; }
.notice {
  margin-top: 14px;
  font-size: 0.95rem;
  color: var(--muted);
}
.site-footer {
  background: #0f1720;
  color: rgba(255,255,255,0.84);
  padding: 26px 0 42px;
}
.site-footer a { color: #fff; }
.site-footer p { margin: 0 0 10px; }
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 12px;
}
.footer-brand img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  padding: 5px;
}
.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 16px;
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}
.list-inline a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}
.page-hero {
  padding: 96px 0 52px;
  background: linear-gradient(180deg, #f8fbfd, #eef4f7);
  border-bottom: 1px solid var(--line);
}
.page-hero p { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.breadcrumbs {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 12px;
}
.timeline {
  display: grid;
  gap: 18px;
}
.case-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.badge {
  display: inline-flex;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--surface-alt);
  color: var(--primary-dark);
  font-weight: 700;
  font-size: 0.92rem;
}
.small { font-size: 0.94rem; }

@media (max-width: 1080px) {
  .hero-grid,
  .grid-2,
  .contact-grid,
  .footer-grid,
  .cta,
  .case-grid { grid-template-columns: 1fr; }
  .logo-wall { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; }
  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    display: none;
    padding: 14px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }
  .nav.open { display: grid; gap: 6px; }
  /*.nav a, .nav .btn { width: 100%; justify-content: center; }*/
  .nav a,
  .nav .btn,
  .nav .btn-primary {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  text-align: center;
  }
  .nav {
  justify-items: center;
}

.nav .btn-primary {
  max-width: 100%;
}
  .hero-grid { min-height: auto; padding: 76px 0 56px; }
  .stats,
  .grid-3,
  .logo-wall,
  .form-grid { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .hero-copy h1 {
        font-size: 16px;
        line-height: 1.05;
    }
    .hero-copy h2 {
        font-size: 13px;
        line-height: 1.05;
    }
}


@media (max-width: 560px) {
  .section { padding: 56px 0; }
  .section-sm { padding: 36px 0; }
  .hero-copy h1 { font-size: /*2.1rem*/15px;
    line-height: 1.05;}
  .hero-card,
  .about-card,
  .service-card,
  .trust-card,
  .skill-card,
  .contact-card,
  .brand-card,
  .timeline-card,
  .case-card,
  .cta { padding: 22px; }
  .contact-list strong { display: block; margin-bottom: 3px; }
  

}

.portfolio-brand-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.portfolio-brand-card {
  padding: 24px;
}

.portfolio-brand-card .logo-item {
  background: #fff;
  border: 1px solid #d9dee3;
  border-radius: 22px;
  padding: 28px 20px;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.portfolio-brand-card .logo-item img {
  max-width: 100%;
  max-height: 90px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.portfolio-brand-card h3 {
  margin: 0 0 10px;
  font-size: 1.35rem;
}

.portfolio-brand-card p {
  margin: 0 0 12px;
}

.portfolio-brand-card a {
  text-decoration: none;
}

.portfolio-brand-card p a {
  font-weight: 600;
}

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

  .portfolio-brand-card .logo-item {
    min-height: 160px;
  }
}

/* =========================================================
   FIX: Keep Home page header/nav visible while scrolling down
   Added 2026-05-24
   ---------------------------------------------------------
   The header is forced to stay fixed at the top of the viewport.
   This also prevents scroll-direction scripts or mobile browser
   behaviour from partially hiding the header on index.html.
   ========================================================= */

:root {
  --header-height: 76px;
}

body {
  padding-top: var(--header-height);
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9999;
  transform: none !important;
  translate: none !important;
  opacity: 1 !important;
  visibility: visible !important;
  will-change: auto;
}

/* If site.js or another scroll script adds a "hidden" class, keep the header visible */
.site-header.hidden,
.site-header.is-hidden,
.site-header.header-hidden,
.site-header.hide,
.site-header.scrolled-down,
.site-header.nav-up {
  transform: none !important;
  translate: none !important;
  top: 0 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

/* Keep the mobile dropdown positioned relative to the header wrapper */
.nav-wrap {
  position: relative;
}

/* Prevent anchor links from hiding section headings behind the fixed header */
section[id],
#main-content {
  scroll-margin-top: calc(var(--header-height) + 18px);
}

/* The hero no longer needs to subtract the header height because the body has top padding */
.hero-grid {
  min-height: calc(100vh - var(--header-height));
}

@media (max-width: 860px) {
  body {
    padding-top: var(--header-height);
  }

  .site-header {
    min-height: var(--header-height);
  }

  .nav {
    z-index: 10000;
  }
}

/* =========================================================
   FIX: Remove right-side mobile gap / horizontal overflow
   Added 2026-05-24
   ---------------------------------------------------------
   The Services cards were staying in two columns on small
   screens. Combined with CSS Grid's default min-width:auto,
   this can force the page wider than the phone viewport.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
}

.container,
.site-header,
main,
section,
.site-footer {
  max-width: 100%;
}

.hero-grid,
.grid-2,
.grid-3,
.grid-4,
.logo-wall,
.contact-grid,
.footer-grid,
.cta,
.case-grid,
.portfolio-brand-grid {
  min-width: 0;
}

.hero-grid > *,
.grid-2 > *,
.grid-3 > *,
.grid-4 > *,
.logo-wall > *,
.contact-grid > *,
.footer-grid > *,
.cta > *,
.case-grid > *,
.portfolio-brand-grid > * {
  min-width: 0;
}

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

  .service-card {
    width: 100%;
  }
  
  .cta .btn-row{
    justify-content:center;
  }
}
}

@media (max-width: 560px) {
  .container {
    width: min(calc(100% - 32px), var(--max));
  }

  .hero-copy h1,
  .section-title,
  .service-card h3,
  .trust-card h3 {
    overflow-wrap: anywhere;
  }
  .service-card,
  .trust-card{
    padding:20px;
}
.hero {
  margin-top: -18px;
}
@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    margin-top: -20px;
  }

  .hero-grid {
    min-height: auto;
    padding: 18px 0 28px;
  }

  .hero-note {
    margin-bottom: 8px;
  }

  .hero-copy h1 {
    margin-bottom: 0;
    /*font-size: clamp(2rem, 5vw, 3.2rem); Minimum, Preferred, Maximum*/
	font-size: clamp(1.5rem, 4vw, 2.5rem);
  }

  /*.hero-copy img {
    margin: -24px auto -16px;
    max-width: 210px;
  }*/
  
  .hero-copy img {
    margin: -24px auto -16px;
    max-width: 210px;
	max-width:45%;
  }

  .hero-copy p {
    margin-top: 4px;
  }
}

/* =========================================================
   1920px / desktop hero readability fix
   Added 2026-06-26
   ---------------------------------------------------------
   Fixes the home hero/top section so the content does not become
   narrow, stretched, or hard to read on wide screens.
   ========================================================= */

/* Remove old negative overlap under fixed header */
.hero {
  margin-top: 0 !important;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(7, 28, 37, 0.93), rgba(12, 90, 104, 0.86)),
    url('../images/benjamin-yap.jpg') center 28% / cover no-repeat;
}

.hero-grid {
  align-items: start;
  min-height: auto !important;
  padding: clamp(44px, 5vw, 76px) 0 clamp(60px, 7vw, 96px) !important;
}

.hero-copy {
  max-width: 760px;
}

.hero-copy h1 {
  max-width: 760px;
  margin-bottom: 22px;
  line-height: 1.02;
}

.hero-copy h2 {
  margin-top: 30px;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
  line-height: 1.25;
}

.hero-copy p {
  max-width: 760px;
  margin: 0 0 18px;
  color: rgba(255,255,255,0.93);
}

.hero-copy img {
  max-width: min(380px, 72vw);
  margin: 28px auto 34px;
}

.hero-card {
  position: sticky;
  top: calc(var(--header-height) + 28px);
  align-self: start;
  max-width: 420px;
  justify-self: end;
  background: rgba(255,255,255,0.16);
  backdrop-filter: blur(10px);
}

/* Wider, readable cards instead of very narrow columns */
.stats {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.stat {
  padding: 22px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
}

.stat strong {
  line-height: 1.08;
}




#featuredproject {
  margin-top: 12px;
  max-width: 100%;
}



@media (min-width: 1081px) {
  .hero-grid {
    grid-template-columns: minmax(0, 760px) minmax(320px, 420px);
    gap: clamp(48px, 6vw, 88px);
  }
  

}

@media (max-width: 1080px) {
  .hero-copy,
  .hero-copy h1,
  .hero-copy p,
  #featuredproject {
    max-width: 100%;
  }

  .hero-card {
    position: static;
    max-width: 100%;
    justify-self: stretch;
  }
}
  
@media (max-width: 760px) {
  .stats {
    grid-template-columns: 1fr;
  }

  .hero-copy img {
    /*max-width: 260px*/
	max-width:30%;
    margin: 22px auto 28px;
  }
}

@media (max-height: 560px) and (orientation: landscape) {
  .hero {
    margin-top: 0 !important;
  }

  .hero-grid {
    min-height: auto !important;
    padding: 24px 0 40px !important;
  }
}


/* =========================================================
   HOME PAGE PRICING + LIMITED AVAILABILITY
   Responsive desktop, tablet and mobile presentation
   ========================================================= */

.pricing-section {
  background:
    radial-gradient(circle at top right, rgba(12, 90, 104, 0.08), transparent 34%),
    var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pricing-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 30px;
}

.pricing-heading > div:first-child {
  min-width: 0;
}

.pricing-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
  padding: 11px 16px;
  border: 1px solid rgba(12, 90, 104, 0.18);
  border-radius: 999px;
  background: rgba(12, 90, 104, 0.07);
  color: var(--primary-dark);
  font-weight: 700;
}

.pricing-badge i {
  color: var(--primary);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, 0.65fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  overflow: hidden;
  padding: 34px;
}

.pricing-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 6px;
  background: linear-gradient(180deg, var(--primary), #14b8a6);
}

.pricing-card-icon,
.availability-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 68px;
  height: 68px;
  border-radius: 18px;
  font-size: 1.65rem;
}

.pricing-card-icon {
  background: var(--surface-alt);
  color: var(--primary);
  border: 1px solid rgba(12, 90, 104, 0.12);
}

.pricing-card-content {
  min-width: 0;
}

.pricing-label {
  margin: 0 0 4px;
  color: var(--muted);
  font-weight: 700;
}

.pricing-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
  margin: 0 0 20px;
}

.pricing-price span {
  color: var(--primary-dark);
  font-size: clamp(2.15rem, 5vw, 3.7rem);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1;
}

.pricing-price small {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 700;
}

.pricing-description,
.pricing-scope {
  max-width: 720px;
  margin: 0 0 14px;
  color: var(--muted);
}

.pricing-description {
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 600;
}

.pricing-button {
  margin-top: 10px;
}

.availability-card {
  display: flex;
  gap: 20px;
  height: 100%;
  padding: 32px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: var(--shadow);
}

.availability-icon {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.availability-kicker {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.availability-card h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  line-height: 1.2;
}

.availability-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 900px) {
  .pricing-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .pricing-layout {
    grid-template-columns: 1fr;
  }

  .availability-card {
    height: auto;
  }
}

@media (max-width: 620px) {
  .pricing-heading {
    margin-bottom: 22px;
  }

  .pricing-badge {
    width: 100%;
    justify-content: center;
  }

  .pricing-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 26px 22px 26px 28px;
  }

  .pricing-card-icon,
  .availability-icon {
    width: 58px;
    height: 58px;
    border-radius: 16px;
    font-size: 1.4rem;
  }

  .pricing-price {
    display: block;
  }

  .pricing-price span,
  .pricing-price small {
    display: block;
  }

  .pricing-price small {
    margin-top: 8px;
  }

  .pricing-button {
    width: 100%;
  }

  .availability-card {
    display: grid;
    grid-template-columns: 1fr;
    padding: 26px 22px;
  }
}

