/* ============================================================
   MING HWEE EMPLOYMENT - SHARED STYLES
   Apple-style polish, Inter font, brand DNA colors
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

/* ============================================================
   1. RESET & CSS VARIABLES
   ============================================================ */
:root{
  --blue:#0c7cd4;
  --blue-h:#0fa1ff;
  --red:#dc0404;
  --red-h:#b80303;
  --dark:#0b0a14;
  --dark-surface:#171620;
  --dark-text:#ffffff;
  --text:#334155;
  --muted:#64748b;
  --lm:#94a3b8;
  --bg:#f8fafc;
  --bg-alt:#f1f5f9;
  --white:#ffffff;
  --border:#e2e8f0;
  --border-dark:#23232c;
  --amber:#0c7cd4;          /* repurposed: brand blue (was #f59e0b) */
  --green:#0c7cd4;          /* repurposed: brand blue (was #22c55e) */
  --green-h:#0a5fa3;        /* repurposed: darker brand blue (was #16a34a) */
  --gold:#0c7cd4;           /* repurposed: brand blue (was #c9983a) */
  --focus:#0c4374;
  --radius-card:24px;
  --radius-pill:980px;
  --radius-sm:12px;
  --radius-md:16px;
  --radius-lg:24px;
  --shadow-card:0 20px 25px -5px rgba(0,0,0,0.08), 0 10px 10px -5px rgba(0,0,0,0.03);
  --shadow-btn:0 4px 14px 0 rgba(12,124,212,0.39);
  --shadow-btn-red:0 4px 14px 0 rgba(220,4,4,0.35);
  --shadow-btn-green:0 4px 14px 0 rgba(12,124,212,0.39);  /* now blue */
  --transition:all .3s cubic-bezier(.25,.8,.25,1);
  --maxw:1200px;
}

*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth;-webkit-text-size-adjust:100%}
body{
  font-family:'Inter',-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,sans-serif;
  color:var(--dark);
  line-height:1.6;
  background:var(--white);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  font-size:16px;
}
img{max-width:100%;height:auto;display:block}
a{text-decoration:none;color:inherit}
button{font-family:inherit;cursor:pointer;border:none;background:none}
input,select,textarea{font-family:inherit;font-size:inherit}

h1,h2,h3,h4,h5,h6{
  font-family:'Inter',sans-serif;
  font-weight:800;
  line-height:1.15;
  letter-spacing:-0.02em;
  color:var(--dark);
}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}

:focus-visible{outline:3px solid var(--focus);outline-offset:2px}

/* ============================================================
   2. HEADER (.site-header)
   ============================================================ */
.site-header{
  position:fixed;
  top:0;left:0;right:0;
  z-index:1000;
  background:rgba(15,23,42,.95);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:box-shadow .3s ease;
}
.site-header.scrolled{box-shadow:0 4px 20px rgba(0,0,0,.2)}

/* Legacy .sh- class names (kept for compat) */
.sh-inner,.site-header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:12px 24px;
  max-width:var(--maxw);
  margin:0 auto;
  gap:16px;
}
.sh-logo,.site-logo{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--white);
  font-weight:800;
  font-size:18px;
  letter-spacing:-0.01em;
  flex-shrink:0;
}
.sh-logo img,.site-logo img{height:36px;width:auto;display:block}
.sh-nav{
  display:flex;
  align-items:center;
  gap:28px;
}
.sh-nav a{
  color:rgba(255,255,255,.75);
  font-size:14px;
  font-weight:500;
  transition:color .2s;
}
.sh-nav a:hover{color:var(--white)}
.sh-cta,.site-header-right{
  display:flex;
  align-items:center;
  gap:14px;
}
.header-phone{
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:#ffffff;
  font-size:14px;
  font-weight:600;
  letter-spacing:-.005em;
  transition:opacity .2s;
}
.header-phone:hover{opacity:.75;color:#ffffff}
.header-phone svg{width:18px;height:18px;stroke:#ffffff;flex-shrink:0}
.header-phone .ph-text{color:#ffffff}
@media(max-width:640px){
  .header-phone .ph-text{display:none}
}
.header-license-badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  background:rgba(12,124,212,.15);
  color:#0fa1ff;
  padding:6px 12px;
  border-radius:980px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  border:1px solid rgba(12,124,212,.3);
  white-space:nowrap;
}
.header-license-badge svg{width:14px;height:14px;stroke:#0fa1ff;flex-shrink:0}
@media(max-width:640px){
  .header-license-badge{display:none}
}

/* ============================================================
   3. SECTION HELPERS
   ============================================================ */
.section{padding:72px 0;position:relative}
.section-alt{background:var(--bg)}
.section-dark{background:var(--dark);color:var(--dark-text)}
.section-dark h1,.section-dark h2,.section-dark h3{color:var(--white)}

.section-hd{
  text-align:center;
  max-width:760px;
  margin:0 auto 48px;
}
.section-hd .eyebrow{
  display:inline-block;
  font-size:13px;
  font-weight:700;
  color:var(--blue);
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:12px;
}
.section-hd h2{
  font-size:40px;
  line-height:1.15;
  margin-bottom:16px;
}
.section-hd p{
  font-size:18px;
  color:var(--muted);
  line-height:1.6;
}

/* ============================================================
   4. TRUST BAR
   ============================================================ */
.trust-bar{
  background:var(--white);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
  padding:20px 0;
}
.trust-bar-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:32px;
  flex-wrap:wrap;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--text);
  font-size:14px;
  font-weight:600;
}
.trust-item svg{
  width:22px;
  height:22px;
  color:var(--blue);
  flex-shrink:0;
}
.trust-divider{
  width:1px;
  height:24px;
  background:var(--border);
}

/* ============================================================
   5. GRID UTILITIES
   ============================================================ */
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:24px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:24px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}

