/*
Theme Name: SwipMoney
Theme URI: https://swipmoney.com
Author: SwipMoney Technologies Pvt. Ltd.
Author URI: https://swipmoney.com
Description: Official WordPress theme for SwipMoney — India's trusted fintech partner platform. Features a clean light glassmorphism design, animated hero, mega-menu navigation, service pages, partner programs, blog, products, and complete registration flow.
Version: 2.1.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swipmoney
Tags: light, glassmorphism, fintech, one-page, responsive, custom-menu, custom-logo, featured-images, post-formats
*/

/* ─── GOOGLE FONTS ─── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* ─── CSS VARIABLES ─── */
:root {
  --primary: #357DF9;
  --primary-light: #60A5FA;
  --secondary: #F46E27;
  --bg: #FFFFFF;
  --bg-card: rgba(255,255,255,0.75);
  --bg-card-solid: #F8FAFC;
  --glass-border: rgba(17,24,39,0.08);
  --text: rgba(17,24,39,0.82);
  --text-muted: rgba(17,24,39,0.55);
  --text-dim: rgba(17,24,39,0.35);
  --font-heading: 'DM Sans', sans-serif;
  --font-body: 'Roboto', sans-serif;
  --radius: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
  --shadow-glow: 0 0 20px rgba(53,125,249,0.35), 0 0 60px rgba(53,125,249,0.12);
  --max-width: 1200px;
}

