@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;600;700;800;900&display=swap');
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:      #1f2236;
  --navy-dk:   #17192a;
  --navy-xdk:  #0d0f1a;
  --gold:      #e8a743;
  --gold-hv:   #c88318;
  --white:     #ffffff;
  --gray:      #c4c6cd;
  --border:    #424453;
  --bg-lt:     #f1f1f1;
  --ease:      cubic-bezier(.4,0,.2,1);
  --radius:    10px;
}

html { scroll-behavior: smooth; }
body { font-family: 'Sora', sans-serif; background: var(--navy); color: var(--white); line-height: 1.65; overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ─────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 28px;
  font-family: 'Sora', sans-serif; font-weight: 800; font-size: .9rem;
  border-radius: var(--radius); border: none; cursor: pointer;
  transition: .25s var(--ease); white-space: nowrap; text-align: center;
}
.btn-gold           { background: var(--gold); color: #000; }
.btn-gold:hover     { background: var(--gold-hv); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(232,167,67,.3); }
.btn-ghost          { background: transparent; color: var(--white); border: 1px solid var(--border); }
.btn-ghost:hover    { border-color: var(--gold); color: var(--gold); }
.btn-dark           { background: var(--navy-dk); color: var(--white); border: 1px solid var(--border); }
.btn-dark:hover     { background: #1f2236; box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.btn-outline-white  { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,.35); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,.06); }
.btn-white-solid    { background: #fff; color: #111; font-weight: 900; }
.btn-white-solid:hover { background: #f0f0f0; }
.btn-lg             { padding: 17px 40px; font-size: 1rem; }

/* ── HEADER ─────────────────────────────────── */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  height: 88px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%;
  background: rgba(23,25,42,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  z-index: 1000; transition: height .3s var(--ease);
}
#site-header.shrunk { height: 66px; }
.logo-wrap  { display: flex; align-items: center; gap: 14px; }
.logo-img   { height: 44px; }
.logo-name  { font-weight: 900; font-size: 1.4rem; letter-spacing: -.03em; }
.main-nav   { display: flex; gap: 32px; }
.main-nav a { color: var(--gray); font-weight: 700; font-size: .85rem; transition: color .2s; }
.main-nav a:hover { color: var(--gold); }
.header-btns { display: flex; gap: 14px; }
.hamburger   { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; }
.mobile-menu {
  display: none; flex-direction: column; gap: 0;
  position: fixed; top: 88px; left: 0; right: 0;
  background: var(--navy-dk); border-bottom: 1px solid var(--border); z-index: 999; padding: 20px;
}
.mobile-menu a { padding: 13px 0; border-bottom: 1px solid var(--border); color: var(--gray); font-weight: 700; }
.mobile-menu a:last-child { border: none; margin-top: 14px; }
.mobile-menu.open { display: flex; }

/* ── HERO ───────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding-top: 88px; position: relative; overflow: hidden;
  background: var(--navy-dk);
}
.hero-bg-blue {
  position: absolute; inset: 0;
  background: url('https://stonesystems.io/images/bg_blue.svg') center/cover no-repeat;
  opacity: .4; pointer-events: none;
}
.hero-bg-overlay {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 50% at 30% 60%, rgba(232,167,67,.06), transparent 70%);
  pointer-events: none;
}
.hero-inner {
  position: relative; z-index: 2;
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1180px; margin: 0 auto; padding: 80px 28px;
  gap: 60px; width: 100%;
}
.hero-content { flex: 1; max-width: 660px; }
.hero h1     { font-size: clamp(2.2rem, 4.5vw, 4rem); font-weight: 900; line-height: 1.15; margin-bottom: 26px; }
.hero-sub    { font-size: 1.1rem; color: var(--gray); margin-bottom: 40px; line-height: 1.7; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.hero-trust-logos { display: flex; gap: 28px; align-items: center; }
.hero-trust-logos img { height: 24px; object-fit: contain; opacity: .55; filter: grayscale(1); }
.hero-mascot { flex-shrink: 0; }
.hero-mascot img { height: 460px; object-fit: contain; filter: drop-shadow(0 20px 40px rgba(0,0,0,.5)); }

/* ── TRUST BAR ──────────────────────────────── */
.trust-bar {
  background: var(--navy-xdk);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center; flex-wrap: wrap;
  padding: 32px 24px;
}
.trust-item  { display: flex; flex-direction: column; align-items: center; gap: 6px; padding: 0 56px; }
.trust-num   { font-size: 1.9rem; font-weight: 900; color: var(--gold); }
.trust-label { font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--gray); }
.trust-divider { width: 1px; height: 56px; background: var(--border); }

/* ── FEATURES ───────────────────────────────── */
.features-section { background: var(--bg-lt); padding: 100px 0; }
.feature-row {
  display: flex; align-items: center; gap: 80px;
  max-width: 1180px; margin: 0 auto 120px; padding: 0 28px;
}
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-visual, .feature-text { flex: 1; }
.feature-visual { display: flex; justify-content: center; }
.feat-img { border-radius: 14px;  max-width: 100%; }
.feat-title { font-size: 2.4rem; font-weight: 900; color: #111; margin-bottom: 14px; line-height: 1.2; }
.feat-tagline { font-size: 1rem; color: #555; font-style: italic; margin-bottom: 32px; line-height: 1.6; }
.feat-bullets { list-style: none; }
.feat-bullets li {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 18px 0; border-bottom: 1px solid #e0e0e0;
}
.feat-bullets li:first-child { border-top: 1px solid #e0e0e0; }
.gold-check { color: var(--gold); font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.feat-bullets li div strong { display: block; font-size: .95rem; font-weight: 800; color: var(--gold-hv); margin-bottom: 4px; }
.feat-bullets li div p { font-size: .9rem; color: #555; line-height: 1.6; }

/* ── PROOF LOGOS ────────────────────────────── */
.proof-logo-bar {
  background: var(--navy);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  display: flex; justify-content: center; align-items: center; gap: 48px;
  padding: 36px 24px; flex-wrap: wrap;
}
.proof-logo-bar img { height: 28px; object-fit: contain; opacity: .5; filter: grayscale(1); transition: opacity .2s; }
.proof-logo-bar img:hover { opacity: 1; filter: none; }
.proof-text { font-size: .7rem; font-weight: 900; letter-spacing: .18em; color: var(--gray); text-transform: uppercase; }

/* ── TRADES ─────────────────────────────────── */
.trades-section { background: var(--navy-dk); padding: 100px 0; }
.trades-heading { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 900; text-align: center; margin-bottom: 60px; }
.trades-carousel-wrap { position: relative; display: flex; align-items: center; gap: 0; }
.trades-track-outer { overflow: hidden; flex: 1; }
.trades-track { display: flex; gap: 24px; transition: transform .45s var(--ease); }
.trade-card { min-width: calc(33.333% - 16px); background: #fff; border-radius: var(--radius); overflow: hidden; flex-shrink: 0; }
.trade-img-wrap { aspect-ratio: 4/3; overflow: hidden; }
.trade-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.trade-card:hover .trade-img-wrap img { transform: scale(1.06); }
.trade-label { padding: 16px 20px; font-weight: 900; font-size: 1rem; color: #111; text-align: center; }
.trade-nav {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: var(--gold); border: none; color: #000;
  font-size: 1.8rem; font-weight: 900; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: .2s; z-index: 2;
}
.trade-nav:hover { background: var(--gold-hv); }
.trade-prev { margin-right: 20px; }
.trade-next { margin-left: 20px; }

/* ── PROCESS / WORKING WITH US ──────────────── */
.process-section { background: var(--bg-lt); padding: 110px 0; }
.section-heading { font-size: clamp(1.8rem, 3vw, 2.8rem); font-weight: 900; margin-bottom: 60px; line-height: 1.2; }
.section-heading.dark-text { color: #111; }
.process-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 40px; position: relative; }
.process-steps::before {
  content: ''; position: absolute;
  top: 36px; left: calc(16.666% + 20px); right: calc(16.666% + 20px);
  height: 2px; background: var(--gold); opacity: .4;
}
.process-step { display: flex; flex-direction: column; align-items: center; text-align: center; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-bottom: 28px; flex-shrink: 0; z-index: 1;
  box-shadow: 0 0 0 6px rgba(232,167,67,.15);
}
.step-num { font-size: 1.6rem; font-weight: 900; color: #000; }
.step-content h3 { font-size: 1.2rem; font-weight: 900; color: #111; margin-bottom: 14px; }
.step-duration { font-size: .85rem; font-weight: 600; color: var(--gold-hv); }
.step-content p { font-size: .9rem; color: #555; line-height: 1.7; }

/* ── WHY UNIQUE ─────────────────────────────── */
.unique-section { background: var(--navy); padding: 110px 0; }
.unique-section .section-heading { text-align: center; }
.unique-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.unique-card {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: 16px; padding: 40px 32px;
  transition: .3s var(--ease);
}
.unique-card:hover { background: rgba(255,255,255,.07); border-color: var(--gold); transform: translateY(-6px); }
.unique-icon { font-size: 2.2rem; margin-bottom: 18px; }
.unique-card h3 { font-size: 1.15rem; font-weight: 900; margin-bottom: 12px; color: var(--white); }
.unique-card p  { font-size: .9rem; color: var(--gray); line-height: 1.65; }

/* ── REVIEWS ──────────────────────────────────── */
.reviews-section { background: var(--bg-lt); padding: 110px 0; }
.section-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase;
  background: rgba(232,167,67,.15); color: var(--gold-hv);
  padding: 6px 14px; border-radius: 4px; margin-bottom: 20px;
}
.section-tag.light { color: var(--gold); background: rgba(232,167,67,.12); }
.section-tag.dark  { color: var(--gold-hv); }
.section-sub { font-size: 1rem; color: var(--gray); margin-top: 16px; }
.section-sub.dark-sub { color: #555; }

.reviews-top {
  display: flex; justify-content: space-between; align-items: flex-start;
  margin-bottom: 56px; flex-wrap: wrap; gap: 28px;
}
.google-badge-big {
  display: flex; align-items: center; gap: 16px;
  background: #fff; border: 1px solid #e0e0e0; border-radius: 14px;
  padding: 20px 28px; box-shadow: 0 4px 16px rgba(0,0,0,.06);
}
.google-badge-big img { height: 30px; }
.badge-stars  { font-size: 1.4rem; color: #fbbc04; letter-spacing: 3px; }
.badge-score  { font-size: .82rem; font-weight: 700; color: #555; margin-top: 4px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

.review-card {
  background: #fff; border: 1px solid #e8e8e8; border-radius: 14px;
  padding: 28px; box-shadow: 0 2px 12px rgba(0,0,0,.04);
  transition: .3s var(--ease);
}
.review-card:hover { transform: translateY(-5px); box-shadow: 0 12px 32px rgba(0,0,0,.1); border-color: #fbbc04; }
.review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: .88rem; color: #fff; flex-shrink: 0; }
.review-photo { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; flex-shrink: 0; border: 2px solid #f0f0f0; }
.reviewer-info { flex: 1; }
.reviewer-name { font-weight: 800; font-size: .92rem; color: #111; }
.review-date   { font-size: .75rem; color: #888; margin-top: 2px; }
.review-g      { height: 18px; opacity: .8; }
.review-stars  { font-size: 1rem; color: #fbbc04; letter-spacing: 2px; margin-bottom: 14px; }
.review-body   { font-size: .9rem; color: #444; line-height: 1.7; margin-bottom: 14px; font-style: italic; }
.reviewer-trade { font-size: .8rem; font-weight: 800; color: var(--gold-hv); }
.reviews-more-wrap { text-align: center; margin-top: 48px; }

/* ── PORTFOLIO ─────────────────────────────── */
.portfolio-section { background: var(--navy-dk); padding: 110px 0; }
.portfolio-section .section-heading { margin-bottom: 12px; }
.portfolio-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; margin-top: 56px; }
.work-hidden { display: none; }
.portfolio-card { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; position: relative; cursor: default; }
.portfolio-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.portfolio-card:hover img { transform: scale(1.04); }

/* ── PRICING ────────────────────────────────── */
.pricing-section { background: var(--bg-lt); padding: 110px 0; }
.pricing-center { display: flex; justify-content: center; margin-top: 60px; }

/* Clean single pricing card */
.price-card-simple {
  background: var(--gold); border-radius: 20px;
  padding: 56px 60px; width: 100%; max-width: 560px;
  text-align: center; position: relative;
  box-shadow: 0 30px 80px rgba(232,167,67,.3);
}
.pcs-popular {
  display: inline-block;
  background: #000; color: var(--gold);
  font-size: .7rem; font-weight: 900; letter-spacing: .18em;
  padding: 6px 18px; border-radius: 50px;
  margin-bottom: 22px;
}
.pcs-name {
  font-size: .95rem; font-weight: 900; color: rgba(0,0,0,.55);
  text-transform: uppercase; letter-spacing: .1em;
  margin-bottom: 16px;
}
.pcs-price {
  font-size: 5rem; font-weight: 900; color: #000;
  line-height: 1; margin-bottom: 36px;
}
.pcs-price span { font-size: 1.2rem; font-weight: 700; }
.pcs-features {
  list-style: none; margin-bottom: 36px; text-align: left;
}
.pcs-features li {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 0; border-bottom: 1px solid rgba(0,0,0,.12);
  font-size: 1rem; font-weight: 700; color: #111;
}
.pcs-features li:first-child { border-top: 1px solid rgba(0,0,0,.12); }
.pcs-check {
  width: 24px; height: 24px; border-radius: 50%;
  background: #000; color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: .8rem; font-weight: 900; flex-shrink: 0;
}

/* ── CTA ──────────────────────────────────── */
.cta-section { background: var(--navy); border-top: 1px solid var(--border); overflow: hidden; }
.cta-inner {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 60px; padding-top: 0; padding-bottom: 0;
}
.cta-text { padding: 110px 0; max-width: 620px; }
.cta-text h2 { font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 22px; }
.cta-text p  { font-size: 1.05rem; color: var(--gray); margin-bottom: 38px; line-height: 1.7; }
.cta-stars-row { display: flex; align-items: center; gap: 12px; margin-top: 24px; flex-wrap: wrap; }
.cta-stars { color: var(--gold); font-size: 1.1rem; letter-spacing: 2px; }
.cta-quote { font-size: .82rem; color: var(--gray); font-style: italic; }
.cta-mascot img { height: 420px; object-fit: contain; }

/* ── FOOTER ──────────────────────────────── */
.site-footer { background: var(--navy-xdk); border-top: 1px solid var(--border); }
.footer-inner {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 60px;
  padding-top: 80px; padding-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 14px; }
.footer-logo  { height: 70px;width:70px; }
.footer-name  { font-size: 1.4rem; font-weight: 900; }
.footer-brand p { color: var(--gray); font-size: .88rem; }
.footer-socials { display: flex; gap: 14px; font-size: 1.2rem; }
.footer-col { display: flex; flex-direction: column; gap: 4px; }
.footer-col h4 { font-size: .75rem; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.footer-col a  { color: var(--gray); font-size: .88rem; padding: 7px 0; border-bottom: 1px solid rgba(255,255,255,.05); transition: color .2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 28px; padding-bottom: 28px;
  border-top: 1px solid var(--border);
  font-size: .8rem; color: var(--gray);
}
.footer-legal { display: flex; gap: 28px; }
.footer-legal a { color: var(--gray); }
.footer-legal a:hover { color: var(--gold); }

/* ── MODAL ───────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75); backdrop-filter: blur(6px);
  z-index: 9999; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: var(--navy-dk); border: 1px solid var(--border);
  border-radius: 20px; padding: 52px 48px; width: 100%; max-width: 500px;
  position: relative;
  transform: translateY(30px); transition: transform .35s var(--ease);
  box-shadow: 0 40px 80px rgba(0,0,0,.5);
}
.modal-backdrop.open .modal-box { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 22px;
  background: none; border: none; color: var(--gray);
  font-size: 1.3rem; cursor: pointer; transition: color .2s;
}
.modal-close:hover { color: var(--white); }
.modal-header { text-align: center; margin-bottom: 36px; }
.modal-logo   { height: 40px; margin: 0 auto 16px; }
.modal-header h2 { font-size: 1.8rem; font-weight: 900; margin-bottom: 10px; }
.modal-header p  { font-size: .9rem; color: var(--gray); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: .82rem; font-weight: 800; margin-bottom: 8px; color: var(--gray); }
.form-group input,
.form-group select {
  width: 100%; background: rgba(255,255,255,.06);
  border: 1px solid var(--border); border-radius: 8px;
  padding: 13px 16px; color: var(--white);
  font-family: 'Sora', sans-serif; font-size: .92rem; outline: none;
  transition: border-color .2s;
}
.form-group input::placeholder { color: rgba(255,255,255,.3); }
.form-group input:focus, .form-group select:focus { border-color: var(--gold); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--navy-dk); color: var(--white); }
.form-group input.error { border-color: #ef4444; }

/* ── THANK YOU POPUP ──────────────────────── */
.thankyou-popup {
  position: fixed; inset: 0; z-index: 99999;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.8); backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.thankyou-popup.open { opacity: 1; pointer-events: all; }
.thankyou-box {
  background: var(--navy-dk); border: 1px solid var(--gold);
  border-radius: 20px; padding: 56px 48px; max-width: 440px; text-align: center;
  box-shadow: 0 30px 80px rgba(232,167,67,.15);
  transform: scale(.9); transition: transform .3s var(--ease);
}
.thankyou-popup.open .thankyou-box { transform: scale(1); }
.thankyou-icon { font-size: 3.5rem; margin-bottom: 20px; }
.thankyou-box h3 { font-size: 2rem; font-weight: 900; margin-bottom: 14px; }
.thankyou-box p  { font-size: .95rem; color: var(--gray); margin-bottom: 32px; line-height: 1.6; }

/* ── SCROLL REVEAL ───────────────────────── */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner    { flex-direction: column; text-align: center; padding: 60px 28px; }
  .hero-actions  { justify-content: center; }
  .hero-trust-logos { justify-content: center; }
  .hero-mascot img { height: 300px; }
  .feature-row, .feature-row.reverse { flex-direction: column; gap: 40px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .unique-grid   { grid-template-columns: repeat(2,1fr); }
  .reviews-grid  { grid-template-columns: repeat(2,1fr); }
  .portfolio-grid { grid-template-columns: repeat(2,1fr); }
  .footer-inner  { grid-template-columns: 1fr 1fr; }
  .pcm-features  { grid-template-columns: 1fr; }
  .pcm-col:first-child { border-right: none; border-bottom: 1px solid var(--border); }
  .cta-inner     { flex-direction: column-reverse; align-items: center; padding: 80px 28px; }
  .cta-mascot img { height: 240px; }
  .trade-card    { min-width: calc(50% - 12px); }
}

@media (max-width: 768px) {
  .main-nav, .header-btns { display: none; }
  .hamburger     { display: block; }
  .reviews-grid  { grid-template-columns: 1fr; }
  .portfolio-grid { grid-template-columns: 1fr; }
  .unique-grid   { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .trust-item    { padding: 16px 32px; }
  .trade-card    { min-width: calc(100% - 0px); }
  .footer-inner  { grid-template-columns: 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .modal-box     { margin: 0 16px; padding: 36px 28px; }
  .pcm-top       { padding: 40px 28px; }
  .pcm-col       { padding: 28px; }
  .reviews-top   { flex-direction: column; }
}