/* ============================================================
   6. CARDS
   ============================================================ */
.card{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:32px 24px;
  text-align:center;
  border:1px solid var(--border);
  transition:var(--transition);
}
.card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}
.card h3{
  font-size:20px;
  font-weight:700;
  margin-bottom:10px;
  color:var(--dark);
}
.card p{
  font-size:15px;
  color:var(--muted);
  line-height:1.6;
}
.card-icon{
  width:56px;
  height:56px;
  border-radius:16px;
  background:rgba(12,124,212,0.1);
  color:var(--blue);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 16px;
}
.card-icon svg{width:28px;height:28px}

.card-lg{
  background:var(--white);
  border-radius:var(--radius-card);
  padding:40px 32px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
  transition:var(--transition);
}
.card-lg:hover{transform:translateY(-4px)}

/* ============================================================
   7. STANDALONE BUTTONS (.sb)
   ============================================================ */
.sb{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:17px;
  font-weight:700;
  letter-spacing:-.01em;
  padding:16px 32px;
  border-radius:var(--radius-pill);
  text-decoration:none;
  transition:var(--transition);
  cursor:pointer;
  border:none;
  font-family:inherit;
  white-space:nowrap;
  line-height:1;
}
.sb svg{width:18px;height:18px;flex-shrink:0}

.sb-blue{
  background:var(--blue);
  color:var(--white);
  box-shadow:0 4px 14px rgba(12,124,212,.35);
}
.sb-blue:hover{
  background:var(--blue-h);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(12,124,212,.45);
}

.sb-red{
  background:var(--red);
  color:var(--white);
  box-shadow:var(--shadow-btn-red);
}
.sb-red:hover{
  background:var(--red-h);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(220,4,4,.45);
}

.sb-green{
  background:var(--green);
  color:var(--white);
  box-shadow:var(--shadow-btn-green);
}
.sb-green:hover{
  background:var(--green-h);
  transform:translateY(-2px);
  box-shadow:0 6px 20px rgba(34,197,94,.45);
}

.sb-white{
  background:var(--white);
  color:var(--dark);
  border:1px solid var(--border);
  box-shadow:0 2px 8px rgba(0,0,0,.04);
}
.sb-white:hover{
  background:var(--bg);
  transform:translateY(-2px);
  box-shadow:0 6px 16px rgba(0,0,0,.08);
}

.sb-ghost{
  background:transparent;
  color:var(--white);
  border:1px solid rgba(255,255,255,.25);
}
.sb-ghost:hover{
  background:rgba(255,255,255,.1);
  border-color:rgba(255,255,255,.4);
}

.sb-sm{
  font-size:14px;
  padding:10px 20px;
  gap:6px;
}

.sb-lg{
  font-size:18px;
  padding:18px 38px;
}

.cta-row{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:28px;
}
.cta-row-left{justify-content:flex-start}

/* ============================================================
   8. APPLE-STYLE HERO (.hero-wrap)
   ============================================================ */
.hero-wrap{
  position:relative;
  padding:140px 0 80px;
  text-align:center;
  overflow:hidden;
  background-color:#E0F2FE;
  background-image:
    radial-gradient(#A5D0F0 1.5px, transparent 1.5px),
    linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
  background-size:28px 28px, 100% 100%;
}
.hero-inner{
  position:relative;
  max-width:960px;
  margin:0 auto;
  padding:0 24px;
  z-index:2;
}

.hero-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  padding:8px 16px;
  border-radius:980px;
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  border:1px solid rgba(255,255,255,.5);
  font-size:14px;
  font-weight:600;
  color:var(--dark);
  margin-bottom:24px;
}
.hero-pill svg{width:16px;height:16px;color:var(--amber)}
.hero-pill .stars{
  display:inline-flex;
  gap:2px;
  color:var(--amber);
}

.hero-title{
  font-size:58px;
  line-height:1.05;
  letter-spacing:-0.035em;
  font-weight:800;
  color:var(--dark);
  margin-bottom:20px;
}
.hero-title .hl{color:var(--blue)}
.hero-title .hl-red{color:var(--red)}

.hero-subtitle{
  font-size:22px;
  line-height:1.5;
  color:var(--text);
  max-width:720px;
  margin:0 auto 20px;
  font-weight:400;
}

.hero-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:28px;
  flex-wrap:wrap;
  font-size:16px;
  color:var(--text);
  font-weight:600;
  margin-bottom:32px;
}
.hero-stats .sep{color:var(--lm)}
.hero-stats svg{width:18px;height:18px;color:var(--green);vertical-align:middle}

.hero-actions{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:24px;
}

.hero-image-wrap{
  margin-top:48px;
  position:relative;
  z-index:1;
}
.hero-image-wrap img{
  max-width:100%;
  border-radius:var(--radius-card);
  box-shadow:0 30px 60px -15px rgba(0,0,0,.25);
}

