*, *::before, *::after { box-sizing: border-box; }
html:focus-within { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: #0f172a;
  background: #f8fafc; /* fallback */
  background: linear-gradient(135deg, #ecfdf5 0%, #7dabcb 100%);
  line-height: 1.6;
  font-size: clamp(15px, 1.2vw, 18px); /* fluid base */
}

img, svg, video, canvas { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
.container { width: min(1100px, 92vw); margin-inline: auto; }

.site-header {
  background: linear-gradient(135deg, #0b4867, #0b4867);
  color: #fff;
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 8px 22px rgba(2,6,23,.12);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 0; gap: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-circle {
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(255,255,255,.22); display: grid; place-items: center; font-weight: 800;
}
.brand-title { margin: 0; font-size: clamp(18px, 1.6vw, 22px); line-height: 1.1; }
.brand-sub { margin: 0; opacity: .9; font-size: clamp(11px, 1.1vw, 13px); }

.nav { display: flex; gap: 10px; align-items: center; flex-wrap: wrap; }
.nav a {
  color: #fff; padding: 8px 10px; border-radius: 999px;
}
.nav a:hover, .nav a:focus-visible { background: rgba(255,255,255,.15); }
.nav .cta { background: #fff; color: #0f172a; font-weight: 700; }
.nav .cta:hover { background: #f1f5f9; }

.nav-logo {
  height: 36px; width: auto; margin-left: 6px; border-radius: 6px; object-fit: contain; flex: 0 0 auto;
}

@media (max-width: 760px) {
  .header-inner { flex-wrap: wrap; }
  .nav {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
  }
  .nav > * { scroll-snap-align: center; }
}

/* -------- Hero -------- */
.hero {
  position: relative; overflow: hidden; text-align: left;
  padding: clamp(60px, 10vw, 110px) 0;
  background: radial-gradient(1200px 500px at 10% 0%, #e0f2fe, #f8fafc);
}
.hero h2 { margin: 0 0 8px; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.15; }
.hero p { margin: 0 0 20px; opacity: .8; }

.btn {
  display: inline-block;
  background: #2563eb;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  user-select: none;                    
  -webkit-tap-highlight-color: transparent;  
  transform-origin: center;             
}

@media (hover: hover) and (pointer: fine) {
  .btn:hover,
  .btn:focus-visible {
    background: #1e40af;
    transform: scale(1.08);
    box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  }
}

@media (hover: none) {
  .btn:active {
    background: #1e40af;                
    transform: scale(0.95);             
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }
}

.btn:focus-visible {
  outline: 2px solid #93c5fd;           
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .btn { transition: none; }
}

/* Background-style image */
.hero-bg {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: .14; filter: grayscale(10%);
  border-radius: 0 !important; box-shadow: none !important; margin: 0 !important;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .14;
  filter: grayscale(10%);
  border-radius: 0 !important;
  box-shadow: none !important;
  margin: 0 !important;
  z-index: 0;                 
  pointer-events: none;        
}

.hero {
  position: relative;
  z-index: 1;
}

.btn {
  position: relative;
  z-index: 2;                  
  display: inline-block;
  background: #0b4867;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  transform-origin: center;
}

.btn:hover,
.btn:focus-visible {
  background: #1e40af;
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
}

.btn:active {
  background: #1e40af;
  transform: scale(0.95);
  box-shadow: 0 4px 8px rgba(0,0,0,0.15);
}

.btn:focus-visible {
  outline: 2px solid #93c5fd;
  outline-offset: 2px;
}

/* -------- Sections -------- */
.section {
  background: #ffffff97; border-radius: 20px;
  padding: clamp(18px, 3.2vw, 28px);
  margin: clamp(18px, 3.2vw, 28px) 0;
  box-shadow: 0 6px 20px rgba(2,6,23,.06);
}
.section h2 { margin-top: 0; font-size: clamp(22px, 2.6vw, 30px); }
.section h3 { margin-bottom: 8px; }

/* -------- Cards -------- */
.cards {
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.card {
  background: linear-gradient(135deg, #ecfdf5 0%, #7dabcb 100%); border-radius: 16px; padding: clamp(12px, 2.5vw, 16px);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.5);
}

.image-row {
  display: grid; gap: 12px; margin-top: 12px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}
.section-image {
  width: 100%; height: auto; border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,.08); object-fit: cover;
  aspect-ratio: auto; 
}

/* -------- Pricing -------- */
.pricing {
  display: grid; gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.price-card {
  border: 2px solid #e2e8f0; border-radius: 18px; padding: 18px; background: #f8fafc;
  display: flex; flex-direction: column; gap: 8px;
}
.price-card h3 { margin-top: 0; }
.price-card ul { padding-left: 18px; margin-top: 8px; }
.price {
  font-size: clamp(22px, 2.2vw, 28px); font-weight: 800; margin-top: 12px;
}
.price span { font-size: 0.8em; color: #475569; }

/* -------- Gallery -------- */
.gallery {
  display: grid; gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.gallery-item {
  display: block; border-radius: 14px; overflow: hidden;
  background: #e2e8f0; box-shadow: 0 2px 10px rgba(2,6,23,.06);
}
.gallery-item img { width: 100%; height: 180px; object-fit: cover; display: block; }
@media (min-width: 700px) { .gallery-item img { height: 220px; } }

.gallery-item:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: 0.5s;
}

/* -------- Footer -------- */
.site-footer { text-align: center; padding: 40px 0; color: #475569; font-size: 14px; }

/* -------- Accessibility & preferences -------- */
:focus-visible { outline: 2px solid #7dabcb; outline-offset: 3px; border-radius: 6px; }
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
}

@media (max-width: 420px) {
  .brand-sub { display: none; }
}

.image-row{
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  align-items: stretch;
  place-items:center;          
  text-align:center; 
}

.image-row .section-image{
  width: 100%;
  aspect-ratio: 3 / 2;         
  height: auto;                 
  object-fit: cover;            
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  display: block;
}

@media (max-width: 520px){
  .image-row{ grid-template-columns: 1fr 1fr; }
}

.image-row .section-image{
  width: 70%;
  align-items: center;
  display: block;
  border-radius: 14px;
  
}

/* uniform tiles (everyone EXCEPT .no-crop) */
.image-row .section-image:not(.no-crop){
  aspect-ratio: 3 / 2;   /* pick your ratio */
  object-fit: cover;     /* crop to fill */
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
}

/* opt-out: do NOT crop this one */
.image-row .section-image.no-crop{
  aspect-ratio: auto;    
  height: auto;
  box-shadow: none;      
}

.pricing{
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(280px, 320px));
  justify-content: center;    
  align-items: stretch;       
}

.price-card{
  display: grid;
  grid-template-rows: auto 1fr auto;
  height: 100%;
  border: 2px solid #e2e8f0;
  border-radius: 18px;
  padding: 18px;
  background: #f8fafc;
}

.price-card h3{ margin: 0 0 .5rem; }
.price-card ul{
  margin: 0;                   
  padding-left: 1.1rem;
  display: grid;
  gap: .45rem;                 
}

.price{
  margin: 0;                   
  font-size: 28px;
  font-weight: 800;
  display: inline-flex;
  align-items: baseline;
  gap: .4rem;
}
.price span{
  font-size: .7em;
  color: #475569;
  font-weight: 600;
}

@media (max-width: 900px){
  .pricing{ grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
}
@media (max-width: 560px){
  .pricing{ grid-template-columns: 1fr; }
}

.pricing{
  display:grid;
  gap:22px;
  grid-template-columns:repeat(auto-fit,minmax(280px,320px));
  justify-content:center;       
  align-items:stretch;           
}

.price-card{
  position:relative;
  display:grid;
  grid-template-rows:auto 1fr auto;  
  padding:22px 20px;
  border-radius:20px;
  border:2px solid transparent;
  background:
    linear-gradient(#ffffff,#ffffff) padding-box,
    linear-gradient(135deg,#0b4867,#0b4867) border-box;  
  box-shadow:0 10px 28px rgba(2,6,23,.10);
  transition:transform .2s ease, box-shadow .2s ease;
}
.price-card:hover{
  transform:translateY(-6px);
  box-shadow:0 18px 42px rgba(2,6,23,.16);
}

.price-card.featured{
  background:
    linear-gradient(#ffffff,#ffffff) padding-box,
    linear-gradient(135deg,#f59e0b,#ef4444) border-box;
}
.price-card.featured::before{
  content:"Most Popular";
  position:absolute; right:16px; top:-12px;
  font-size:12px; font-weight:700; letter-spacing:.2px;
  color:#fff; padding:6px 10px; border-radius:999px;
  background:linear-gradient(135deg,#f59e0b,#ef4444);
  box-shadow:0 8px 20px rgba(239,68,68,.35);
}

/* --- Headings & lists --- */
.price-card h3{ margin:0 0 .5rem; font-weight:800; letter-spacing:.2px; }
.price-card ul{
  margin:0; padding-left:1.2rem;
  display:grid; gap:.45rem;
}
.price-card ul li{
  position:relative; padding-left:.2rem;
}
.price-card ul li::marker{ content:""; } 
.price-card ul li::before{
  content:"✔";
  position:relative; left:-.2rem; margin-right:.35rem;
  color:#16a34a; font-weight:900;
}

.price{
  margin:0;
  font-size:clamp(24px,2.4vw,32px);
  font-weight:900;
  display:inline-flex; align-items:baseline; gap:.45rem;
}
.price span{ font-size:.75em; color:#475569; font-weight:600; }

@media (max-width:900px){
  .pricing{ grid-template-columns:repeat(auto-fit,minmax(260px,1fr)); }
}
@media (max-width:520px){
  .price{ font-size:clamp(22px,5vw,28px); }
}

.card:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: 0.5s;
}

.image-row .section-image:hover {
  transform: scale(1.08);
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  transition: 0.5s;
}

@media (max-width: 760px) {
  .site-header {
    transition: transform .28s ease;
    will-change: transform;
  }
  .site-header.hide {
    transform: translateY(-100%);
  }

  .nav-toggle {
    display: inline-block;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 42px;
    height: 42px;
    border: 0;
    background: rgba(255,255,255,.18);
    color: #fff;
    border-radius: 10px;
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
  }

  /* Hamburger bars */
  .nav-toggle .bar {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease, background-color .25s ease;
  }
  .nav-toggle .bar + .bar { margin-top: 5px; }

  .site-header.menu-open .nav-toggle .bar:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .site-header.menu-open .nav-toggle .bar:nth-child(2) {
    opacity: 0;
  }
  .site-header.menu-open .nav-toggle .bar:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .header-inner { position: relative; }

  .nav {
    position: absolute;
    left: 0; right: 0; top: 100%;
    background: linear-gradient(135deg, #0b4867, #0b4867);
    padding: 10px;
    border-bottom-left-radius: 16px;
    border-bottom-right-radius: 16px;
    box-shadow: 0 10px 24px rgba(2,6,23,.15);
    opacity: 0;
    transform: translateY(-8px) scaleY(.98);
    pointer-events: none;
    visibility: hidden;
    transition: opacity .22s ease, transform .22s ease, visibility .22s ease;
  }

  .site-header.menu-open .nav {
    opacity: 1;
    transform: translateY(0) scaleY(1);
    pointer-events: auto;
    visibility: visible;
  }

  .nav a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: #fff;
  }
  .nav a:hover, .nav a:focus-visible {
    background: rgba(255,255,255,.15);
  }

  .nav .cta {
    background: #fff;
    color: #0f172a;
    font-weight: 700;
  }
  .nav .cta:hover {
    background: #f1f5f9;
  }
}

.site-header { z-index: 1000; }

.nav-toggle {
  display: none;  }          

@media (max-width: 760px) {
  .nav-toggle {
    display: block;  
  }
}

.hero {
  position: relative;
  overflow: hidden;
  text-align: left;
  padding: clamp(60px, 10vw, 110px) 0;
  background: #f8fafc;             
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;                 
  object-position: center;           
  filter: none !important;           
  opacity: 1;                       
  pointer-events: none;              
  z-index: 0;                       
  transform: none !important;        
}

@media (max-width: 760px) {
  .hero .hero-bg { object-position: center top; }
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(255,255,255,0.06), rgba(255,255,255,0.00) 60%);
    z-index: 1;                    
    pointer-events: none;
  }
}

.price-card ul{
  list-style: none;           
  margin: 0;
  padding-left: 0;            
  padding-inline-start: 0;    
  -webkit-padding-start: 0;   
  display: grid;
  gap: .45rem;
}

.price-card ul li{
  list-style: none;           
  display: inline-flex;      
  align-items: flex-start;
  gap: .35rem;
  padding-left: 0;
}

.price-card ul li::before{
  content: "✔";
  color: #16a34a;
  font-weight: 900;
  line-height: 1;
  flex: 0 0 1em;              
  width: 1em;
  transform: translateY(.08em);
}

.price-card ul li::marker { content: none; }