/* ─── RESET & BASE ─── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4,h5,h6 {
  font-family: var(--font-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, select, textarea { font-family: inherit; }
button { cursor: pointer; border: none; background: none; }

/* ─── CONTAINER ─── */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .container { padding: 0 2rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

/* ─── GLASS CARD ─── */
.glass-card {
  background: var(--bg-card);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  box-shadow: 0 4px 24px rgba(17,24,39,0.08);
}

/* ─── GLOWS & GRADIENTS ─── */
.blue-glow { box-shadow: var(--shadow-glow); }
.section-glow { background: radial-gradient(ellipse at 50% 0%, rgba(53,125,249,0.10) 0%, transparent 70%); }
.text-gradient {
  background: linear-gradient(135deg, #357DF9 0%, #60A5FA 50%, #F46E27 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ─── SERVICE CARD HOVER ─── */
.service-card { transition: all 0.3s ease; }
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(53,125,249,0.18);
  border-color: rgba(53,125,249,0.35) !important;
}

/* ─── MARQUEE TICKER ─── */
.marquee-wrap { overflow: hidden; white-space: nowrap; background: var(--primary); color: #fff; font-size: 0.75rem; padding: 0.375rem 0; }
.marquee-track { display: inline-flex; animation: marquee-scroll 30s linear infinite; }
.marquee-track .sep { opacity: 0.4; margin: 0 1rem; }
@keyframes marquee-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ─── FLOATING PARTICLES ─── */
.particle {
  position: absolute;
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%,100% { transform: translateY(0) scale(1); opacity: 0.4; }
  50%  { transform: translateY(-20px) scale(1.1); opacity: 0.7; }
}

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, #EAF1FF 50%, #FFFFFF 100%);
}
.hero-grid {
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(53,125,249,0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(53,125,249,0.06) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-orb1 { position: absolute; top: 25%; left: 25%; width: 24rem; height: 24rem; border-radius: 50%; background: rgba(53,125,249,0.1); filter: blur(80px); }
.hero-orb2 { position: absolute; bottom: 25%; right: 25%; width: 20rem; height: 20rem; border-radius: 50%; background: rgba(244,110,39,0.08); filter: blur(80px); }
.hero-inner { position: relative; z-index: 10; text-align: center; padding: 6rem 1.5rem; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.375rem 1rem; border-radius: var(--radius-full);
  border: 1px solid rgba(53,125,249,0.3); background: rgba(53,125,249,0.1);
  color: var(--primary); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.6;transform:scale(0.9)} }
.hero-title { font-size: clamp(3rem, 8vw, 6rem); font-weight: 800; color: #111827; margin-bottom: 1rem; }
.hero-typed { height: 2rem; margin-bottom: 1.5rem; color: var(--primary); font-size: 1.125rem; font-weight: 500; }
.hero-typed .cursor { animation: blink 1s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.hero-desc { font-size: 1.0625rem; color: var(--text-muted); max-width: 40rem; margin: 0 auto 2.5rem; line-height: 1.7; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; margin-bottom: 3rem; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--primary); color: #fff; padding: 0.875rem 2rem;
  border-radius: var(--radius-full); font-weight: 700; font-size: 0.9375rem;
  transition: all 0.2s; box-shadow: var(--shadow-glow);
}
.btn-primary:hover { background: #2a6de0; transform: translateY(-1px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  color: var(--text); padding: 0.875rem 2rem;
  border-radius: var(--radius-full); font-weight: 600; font-size: 0.9375rem;
  border: 1px solid rgba(17,24,39,0.2); transition: all 0.2s;
}
.btn-outline:hover { background: rgba(17,24,39,0.05); }
.hero-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 1rem; max-width: 40rem; margin: 0 auto; }
.hero-stat { display: flex; align-items: center; gap: 0.75rem; padding: 1rem 1.25rem; }
.hero-stat svg { width: 2rem; height: 2rem; color: var(--primary); flex-shrink: 0; }
.hero-stat-val { font-size: 1.25rem; font-weight: 800; color: #111827; font-family: var(--font-heading); }
.hero-stat-lbl { font-size: 0.7rem; color: var(--text-dim); }

/* ─── SECTION HEADER ─── */
.section-label { color: var(--primary); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.75rem, 4vw, 2.25rem); font-weight: 800; color: #111827; margin-bottom: 1rem; }
.section-desc { color: var(--text-muted); max-width: 38rem; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }

/* ─── SERVICES GRID ─── */
.services-section { padding: 5rem 0; background: #F8FAFC; }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }
.service-tile {
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  padding: 1rem; border-radius: var(--radius-xl);
  border: 1px solid rgba(17,24,39,0.05); text-align: center;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; color: var(--text-muted); font-size: 0.75rem; font-weight: 500;
}
.service-tile:hover { border-color: rgba(53,125,249,0.3); transform: translateY(-4px); color: var(--primary); }
.service-tile-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; }
.service-tile-icon svg, .service-tile-icon i { font-size: 1.25rem; }

/* ─── ABOUT SNAPSHOT ─── */
.about-snap { padding: 5rem 0; }
.about-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .about-grid { grid-template-columns: 1fr 1fr; align-items: center; } }
.cert-tags { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1.5rem 0; }
.cert-tag {
  display: flex; align-items: center; gap: 0.4rem;
  font-size: 0.7rem; font-weight: 600; color: var(--primary);
  background: rgba(53,125,249,0.1); border: 1px solid rgba(53,125,249,0.25);
  padding: 0.375rem 0.75rem; border-radius: var(--radius-full);
}
.stats-2x2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.stat-box { padding: 1.5rem; text-align: center; border: 1px solid rgba(17,24,39,0.05); border-radius: var(--radius-2xl); }
.stat-box-val { font-size: 1.875rem; font-weight: 800; font-family: var(--font-heading); margin-bottom: 0.25rem; }
.stat-box-lbl { font-size: 0.7rem; color: var(--text-muted); }

/* ─── WHY US / COUNTER ─── */
.why-section { padding: 5rem 0; background: linear-gradient(135deg, rgba(53,125,249,0.05) 0%, rgba(244,110,39,0.05) 100%); }
.counter-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
@media (min-width: 1024px) { .counter-grid { grid-template-columns: repeat(4, 1fr); } }
.counter-card { border-radius: var(--radius-2xl); padding: 1.5rem; text-align: center; }
.counter-card svg { width: 2rem; height: 2rem; color: var(--primary); margin: 0 auto 0.75rem; }
.counter-val { font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); color: #111827; margin-bottom: 0.25rem; }
.counter-lbl { font-size: 0.75rem; color: var(--text-muted); }
.why-cards { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .why-cards { grid-template-columns: repeat(3, 1fr); } }
.why-card { border-radius: var(--radius-2xl); padding: 1.5rem; border: 1px solid rgba(17,24,39,0.05); }
.why-card-icon { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); background: rgba(53,125,249,0.15); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.why-card-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }
.why-card h3 { font-size: 0.9375rem; font-weight: 800; color: #111827; margin-bottom: 0.5rem; }
.why-card p { font-size: 0.8125rem; color: var(--text-muted); }

/* ─── PRODUCTS ─── */
.products-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-grid { grid-template-columns: repeat(4, 1fr); } }
.product-card { border-radius: var(--radius-2xl); padding: 1.25rem; border: 1px solid rgba(17,24,39,0.05); display: flex; flex-direction: column; }
.product-thumb { width: 100%; height: 8rem; background: rgba(53,125,249,0.05); border-radius: var(--radius-xl); border: 1px solid rgba(17,24,39,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; position: relative; }
.product-badge { position: absolute; top: 0.5rem; right: 0.5rem; font-size: 0.65rem; font-weight: 700; background: rgba(244,110,39,0.2); color: var(--secondary); border: 1px solid rgba(244,110,39,0.3); padding: 0.2rem 0.5rem; border-radius: var(--radius-full); }
.product-card h3 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.25rem; }
.product-card p { font-size: 0.75rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; }
.product-footer { display: flex; align-items: center; justify-content: space-between; }
.product-price { font-size: 1.125rem; font-weight: 800; color: var(--primary); }
.product-footer a { font-size: 0.75rem; font-weight: 700; color: var(--primary); }
.product-footer a:hover { text-decoration: underline; }

/* ─── TESTIMONIALS ─── */
.testimonials-section { padding: 5rem 0; }
.testimonial-card { border-radius: var(--radius-2xl); padding: 2rem; max-width: 48rem; margin: 0 auto; border: 1px solid rgba(17,24,39,0.05); }
.stars { display: flex; gap: 0.25rem; margin-bottom: 1rem; color: #FBBF24; }
.testimonial-text { font-size: 0.9375rem; font-style: italic; color: var(--text); line-height: 1.7; margin-bottom: 1.5rem; }
.testimonial-name { font-weight: 800; color: #111827; font-family: var(--font-heading); }
.testimonial-role { font-size: 0.8125rem; color: var(--text-dim); }
.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; }
.nav-btn { width: 2.25rem; height: 2.25rem; border-radius: 50%; border: 1px solid rgba(17,24,39,0.2); display: flex; align-items: center; justify-content: center; color: #111827; transition: background 0.2s; background: none; cursor: pointer; }
.nav-btn:hover { background: rgba(17,24,39,0.05); }
.nav-dot { width: 0.5rem; height: 0.5rem; border-radius: var(--radius-full); background: rgba(17,24,39,0.3); border: none; cursor: pointer; transition: all 0.3s; }
.nav-dot.active { background: var(--primary); width: 1.5rem; }

/* ─── BLOG PREVIEW ─── */
.blog-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .blog-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-card { border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid rgba(17,24,39,0.05); display: flex; flex-direction: column; }
.blog-thumb { height: 7rem; background: linear-gradient(135deg, rgba(53,125,249,0.25), rgba(244,110,39,0.1)); display: flex; align-items: center; justify-content: center; }
.blog-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }
.blog-cat { font-size: 0.7rem; font-weight: 700; color: var(--secondary); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.5rem; }
.blog-card h3 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.5rem; flex: 1; line-height: 1.4; }
.blog-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; }
.blog-date { font-size: 0.7rem; color: var(--text-dim); }
.blog-more { font-size: 0.7rem; font-weight: 700; color: var(--primary); display: flex; align-items: center; gap: 0.25rem; }

/* ─── CONTACT SECTION (home) ─── */
.contact-section { padding: 5rem 0; }
.contact-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-item { display: flex; align-items: center; gap: 0.75rem; }
.contact-item svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; }
.contact-item a, .contact-item span { font-size: 0.875rem; color: var(--text); }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { display: block; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.375rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; background: rgba(17,24,39,0.05); border: 1px solid rgba(17,24,39,0.1);
  border-radius: var(--radius-xl); padding: 0.625rem 1rem; font-size: 0.875rem;
  color: #111827; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: rgba(53,125,249,0.5); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(17,24,39,0.3); }
.form-group select { background: var(--bg-card-solid); }
.form-group textarea { resize: none; }
.form-submit {
  width: 100%; background: var(--primary); color: #fff; padding: 0.875rem;
  border-radius: var(--radius-xl); font-weight: 700; font-size: 0.9375rem;
  display: flex; align-items: center; justify-content: center; gap: 0.5rem;
  border: none; cursor: pointer; transition: background 0.2s;
}
.form-submit:hover { background: #2a6de0; }
.form-success { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; color: #4ade80; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); border-radius: var(--radius-xl); padding: 0.75rem 1rem; margin-bottom: 1rem; }

/* ─── HEADER & NAV ─── */
.site-header {
  position: sticky; top: 0; z-index: 100; width: 100%;
  background: rgba(255,255,255,0.85); backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(17,24,39,0.08); transition: all 0.3s;
}
.site-header.scrolled { background: rgba(255,255,255,0.95); box-shadow: 0 4px 40px rgba(17,24,39,0.12); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 4rem; }
.site-logo img { height: 2.25rem; width: auto; }
.site-nav { display: none; }
@media (min-width: 1024px) { .site-nav { display: flex; align-items: center; gap: 0.25rem; } }
.nav-link {
  padding: 0.5rem 0.75rem; font-size: 0.875rem; font-weight: 500;
  color: rgba(17,24,39,0.8); border-radius: var(--radius); transition: all 0.2s;
  display: flex; align-items: center; gap: 0.25rem;
}
.nav-link:hover { color: var(--primary); background: rgba(53,125,249,0.08); }
.nav-dropdown { position: relative; }
.dropdown-menu {
  display: none; position: absolute; top: calc(100% + 0.5rem); left: 0;
  background: rgba(255,255,255,0.97); border: 1px solid rgba(17,24,39,0.1);
  border-radius: var(--radius-xl); box-shadow: 0 20px 60px rgba(17,24,39,0.1);
  min-width: 13rem; padding: 0.375rem 0; z-index: 200;
  animation: fadeInDown 0.18s ease;
}
.dropdown-menu.mega { left: 50%; transform: translateX(-50%); width: 820px; padding: 1.5rem; min-width: 0; display: none; }
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu { display: block; }
.nav-dropdown:hover .dropdown-menu.mega { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
@keyframes fadeInDown { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.dropdown-item {
  display: block; padding: 0.625rem 1rem; font-size: 0.8125rem;
  color: rgba(17,24,39,0.7); transition: all 0.15s;
}
.dropdown-item:hover { color: var(--primary); background: rgba(53,125,249,0.1); }
.mega-cat-title { font-size: 0.7rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.mega-service-link { display: block; font-size: 0.75rem; color: rgba(17,24,39,0.6); padding: 0.25rem 0; transition: all 0.15s; }
.mega-service-link:hover { color: var(--primary); padding-left: 0.25rem; }
.header-actions { display: none; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .header-actions { display: flex; } }
.btn-wa { display: flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; background: #25D366; color: #fff; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; transition: background 0.2s; white-space: nowrap; }
.btn-wa:hover { background: #20B858; }
.btn-call { display: flex; align-items: center; gap: 0.375rem; padding: 0.375rem 0.75rem; background: var(--primary); color: #fff; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 700; transition: background 0.2s; white-space: nowrap; }
.btn-call:hover { background: #2a6de0; }
.btn-wa svg, .btn-call svg { width: 1rem; height: 1rem; flex-shrink: 0; }
.btn-login { padding: 0.375rem 1rem; font-size: 0.875rem; font-weight: 500; border: 1px solid rgba(17,24,39,0.2); border-radius: var(--radius-full); color: rgba(17,24,39,0.8); transition: all 0.2s; }
.btn-login:hover { background: rgba(17,24,39,0.05); }
.btn-register { padding: 0.375rem 1rem; font-size: 0.875rem; font-weight: 600; background: var(--primary); color: #fff; border-radius: var(--radius-full); box-shadow: var(--shadow-glow); transition: background 0.2s; }
.btn-register:hover { background: #2a6de0; }
.mobile-right { display: flex; align-items: center; gap: 0.5rem; }
@media (min-width: 1024px) { .mobile-right { display: none; } }
.mobile-menu-btn { display: flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; color: #111827; background: none; border: none; cursor: pointer; }
.mobile-menu-btn svg { width: 1.5rem; height: 1.5rem; }
@media (min-width: 1024px) { .mobile-menu-btn { display: none; } }
.mobile-menu {
  display: none; border-top: 1px solid rgba(17,24,39,0.1);
  background: rgba(255,255,255,0.98); max-height: 80vh; overflow-y: auto;
}
.mobile-menu.open { display: block; }
.mobile-nav { padding: 0.75rem; }
.mobile-nav-link { display: block; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; color: rgba(17,24,39,0.85); border-radius: var(--radius-xl); transition: background 0.15s; }
.mobile-nav-link:hover { background: rgba(53,125,249,0.08); }
.mobile-accordion-toggle { width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0.75rem 1rem; font-size: 0.875rem; font-weight: 500; color: rgba(17,24,39,0.85); border-radius: var(--radius-xl); cursor: pointer; background: none; border: none; }
.mobile-accordion-toggle:hover { background: rgba(53,125,249,0.08); }
.mobile-accordion-body { display: none; margin-left: 1rem; border: 1px solid rgba(17,24,39,0.08); border-radius: var(--radius-xl); overflow: hidden; background: rgba(17,24,39,0.02); }
.mobile-accordion-body.open { display: block; }
.mobile-sub-link { display: flex; align-items: center; gap: 0.5rem; padding: 0.625rem 1rem; font-size: 0.8125rem; color: rgba(17,24,39,0.7); border-bottom: 1px solid rgba(17,24,39,0.05); transition: color 0.15s; }
.mobile-sub-link:last-child { border-bottom: none; }
.mobile-sub-link:hover { color: var(--primary); }
.mobile-sub-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.mobile-auth { display: flex; gap: 0.75rem; padding: 0.75rem; border-top: 1px solid rgba(17,24,39,0.08); }
.mobile-auth .btn-login { flex: 1; text-align: center; padding: 0.625rem; border-radius: var(--radius-xl); }
.mobile-auth .btn-register { flex: 1; text-align: center; padding: 0.625rem; border-radius: var(--radius-xl); }
.chevron { width: 1rem; height: 1rem; transition: transform 0.2s; }
.chevron.open { transform: rotate(180deg); }

/* ─── FOOTER ─── */
.site-footer { background: #050714; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-top { display: grid; gap: 2.5rem; padding: 4rem 0 2rem; }
@media (min-width: 768px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-top { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-logo { height: 2.5rem; width: auto; margin-bottom: 1rem; }
.footer-desc { font-size: 0.8125rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 1.25rem; }
.social-links { display: flex; gap: 0.75rem; }
.social-link { width: 2rem; height: 2rem; border-radius: 50%; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; transition: background 0.2s; font-size: 0.875rem; color: #fff; }
.social-link:hover { background: rgba(255,255,255,0.1); }
.footer-col h4 { font-size: 0.75rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; color: var(--primary); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.75rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }
.footer-contact { display: flex; flex-direction: column; gap: 1rem; }
.footer-contact-item { display: flex; gap: 0.75rem; }
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item span, .footer-contact-item a { font-size: 0.75rem; color: rgba(255,255,255,0.6); line-height: 1.6; }
.footer-contact-item a:hover { color: #fff; }
.footer-map { margin-top: 1.25rem; border-radius: var(--radius-xl); overflow: hidden; border: 1px solid rgba(255,255,255,0.1); height: 7rem; background: rgba(255,255,255,0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.5rem; }
.footer-map svg { width: 1.5rem; height: 1.5rem; color: var(--primary); }
.footer-map span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 1.5rem 0; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
@media (min-width: 640px) { .footer-bottom { flex-direction: row; justify-content: space-between; } }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.5); }

/* ─── PAGE HERO ─── */
.page-hero {
  position: relative; padding: 6rem 0 4rem; overflow: hidden;
  background: linear-gradient(135deg, #FFFFFF 0%, rgba(53,125,249,0.07) 50%, #FFFFFF 100%);
}
.page-hero-grid {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: linear-gradient(rgba(17,24,39,0.5) 1px, transparent 1px), linear-gradient(90deg, rgba(17,24,39,0.5) 1px, transparent 1px);
  background-size: 60px 60px;
}
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-dim); margin-bottom: 2rem; justify-content: center; }
.breadcrumb a:hover { color: var(--primary); }
.page-badge {
  display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.375rem 1rem;
  border-radius: var(--radius-full); border: 1px solid rgba(53,125,249,0.3); background: rgba(53,125,249,0.1);
  color: var(--primary); font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}
.page-hero-inner { position: relative; z-index: 10; text-align: center; }
.page-title { font-size: clamp(2rem, 6vw, 3.5rem); font-weight: 800; color: #111827; margin-bottom: 1rem; }
.page-subtitle { font-size: 1.0625rem; color: var(--text-muted); max-width: 36rem; margin: 0 auto; }

/* ─── ABOUT PAGE ─── */
.mission-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .mission-grid { grid-template-columns: 1fr 1fr; } }
.mission-card { border-radius: var(--radius-2xl); padding: 2rem; }
.mission-icon { width: 3rem; height: 3rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; }
.mission-icon svg { width: 1.5rem; height: 1.5rem; }
.timeline { position: relative; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 2rem; top: 0; bottom: 0; width: 1px; background: rgba(53,125,249,0.2); }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2rem; position: relative; }
.timeline-dot-wrap { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.timeline-dot { width: 1rem; height: 1rem; border-radius: 50%; background: var(--primary); border: 2px solid rgba(53,125,249,0.5); z-index: 1; }
.timeline-year { font-size: 0.75rem; font-weight: 800; color: var(--primary); margin-top: 0.5rem; }
.timeline-card { border-radius: var(--radius-xl); padding: 1.25rem; border: 1px solid rgba(17,24,39,0.05); flex: 1; margin-bottom: 0.5rem; }
.timeline-card h3 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.25rem; }
.timeline-card p { font-size: 0.75rem; color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.25rem; max-width: 40rem; margin: 0 auto; }
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }
.team-card { border-radius: var(--radius-2xl); padding: 1.5rem; text-align: center; border: 1px solid rgba(17,24,39,0.05); }
.team-avatar { width: 4rem; height: 4rem; border-radius: 50%; background: linear-gradient(135deg, var(--primary), var(--secondary)); display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 1.125rem; margin: 0 auto 0.75rem; }
.team-card h3 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.25rem; }
.team-card p { font-size: 0.75rem; color: var(--text-dim); }

/* ─── SERVICE DETAIL PAGE ─── */
.service-hero { position: relative; padding: 6rem 0 4rem; overflow: hidden; }
.service-hero-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .service-hero-grid { grid-template-columns: 1fr auto; align-items: center; } }
.service-icon-box { border-radius: 1.5rem; padding: 3rem; display: flex; align-items: center; justify-content: center; }
.service-icon-box svg { width: 6rem; height: 6rem; }
.earning-badge { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem; background: rgba(74,222,128,0.1); border: 1px solid rgba(74,222,128,0.2); border-radius: var(--radius-full); font-size: 0.875rem; color: #4ade80; font-weight: 700; margin-bottom: 2rem; }
.how-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .how-grid { grid-template-columns: repeat(3, 1fr); } }
.how-card { border-radius: var(--radius-2xl); padding: 1.5rem; border: 1px solid rgba(17,24,39,0.05); position: relative; }
.how-num { position: absolute; top: 1rem; right: 1rem; font-size: 2.5rem; font-weight: 800; font-family: var(--font-heading); color: rgba(53,125,249,0.1); }
.how-step { width: 2.5rem; height: 2.5rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: #fff; font-size: 0.875rem; font-weight: 800; margin-bottom: 1rem; }
.benefits-grid { display: grid; gap: 1rem; }
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(3, 1fr); } }
.benefit-card { border-radius: var(--radius-xl); padding: 1.25rem; border: 1px solid rgba(17,24,39,0.05); display: flex; gap: 1rem; }
.benefit-card svg { width: 1.25rem; height: 1.25rem; color: var(--primary); flex-shrink: 0; margin-top: 2px; }
.benefit-card h3 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.25rem; }
.benefit-card p { font-size: 0.75rem; color: var(--text-muted); }
.elig-earn-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .elig-earn-grid { grid-template-columns: 1fr 1fr; } }
.elig-list { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.elig-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: rgba(17,24,39,0.7); }
.elig-icon { width: 1.25rem; height: 1.25rem; border-radius: 50%; background: rgba(53,125,249,0.15); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.elig-icon svg { width: 0.75rem; height: 0.75rem; color: var(--primary); }

/* ─── PARTNER PAGE ─── */
.partner-hero-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .partner-hero-grid { grid-template-columns: 1fr auto; align-items: center; } }
.partner-icon-box { border-radius: 1.5rem; padding: 3rem; border: 1px solid rgba(53,125,249,0.1); }
.partner-icon-box svg { width: 7rem; height: 7rem; color: var(--primary); }
.steps-grid { display: grid; gap: 1.5rem; max-width: 56rem; margin: 0 auto; }
@media (min-width: 640px) { .steps-grid { grid-template-columns: repeat(3, 1fr); } }
.step-card { border-radius: var(--radius-2xl); padding: 1.5rem; border: 1px solid rgba(17,24,39,0.05); text-align: center; position: relative; }
.step-num-bg { position: absolute; top: 0.75rem; right: 1rem; font-size: 3rem; font-weight: 800; font-family: var(--font-heading); color: rgba(53,125,249,0.1); }
.step-circle { width: 3rem; height: 3rem; border-radius: 50%; background: rgba(53,125,249,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; font-size: 1rem; font-weight: 800; color: var(--primary); }

/* ─── BLOG PAGE ─── */
.blog-search-bar { position: relative; width: 100%; max-width: 18rem; }
.blog-search-bar input { width: 100%; background: rgba(17,24,39,0.05); border: 1px solid rgba(17,24,39,0.1); border-radius: var(--radius-xl); padding: 0.625rem 1rem 0.625rem 2.25rem; font-size: 0.875rem; color: #111827; outline: none; }
.blog-search-bar input::placeholder { color: rgba(17,24,39,0.3); }
.blog-search-bar svg { position: absolute; left: 0.75rem; top: 50%; transform: translateY(-50%); width: 1rem; height: 1rem; color: rgba(17,24,39,0.4); }
.cat-pill { padding: 0.375rem 0.75rem; border-radius: var(--radius-full); font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all 0.2s; background: rgba(17,24,39,0.05); color: rgba(17,24,39,0.6); border: 1px solid rgba(17,24,39,0.1); }
.cat-pill.active, .cat-pill:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.blog-featured-grid { display: grid; gap: 1.5rem; margin-bottom: 3rem; }
@media (min-width: 1024px) { .blog-featured-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-featured-card { border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid rgba(17,24,39,0.05); display: flex; flex-direction: column; }
.blog-featured-thumb { height: 11rem; background: linear-gradient(135deg, rgba(53,125,249,0.25), rgba(244,110,39,0.1)); display: flex; align-items: center; justify-content: center; position: relative; }
.blog-featured-label { position: absolute; top: 1rem; left: 1rem; font-size: 0.7rem; font-weight: 700; background: rgba(53,125,249,0.2); color: var(--primary); border: 1px solid rgba(53,125,249,0.3); padding: 0.25rem 0.75rem; border-radius: var(--radius-full); }
.blog-featured-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-featured-body h2 { font-size: 1rem; font-weight: 800; color: #111827; margin-bottom: 0.5rem; flex: 1; line-height: 1.4; }
.blog-featured-body p { font-size: 0.8125rem; color: rgba(17,24,39,0.5); margin-bottom: 1rem; line-height: 1.6; }
.blog-meta-row { display: flex; justify-content: space-between; align-items: center; }
.blog-posts-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .blog-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-posts-grid { grid-template-columns: repeat(3, 1fr); } }

/* ─── SINGLE POST ─── */
.post-content { max-width: 48rem; margin: 0 auto; }
.post-content h2 { font-size: 1.5rem; font-weight: 800; color: #111827; margin: 2rem 0 1rem; }
.post-content h3 { font-size: 1.25rem; font-weight: 700; color: #111827; margin: 1.5rem 0 0.75rem; }
.post-content p { font-size: 0.9375rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.25rem; }
.post-content ul { list-style: disc; padding-left: 1.5rem; margin-bottom: 1.25rem; color: var(--text-muted); }
.post-content ul li { margin-bottom: 0.5rem; font-size: 0.9375rem; }
.post-content a { color: var(--primary); }
.post-content a:hover { text-decoration: underline; }
.wp-block-image { margin-bottom: 1.5rem; }
.wp-block-image img { border-radius: var(--radius-xl); width: 100%; }

/* ─── PRODUCTS PAGE ─── */
.products-full-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .products-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-full-grid { grid-template-columns: repeat(3, 1fr); } }
.product-full-card { border-radius: var(--radius-2xl); padding: 1.5rem; border: 1px solid rgba(17,24,39,0.05); display: flex; flex-direction: column; }
.product-full-thumb { width: 100%; height: 9rem; background: rgba(53,125,249,0.05); border-radius: var(--radius-xl); border: 1px solid rgba(17,24,39,0.05); display: flex; align-items: center; justify-content: center; margin-bottom: 1.25rem; position: relative; }
.product-full-badge { position: absolute; top: 0.5rem; right: 0.5rem; font-size: 0.65rem; font-weight: 700; padding: 0.2rem 0.625rem; border-radius: var(--radius-full); border: 1px solid; }
.product-cat-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(17,24,39,0.3); margin-bottom: 0.25rem; }
.product-full-card h3 { font-size: 1rem; font-weight: 800; color: #111827; margin-bottom: 0.5rem; }
.product-full-card > p { font-size: 0.8125rem; color: var(--text-muted); flex: 1; margin-bottom: 1rem; line-height: 1.6; }
.product-specs { list-style: none; display: flex; flex-direction: column; gap: 0.375rem; margin-bottom: 1.25rem; }
.product-specs li { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: rgba(17,24,39,0.6); }
.product-specs li::before { content: ''; width: 0.25rem; height: 0.25rem; border-radius: 50%; background: var(--primary); flex-shrink: 0; }
.product-cta { display: flex; align-items: center; justify-content: space-between; padding-top: 0.75rem; border-top: 1px solid rgba(17,24,39,0.05); }
.product-cta .price { font-size: 1.25rem; font-weight: 800; color: var(--primary); }
.product-enquire-btn { display: flex; align-items: center; gap: 0.375rem; font-size: 0.75rem; font-weight: 700; background: rgba(53,125,249,0.1); color: var(--primary); border: 1px solid rgba(53,125,249,0.2); padding: 0.5rem 1rem; border-radius: var(--radius-full); transition: background 0.2s; cursor: pointer; }
.product-enquire-btn:hover { background: rgba(53,125,249,0.2); }

/* ─── CONTACT PAGE ─── */
.contact-cards-grid { display: grid; gap: 1.25rem; margin-bottom: 4rem; }
@media (min-width: 640px) { .contact-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .contact-cards-grid { grid-template-columns: repeat(4, 1fr); } }
.contact-card { border-radius: var(--radius-2xl); padding: 1.5rem; border: 1px solid rgba(17,24,39,0.05); text-align: center; display: block; }
.contact-card-icon { width: 3rem; height: 3rem; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.contact-card-icon svg { width: 1.5rem; height: 1.5rem; }
.contact-card-label { font-size: 0.7rem; color: rgba(17,24,39,0.4); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.25rem; }
.contact-card-val { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.25rem; }
.contact-card-sub { font-size: 0.75rem; color: var(--text-dim); }
.contact-location-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-location-grid { grid-template-columns: 1fr 1fr; } }
.location-map { border-radius: var(--radius-2xl); overflow: hidden; border: 1px solid rgba(17,24,39,0.1); height: 18rem; background: rgba(17,24,39,0.05); display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; }
.location-map svg { width: 2.5rem; height: 2.5rem; color: var(--primary); }
.hours-card { border-radius: var(--radius-2xl); padding: 1.25rem; border: 1px solid rgba(17,24,39,0.05); margin-top: 1.5rem; }
.hours-card h3 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.75rem; display: flex; align-items: center; gap: 0.5rem; }
.hours-card h3 svg { width: 1rem; height: 1rem; color: var(--primary); }
.hours-row { display: flex; justify-content: space-between; font-size: 0.8125rem; padding: 0.375rem 0; }
.hours-row .day { color: rgba(17,24,39,0.6); }
.hours-row .time { color: rgba(17,24,39,0.9); font-weight: 500; }

/* ─── AUTH PAGES ─── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; background: linear-gradient(135deg, #FFFFFF 0%, #EAF1FF 50%, #FFFFFF 100%); }
.auth-card { width: 100%; max-width: 28rem; border-radius: var(--radius-3xl); padding: 2.5rem; border: 1px solid rgba(17,24,39,0.08); }
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo img { height: 2.5rem; width: auto; margin: 0 auto; }
.auth-title { font-size: 1.5rem; font-weight: 800; color: #111827; text-align: center; margin-bottom: 0.375rem; }
.auth-sub { font-size: 0.875rem; color: var(--text-muted); text-align: center; margin-bottom: 2rem; }
.auth-divider { display: flex; align-items: center; gap: 0.75rem; margin: 1.25rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(17,24,39,0.1); }
.auth-divider span { font-size: 0.75rem; color: var(--text-dim); }
.auth-switch { text-align: center; font-size: 0.875rem; color: var(--text-muted); margin-top: 1.5rem; }
.auth-switch a { color: var(--primary); font-weight: 600; }

/* ─── REGISTER PAGE ─── */
.register-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; background: linear-gradient(135deg, #FFFFFF 0%, #EAF1FF 50%, #FFFFFF 100%); }
.register-card { width: 100%; max-width: 36rem; border-radius: var(--radius-3xl); padding: 2.5rem; border: 1px solid rgba(17,24,39,0.08); }
.partner-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.75rem; margin-bottom: 1.5rem; }
.partner-type-option { padding: 1rem; border-radius: var(--radius-xl); border: 1px solid rgba(17,24,39,0.1); cursor: pointer; transition: all 0.2s; text-align: center; }
.partner-type-option.selected { border-color: var(--primary); background: rgba(53,125,249,0.1); }
.partner-type-option h4 { font-size: 0.8125rem; font-weight: 800; color: #111827; margin-bottom: 0.25rem; }
.partner-type-option p { font-size: 0.7rem; color: var(--text-muted); }

/* ─── CTA BLOCK ─── */
.cta-block { border-radius: var(--radius-3xl); padding: 2.5rem; border: 1px solid rgba(53,125,249,0.1); text-align: center; max-width: 48rem; margin: 0 auto; }
.cta-block h2 { font-size: 1.5rem; font-weight: 800; color: #111827; margin-bottom: 0.75rem; }
.cta-block p { color: var(--text-muted); margin-bottom: 1.75rem; }

/* ─── TERMS / PRIVACY ─── */
.legal-intro { border-radius: var(--radius-2xl); padding: 2rem; border: 1px solid rgba(17,24,39,0.05); margin-bottom: 2rem; }
.legal-intro p { font-size: 0.875rem; color: rgba(17,24,39,0.7); line-height: 1.7; }
.legal-sections { display: flex; flex-direction: column; gap: 1.5rem; }
.legal-section { border-radius: var(--radius-xl); padding: 1.5rem; border: 1px solid rgba(17,24,39,0.05); }
.legal-section h2 { font-size: 0.875rem; font-weight: 800; color: #111827; margin-bottom: 0.75rem; }
.legal-section p { font-size: 0.875rem; color: rgba(17,24,39,0.6); line-height: 1.7; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; margin-top: 2rem; }
.legal-nav a { font-size: 0.875rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.5rem; }
.legal-nav a:hover { color: var(--primary); }
.legal-nav .highlight { color: var(--primary); }

/* ─── MODAL (product enquiry) ─── */
.modal-overlay { display: none; position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,0.6); backdrop-filter: blur(4px); align-items: center; justify-content: center; padding: 1rem; }
.modal-overlay.open { display: flex; }
.modal-card { width: 100%; max-width: 24rem; border-radius: var(--radius-2xl); padding: 2rem; border: 1px solid rgba(17,24,39,0.1); }
.modal-success { text-align: center; padding: 1rem 0; }
.modal-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(74,222,128,0.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 0.75rem; }
.modal-success-icon svg { width: 1.75rem; height: 1.75rem; color: #4ade80; }

/* ─── FLOATING WIDGETS ─── */
.floating-widgets { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 500; display: flex; flex-direction: column; gap: 0.75rem; align-items: flex-end; }
.float-wa { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: #25D366; display: flex; align-items: center; justify-content: center; color: #fff; box-shadow: 0 4px 20px rgba(37,211,102,0.4); transition: transform 0.2s; }
.float-wa:hover { transform: scale(1.1); }
.float-wa svg { width: 1.75rem; height: 1.75rem; }
.float-call { display: flex; align-items: center; gap: 0.5rem; padding: 0.5rem 1rem 0.5rem 0.5rem; border-radius: var(--radius-full); background: var(--primary); color: #fff; box-shadow: var(--shadow-glow); font-size: 0.8125rem; font-weight: 700; transition: transform 0.2s; }
.float-call:hover { transform: translateY(-2px); }
.float-call svg { width: 1.25rem; height: 1.25rem; }

/* ─── UTILITY ─── */
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.text-center { text-align: center; }
.link-arrow { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--primary); font-weight: 700; font-size: 0.875rem; transition: gap 0.2s; }
.link-arrow:hover { gap: 0.75rem; }
.link-back { display: inline-flex; align-items: center; gap: 0.5rem; color: rgba(17,24,39,0.6); font-size: 0.875rem; transition: color 0.2s; }
.link-back:hover { color: var(--primary); }
.section-padding { padding: 5rem 0; }
.no-results { text-align: center; padding: 4rem 0; color: rgba(17,24,39,0.4); font-size: 1rem; }
svg.icon { display: inline-block; vertical-align: middle; }

/* ─── WordPress Core ─── */
.alignnone { margin: 0.5rem 0; }
.aligncenter { display: block; margin: 0.5rem auto; }
.alignright { float: right; margin: 0.5rem 0 1rem 1rem; }
.alignleft  { float: left; margin: 0.5rem 1rem 1rem 0; }
.wp-caption { max-width: 100%; }
.wp-caption img { display: block; }
.wp-caption-text { font-size: 0.75rem; color: var(--text-muted); margin-top: 0.25rem; }
.sticky { /* intentional blank */ }
.bypostauthor { /* intentional blank */ }
.screen-reader-text { clip: rect(1px,1px,1px,1px); height: 1px; overflow: hidden; position: absolute; white-space: nowrap; width: 1px; }

/* ═══════════════════════════════════════════════════
   SUPPLEMENTAL STYLES — Auth, Products, Legal, Blog,
   Partner, Service detail pages
════════════════════════════════════════════════════ */

/* ── Auth (Login / Register) ── */
.auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 2rem 1rem; background: linear-gradient(135deg, #FFFFFF 0%, #EAF1FF 50%, #FFFFFF 100%); }
.auth-card { width: 100%; max-width: 28rem; border-radius: 1.5rem; padding: 2.5rem; border: 1px solid rgba(17,24,39,.07); background: rgba(17,24,39,.03); backdrop-filter: blur(16px); }
.auth-logo { text-align: center; margin-bottom: 1.75rem; }
.auth-title { font-size: 1.5rem; font-weight: 800; color: #111827; text-align: center; margin-bottom: .375rem; font-family: var(--font-heading); }
.auth-sub { font-size: .875rem; color: var(--text-muted); text-align: center; margin-bottom: 1.75rem; }
.auth-divider { display: flex; align-items: center; gap: 1rem; margin: 1.25rem 0; }
.auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: rgba(17,24,39,.1); }
.auth-divider span { font-size: .75rem; color: var(--text-dim); font-weight: 600; text-transform: uppercase; }
.auth-switch { text-align: center; font-size: .8125rem; color: var(--text-muted); margin-top: 1.25rem; }
.auth-switch a { color: var(--primary); font-weight: 700; }

/* ── Register card / partner-type selector ── */
.register-page { min-height: 100vh; display: flex; align-items: flex-start; justify-content: center; padding: 4rem 1rem; background: linear-gradient(135deg, #FFFFFF 0%, #EAF1FF 50%, #FFFFFF 100%); }
.register-card { width: 100%; max-width: 36rem; border-radius: 1.5rem; padding: 2.5rem; border: 1px solid rgba(17,24,39,.07); background: rgba(17,24,39,.03); backdrop-filter: blur(16px); }
.partner-type-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: .75rem; margin-bottom: 1.75rem; }
.partner-type-option { border-radius: .875rem; padding: .875rem 1rem; border: 1px solid rgba(17,24,39,.08); background: rgba(17,24,39,.03); transition: all .2s; }
.partner-type-option h4 { font-size: .8125rem; font-weight: 800; color: #111827; margin-bottom: .2rem; }
.partner-type-option p { font-size: .7rem; color: var(--text-dim); }
.partner-type-option.selected { border-color: var(--primary); background: rgba(53,125,249,.1); }
.partner-type-option:hover { border-color: rgba(53,125,249,.5); }

/* ── Products (full listing) ── */
.products-full-grid { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .products-full-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .products-full-grid { grid-template-columns: repeat(3, 1fr); } }
.product-full-card { display: flex; flex-direction: column; }
.product-full-thumb { position: relative; height: 10rem; display: flex; align-items: center; justify-content: center; background: rgba(17,24,39,.03); border-radius: .875rem; margin-bottom: 1.25rem; overflow: hidden; }
.product-full-badge { position: absolute; top: .75rem; left: .75rem; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .625rem; border-radius: 9999px; border: 1px solid; }
.product-cat-label { font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--primary); margin-bottom: .5rem; }
.product-full-card h3 { font-size: .9375rem; font-weight: 800; color: #111827; margin-bottom: .5rem; }
.product-full-card p { font-size: .8125rem; color: var(--text-muted); line-height: 1.6; flex: 1; margin-bottom: 1rem; }
.product-specs { list-style: none; padding: 0; margin: 0 0 1.25rem; display: flex; flex-direction: column; gap: .375rem; }
.product-specs li { font-size: .75rem; color: var(--text-muted); display: flex; align-items: center; gap: .5rem; }
.product-specs li::before { content: '✓'; color: var(--primary); font-weight: 800; flex-shrink: 0; }
.product-cta { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(17,24,39,.06); padding-top: 1rem; margin-top: auto; }
.product-cta .price { font-size: 1.25rem; font-weight: 800; color: #111827; font-family: var(--font-heading); }
.product-cta a, .product-enquire-btn { display: inline-flex; align-items: center; gap: .375rem; font-size: .8rem; font-weight: 700; color: var(--primary); background: none; border: 1px solid var(--primary); border-radius: .625rem; padding: .4375rem .875rem; cursor: pointer; transition: background .2s; }
.product-cta a:hover, .product-enquire-btn:hover { background: rgba(53,125,249,.1); }

/* ── Legal pages (Terms & Privacy) ── */
.legal-intro { border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(53,125,249,.15); background: rgba(53,125,249,.05); margin-bottom: 2rem; font-size: .9375rem; color: var(--text-muted); line-height: 1.7; }
.legal-sections { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 2rem; }
.legal-section { border-radius: 1rem; padding: 1.5rem; border: 1px solid rgba(17,24,39,.05); }
.legal-section h2 { font-size: 1rem; font-weight: 800; color: #111827; margin-bottom: .625rem; }
.legal-section p { font-size: .875rem; color: var(--text-muted); line-height: 1.75; }
.legal-nav { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }

/* ── Contact page extras ── */
.contact-location-grid { display: grid; gap: 2.5rem; }
@media (min-width: 1024px) { .contact-location-grid { grid-template-columns: 1fr 1.5fr; align-items: start; } }
.location-map { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem; padding: 2.5rem; background: rgba(17,24,39,.02); border: 1px solid rgba(17,24,39,.06); border-radius: 1.25rem; min-height: 12rem; margin-bottom: 1.5rem; text-align: center; }
.location-map svg { width: 3rem; height: 3rem; color: var(--primary); }
.hours-card { border-radius: 1.25rem; padding: 1.5rem; border: 1px solid rgba(17,24,39,.05); }
.hours-card h3 { font-size: 1rem; font-weight: 800; color: #111827; margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem; }
.hours-card h3 svg { width: 1rem; height: 1rem; color: var(--primary); }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: .5rem 0; border-bottom: 1px solid rgba(17,24,39,.05); font-size: .875rem; }
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { color: #111827; font-weight: 600; }

/* ── Blog pages ── */
.blog-search-bar { position: relative; width: 100%; max-width: 28rem; }
.blog-search-bar input { width: 100%; background: rgba(17,24,39,.05); border: 1px solid rgba(17,24,39,.1); border-radius: 9999px; padding: .625rem 1rem .625rem 2.5rem; font-size: .875rem; color: #111827; outline: none; transition: border-color .2s; }
.blog-search-bar input:focus { border-color: rgba(53,125,249,.5); }
.blog-featured-grid { display: grid; gap: 1.5rem; }
@media (min-width: 1024px) { .blog-featured-grid { grid-template-columns: repeat(2, 1fr); } }
.blog-posts-grid { display: grid; gap: 1.25rem; }
@media (min-width: 640px) { .blog-posts-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .blog-posts-grid { grid-template-columns: repeat(3, 1fr); } }
.blog-featured-card { display: flex; flex-direction: column; text-decoration: none; }
.blog-featured-thumb { position: relative; height: 11rem; background: linear-gradient(135deg, rgba(53,125,249,.15) 0%, rgba(244,110,39,.08) 100%); border-radius: .875rem .875rem 0 0; overflow: hidden; }
.blog-featured-label { position: absolute; top: .75rem; left: .75rem; font-size: .65rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; padding: .25rem .625rem; border-radius: 9999px; background: rgba(53,125,249,.15); color: var(--primary); border: 1px solid rgba(53,125,249,.3); }
.blog-featured-body { padding: 1.25rem; display: flex; flex-direction: column; flex: 1; }
.blog-featured-body h2 { font-size: .9375rem; font-weight: 800; color: #111827; margin: .5rem 0 .625rem; line-height: 1.4; }
.blog-featured-body p { font-size: .8125rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 1rem; }
.blog-meta-row { display: flex; align-items: center; justify-content: space-between; border-top: 1px solid rgba(17,24,39,.06); padding-top: .75rem; }
.blog-more { display: inline-flex; align-items: center; gap: .25rem; font-size: .75rem; font-weight: 700; color: var(--primary); }
.no-results { text-align: center; padding: 3rem; color: var(--text-muted); font-size: .9375rem; }
.cat-pill { padding: .375rem .875rem; font-size: .75rem; font-weight: 700; border-radius: 9999px; border: 1px solid rgba(17,24,39,.12); color: rgba(17,24,39,.6); background: rgba(17,24,39,.04); cursor: pointer; transition: all .2s; }
.cat-pill.active, .cat-pill:hover { background: rgba(53,125,249,.15); border-color: rgba(53,125,249,.4); color: var(--primary); }

/* ── Service detail page extras ── */
.service-icon-box { border-radius: 1.5rem; padding: 3rem; display: flex; align-items: center; justify-content: center; min-width: 16rem; min-height: 16rem; }
.how-card { border-radius: 1.25rem; padding: 1.5rem; border: 1px solid rgba(17,24,39,.05); position: relative; overflow: hidden; text-align: center; }
.how-num { position: absolute; top: .75rem; right: 1rem; font-size: 3rem; font-weight: 800; color: rgba(17,24,39,.04); font-family: var(--font-heading); line-height: 1; pointer-events: none; }
.how-step { width: 2.5rem; height: 2.5rem; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 800; color: #fff; margin: 0 auto 1rem; }
.benefit-card { display: flex; align-items: flex-start; gap: .875rem; border: 1px solid rgba(17,24,39,.05); border-radius: 1rem; padding: 1.25rem; }
.benefit-card svg { width: 1.25rem; height: 1.25rem; color: #4ade80; flex-shrink: 0; margin-top: .125rem; }
.benefit-card h3 { font-size: .875rem; font-weight: 800; color: #111827; margin-bottom: .25rem; }
.benefit-card p { font-size: .8rem; color: var(--text-muted); }
.elig-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .75rem; }
.elig-item { display: flex; align-items: flex-start; gap: .75rem; font-size: .875rem; color: rgba(17,24,39,.8); }
.elig-item svg { width: 1rem; height: 1rem; color: #4ade80; flex-shrink: 0; margin-top: .125rem; }

/* ── Partner detail page ── */
.partner-hero-grid { display: grid; gap: 3rem; }
@media (min-width: 1024px) { .partner-hero-grid { grid-template-columns: 1fr auto; align-items: center; } }
.partner-icon-box { border-radius: 1.5rem; padding: 3rem; display: flex; align-items: center; justify-content: center; min-width: 14rem; min-height: 14rem; border: 1px solid rgba(53,125,249,.1) !important; }
.step-card { border-radius: 1.25rem; padding: 1.5rem; border: 1px solid rgba(17,24,39,.05); text-align: center; position: relative; overflow: hidden; }
.step-num-bg { position: absolute; top: .5rem; right: 1rem; font-size: 4rem; font-weight: 800; color: rgba(17,24,39,.04); font-family: var(--font-heading); pointer-events: none; line-height: 1; }
.step-circle { width: 2.5rem; height: 2.5rem; border-radius: 50%; background: var(--primary); display: flex; align-items: center; justify-content: center; font-size: .875rem; font-weight: 800; color: #fff; margin: 0 auto 1rem; }

/* ── Misc utility ── */
.link-back { display: inline-flex; align-items: center; gap: .375rem; font-size: .875rem; font-weight: 700; color: rgba(17,24,39,.6); transition: color .2s; }
.link-back:hover { color: var(--primary); }
.link-back svg { width: .875rem; height: .875rem; }
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.75); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; z-index: 9999; padding: 1rem; opacity: 0; pointer-events: none; transition: opacity .25s; }
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal-card { width: 100%; max-width: 22rem; border-radius: 1.25rem; padding: 2rem; border: 1px solid rgba(17,24,39,.08); background: #EAF1FF; }
.modal-success { text-align: center; padding: 1.5rem 0; }
.modal-success-icon { width: 3.5rem; height: 3.5rem; border-radius: 50%; background: rgba(74,222,128,.15); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.modal-success-icon svg { width: 1.5rem; height: 1.5rem; color: #4ade80; }

/* ── Post content typography ── */
.post-content { color: var(--text-muted); line-height: 1.8; font-size: .9375rem; }
.post-content h1, .post-content h2, .post-content h3, .post-content h4 { color: #111827; font-family: var(--font-heading); margin: 1.75rem 0 .75rem; }
.post-content p { margin-bottom: 1.25rem; }
.post-content a { color: var(--primary); }
.post-content ul, .post-content ol { padding-left: 1.5rem; margin-bottom: 1.25rem; }
.post-content ul li, .post-content ol li { margin-bottom: .375rem; }
.post-content blockquote { border-left: 3px solid var(--primary); padding-left: 1.25rem; margin: 1.5rem 0; color: rgba(17,24,39,.7); font-style: italic; }
.post-content img { max-width: 100%; border-radius: .75rem; margin: 1rem 0; }
.post-content code { background: rgba(17,24,39,.08); padding: .125rem .375rem; border-radius: .25rem; font-size: .85em; font-family: monospace; }
.post-content pre { background: rgba(17,24,39,.05); padding: 1.25rem; border-radius: .75rem; overflow-x: auto; margin-bottom: 1.25rem; }

/* ── Pagination ── */
.page-numbers { display: inline-flex; align-items: center; gap: .375rem; }
.page-numbers a, .page-numbers span { display: inline-flex; align-items: center; justify-content: center; width: 2.25rem; height: 2.25rem; border-radius: .5rem; font-size: .875rem; font-weight: 700; border: 1px solid rgba(17,24,39,.1); color: rgba(17,24,39,.6); transition: all .2s; }
.page-numbers .current { background: var(--primary); border-color: var(--primary); color: #fff; }
.page-numbers a:hover { border-color: var(--primary); color: var(--primary); }

/* ── Why cards on home ── */
.why-cards { display: grid; gap: 1.25rem; margin-top: 2.5rem; }
@media (min-width: 640px) { .why-cards { grid-template-columns: repeat(3, 1fr); } }
.why-card { text-align: center; }
.why-card-icon { width: 3rem; height: 3rem; border-radius: .875rem; background: rgba(53,125,249,.1); display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.why-card-icon svg { width: 1.25rem; height: 1.25rem; color: var(--primary); }