/* ============================================================
   9. RESPONSE INDICATOR + PULSE-DOT
   ============================================================ */
.response-indicator{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 18px;
  background:rgba(255,255,255,.8);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-radius:980px;
  border:1px solid rgba(255,255,255,.5);
  box-shadow:0 4px 12px rgba(0,0,0,.05);
  font-size:14px;
  font-weight:600;
  color:var(--dark);
}
.pulse-dot{
  position:relative;
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  flex-shrink:0;
}
.pulse-dot::before{
  content:'';
  position:absolute;
  top:-4px;left:-4px;right:-4px;bottom:-4px;
  border-radius:50%;
  background:var(--green);
  opacity:.4;
  animation:pulse-green 2s infinite cubic-bezier(.4,0,.6,1);
}
@keyframes pulse-green{
  0%{transform:scale(.8);opacity:.6}
  70%{transform:scale(1.8);opacity:0}
  100%{transform:scale(.8);opacity:0}
}

/* ============================================================
   10. PRICING CARD
   ============================================================ */
.pricing-card{
  background:var(--white);
  border-radius:var(--radius-card);
  padding:40px 32px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
  max-width:520px;
  margin:0 auto;
  position:relative;
  transition:var(--transition);
}
.pricing-card:hover{transform:translateY(-4px)}
.pricing-badge{
  display:inline-block;
  padding:6px 14px;
  background:rgba(12,124,212,0.1);
  color:var(--blue);
  font-size:12px;
  font-weight:700;
  letter-spacing:0.05em;
  text-transform:uppercase;
  border-radius:980px;
  margin-bottom:16px;
}
.pricing-title{
  font-size:24px;
  font-weight:700;
  margin-bottom:8px;
}
.pricing-desc{
  font-size:15px;
  color:var(--muted);
  margin-bottom:24px;
}
.pricing-amount{
  display:flex;
  align-items:baseline;
  gap:6px;
  margin-bottom:8px;
}
.pricing-amount .currency{
  font-size:22px;
  color:var(--muted);
  font-weight:600;
}
.pricing-amount .amount{
  font-size:56px;
  font-weight:800;
  color:var(--dark);
  letter-spacing:-0.03em;
  line-height:1;
}
.pricing-amount .per{
  font-size:16px;
  color:var(--muted);
  font-weight:500;
}
.pricing-note{
  font-size:14px;
  color:var(--muted);
  margin-bottom:28px;
}
.pricing-features{
  list-style:none;
  margin-bottom:28px;
}
.pricing-features li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:8px 0;
  font-size:15px;
  color:var(--text);
}
.pricing-features svg{
  width:18px;height:18px;
  color:var(--green);
  flex-shrink:0;
  margin-top:3px;
}

/* ============================================================
   11. HOUR SELECTOR GRID (.hsel)
   ============================================================ */
.hsel{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
  margin-bottom:24px;
}
.hsel-label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--text);
  margin-bottom:10px;
}
.hsel-item{
  position:relative;
}
.hsel-item input{
  position:absolute;
  opacity:0;
  pointer-events:none;
}
.hsel-item label{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:12px 8px;
  border:1.5px solid var(--border);
  border-radius:12px;
  font-size:14px;
  font-weight:600;
  color:var(--text);
  background:var(--white);
  cursor:pointer;
  transition:var(--transition);
  text-align:center;
}
.hsel-item label:hover{
  border-color:var(--blue);
  color:var(--blue);
}
.hsel-item input:checked + label{
  border-color:var(--blue);
  background:var(--blue);
  color:var(--white);
  box-shadow:0 4px 12px rgba(12,124,212,0.25);
}

/* ============================================================
   12. REVIEWS GRID
   ============================================================ */
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.rcard{
  background:var(--white);
  border-radius:var(--radius-md);
  padding:28px 24px;
  border:1px solid var(--border);
  transition:var(--transition);
}
.rcard:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 32px rgba(0,0,0,.06);
}
.rcard-stars{
  display:flex;
  gap:2px;
  color:var(--amber);
  margin-bottom:14px;
}
.rcard-stars svg{width:16px;height:16px}
.rcard-quote{
  font-size:15px;
  color:var(--text);
  line-height:1.65;
  margin-bottom:20px;
}
.rcard-author{
  display:flex;
  align-items:center;
  gap:12px;
}
.rcard-avatar{
  width:44px;height:44px;
  border-radius:50%;
  background:var(--bg);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:700;
  color:var(--blue);
  font-size:16px;
  flex-shrink:0;
}
.rcard-name{
  font-size:14px;
  font-weight:700;
  color:var(--dark);
}
.rcard-role{
  font-size:13px;
  color:var(--muted);
}

/* ============================================================
   13. FAQ ACCORDION
   ============================================================ */
.faq-list{
  max-width:800px;
  margin:0 auto;
}
.faq-item{
  border-bottom:1px solid var(--border);
}
.faq-q{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  font-size:17px;
  font-weight:600;
  color:var(--dark);
  text-align:left;
  background:none;
  border:none;
  cursor:pointer;
  font-family:inherit;
  transition:color .2s;
}
.faq-q:hover{color:var(--blue)}
.faq-q .chev{
  width:20px;height:20px;
  color:var(--muted);
  flex-shrink:0;
  transition:transform .3s ease;
}
.faq-item.open .faq-q .chev{transform:rotate(180deg)}
.faq-item.open .faq-q{color:var(--blue)}
.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s cubic-bezier(.25,.8,.25,1);
}
.faq-a-inner{
  padding:0 0 22px;
  font-size:15px;
  color:var(--text);
  line-height:1.7;
}

/* ============================================================
   14. FULL-SCREEN MODAL (true app-style fullscreen)
   ============================================================ */
.modal{
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(11,10,20,.85);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  display:flex;
  align-items:stretch;
  justify-content:center;
  padding:0;
  opacity:0;
  visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
}
.modal.active{
  opacity:1;
  visibility:visible;
}
.modal-content{
  background:var(--white);
  border-radius:0;
  padding:0;
  max-width:100%;
  width:100%;
  height:100vh;
  max-height:100vh;
  overflow:hidden;
  position:relative;
  box-shadow:none;
  transform:translateY(24px);
  transition:transform .4s cubic-bezier(.25,.8,.25,1);
  display:flex;
  flex-direction:column;
}
.modal.active .modal-content{
  transform:translateY(0);
}
.modal-header-bar{
  position:sticky;
  top:0;
  z-index:5;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
  padding:14px 20px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-shrink:0;
}
.modal-header-brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-size:14px;
  font-weight:700;
  color:var(--dark);
  letter-spacing:-.005em;
}
.modal-header-brand img{height:28px;width:auto}
.modal-close{
  position:relative;
  top:auto;right:auto;
  width:40px;height:40px;
  border-radius:50%;
  background:var(--bg);
  color:var(--text);
  border:1px solid var(--border);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:background .2s, transform .3s;
  z-index:2;
  flex-shrink:0;
}
.modal-close:hover{
  background:var(--border);
  transform:rotate(90deg);
}
.modal-close svg{width:18px;height:18px}
.modal-scroll{
  flex:1;
  overflow-y:auto;
  -webkit-overflow-scrolling:touch;
  padding:48px 24px 80px;
}
.modal-inner{
  max-width:520px;
  margin:0 auto;
  width:100%;
}
.modal-title{
  font-size:32px;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-0.02em;
  line-height:1.15;
}
.modal-subtitle{
  font-size:16px;
  color:var(--muted);
  margin-bottom:32px;
  line-height:1.5;
}
@media(max-width:640px){
  .modal-scroll{padding:32px 20px 64px}
  .modal-title{font-size:26px}
  .modal-subtitle{font-size:15px;margin-bottom:24px}
}

/* ============================================================
   15. FORM ELEMENTS
   ============================================================ */
.form-group{
  margin-bottom:16px;
}
.form-label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:var(--text);
  margin-bottom:8px;
}
.form-input,
.form-select,
.form-textarea{
  width:100%;
  padding:13px 16px;
  font-size:15px;
  font-family:inherit;
  color:var(--dark);
  background:var(--white);
  border:1.5px solid var(--border);
  border-radius:12px;
  transition:var(--transition);
  appearance:none;
  -webkit-appearance:none;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus{
  outline:none;
  border-color:var(--blue);
  box-shadow:0 0 0 4px rgba(12,124,212,0.12);
}
.form-input.error,
.form-select.error,
.form-textarea.error{
  border-color:var(--red);
  box-shadow:0 0 0 4px rgba(220,4,4,0.1);
}
.form-input::placeholder,
.form-textarea::placeholder{color:var(--lm)}

.form-select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%2364748b' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:42px;
}

.form-textarea{
  min-height:100px;
  resize:vertical;
}

.form-radio-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:8px;
}
.form-radio-grid .hsel-item label{padding:10px 4px;font-size:13px}

.form-submit{
  width:100%;
  margin-top:8px;
}

.form-note{
  font-size:12px;
  color:var(--muted);
  text-align:center;
  margin-top:14px;
  line-height:1.5;
}
.form-note a{color:var(--blue);text-decoration:underline}

/* ============================================================
   16. SUCCESS STATE
   ============================================================ */
.success-state{
  display:none;
  text-align:center;
  padding:24px 8px;
}
.success-icon{
  width:72px;
  height:72px;
  border-radius:50%;
  background:rgba(34,197,94,0.12);
  color:var(--green);
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 20px;
}
.success-icon svg{width:36px;height:36px}
.success-title{
  font-size:24px;
  font-weight:800;
  margin-bottom:10px;
  letter-spacing:-0.02em;
}
.success-message{
  font-size:15px;
  color:var(--muted);
  margin-bottom:22px;
  line-height:1.6;
}
.success-list{
  list-style:none;
  text-align:left;
  max-width:340px;
  margin:0 auto 22px;
}
.success-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:8px 0;
  font-size:14px;
  color:var(--text);
}
.success-list svg{
  width:18px;height:18px;
  color:var(--green);
  flex-shrink:0;
  margin-top:2px;
}

/* ============================================================
   17. FOOTER (.site-footer)
   ============================================================ */
.site-footer{
  background:var(--dark);
  color:rgba(255,255,255,.7);
  padding:56px 0 24px;
}
.sf-inner{
  display:grid;
  grid-template-columns:2fr 1fr 1fr;
  gap:48px;
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 24px;
}
.sf-brand h3{
  color:var(--white);
  font-size:20px;
  font-weight:800;
  margin-bottom:12px;
  letter-spacing:-0.01em;
}
.sf-brand p{
  font-size:14px;
  color:rgba(255,255,255,.6);
  line-height:1.7;
  max-width:360px;
}
.sf-col h4{
  color:var(--white);
  font-size:13px;
  font-weight:700;
  letter-spacing:0.08em;
  text-transform:uppercase;
  margin-bottom:16px;
}
.sf-col ul{list-style:none}
.sf-col li{margin-bottom:10px}
.sf-col a{
  color:rgba(255,255,255,.6);
  font-size:14px;
  transition:color .2s;
}
.sf-col a:hover{color:var(--white)}
.sf-contact-item{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:rgba(255,255,255,.6);
  margin-bottom:10px;
}
.sf-contact-item svg{
  width:16px;height:16px;
  color:var(--blue-h);
  flex-shrink:0;
  margin-top:3px;
}
.sf-bottom{
  max-width:var(--maxw);
  margin:40px auto 0;
  padding:24px 24px 0;
  border-top:1px solid var(--border-dark);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
  font-size:13px;
  color:rgba(255,255,255,.5);
}
.sf-bottom a{color:rgba(255,255,255,.6)}
.sf-bottom a:hover{color:var(--white)}

/* ============================================================
   18. FLOATING WHATSAPP (.fwa) - 80px (25% smaller), original WhatsApp green
   FWA is the ONE exception to the brand blue rule
   Dead bottom-right with safe-area inset support
   ============================================================ */
.fwa{
  position:fixed;
  bottom:20px;
  right:20px;
  bottom:max(20px, env(safe-area-inset-bottom, 20px));
  right:max(20px, env(safe-area-inset-right, 20px));
  z-index:9999;
  width:80px;height:80px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 28px rgba(37,211,102,.5), 0 4px 10px rgba(0,0,0,.18);
  animation:pwa 2.4s infinite;
  transition:transform .25s cubic-bezier(.25,.8,.25,1), box-shadow .25s;
  cursor:pointer;
  border:3px solid #ffffff;
}
.fwa:hover{
  transform:scale(1.06);
  background:#1da851;
  box-shadow:0 14px 36px rgba(37,211,102,.6), 0 6px 14px rgba(0,0,0,.22);
}
.fwa svg{width:40px;height:40px;color:#ffffff;fill:#ffffff}
.fwa-label{
  position:absolute;
  right:120px;
  top:50%;
  transform:translateY(-50%) translateX(8px);
  background:#0b0a14;
  color:#ffffff;
  padding:11px 20px;
  border-radius:980px;
  font-size:14px;
  font-weight:700;
  letter-spacing:-.005em;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .25s, transform .25s;
  box-shadow:0 4px 14px rgba(0,0,0,.18);
}
.fwa-label::after{
  content:"";
  position:absolute;
  right:-6px;top:50%;
  transform:translateY(-50%) rotate(45deg);
  width:10px;height:10px;
  background:#0b0a14;
}
.fwa:hover .fwa-label{
  opacity:1;
  transform:translateY(-50%) translateX(0);
}
@keyframes pwa{
  0%{box-shadow:0 10px 28px rgba(37,211,102,.5), 0 4px 10px rgba(0,0,0,.18), 0 0 0 0 rgba(37,211,102,.6)}
  70%{box-shadow:0 10px 28px rgba(37,211,102,.5), 0 4px 10px rgba(0,0,0,.18), 0 0 0 22px rgba(37,211,102,0)}
  100%{box-shadow:0 10px 28px rgba(37,211,102,.5), 0 4px 10px rgba(0,0,0,.18), 0 0 0 0 rgba(37,211,102,0)}
}

/* Mobile: 72px (25% smaller from 96px) */
@media(max-width:768px){
  .fwa{width:72px;height:72px;bottom:16px;right:16px;bottom:max(16px, env(safe-area-inset-bottom, 16px));right:max(16px, env(safe-area-inset-right, 16px));border-width:2px}
  .fwa svg{width:36px;height:36px}
  .fwa-label{display:none}
}

/* ============================================================
   19. MOBILE CTA BAR - REMOVED per design decision
   The floating WhatsApp is the only persistent mobile CTA now.
   ============================================================ */
.mobile-cta{display:none !important}

/* ============================================================
   20. FADE-IN ANIMATIONS
   ============================================================ */
.fade-in{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .7s cubic-bezier(.25,.8,.25,1), transform .7s cubic-bezier(.25,.8,.25,1);
}
.fade-in.visible{
  opacity:1;
  transform:translateY(0);
}
.fade-in.d1{transition-delay:.08s}
.fade-in.d2{transition-delay:.16s}
.fade-in.d3{transition-delay:.24s}
.fade-in.d4{transition-delay:.32s}

/* ============================================================
   21. UTILITY CLASSES
   ============================================================ */
.text-center{text-align:center}
.text-left{text-align:left}
.text-right{text-align:right}
.text-blue{color:var(--blue)}
.text-red{color:var(--red)}
.text-muted{color:var(--muted)}
.mt-0{margin-top:0}
.mt-8{margin-top:8px}
.mt-16{margin-top:16px}
.mt-24{margin-top:24px}
.mt-32{margin-top:32px}
.mb-0{margin-bottom:0}
.mb-8{margin-bottom:8px}
.mb-16{margin-bottom:16px}
.mb-24{margin-bottom:24px}
.mb-32{margin-bottom:32px}
.hidden{display:none}
.visible-mobile{display:none}

/* Testimonials carousel (single-slide rotating) */
.testimonials-wrapper{position:relative;max-width:780px;margin:0 auto}
.testimonial{
  display:none;
  background:var(--white);
  border-radius:var(--radius-card);
  padding:40px 32px;
  border:1px solid var(--border);
  box-shadow:var(--shadow-card);
  text-align:center;
}
.testimonial.active{display:block;animation:fadeInSlide .5s ease}
@keyframes fadeInSlide{from{opacity:0;transform:translateY(10px)}to{opacity:1;transform:translateY(0)}}
.testimonial-dots{
  display:flex;
  justify-content:center;
  gap:10px;
  margin-top:20px;
}
.testimonial-dot{
  width:10px;height:10px;
  border-radius:50%;
  background:var(--border);
  cursor:pointer;
  transition:background .2s, transform .2s;
}
.testimonial-dot.active{background:var(--blue);transform:scale(1.2)}
.testimonial-dot:hover{background:var(--lm)}

/* ============================================================
   RESPONSIVE BREAKPOINTS
   ============================================================ */
@media(max-width:1024px){
  .section-hd h2{font-size:34px}
  .hero-title{font-size:48px}
  .hero-subtitle{font-size:20px}
  .grid-4{grid-template-columns:repeat(2,1fr)}
  .sf-inner{grid-template-columns:1.5fr 1fr 1fr;gap:32px}
  .sh-nav{gap:20px}
}

@media(max-width:768px){
  body{padding-bottom:0}
  .container{padding:0 20px}
  .section{padding:56px 0}
  .section-hd{margin-bottom:36px}
  .section-hd h2{font-size:28px}
  .section-hd p{font-size:16px}

  .sh-nav{display:none}
  .sh-inner{padding:12px 16px}

  .hero-wrap{padding:110px 0 56px}
  .hero-title{font-size:42px;letter-spacing:-0.03em}
  .hero-subtitle{font-size:18px}
  .hero-stats{gap:14px;font-size:14px}
  .hero-stats .sep{display:none}
  .hero-actions{flex-direction:column;align-items:stretch;gap:12px}
  .hero-actions .sb{width:100%}

  .cta-row{flex-direction:column;align-items:stretch}
  .cta-row .sb{width:100%}

  .grid-2,.grid-3,.grid-4{grid-template-columns:1fr;gap:16px}
  .reviews-grid{grid-template-columns:1fr;gap:16px}

  .trust-bar-inner{gap:16px}
  .trust-divider{display:none}
  .trust-item{font-size:13px}

  .sf-inner{grid-template-columns:1fr;gap:32px}
  .sf-bottom{flex-direction:column;align-items:flex-start;gap:10px}

  .pricing-card{padding:32px 24px}
  .pricing-amount .amount{font-size:44px}

  .hsel,.form-radio-grid{grid-template-columns:repeat(3,1fr)}

  /* Modal stays fullscreen on mobile (no overrides needed; defaults already fullscreen) */
  .modal-title{font-size:24px}

  .visible-mobile{display:block}
  .hidden-mobile{display:none}

  .card{padding:24px 20px}
}

@media(max-width:480px){
  .hero-title{font-size:36px}
  .hero-subtitle{font-size:16px}
  .section-hd h2{font-size:24px}
  .hero-pill{font-size:13px;padding:7px 14px}
  .pricing-amount .amount{font-size:38px}
  .hsel,.form-radio-grid{grid-template-columns:repeat(2,1fr)}
  .modal-scroll{padding:28px 16px 56px}
  .sb{font-size:16px;padding:14px 24px}
  .sb-lg{font-size:17px;padding:16px 28px}
  .fwa{width:48px;height:48px}
  .fwa svg{width:22px;height:22px}
}

/* ============================================================
   END OF SHARED.CSS
   ============================================================ */

/* NEW UTILITY CLASSES FOR CONDENSED UI */
.scroll-x-mobile {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .scroll-x-mobile {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    gap: 16px !important;
  }
  .scroll-x-mobile > * {
    flex: 0 0 85%;
    scroll-snap-align: start;
  }
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
@media (max-width: 768px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
}
.bento-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.bento-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.06);
  border-color: var(--blue);
}
.bento-card .bento-icon, .bento-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(12,124,212,0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.bento-card .bento-icon svg, .bento-icon svg { width: 24px; height: 24px; }
.bento-card h3, .bento-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 8px; color: var(--dark); line-height:1.3; }
.bento-card p { font-size: 14px; color: var(--muted); line-height: 1.5; margin-bottom: 0; }

.tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
  margin-bottom: 24px;
}
.pill-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: var(--bg-alt);
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--radius-pill);
  border: 1px solid var(--border);
}
.pill-tag svg {
  width: 14px; height: 14px; color: var(--blue);
}

.timeline-flex {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  position: relative;
  margin-top: 32px;
}
.timeline-flex::before {
  content: '';
  position: absolute;
  top: 24px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.timeline-item {
  flex: 1;
  position: relative;
  z-index: 1;
  background: var(--white);
  padding: 24px 16px;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  text-align: center;
}
.timeline-item .num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: -48px auto 16px;
  box-shadow: 0 4px 12px rgba(12,124,212,0.3);
  border: 4px solid var(--white);
}
.timeline-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.timeline-item p { font-size: 14px; color: var(--muted); line-height: 1.4; }
@media (max-width: 768px) {
  .timeline-flex {
    flex-direction: column;
    gap: 16px;
  }
  .timeline-flex::before {
    top: 0; bottom: 0; left: 24px; right: auto;
    width: 2px; height: auto;
  }
  .timeline-item {
    display: flex;
    text-align: left;
    padding: 16px;
    align-items: center;
    gap: 16px;
    width: 100%;
  }
  .timeline-item .num {
    margin: 0;
    flex-shrink: 0;
  }
  .timeline-item > div {
    flex: 1;
  }
  .timeline-item h4 { margin-bottom: 4px; }
}

/* MOBILE FIXES & REFINEMENTS */
@media (max-width: 768px) {
  .timeline-flex {
    flex-direction: column !important;
    gap: 24px !important;
  }
  .timeline-flex::before {
    top: 0; bottom: 0; left: 40px !important; right: auto;
    width: 2px; height: auto;
  }
  .timeline-item {
    display: flex !important;
    flex-direction: row !important;
    text-align: left !important;
    padding: 16px !important;
    align-items: flex-start !important;
    gap: 16px !important;
    width: 100% !important;
  }
  .timeline-item .num {
    margin: 0 !important;
    flex-shrink: 0 !important;
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
  }
  .timeline-content {
    flex: 1 !important;
  }
  
  .stats-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
  }
  
  .trust-bar-inner {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px !important;
    justify-content: center !important;
  }
  .trust-item {
    flex-direction: column !important;
    text-align: center !important;
    justify-content: center !important;
  }
  
  .country-cards-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

body:has(.modal.active) .fwa {
  display: none !important;
}

.testimonial-person img, .story-photo img {
  border-radius: 50% !important;
  width: 72px !important;
  height: 72px !important;
  object-fit: cover !important;
  border: 3px solid #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

.story-photo {
  text-align: center;
  margin-bottom: 16px;
}
.story-photo img {
  margin: 0 auto;
}

/* =========================================================================
   v8 SURGICAL FIXES - 2026-04-25
   Repair sections broken by previous deploy
   ========================================================================= */

/* FIX 1: Timeline step circles must STAY circles on every viewport */
.timeline-item .num,
.timeline-item .num.num {
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  min-height: 56px !important;
  max-height: 56px !important;
  flex: 0 0 56px !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  aspect-ratio: 1 / 1 !important;
  border-radius: 50% !important;
  display: grid !important;
  place-items: center !important;
  background: linear-gradient(135deg, #0c7cd4, #0fa1ff) !important;
  color: #ffffff !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  font-family: 'Inter', sans-serif !important;
  box-shadow: 0 6px 16px rgba(12,124,212,0.35), 0 0 0 4px #ffffff !important;
  border: none !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
  text-align: center !important;
}

@media (max-width: 768px) {
  .timeline-flex {
    flex-direction: column !important;
    gap: 14px !important;
  }
  .timeline-flex::before { display: none !important; }
  .timeline-item {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    text-align: left !important;
    gap: 16px !important;
    padding: 16px 18px !important;
    width: 100% !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
  }
  .timeline-item > .num + div,
  .timeline-item .timeline-content {
    flex: 1 1 auto !important;
    min-width: 0 !important;
    text-align: left !important;
  }
  .timeline-item .num {
    width: 52px !important;
    height: 52px !important;
    min-width: 52px !important;
    max-width: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
    flex: 0 0 52px !important;
    font-size: 18px !important;
  }
  .timeline-item h4 {
    font-size: 15px !important;
    margin: 0 0 4px !important;
    line-height: 1.3 !important;
  }
  .timeline-item p {
    font-size: 13px !important;
    margin: 0 !important;
    line-height: 1.45 !important;
  }
}

/* FIX 2: Story cards - photo fills card top properly, text body below */
.story-photo {
  text-align: initial !important;
  margin: 0 !important;
  width: 100% !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden !important;
  background: #f1f5f9 !important;
  display: block !important;
}
.story-photo img {
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  border-radius: 0 !important;
  border: none !important;
  box-shadow: none !important;
  object-fit: cover !important;
  margin: 0 !important;
  display: block !important;
}
.story-card {
  display: flex !important;
  flex-direction: column !important;
  background: #ffffff !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 16px rgba(15,23,42,0.04) !important;
}
.story-body {
  padding: 22px 22px 26px !important;
  flex: 1 !important;
}

/* Restore tiny circular avatar treatment ONLY for testimonial-person, not story-photo */
.testimonial-person img {
  width: 56px !important;
  height: 56px !important;
  border-radius: 50% !important;
  object-fit: cover !important;
  border: 3px solid #e2e8f0 !important;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06) !important;
}

/* FIX 3: Testimonial-person centered with photo + name inline */
.testimonial-person {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 14px !important;
  margin-top: 24px !important;
  text-align: left !important;
}
.testimonial-person > div {
  text-align: left !important;
}
.testimonial-name {
  font-weight: 700 !important;
  color: #0f172a !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}
.testimonial-role {
  font-size: 13px !important;
  color: #64748b !important;
  line-height: 1.3 !important;
  margin-top: 2px !important;
}

/* FIX 4: Stories grid responsive */
.stories-grid {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 24px !important;
}
@media (max-width: 1024px) {
  .stories-grid { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 720px) {
  .stories-grid { grid-template-columns: 1fr !important; }
}

/* FIX 5: PH Employers benefits list - proper flex layout */
.employers-benefits {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 22px !important;
}
.employers-benefits li {
  display: flex !important;
  align-items: flex-start !important;
  gap: 16px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.employers-num {
  flex: 0 0 56px !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  max-width: 56px !important;
  display: grid !important;
  place-items: center !important;
  border-radius: 50% !important;
  background: rgba(12,124,212,0.18) !important;
  color: #6cb6ff !important;
  font-weight: 800 !important;
  font-size: 16px !important;
  border: 1px solid rgba(108,182,255,0.4) !important;
  font-family: 'SF Mono', Consolas, monospace !important;
  letter-spacing: 0.5px !important;
}
.employers-benefits li > div {
  flex: 1 1 auto !important;
  min-width: 0 !important;
}
.employers-benefits li h4 {
  color: #ffffff !important;
  font-size: 17px !important;
  font-weight: 700 !important;
  margin: 4px 0 6px !important;
  line-height: 1.3 !important;
}
.employers-benefits li p {
  color: #cbd5e1 !important;
  font-size: 14px !important;
  line-height: 1.55 !important;
  margin: 0 !important;
}

/* FIX 6: Employers grid stacks on mobile */
.employers-grid {
  display: grid !important;
  grid-template-columns: 1.2fr 1fr !important;
  gap: 48px !important;
  align-items: start !important;
}
@media (max-width: 900px) {
  .employers-grid {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }
}

/* FIX 7: Employers CTA card sane sizing */
.employers-cta-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.12) !important;
  border-radius: 24px !important;
  padding: 32px 28px !important;
  text-align: center !important;
}
.employers-cta-card .sb {
  width: 100% !important;
  margin-top: 18px !important;
  margin-bottom: 12px !important;
}

/* FIX 8: Trust bar items - never horizontal scroll on mobile */
.trust-bar-inner {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 24px !important;
  overflow: visible !important;
}
@media (max-width: 768px) {
  .trust-bar-inner {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }
}
@media (max-width: 380px) {
  .trust-bar-inner { grid-template-columns: 1fr !important; }
}

/* FIX 9: Hero image proper containment (no over-zoom) */
.hero-image-container img,
.hero-image img {
  width: 100% !important;
  max-width: 720px !important;
  height: auto !important;
  object-fit: contain !important;
}

/* =========================================================================
   v9 - Testimonial section redesign (no broken photos)
   ========================================================================= */

/* Hide broken photos in testimonial-person, replace with letter avatar */
.testimonial-person img {
  display: none !important;
}

/* Stylized letter avatar before name */
.testimonial-person::before {
  content: attr(data-initial);
  display: grid !important;
  place-items: center !important;
  width: 56px !important;
  height: 56px !important;
  min-width: 56px !important;
  flex: 0 0 56px !important;
  border-radius: 50% !important;
  background: linear-gradient(135deg, #0c7cd4, #0fa1ff) !important;
  color: #ffffff !important;
  font-family: 'Inter', sans-serif !important;
  font-weight: 800 !important;
  font-size: 22px !important;
  letter-spacing: -.01em !important;
  box-shadow: 0 4px 12px rgba(12,124,212,0.25) !important;
}

/* Premium quote card - elevate testimonial card */
.testimonial {
  background: linear-gradient(180deg, #ffffff 0%, #f7fafc 100%) !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 24px !important;
  padding: 44px 36px 32px !important;
  position: relative !important;
  box-shadow: 0 10px 30px rgba(15,23,42,0.06) !important;
}
.testimonial::before {
  content: "\201C" !important;
  position: absolute !important;
  top: -12px !important;
  left: 24px !important;
  font-family: Georgia, serif !important;
  font-size: 88px !important;
  line-height: 1 !important;
  color: #0c7cd4 !important;
  opacity: 0.18 !important;
  font-weight: 700 !important;
}
.testimonial blockquote {
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
}
.testimonial blockquote p {
  font-size: 17px !important;
  line-height: 1.6 !important;
  color: #0f172a !important;
  margin: 0 !important;
  font-style: normal !important;
  font-weight: 500 !important;
  letter-spacing: -.005em !important;
}

/* Author block under quote */
.testimonial-person {
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 14px !important;
  margin-top: 28px !important;
  padding-top: 24px !important;
  border-top: 1px solid #e2e8f0 !important;
  text-align: left !important;
}
.testimonial-name {
  font-weight: 700 !important;
  color: #0f172a !important;
  font-size: 15px !important;
  line-height: 1.3 !important;
}
.testimonial-role {
  font-size: 13px !important;
  color: #0c7cd4 !important;
  font-weight: 600 !important;
  line-height: 1.3 !important;
  margin-top: 2px !important;
}

@media (max-width: 640px) {
  .testimonial { padding: 36px 24px 24px !important; }
  .testimonial::before { font-size: 70px !important; left: 18px !important; }
  .testimonial blockquote p { font-size: 16px !important; }
}

/* v10 - Make absolutely sure success-state stays hidden until form is submitted */
.success-state[hidden],
.modal:not(.active) .success-state {
  display: none !important;
}
.success-state {
  display: none;
}
.success-state.active,
.modal.active .success-state.active {
  display: block;
}
