/* ============================================
   HOMEPAGE - Zero Brokerage for Namma Bengaluru
   Colors: #16C9A3 (turquoise) | #019488 (teal)
   ============================================ */

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --teal:       #019488;
    --teal-dark:  #017a6e;
    --teal-deep:  #015a51;
    --turq:       #16C9A3;
    --turq-light: #4ddfc4;
    --turq-pale:  #e6faf6;
    --bg:         #f2faf8;
    --bg-alt:     #e6f7f3;
    --text:       #0d3b33;
    --text-mid:   #2e6b5e;
    --text-soft:  #5a9085;
    --white:      #ffffff;
    --shadow-sm:  0 2px 12px rgba(1,148,136,.08);
    --shadow-md:  0 8px 32px rgba(1,148,136,.12);
    --shadow-lg:  0 20px 60px rgba(1,148,136,.16);
    --r-sm: 8px; --r-md: 14px; --r-lg: 22px; --r-xl: 32px;
    --ease: 0.3s cubic-bezier(.4,0,.2,1);
    --ease-slow: 0.7s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--text); background: var(--bg);
    overflow-x: hidden; line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-tap-highlight-color: transparent;
}
img { max-width: 100%; height: auto; }

h1,h2,h3,h4 { font-family: 'Playfair Display', Georgia, serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }

::-webkit-scrollbar { width: 7px; }
::-webkit-scrollbar-track { background: var(--bg-alt); }
::-webkit-scrollbar-thumb { background: var(--turq); border-radius: 4px; }

/* ============================================
   LOADER — cinematic zoom
   ============================================ */
.loader {
    position: fixed; inset: 0; z-index: 10000;
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 55%, var(--turq) 100%);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
    transition: opacity .6s ease, visibility .6s ease;
}
.loader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-inner {
    text-align: center;
    animation: loaderFadeIn .5s ease-out both;
}
@keyframes loaderFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* The text that zooms through */
.loader-unlock {
    display: flex; flex-direction: column; align-items: center;
    line-height: 1.1; cursor: default;
    animation: loaderZoom 2s cubic-bezier(.55,.05,.68,1.02) .6s both;
    transform-origin: center center;
    will-change: transform, opacity;
}
@keyframes loaderZoom {
    0%   { transform: scale(1);   opacity: 1; }
    60%  { transform: scale(6);   opacity: 1; }
    100% { transform: scale(14);  opacity: 0; }
}

.ul-line1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 800; color: var(--white);
    letter-spacing: 4px; white-space: nowrap;
    text-shadow: 0 4px 40px rgba(0,0,0,.3);
}
.ul-line2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 800; color: #b8f5e6;
    letter-spacing: 4px; white-space: nowrap;
    text-shadow: 0 4px 40px rgba(0,0,0,.2);
}
.loader-sub {
    margin-top: 18px;
    font-size: .8rem; letter-spacing: 3px; text-transform: uppercase;
    color: rgba(255,255,255,.5); font-weight: 500;
    animation: loaderSubFade .8s ease .6s both;
}
@keyframes loaderSubFade { from { opacity: 0; } to { opacity: 1; } }

/* ============================================
   CURSOR
   ============================================ */
.cursor {
    width: 9px; height: 9px; background: var(--turq);
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9999; transition: transform .15s; mix-blend-mode: multiply;
}
.cursor-follower {
    width: 34px; height: 34px; border: 1.5px solid var(--turq);
    border-radius: 50%; position: fixed; pointer-events: none;
    z-index: 9998; mix-blend-mode: multiply;
    transition: transform .3s cubic-bezier(.18,.89,.32,1.28), width .3s, height .3s;
}
.cursor.hover { transform: scale(2.2); }
.cursor-follower.hover { width: 48px; height: 48px; border-color: var(--teal); }

/* ============================================
   CONTAINER
   ============================================ */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 16px 0; transition: all .4s cubic-bezier(.4,0,.2,1);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(1, 80, 72, 0.92);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    padding: 10px 0;
    box-shadow: 0 4px 24px rgba(0,0,0,.18);
}
.nav-container {
    max-width: 1180px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: space-between;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 10px; z-index: 1001; }
.logo-img { height: 52px; width: auto; display: block; object-fit: contain; }
.footer-logo-img { height: 56px; filter: brightness(0) invert(1); }
.logo-mark svg { display: block; }
.logo-wordmark { display: flex; flex-direction: column; gap: 2px; }
.logo-name {
    display: flex; align-items: center; gap: 1px;
    font-size: 1.25rem; font-weight: 700; line-height: 1;
}
.logo-name.small { font-size: 1rem; }
.logo-box {
    background: var(--white); color: var(--teal);
    padding: 1px 3px; border-radius: 3px;
    font-family: 'Inter', sans-serif; font-weight: 800;
}
.logo-solid { color: var(--white); font-family: 'Inter', sans-serif; font-weight: 700; }
.logo-sub {
    font-size: 0.58rem; letter-spacing: 1.5px;
    color: rgba(255,255,255,.6); font-weight: 500;
    text-transform: uppercase;
}

.nav-menu { display: flex; list-style: none; gap: 2px; }
.nav-link {
    color: rgba(255,255,255,.75); font-size: .85rem; font-weight: 500;
    padding: 7px 12px; border-radius: var(--r-sm); transition: var(--ease);
}
.nav-link:hover, .nav-link.active {
    color: var(--white); background: rgba(255,255,255,.12);
}

.nav-actions { display: flex; align-items: center; gap: 14px; }
.nav-cta {
    background: var(--white); color: var(--teal);
    padding: 9px 20px; border-radius: var(--r-sm);
    font-size: .85rem; font-weight: 700;
    transition: var(--ease); white-space: nowrap;
}
.nav-cta:hover { background: var(--turq-pale); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; z-index: 1001; }
.hamburger span { width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--ease); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ============================================
   HERO — city slideshow background, full-width
   ============================================ */
.hero {
    min-height: 100vh; position: relative; overflow: hidden;
    display: flex; align-items: center;
}

/* Slideshow */
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
    position: absolute; inset: 0;
    opacity: 0; transition: opacity 1.8s ease-in-out;
}
.hero-slide.active { opacity: 1; }

/* Real Bengaluru city photos */
.slide-1 { background-image: url('image/pic-4.jpg'); background-size: cover; background-position: center; }
.slide-2 { background-image: url('image/pic-2.jpg'); background-size: cover; background-position: center top; }
.slide-3 { background-image: url('image/pic-6.jpg'); background-size: cover; background-position: center bottom; }
.slide-4 { background-image: url('image/pic-1.jpg'); background-size: cover; background-position: center; }

/* Stronger overlay for photo readability */
.hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(
        105deg,
        rgba(0,0,0,.72) 0%,
        rgba(0,0,0,.55) 45%,
        rgba(0,0,0,.25) 100%
    );
}

.hero-shapes { position: absolute; inset: 0; z-index: 2; }
.shape {
    position: absolute; border-radius: 50%; opacity: .06;
    background: var(--white);
}
.s1 { width: 500px; height: 500px; top: -120px; right: -80px; animation: flt1 22s ease-in-out infinite; }
.s2 { width: 300px; height: 300px; bottom: -60px; left: -40px; animation: flt2 28s ease-in-out infinite; }
.s3 { width: 160px; height: 160px; top: 60%; left: 20%; animation: flt3 16s ease-in-out infinite; }
.s4 { width: 100px; height: 100px; top: 20%; right: 35%; animation: flt1 19s ease-in-out infinite reverse; }
@keyframes flt1 { 0%,100%{transform:translate(0,0)} 50%{transform:translate(30px,-40px)} }
@keyframes flt2 { 0%,100%{transform:translate(0,0) rotate(0)} 50%{transform:translate(40px,-30px) rotate(12deg)} }
@keyframes flt3 { 0%,100%{transform:translate(0,0)} 33%{transform:translate(-25px,20px)} 66%{transform:translate(20px,-30px)} }

/* Centered hero content */
.hero-content-full {
    position: relative; z-index: 3;
    width: 100%; max-width: 780px;
    margin: 0 auto;
    padding: 140px 32px 120px;
    text-align: center; color: var(--white);
}

/* Location tag replaces zero-pill */
.hero-location {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(22,201,163,.18); border: 1px solid rgba(22,201,163,.45);
    backdrop-filter: blur(10px);
    padding: 7px 18px; border-radius: 50px;
    font-size: .75rem; font-weight: 700; letter-spacing: 2px;
    color: #b8f5e6; text-transform: uppercase; margin-bottom: 22px;
}

/* Keep zero-pill for backward compat */
.zero-pill {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(10px);
    padding: 8px 20px; border-radius: 50px;
    font-size: .8rem; font-weight: 700; letter-spacing: 2px;
    color: var(--white); margin-bottom: 24px;
}
.pill-dot {
    width: 8px; height: 8px; border-radius: 50%; background: #5cffb1;
    animation: pdot 2s ease-in-out infinite;
}
@keyframes pdot { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(1.5)} }

.hero-title {
    font-size: clamp(3.2rem, 6.5vw, 5.5rem);
    font-weight: 800; margin-bottom: 14px; line-height: 1.04;
    text-shadow: 0 4px 30px rgba(0,0,0,.4);
    letter-spacing: -1px;
}
.hero-highlight {
    color: #5cffb1; position: relative; display: inline-block;
}
.hero-highlight::after {
    content: ''; position: absolute; bottom: 2px; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, #5cffb1, transparent);
    border-radius: 2px;
    animation: underlineGrow 1.2s ease-out .8s both; transform-origin: left;
}
@keyframes underlineGrow { from{transform:scaleX(0)} to{transform:scaleX(1)} }

/* "In Bengaluru" subtitle line below heading */
.hero-place {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 400; letter-spacing: 4px; text-transform: uppercase;
    color: rgba(255,255,255,.55); margin-bottom: 28px;
}

.hero-tagline {
    font-size: 1.05rem; color: rgba(255,255,255,.78); line-height: 1.8;
    margin-bottom: 32px; max-width: 540px;
    margin-left: auto; margin-right: auto;
}
.hero-tagline strong { color: #b8f5e6; font-weight: 600; }

.hero-badges {
    display: flex; gap: 20px; justify-content: center;
    flex-wrap: wrap; margin-bottom: 32px;
}
.hero-badge-item {
    display: flex; align-items: center; gap: 7px;
    font-size: .84rem; color: rgba(255,255,255,.85);
}
.hero-badge-item svg { color: #5cffb1; flex-shrink: 0; }

.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; justify-content: center; }

/* Rotating word in hero heading */
.hero-word {
    display: inline-block;
    transition: opacity .35s ease, transform .35s ease;
    min-width: 200px;
}
.hero-word.fading { opacity: 0; transform: translateY(-12px); }
.btn-store {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 22px; border-radius: var(--r-md); transition: var(--ease);
}
.btn-store.dark {
    background: rgba(0,0,0,.45); border: 1px solid rgba(255,255,255,.25);
    color: var(--white); backdrop-filter: blur(8px);
}
.btn-store.dark:hover { background: rgba(0,0,0,.65); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.4); }
.btn-store small { display: block; font-size: .65rem; opacity: .65; }
.btn-store strong { display: block; font-size: .95rem; }

/* Stats as glassmorphic strip */
.hero-stats {
    display: flex; align-items: center; gap: 0;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.14);
    backdrop-filter: blur(12px); border-radius: var(--r-md);
    padding: 0; overflow: hidden; width: fit-content;
    margin: 0 auto;
}
.hstat { text-align: center; padding: 14px 28px; }
.hstat strong { display: block; font-size: 1.5rem; font-family: 'Playfair Display', serif; color: #5cffb1; }
.hstat span { font-size: .68rem; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: 1px; }
.hstat-sep { width: 1px; height: 44px; background: rgba(255,255,255,.14); flex-shrink: 0; }

@keyframes phoneFloat { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes glowPulse { 0%,100%{opacity:.6;transform:translate(-50%,-50%) scale(1)} 50%{opacity:1;transform:translate(-50%,-50%) scale(1.2)} }

/* ── Clean app-screen mockup (no hardware frame) ── */
.phone-mockup {
    width: 280px;
    height: 580px;
    border-radius: 36px;
    background: var(--white);
    position: relative; z-index: 1;
    overflow: hidden;
    box-shadow:
        0 32px 80px rgba(1,148,136,.25),
        0 8px 28px rgba(0,0,0,.12),
        0 0 0 1px rgba(1,148,136,.12);
    animation: phoneFloat 6s ease-in-out infinite;
}
.phone-mockup.mini { width: 560px; }

/* Phone screen fills the card */
.phone-screen {
    background: var(--white);
    min-height: 800px;
    overflow: hidden;
    display: flex; flex-direction: column;
}
.phone-screen.mini-screen { min-height: 820px; }

/* App UI */
.app-top-bar {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 14px 8px;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
}
.app-brand { font-family: 'Playfair Display',serif; font-size: .75rem; font-weight: 700; color: var(--white); }
.app-avatar-dot { width: 26px; height: 26px; border-radius: 50%; background: var(--turq); }

.app-tabs-row {
    display: flex; gap: 2px; padding: 8px 10px;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal));
    padding-bottom: 12px;
}
.atab {
    flex: 1; padding: 6px 4px; border: none; border-radius: 20px;
    font-size: .62rem; font-weight: 600; cursor: pointer;
    background: transparent; color: rgba(255,255,255,.65);
    transition: var(--ease); font-family: 'Inter', sans-serif;
}
.atab.active { background: var(--white); color: var(--teal); }
.atab:hover:not(.active) { color: var(--white); background: rgba(255,255,255,.15); }

.app-form-area { padding: 10px 12px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.afield label { display: block; font-size: .6rem; font-weight: 600; color: var(--text-soft); margin-bottom: 3px; }
.aselect {
    display: flex; justify-content: space-between; align-items: center;
    padding: 6px 10px; background: var(--bg); border: 1px solid #d0ede8;
    border-radius: 6px; font-size: .68rem; color: var(--text); cursor: pointer;
}
.aselect.with-icon { color: var(--text-soft); }
.arrow { font-size: .55rem; color: var(--text-soft); }
.loc-icon { font-size: .8rem; color: var(--turq); }

.alooking { display: flex; gap: 6px; }
.alook {
    flex: 1; display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 7px 4px; border: 1.5px solid #d0ede8; border-radius: 7px;
    background: var(--white); cursor: pointer; transition: var(--ease);
    font-size: .58rem; font-weight: 600; color: var(--text-mid);
    font-family: 'Inter', sans-serif;
}
.alook.active { border-color: var(--turq); background: var(--turq-pale); color: var(--teal); }
.alook-icon { width: 24px; height: 18px; border-radius: 3px; }
.house-icon { background: linear-gradient(135deg, var(--teal), var(--turq)); }
.plot-icon { background: linear-gradient(135deg, var(--teal-dark), var(--teal)); }

.abhk-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.abhk {
    padding: 5px 4px; border: 1.5px solid #d0ede8; border-radius: 5px;
    font-size: .6rem; font-weight: 600; background: var(--white);
    color: var(--text-mid); cursor: pointer; transition: var(--ease);
    font-family: 'Inter', sans-serif;
}
.abhk.active { background: var(--turq); border-color: var(--turq); color: var(--white); }
.abhk:hover:not(.active) { border-color: var(--turq); color: var(--teal); }

.aprice-slider { padding: 4px 0; }
.aprice-track {
    position: relative; height: 4px; background: #d0ede8; border-radius: 2px; margin-bottom: 5px;
}
.aprice-fill {
    position: absolute; left: 10%; right: 20%; height: 100%;
    background: linear-gradient(90deg, var(--teal), var(--turq)); border-radius: 2px;
}
.aprice-thumb {
    position: absolute; width: 12px; height: 12px;
    background: var(--teal); border: 2px solid var(--white);
    border-radius: 50%; top: -4px; box-shadow: 0 2px 6px rgba(0,0,0,.2);
}
.aprice-thumb.left { left: 9%; }
.aprice-thumb.right { right: 19%; }
.aprice-labels { display: flex; justify-content: space-between; font-size: .56rem; color: var(--text-soft); }

.asearch-btn {
    padding: 9px; background: linear-gradient(135deg, var(--teal), var(--turq));
    color: var(--white); border: none; border-radius: 7px;
    font-size: .72rem; font-weight: 700; cursor: pointer;
    margin-top: auto; font-family: 'Inter', sans-serif;
    transition: var(--ease);
}
.asearch-btn:hover { filter: brightness(1.1); transform: translateY(-1px); }

/* Scroll indicator */
.scroll-down {
    position: absolute; bottom: 28px; left: 50%;
    transform: translateX(-50%); z-index: 3;
    display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.mouse {
    width: 22px; height: 34px; border: 2px solid rgba(255,255,255,.3);
    border-radius: 11px; display: flex; justify-content: center; padding-top: 6px;
}
.wheel {
    width: 3px; height: 7px; background: var(--white);
    border-radius: 2px; animation: scrollW 2s ease-in-out infinite;
}
@keyframes scrollW { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }
.scroll-down span { font-size: .68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); }

/* ============================================
   SERVICES — two column: content left, phone right
   ============================================ */
.services {
    padding: 110px 0;
    background: linear-gradient(145deg, #011f1c 0%, var(--teal-deep) 40%, #017a6f 100%);
    position: relative; overflow: hidden;
}
.services::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background:
        radial-gradient(ellipse 60% 80% at 80% 50%, rgba(22,201,163,.12) 0%, transparent 70%),
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Two-column wrapper */
.services-two-col {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 80px;
    align-items: stretch;
    max-width: 1100px;
    margin: 0 auto;
    position: relative; z-index: 1;
}

/* ── Left content ── */
.srv-left-content {
    display: flex; flex-direction: column;
}
.srv-h2 {
    color: var(--white) !important;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.15;
    margin: 12px 0 16px;
}
.srv-sub {
    font-size: 1rem; color: rgba(255,255,255,.6) !important;
    line-height: 1.7; margin-bottom: 40px;
    max-width: 440px;
}

/* 1-Hour promise banner */
.srv-promise {
    display: flex; align-items: center; gap: 16px;
    background: rgba(255,255,255,.1);
    border: 1.5px solid rgba(255,255,255,.22);
    border-left: 4px solid var(--turq);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 28px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}
.srv-promise-icon {
    flex-shrink: 0;
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--turq), var(--teal));
    display: flex; align-items: center; justify-content: center;
    color: var(--white);
    box-shadow: 0 4px 16px rgba(22,201,163,.4);
}
.srv-promise-text {
    display: flex; flex-direction: column; gap: 3px;
}
.srv-promise-text strong {
    font-family: 'Inter', sans-serif;
    font-size: 1rem; font-weight: 800;
    color: var(--white); line-height: 1.3;
}
.srv-promise-text strong span {
    color: var(--turq);
    font-size: 1.15rem;
}
.srv-promise-text > span {
    font-size: .78rem; color: rgba(255,255,255,.6);
    line-height: 1.5;
}

/* 2×3 feature grid */
.srv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    flex: 1;
    align-content: stretch;
}
.sg-card {
    display: flex; flex-direction: column; gap: 8px;
    padding: 22px 20px 24px;
    border-radius: 18px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .28s cubic-bezier(.4,0,.2,1);
    cursor: default;
}
.sg-card:hover {
    background: rgba(255,255,255,.13);
    transform: translateY(-3px);
    border-color: rgba(255,255,255,.22);
    box-shadow: 0 10px 30px rgba(0,0,0,.2);
}
.sg-icon {
    width: 40px; height: 40px; border-radius: 12px;
    background: rgba(255,255,255,.15);
    border: 1px solid rgba(255,255,255,.22);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); margin-bottom: 2px;
    transition: transform .28s ease;
}
.sg-card:hover .sg-icon { transform: scale(1.1) rotate(-5deg); }
.sg-card strong {
    font-family: 'Inter', sans-serif;
    font-size: .88rem; font-weight: 700;
    color: var(--white);
}
.sg-card span {
    font-size: .74rem; color: rgba(255,255,255,.55);
    line-height: 1.5;
}

/* Bottom CTA row */
.srv-cta-row {
    display: flex; align-items: center; gap: 24px;
    margin-top: 28px; padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.12);
}
.srv-cta-btn {
    display: inline-flex; align-items: center; gap: 9px;
    background: var(--white); color: var(--teal-deep);
    font-family: 'Inter', sans-serif;
    font-size: .88rem; font-weight: 700;
    padding: 13px 24px; border-radius: 50px;
    text-decoration: none; white-space: nowrap;
    box-shadow: 0 8px 24px rgba(0,0,0,.18);
    transition: transform .25s ease, box-shadow .25s ease;
}
.srv-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0,0,0,.24);
}
.srv-cta-stats {
    display: flex; gap: 18px;
}
.srv-cta-stats span {
    font-size: .75rem; color: rgba(255,255,255,.55);
    display: flex; flex-direction: column;
    align-items: center;
}
.srv-cta-stats strong {
    font-size: .9rem; font-weight: 800; color: var(--white);
    display: block; line-height: 1.1;
}

/* ── Right phone ── */
.srv-right-phone {
    position: relative;
    display: flex; justify-content: center; align-items: center;
    min-height: 100%;
}

/* Glow ring behind phone */
.srv-glow-ring {
    position: relative;
    filter: drop-shadow(0 32px 64px rgba(0,0,0,.35));
}
.srv-glow-ring::before {
    content: '';
    position: absolute; inset: -28px; border-radius: 60px;
    background: radial-gradient(ellipse at center, rgba(22,201,163,.22) 0%, transparent 70%);
    pointer-events: none;
}

/* Phone shell */
.srv-phone {
    width: 320px !important;
    border-radius: 44px !important;
    animation: phoneFloat 6s ease-in-out infinite;
    box-shadow:
        0 48px 96px rgba(0,0,0,.38),
        0 0 0 1px rgba(255,255,255,.12) !important;
}

/* Floating "Zero Brokerage" badge — anchored to glow-ring, top-right of phone */
.srv-glow-ring { position: relative; }
.srv-float-badge {
    position: absolute;
    top: 24px; right: -14px;
    z-index: 10;
    display: flex; flex-direction: column; align-items: center;
    background: var(--white);
    border-radius: 14px;
    padding: 9px 14px 10px;
    box-shadow: 0 6px 22px rgba(0,0,0,.2), 0 2px 8px rgba(1,148,136,.18);
    animation: chipBob 4s ease-in-out infinite;
}
@keyframes chipBob {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(-6px); }
}
.sfb-rupee {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 900;
    color: var(--teal-deep); line-height: 1;
}
.sfb-text {
    font-size: .58rem; font-weight: 700;
    letter-spacing: 1.5px; text-transform: uppercase;
    color: var(--teal); opacity: .8;
    white-space: nowrap;
}

/* Floating stat chips */
.srv-stat-chip {
    position: absolute;
    display: flex; flex-direction: column; align-items: center;
    background: rgba(255,255,255,.12);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,.22);
    border-radius: 14px;
    padding: 10px 16px;
    color: var(--white);
    animation: chipBob 5s ease-in-out infinite;
}
.srv-stat-chip strong { font-size: 1rem; font-weight: 800; line-height: 1; }
.srv-stat-chip span   { font-size: .62rem; color: rgba(255,255,255,.65); margin-top: 2px; white-space: nowrap; }
.srv-stat-top { bottom: 120px; left: -20px; animation-delay: .5s; }
.srv-stat-bot { bottom: 32px;  left: -10px; animation-delay: 1.2s; }

/* ── Phone app UI ── */
.srv-screen {
    display: flex; flex-direction: column;
}

/* App header inside phone */
.sp-header {
    background: linear-gradient(145deg, var(--teal-deep), var(--teal));
    padding: 20px 16px 18px;
    display: flex; flex-direction: column; gap: 6px;
}
.sp-header-top {
    display: flex; align-items: center; justify-content: space-between;
    margin-bottom: 8px;
}
.sp-logo {
    display: flex; align-items: center; gap: 6px;
    font-family: 'Playfair Display', serif;
    font-size: .82rem; font-weight: 800; color: var(--white);
}
.sp-location-pill {
    display: flex; align-items: center; gap: 4px;
    background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.25);
    border-radius: 20px; padding: 4px 10px;
    font-size: .58rem; font-weight: 600; color: var(--white);
}
.sp-header-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem; font-weight: 800; color: var(--white);
    line-height: 1.2;
}
.sp-header-sub {
    font-size: .62rem; color: rgba(255,255,255,.65);
    letter-spacing: .3px;
}

.sp-tabs {
    display: flex; gap: 2px;
    background: var(--white); padding: 14px 10px 10px;
    border-bottom: 1px solid #eef5f4;
}
.sp-tab {
    flex: 1; padding: 7px 4px; border: none; border-radius: 20px;
    font-size: .62rem; font-weight: 600; cursor: pointer;
    background: transparent; color: var(--text-soft);
    font-family: 'Inter', sans-serif; transition: all .2s ease;
}
.sp-tab.active {
    background: var(--teal); color: var(--white);
    box-shadow: 0 3px 10px rgba(1,148,136,.35);
}
.sp-body { padding: 14px 16px; display: flex; flex-direction: column; gap: 13px; flex: 1; }
.sp-label { font-size: .6rem; font-weight: 600; color: var(--text); margin-bottom: 3px; display: block; }
.sp-select {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 10px; background: var(--bg);
    border: 1.5px solid #d5eeea; border-radius: 8px;
    font-size: .64rem; color: var(--text-soft);
}
.sp-select-arrow { font-size: .5rem; color: var(--text-soft); }
.sp-search-row {
    display: flex; align-items: center; gap: 6px;
    padding: 8px 10px; background: var(--bg);
    border: 1.5px solid #d5eeea; border-radius: 8px;
    font-size: .62rem; color: var(--text-soft);
}
.sp-search-row svg { color: var(--teal); flex-shrink: 0; }
.sp-options { display: flex; gap: 6px; }
.sp-option {
    flex: 1; display: flex; align-items: center; justify-content: center; gap: 4px;
    padding: 7px 6px; border-radius: 8px;
    border: 1.5px solid #d5eeea; background: var(--bg);
    font-size: .6rem; font-weight: 600; color: var(--text);
}
.sp-option.active { border-color: var(--teal); color: var(--teal); background: rgba(1,148,136,.06); }
.sp-bhk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 5px; }
.sp-bhk {
    padding: 6px 4px; text-align: center; border-radius: 7px;
    border: 1.5px solid #d5eeea; background: var(--bg);
    font-size: .6rem; font-weight: 600; color: var(--text);
    transition: all .15s ease;
}
.sp-bhk.active { border-color: var(--teal); color: var(--teal); background: rgba(1,148,136,.07); }
.sp-range {
    height: 4px; border-radius: 2px;
    background: linear-gradient(90deg, var(--teal) 65%, #d5eeea 65%);
    position: relative; margin: 4px 0;
}
.sp-range-dot {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--white); border: 2.5px solid var(--teal);
    box-shadow: 0 2px 6px rgba(1,148,136,.3);
}
.sp-range-dot:first-child { left: 0; }
.sp-range-dot:last-child  { left: 65%; }
.sp-range-labels {
    display: flex; justify-content: space-between;
    font-size: .56rem; color: var(--text-soft); margin-top: 3px;
}
.sp-search-btn {
    width: 100%; padding: 11px;
    background: linear-gradient(135deg, var(--teal), var(--turq));
    color: var(--white); border: none; border-radius: 10px;
    font-size: .72rem; font-weight: 700; cursor: pointer;
    font-family: 'Inter', sans-serif;
    box-shadow: 0 4px 16px rgba(1,148,136,.4);
    margin-top: auto;
}

/* ============================================
   SECTION COMMON
   ============================================ */
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-block;
    background: rgba(1,148,136,.1); color: var(--teal);
    padding: 6px 20px; border-radius: 50px;
    font-size: .75rem; font-weight: 700; letter-spacing: 1.5px;
    text-transform: uppercase; margin-bottom: 16px;
}
.section-tag.light { background: rgba(255,255,255,.15); color: var(--white); }
.section-header h2 {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    color: var(--text); margin-bottom: 14px; letter-spacing: -.5px;
}
.section-header p {
    font-size: 1rem; color: var(--text-soft);
    max-width: 500px; margin: 0 auto; line-height: 1.75;
}


/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { padding: 100px 0; background: var(--bg); }
.testimonial-slider { position: relative; max-width: 780px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform .5s cubic-bezier(.4,0,.2,1); }
.testimonial-card {
    min-width: 100%; padding: 52px 48px;
    background: var(--white); border-radius: var(--r-xl);
    text-align: center;
    box-shadow: 0 4px 40px rgba(1,148,136,.08);
    border: 1px solid rgba(1,148,136,.07);
}
.tstars { color: #f5b731; font-size: 1.1rem; letter-spacing: 4px; margin-bottom: 24px; }
.testimonial-card p {
    font-size: 1.08rem; line-height: 1.85; font-style: italic;
    color: var(--text); margin-bottom: 28px; max-width: 580px; margin-left: auto; margin-right: auto;
}
.tauthor { display: flex; align-items: center; justify-content: center; gap: 14px; }
.tavatar {
    width: 46px; height: 46px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 800; font-size: .9rem;
}
.tauthor > div:last-child { text-align: left; }
.tauthor strong { display: block; font-size: .92rem; color: var(--text); font-family: 'Inter',sans-serif; }
.tauthor span { font-size: .78rem; color: var(--text-soft); }

.tcontrols { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 28px; }
.tbtn {
    width: 44px; height: 44px; border-radius: 50%;
    border: 2px solid #c0ddd8; background: var(--white);
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; transition: var(--ease); color: var(--text);
}
.tbtn:hover { border-color: var(--teal); background: var(--teal); color: var(--white); }
.tdots { display: flex; gap: 7px; }
.tdot {
    width: 9px; height: 9px; border-radius: 50%;
    background: #c0ddd8; cursor: pointer; transition: var(--ease);
}
.tdot.active { background: var(--teal); width: 26px; border-radius: 5px; }

/* ============================================
   DOWNLOAD
   ============================================ */
.download {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 55%, var(--turq) 100%);
    position: relative; overflow: hidden;
}
.dl-bg-shape {
    position: absolute; border-radius: 50%;
    background: rgba(255,255,255,.05);
}
.dl-shape1 { width: 420px; height: 420px; top: -120px; right: -60px; animation: flt1 22s ease-in-out infinite; }
.dl-shape2 { width: 260px; height: 260px; bottom: -60px; left: -40px; animation: flt2 28s ease-in-out infinite; }

.dl-grid {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1.1fr .9fr;
    gap: 60px; align-items: center;
}
.dl-content { color: var(--white); }
.dl-content h2 { font-size: clamp(1.8rem,3.5vw,2.6rem); margin-bottom: 8px; }
.dl-tagline {
    font-size: 1.15rem; font-weight: 700; color: #b8f5e6;
    margin-bottom: 14px; letter-spacing: .5px;
}
.dl-content > p { font-size: .95rem; color: rgba(255,255,255,.7); line-height: 1.8; margin-bottom: 30px; max-width: 440px; }
.dl-stores { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.store-btn {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22);
    padding: 11px 20px; border-radius: var(--r-md); color: var(--white); transition: var(--ease);
}
.store-btn:hover { background: var(--white); color: var(--text); transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,.2); }
.store-btn small { display: block; font-size: .62rem; opacity: .65; }
.store-btn strong { display: block; font-size: .9rem; }
.dl-stats { display: flex; gap: 30px; }
.dlstat strong { display: block; font-size: 1.3rem; font-family: 'Playfair Display',serif; color: var(--white); }
.dlstat span { font-size: .72rem; color: rgba(255,255,255,.45); text-transform: uppercase; letter-spacing: .5px; }
.dl-phone { display: flex; justify-content: center; }

/* Splash screen */
.app-splash {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    background: linear-gradient(160deg, var(--teal-deep), var(--teal), var(--turq));
    flex: 1;
    min-height: 500px;
    padding: 40px 20px;
    margin: 0;
}
.splash-logo { margin-bottom: 18px; }
.splash-text {
    font-family: 'Playfair Display',serif; font-size: 1.5rem;
    font-weight: 800; color: var(--white); margin-bottom: 12px;
}
.splash-tag {
    display: inline-flex; align-items: center; gap: 6px;
    font-size: .72rem; font-weight: 700; color: var(--teal-deep);
    letter-spacing: 1.5px; text-transform: uppercase;
    background: rgba(255,255,255,.92);
    padding: 6px 14px; border-radius: 40px;
    box-shadow: 0 4px 18px rgba(0,0,0,.12);
    margin-bottom: 8px;
}
.splash-tag::before {
    content: '₹0'; font-size: .85rem; font-weight: 900; color: var(--teal);
}
.splash-city {
    font-size: .7rem; color: rgba(255,255,255,.6); margin-top: 6px; letter-spacing: .5px;
}
.splash-glow {
    width: 120px; height: 120px; border-radius: 50%;
    background: rgba(255,255,255,.06);
    border: 1.5px solid rgba(255,255,255,.18);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 0 0 16px rgba(255,255,255,.03), 0 0 40px rgba(22,201,163,.3);
    animation: glowPulse 3s ease-in-out infinite;
}
@keyframes glowPulse {
    0%,100% { box-shadow: 0 0 0 16px rgba(255,255,255,.03), 0 0 40px rgba(22,201,163,.3); }
    50%      { box-shadow: 0 0 0 24px rgba(255,255,255,.05), 0 0 60px rgba(22,201,163,.45); }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
    padding: 90px 0 100px; background: var(--bg-alt);
    position: relative; overflow: hidden;
}
.about-bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.about-shape { position: absolute; border-radius: 50%; opacity: .08; }
.ab-s1 { width: 500px; height: 500px; top: -180px; left: -120px; background: var(--turq); }
.ab-s2 { width: 350px; height: 350px; bottom: -100px; right: -80px; background: var(--teal); }

/* Founder spotlight */
.founder-row {
    display: flex; align-items: center; gap: 28px;
    background: var(--white); border-radius: var(--r-lg);
    padding: 32px 36px; margin-bottom: 50px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(1,148,136,.08);
    position: relative; overflow: hidden;
}
.founder-row::before {
    content: ''; position: absolute; top: 0; left: 0; bottom: 0;
    width: 5px; background: linear-gradient(180deg, var(--teal), var(--turq));
}
.founder-avatar {
    position: relative; flex-shrink: 0;
}
.founder-initials {
    width: 80px; height: 80px; border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--turq));
    display: flex; align-items: center; justify-content: center;
    font-family: 'Playfair Display', serif; font-size: 1.6rem;
    font-weight: 800; color: var(--white);
    position: relative; z-index: 1;
}
.founder-ring {
    position: absolute; inset: -6px; border-radius: 50%;
    border: 2px dashed rgba(1,148,136,.25);
    animation: founderSpin 20s linear infinite;
}
@keyframes founderSpin { to { transform: rotate(360deg); } }

.founder-info h3 {
    font-family: 'Playfair Display', serif; font-size: 1.5rem;
    font-weight: 700; color: var(--text); margin-bottom: 4px;
}
.founder-role {
    display: inline-block; font-size: .82rem; font-weight: 600;
    color: var(--teal); letter-spacing: .5px; text-transform: uppercase;
    margin-bottom: 12px;
}
.founder-tagline {
    font-size: .95rem; line-height: 1.7; color: var(--text-mid);
    font-style: italic; margin: 0;
    padding-left: 16px; border-left: 3px solid var(--turq);
}

/* Timeline */
.about-timeline {
    position: relative; padding-left: 40px;
    margin-bottom: 50px;
}
.atl-line {
    position: absolute; left: 14px; top: 0; bottom: 0;
    width: 2px; background: linear-gradient(180deg, var(--turq), var(--teal), var(--turq));
    border-radius: 2px;
}
.atl-item {
    position: relative; padding-bottom: 32px;
}
.atl-item:last-child { padding-bottom: 0; }
.atl-dot {
    position: absolute; left: -33px; top: 6px;
    width: 16px; height: 16px; border-radius: 50%;
    background: var(--white); border: 3px solid var(--turq);
    box-shadow: 0 0 0 4px rgba(22,201,163,.15);
    z-index: 1; transition: var(--ease);
}
.atl-item:hover .atl-dot {
    background: var(--turq); border-color: var(--teal);
    box-shadow: 0 0 0 6px rgba(22,201,163,.25);
}
.atl-year {
    display: inline-block; font-size: .72rem; font-weight: 700;
    color: var(--white); background: linear-gradient(135deg, var(--teal), var(--turq));
    padding: 3px 12px; border-radius: 20px;
    letter-spacing: .5px; text-transform: uppercase;
    margin-bottom: 10px;
}
.atl-card {
    background: var(--white); border-radius: var(--r-md);
    padding: 22px 26px; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1,148,136,.06);
    transition: var(--ease);
}
.atl-item:hover .atl-card {
    box-shadow: var(--shadow-md);
    transform: translateX(6px);
}
.atl-card h4 {
    font-family: 'Inter', sans-serif; font-size: 1rem;
    font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.atl-card p {
    font-size: .88rem; line-height: 1.72; color: var(--text-soft); margin: 0;
}

/* Stats grid */
.about-highlights { margin-bottom: 50px; }
.about-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stat-card {
    background: var(--white); padding: 28px 20px; border-radius: var(--r-md);
    text-align: center; box-shadow: var(--shadow-sm);
    transition: var(--ease); border: 2px solid transparent;
}
.stat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: var(--turq); }
.stat-card.accent { background: linear-gradient(135deg, var(--teal), var(--turq)); }
.snum {
    font-size: 2.6rem; font-weight: 800;
    font-family: 'Playfair Display',serif; color: var(--teal);
    line-height: 1; display: inline;
}
.stat-card.accent .snum { color: var(--white); }
.splus { font-size: 1.4rem; font-weight: 700; color: var(--turq); display: inline; }
.stat-card.accent .splus { color: #b8f5e6; }
.stat-card p { margin-top: 6px; font-size: .82rem; color: var(--text-soft); font-weight: 500; }
.stat-card.accent p { color: rgba(255,255,255,.7); }

/* Vision cards */
.about-vision {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
}
.vision-card {
    background: var(--white); border-radius: var(--r-md);
    padding: 30px 26px; box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1,148,136,.06);
    transition: var(--ease); text-align: center;
}
.vision-card:hover {
    transform: translateY(-6px); box-shadow: var(--shadow-md);
    border-color: rgba(1,148,136,.15);
}
.vc-icon {
    width: 54px; height: 54px; border-radius: 16px;
    background: var(--turq-pale); color: var(--teal);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 16px;
    transition: var(--ease);
}
.vision-card:hover .vc-icon {
    background: linear-gradient(135deg, var(--teal), var(--turq));
    color: var(--white);
}
.vision-card h4 {
    font-family: 'Inter', sans-serif; font-size: .95rem;
    font-weight: 700; color: var(--text); margin-bottom: 8px;
}
.vision-card p {
    font-size: .85rem; line-height: 1.7; color: var(--text-soft); margin: 0;
}

/* About responsive */
@media (max-width: 768px) {
    .founder-row { flex-direction: column; text-align: center; padding: 24px 20px; }
    .founder-row::before { width: 100%; height: 4px; bottom: auto; }
    .founder-tagline { border-left: none; padding-left: 0; border-top: 2px solid var(--turq); padding-top: 10px; }
    .about-timeline { padding-left: 32px; }
    .atl-dot { left: -25px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-vision { grid-template-columns: 1fr; }
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
    padding: 100px 0;
    background: linear-gradient(145deg, #011f1c 0%, var(--teal-deep) 40%, #017a6f 100%);
    position: relative; overflow: hidden;
}
.contact::before {
    content: ''; position: absolute; inset: 0; pointer-events: none;
    background: radial-gradient(ellipse 55% 70% at 15% 50%, rgba(22,201,163,.12) 0%, transparent 70%);
}
/* Override section-header colours for teal bg */
.contact .section-header h2 { color: var(--white) !important; }
.contact .section-header p  { color: rgba(255,255,255,.6) !important; }
.contact .section-tag       { background: rgba(255,255,255,.12); color: var(--white); border-color: rgba(255,255,255,.2); }

.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 48px; align-items: start; position: relative; z-index: 1; }

/* Info cards */
.cinfo-card {
    display: flex; align-items: flex-start; gap: 14px;
    padding: 16px 18px; border-radius: 16px;
    background: rgba(255,255,255,.07);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: all .28s ease; margin-bottom: 10px;
}
.cinfo-card:hover { background: rgba(255,255,255,.13); transform: translateX(4px); }
.cinfo-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: rgba(255,255,255,.18);
    border: 1px solid rgba(255,255,255,.25);
    color: var(--white);
    display: flex; align-items: center; justify-content: center;
}
.cinfo-card h4 { font-family:'Inter',sans-serif; font-size: .9rem; font-weight: 700; margin-bottom: 3px; color: var(--white); }
.cinfo-card p  { font-size: .83rem; color: rgba(255,255,255,.6); }

/* Info left heading */
.contact-info > h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem; font-weight: 700;
    color: var(--white); margin-bottom: 6px;
}
.contact-info > p {
    font-size: .88rem; color: rgba(255,255,255,.6);
    line-height: 1.7; margin-bottom: 24px;
}

.csocials { display: flex; gap: 10px; padding: 4px 0 0; }
.csocial {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,.1);
    border: 1px solid rgba(255,255,255,.2);
    color: var(--white);
    display: flex; align-items: center; justify-content: center; transition: all .25s ease;
}
.csocial:hover { background: var(--white); color: var(--teal-deep); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.2); }
.fsocials { display: flex; gap: 10px; margin-top: 16px; }

/* Form card */
.contact-form {
    background: var(--white);
    padding: 36px 32px;
    border-radius: 24px;
    box-shadow: 0 24px 64px rgba(0,0,0,.25);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.fg { display: flex; flex-direction: column; }
.fg.full { margin-bottom: 14px; }
.fg label { font-size: .78rem; font-weight: 600; color: var(--text); margin-bottom: 6px; }
.contact-form input, .contact-form select, .contact-form textarea {
    width: 100%; padding: 11px 14px;
    border: 2px solid #d5eeea; border-radius: 10px;
    font-size: .9rem; font-family: 'Inter',sans-serif; color: var(--text);
    background: var(--bg); transition: var(--ease); resize: vertical;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
    outline: none; border-color: var(--teal);
    box-shadow: 0 0 0 4px rgba(1,148,136,.1);
}
.submit-btn {
    width: 100%; padding: 14px; display: flex; align-items: center; justify-content: center; gap: 10px;
    background: linear-gradient(135deg, var(--teal-deep), var(--teal), var(--turq));
    color: var(--white); border: none; border-radius: 12px;
    font-size: .95rem; font-weight: 700; cursor: pointer; transition: var(--ease);
    font-family: 'Inter',sans-serif;
    box-shadow: 0 6px 20px rgba(1,148,136,.35);
}
.submit-btn:hover { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(1,148,136,.4); }

/* ============================================
   LEGAL HUB — Terms & Privacy
   ============================================ */
.legal-hub {
    position: relative; padding: 80px 0 90px;
    background: linear-gradient(160deg, #f0fdf9 0%, var(--bg-alt) 40%, #e0f5ef 100%);
    overflow: hidden;
}
.legal-hub-bg { position: absolute; inset: 0; pointer-events: none; }
.lhub-shape {
    position: absolute; border-radius: 50%; opacity: .12;
    background: var(--turq);
}
.lhub-s1 { width: 420px; height: 420px; top: -140px; right: -100px; }
.lhub-s2 { width: 300px; height: 300px; bottom: -80px; left: -60px; background: var(--teal); }

/* Tabs */
.legal-tabs {
    display: flex; justify-content: center; gap: 12px;
    margin-bottom: 40px;
}
.legal-tab {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 50px;
    background: var(--white); border: 2px solid transparent;
    font-family: 'Inter', sans-serif; font-size: .92rem; font-weight: 600;
    color: var(--text-mid); cursor: pointer;
    box-shadow: var(--shadow-sm);
    transition: var(--ease);
}
.legal-tab:hover {
    border-color: var(--turq); color: var(--teal);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}
.legal-tab.active {
    background: linear-gradient(135deg, var(--teal), var(--turq));
    color: var(--white); border-color: transparent;
    box-shadow: 0 6px 24px rgba(1,148,136,.3);
}
.legal-tab.active svg { stroke: var(--white); }

/* Panels */
.legal-panels { position: relative; }
.legal-panel {
    display: none;
    animation: legalFadeIn .45s ease;
}
.legal-panel.active { display: block; }

@keyframes legalFadeIn {
    from { opacity: 0; transform: translateY(14px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Intro block */
.lp-intro {
    display: flex; align-items: flex-start; gap: 18px;
    background: var(--white); border-radius: var(--r-lg);
    padding: 28px 32px; margin-bottom: 32px;
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--turq);
}
.lp-intro-icon {
    flex-shrink: 0;
    width: 52px; height: 52px;
    display: flex; align-items: center; justify-content: center;
    background: var(--turq-pale); border-radius: 14px;
    color: var(--teal);
}
.lp-intro p {
    font-size: .95rem; line-height: 1.7; color: var(--text-mid);
    font-family: 'Inter', sans-serif; margin: 0;
}

/* Card grid */
.lp-grid {
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
.lp-card {
    position: relative; background: var(--white);
    border-radius: var(--r-md); padding: 30px 28px 26px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1,148,136,.08);
    transition: var(--ease);
    overflow: hidden;
}
.lp-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), var(--turq));
    opacity: 0; transition: var(--ease);
}
.lp-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: rgba(1,148,136,.15);
}
.lp-card:hover::before { opacity: 1; }

.lp-card-num {
    font-family: 'Playfair Display', serif;
    font-size: 2rem; font-weight: 800;
    background: linear-gradient(135deg, var(--turq-pale), rgba(22,201,163,.15));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1; margin-bottom: 10px;
}
.lp-card h4 {
    font-family: 'Inter', sans-serif; font-size: .95rem; font-weight: 700;
    color: var(--text); margin-bottom: 8px;
}
.lp-card p {
    font-size: .88rem; line-height: 1.72; color: var(--text-soft); margin: 0;
}

.legal-updated {
    text-align: center; margin-top: 28px;
    font-size: .8rem; color: var(--text-soft);
    font-style: italic; font-family: 'Inter', sans-serif;
}

/* Terms accordion */
.tos-accordion {
    display: flex; flex-direction: column; gap: 10px;
}
.tos-section {
    background: var(--white); border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(1,148,136,.06);
    overflow: hidden; transition: var(--ease);
}
.tos-section:hover { border-color: rgba(1,148,136,.15); }
.tos-header {
    display: flex; align-items: center; gap: 14px;
    width: 100%; padding: 18px 22px;
    background: none; border: none; cursor: pointer;
    font-family: 'Inter', sans-serif;
    transition: var(--ease); text-align: left;
}
.tos-header:hover { background: var(--turq-pale); }
.tos-num {
    display: inline-flex; align-items: center; justify-content: center;
    min-width: 40px; height: 28px; padding: 0 10px;
    background: linear-gradient(135deg, var(--teal), var(--turq));
    color: var(--white); border-radius: 6px;
    font-size: .72rem; font-weight: 700; letter-spacing: .5px;
    flex-shrink: 0;
}
.tos-title {
    flex: 1; font-size: .92rem; font-weight: 600; color: var(--text);
}
.tos-chevron {
    color: var(--text-soft); transition: transform .3s ease;
    flex-shrink: 0;
}
.tos-header.active .tos-chevron { transform: rotate(180deg); }
.tos-body {
    max-height: 0; overflow: hidden;
    padding: 0 22px; transition: max-height .5s cubic-bezier(.4,0,.2,1), padding .4s;
}
.tos-body.open {
    max-height: 800px; padding: 0 22px 22px;
}
.tos-body p {
    font-size: .86rem; line-height: 1.75; color: var(--text-soft);
    margin-bottom: 10px; font-family: 'Inter', sans-serif;
}
.tos-body ul {
    margin: 0 0 12px 0; padding-left: 20px;
}
.tos-body li {
    font-size: .86rem; line-height: 1.75; color: var(--text-soft);
    margin-bottom: 6px; font-family: 'Inter', sans-serif;
}
.tos-body li::marker { color: var(--turq); }
.tos-body strong { color: var(--text); }

/* Privacy contact strip */
.lp-contact-strip {
    display: flex; justify-content: center; gap: 32px;
    flex-wrap: wrap; margin-top: 28px;
    padding: 18px 24px; border-radius: var(--r-md);
    background: linear-gradient(135deg, var(--turq-pale), rgba(22,201,163,.08));
    border: 1px solid rgba(1,148,136,.1);
}
.lp-contact-item {
    display: flex; align-items: center; gap: 8px;
    font-size: .85rem; font-family: 'Inter', sans-serif;
    color: var(--text-mid); font-weight: 500;
}
.lp-contact-item svg { color: var(--teal); flex-shrink: 0; }

/* Responsive */
@media (max-width: 768px) {
    .legal-hub { padding: 60px 0 70px; }
    .legal-tabs { flex-direction: column; align-items: stretch; gap: 10px; }
    .legal-tab { justify-content: center; padding: 12px 20px; }
    .lp-grid { grid-template-columns: 1fr; }
    .lp-intro { flex-direction: column; padding: 22px 20px; }
    .lp-contact-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: linear-gradient(160deg, #01312b 0%, var(--teal-deep) 35%, #005049 100%);
    padding: 70px 0 0; color: rgba(255,255,255,.65);
}

/* Hero row — logo + tagline + socials */
.footer-hero {
    display: flex; align-items: center; gap: 28px;
    padding-bottom: 44px; flex-wrap: wrap;
}
.footer-hero-tagline {
    flex: 1; min-width: 220px;
    font-size: .95rem; line-height: 1.75;
    color: rgba(255,255,255,.5);
    margin: 0;
}
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,.07);
    border: none;
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.5); transition: var(--ease);
}
.footer-social-btn:hover {
    background: var(--turq); color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(22,201,163,.3);
}

/* Grid */
.footer-grid {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1.3fr;
    gap: 40px; padding: 44px 0 50px;
    border-top: 1px solid rgba(255,255,255,.07);
}
.footer-col h4 {
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: .9rem; font-weight: 700; margin-bottom: 20px;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 11px; }
.footer-col a {
    font-size: .86rem; color: rgba(255,255,255,.42);
    transition: var(--ease); display: inline-block;
}
.footer-col a:hover { color: var(--turq); padding-left: 4px; }

/* Contact list in footer */
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: .84rem; color: rgba(255,255,255,.45); line-height: 1.6;
}
.footer-contact-item svg {
    color: var(--turq); flex-shrink: 0; margin-top: 3px;
}

/* App buttons */
.footer-app-btns { display: flex; flex-direction: column; gap: 8px; }
.footer-store {
    display: flex; align-items: center; gap: 10px;
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    padding: 10px 16px; border-radius: var(--r-sm);
    color: var(--white); transition: var(--ease);
}
.footer-store:hover {
    background: rgba(255,255,255,.12);
    transform: translateX(4px);
}
.footer-store small { font-size: .62rem; display: block; opacity: .55; }
.footer-store strong { font-size: .84rem; display: block; }

/* Bottom bar */
.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 12px;
    padding: 22px 0;
    border-top: 1px solid rgba(255,255,255,.07);
    font-size: .78rem; color: rgba(255,255,255,.28);
}
.footer-bottom-links { display: flex; gap: 18px; }
.footer-bottom-links a {
    color: rgba(255,255,255,.3); font-size: .78rem; transition: var(--ease);
}
.footer-bottom-links a:hover { color: var(--turq); }


/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
    position: fixed; bottom: 26px; right: 26px;
    width: 46px; height: 46px; border-radius: 50%;
    background: var(--teal); color: var(--white); border: none;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer; z-index: 100;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--ease); box-shadow: 0 6px 20px rgba(1,148,136,.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--turq); transform: translateY(-3px); }

/* ============================================
   REVEAL ANIMATION
   ============================================ */
.reveal-up {
    opacity: 0; transform: translateY(36px);
    transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.reveal-up.revealed { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (hover: none) { .cursor, .cursor-follower { display: none; } }

@media (max-width: 1024px) {
    .dl-grid { grid-template-columns: 1fr; text-align: center; }
    .dl-content > p { margin-left: auto; margin-right: auto; }
    .dl-stores, .dl-stats { justify-content: center; }
    .dl-phone { margin-top: 20px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .footer-hero { flex-direction: column; text-align: center; gap: 20px; }
    .services-two-col { grid-template-columns: 1fr 320px; gap: 48px; }
    .srv-phone { width: 300px !important; }
    .srv-stat-top { left: -10px; }
    .srv-float-badge { right: -5px; }
    .srv-cta-row { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 80%; max-width: 320px; height: 100vh;
        background: linear-gradient(180deg, var(--teal-deep), #005049);
        flex-direction: column;
        padding: 88px 24px 28px;
        gap: 2px; transition: right .4s cubic-bezier(.4,0,.2,1);
        box-shadow: -10px 0 30px rgba(0,0,0,.25);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    .nav-menu.open { right: 0; }
    .nav-link { font-size: 1rem; padding: 12px 14px; }
    .hamburger { display: flex; }
    .nav-cta { display: none; }

    .hero-content-full { margin: 0 auto; padding: 110px 20px 80px; text-align: center; }
    .hero-location { justify-content: center; }
    .hero-badges { justify-content: center; flex-wrap: wrap; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-stats { width: 100%; justify-content: center; }
    .hero-title { font-size: 2.5rem; letter-spacing: 0; }
    .hero-tagline { border-left: none; padding-left: 0; text-align: center; }
    .hero-place { text-align: center; }
    .hstat-sep { display: block; width: 1px; height: 36px; }

    /* Services — stack vertically on mobile */
    .services-two-col { grid-template-columns: 1fr; gap: 40px; }
    .srv-right-phone { order: -1; }
    .srv-phone { width: 260px !important; }
    .srv-grid { grid-template-columns: 1fr 1fr; }
    .srv-float-badge { right: 0; top: 10px; }
    .srv-stat-top { left: 0; bottom: 80px; }
    .srv-stat-bot { left: 10px; }

    /* About */
    .founder-row { flex-direction: column; text-align: center; padding: 24px 20px; gap: 18px; }
    .founder-row::before { width: 100%; height: 4px; bottom: auto; }
    .founder-tagline { border-left: none; padding-left: 0; border-top: 2px solid var(--turq); padding-top: 10px; }
    .about-timeline { padding-left: 30px; }
    .atl-dot { left: -23px; }
    .atl-card { padding: 18px 20px; }
    .about-stats-grid { grid-template-columns: 1fr 1fr; }
    .about-vision { grid-template-columns: 1fr; }

    .contact-grid { grid-template-columns: 1fr; }
    .contact-form { padding: 22px 16px; }
    .form-row { grid-template-columns: 1fr; }

    .testimonials, .download, .about, .contact { padding: 60px 0; }

    /* Footer */
    .footer { padding: 50px 0 0; }
    .footer-hero { flex-direction: column; text-align: center; gap: 16px; padding-bottom: 30px; }
    .footer-socials { justify-content: center; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; padding: 30px 0 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-contact-item { font-size: .82rem; }

    /* Legal */
    .legal-hub { padding: 60px 0 70px; }
    .legal-tabs { flex-direction: column; align-items: stretch; gap: 10px; }
    .legal-tab { justify-content: center; padding: 12px 20px; }
    .lp-grid { grid-template-columns: 1fr; }
    .lp-intro { flex-direction: column; padding: 22px 20px; }
    .lp-contact-strip { flex-direction: column; gap: 12px; align-items: flex-start; }
    .tos-header { padding: 14px 16px; gap: 10px; }
    .tos-num { min-width: 34px; font-size: .65rem; }
    .tos-title { font-size: .85rem; }
    .tos-body.open { padding: 0 16px 16px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2.1rem; }
    .hero-stats { flex-direction: column; gap: 0; }
    .hstat-sep { width: 100%; height: 1px; }
    .ul-line1, .ul-line2 { font-size: 2.2rem; letter-spacing: 2px; }
    .section-header h2 { font-size: 1.7rem; }
    .phone-mockup { width: 220px; }
    .about-stats-grid { gap: 10px; }
    .stat-card { padding: 20px 14px; }
    .snum { font-size: 2rem; }
    .srv-grid { grid-template-columns: 1fr; }
    .srv-phone { width: 230px !important; }
    .srv-stat-chip { display: none; }
    .srv-float-badge { right: 10px; }
    .footer-grid { grid-template-columns: 1fr; gap: 24px; }
    .footer-hero-tagline { font-size: .88rem; }
    .logo-img { height: 42px; }
    .lp-card { padding: 22px 20px 20px; }
    .lp-card-num { font-size: 1.6rem; }
}

/* ============================================================
   FOUNDER SPLIT (details left · photo right)
   ============================================================ */
.founder-row.founder-row-split {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 44px;
    align-items: center;
    padding: 40px 44px;
}
.founder-row-split .founder-info { padding-left: 8px; }
.founder-bio {
    margin-top: 14px;
    font-size: .95rem;
    line-height: 1.75;
    color: var(--text-mid);
}
.founder-photo-wrap {
    position: relative;
    width: 100%;
    max-width: 320px;
    aspect-ratio: 4 / 5;
    justify-self: end;
}
.founder-photo-lg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 20px;
    display: block;
    box-shadow: 0 20px 50px rgba(1, 148, 136, 0.22);
    position: relative;
    z-index: 1;
}
.founder-ring-lg {
    position: absolute;
    inset: -12px -12px 12px 12px;
    border: 2px dashed rgba(1, 148, 136, .35);
    border-radius: 20px;
    z-index: 0;
    animation: founderSpin 30s linear infinite;
}
@media (max-width: 900px) {
    .founder-row.founder-row-split {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 28px;
        padding: 28px 22px;
    }
    .founder-row-split .founder-info { padding-left: 0; }
    .founder-photo-wrap { justify-self: center; max-width: 260px; }
    .founder-tagline { border-left: none; padding-left: 0; border-top: 2px solid var(--turq); padding-top: 10px; }
}

/* ============================================================
   BLOG PAGES (blog.html + /blog/*.html)
   ============================================================ */
.blog-body {
    font-family: 'Inter', sans-serif;
    color: var(--text, #1a1a1a);
    background: #fafbfc;
    margin: 0;
    line-height: 1.65;
}
.blog-nav {
    position: sticky; top: 0; z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.blog-nav-inner {
    max-width: 1180px; margin: 0 auto;
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 24px;
}
.blog-logo img { display: block; height: 36px; width: auto; }
.blog-nav-links {
    list-style: none; display: flex; gap: 28px;
    margin: 0; padding: 0;
}
.blog-nav-links a {
    text-decoration: none;
    color: var(--text, #1a1a1a);
    font-weight: 500; font-size: .94rem;
    transition: color .2s;
}
.blog-nav-links a:hover,
.blog-nav-links a[aria-current="page"] { color: var(--teal, #019488); }

.blog-hero {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, #f0fdfa 0%, #fff 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.blog-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 700; margin: 14px 0 14px;
    line-height: 1.2;
}
.blog-hero-sub {
    font-size: 1.05rem; color: var(--text-mid, #555);
    max-width: 720px;
}
.blog-hero .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.breadcrumb {
    font-size: .85rem; color: var(--text-mid, #666);
    margin-bottom: 12px;
}
.breadcrumb a { color: var(--teal, #019488); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { margin: 0 4px; }

.blog-listing {
    max-width: 1180px; margin: 0 auto; padding: 50px 24px;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
.blog-card {
    background: #fff; border-radius: 14px; overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.06);
    transition: transform .25s, box-shadow .25s;
}
.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 32px rgba(1, 148, 136, 0.18);
}
.blog-card.featured { grid-column: span 3; display: block; }
.blog-card.featured .blog-card-link { display: grid; grid-template-columns: 1.15fr 1fr; }
.blog-card.featured .blog-card-img { min-height: 280px; }
.blog-card-link { display: block; color: inherit; text-decoration: none; }
.blog-card-img {
    height: 170px; position: relative;
}
.blog-card.featured .blog-card-img { height: auto; }
.blog-badge {
    position: absolute; top: 16px; left: 16px;
    background: rgba(0, 0, 0, 0.75); color: #fff;
    padding: 6px 12px; border-radius: 20px;
    font-size: .75rem; font-weight: 600;
    letter-spacing: .4px;
}
.blog-card-body { padding: 22px 22px 24px; }
.blog-cat {
    display: inline-block;
    background: #e0f7f3; color: var(--teal, #019488);
    padding: 4px 10px; border-radius: 6px;
    font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .6px;
    margin-bottom: 10px;
}
.blog-card-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem; font-weight: 700;
    line-height: 1.3; margin: 0 0 10px;
}
.blog-card.featured .blog-card-body h2 { font-size: 1.75rem; }
.blog-card-body p {
    font-size: .94rem; color: var(--text-mid, #555);
    margin: 0 0 14px;
}
.blog-meta { font-size: .8rem; color: #888; }

/* Article */
.blog-article {
    max-width: 760px;
    margin: 0 auto;
    padding: 46px 24px 60px;
    background: transparent;
}
.blog-article-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 3.8vw, 2.6rem);
    font-weight: 700; line-height: 1.22;
    margin: 12px 0 14px;
}
.blog-article-header { margin-bottom: 30px; }
.blog-article-body {
    font-size: 1.03rem;
    line-height: 1.8;
    color: #2c2c2c;
}
.blog-hero-img {
    margin: 0 0 30px;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}
.blog-hero-img img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.blog-hero-img figcaption {
    padding: 10px 14px;
    font-size: .82rem;
    color: #666;
    background: #fafafa;
    font-style: italic;
    text-align: center;
}
.blog-article-body h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.55rem; font-weight: 700;
    margin: 36px 0 14px;
}
.blog-article-body h3 {
    font-size: 1.2rem; font-weight: 700;
    margin: 26px 0 10px;
}
.blog-article-body p, .blog-article-body li { color: #333; }
.blog-article-body ul, .blog-article-body ol { padding-left: 24px; margin: 12px 0 18px; }
.blog-article-body li { margin-bottom: 6px; }
.blog-article-body a { color: var(--teal, #019488); font-weight: 600; }
.blog-cta { margin-top: 32px; }
.cta-pill {
    display: inline-block;
    background: linear-gradient(135deg, var(--teal, #019488), var(--turq, #16C9A3));
    color: #fff !important; text-decoration: none;
    padding: 14px 28px; border-radius: 40px;
    font-weight: 600; font-size: 1rem;
    box-shadow: 0 6px 18px rgba(1, 148, 136, 0.28);
    transition: transform .2s;
}
.cta-pill:hover { transform: translateY(-2px); }

.blog-share {
    margin-top: 40px; padding-top: 24px;
    border-top: 1px solid #e5e5e5;
    display: flex; flex-wrap: wrap; gap: 14px; align-items: center;
    font-size: .9rem; color: #666;
}
.blog-share a {
    text-decoration: none; color: var(--teal, #019488);
    padding: 6px 14px; border: 1px solid #e0e0e0;
    border-radius: 20px; font-weight: 500;
    transition: background .2s, color .2s;
}
.blog-share a:hover { background: var(--teal, #019488); color: #fff !important; border-color: var(--teal, #019488); }

.blog-footer {
    background: #111; color: #aaa;
    padding: 40px 0 24px; margin-top: 60px;
}
.blog-footer .container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.blog-footer-top {
    display: grid; grid-template-columns: 2fr 1fr; gap: 40px;
    padding-bottom: 30px; border-bottom: 1px solid #222;
    margin-bottom: 20px;
}
.blog-footer h4 { color: #fff; margin: 0 0 12px; font-size: 1rem; }
.blog-footer ul { list-style: none; padding: 0; margin: 0; }
.blog-footer ul li { margin-bottom: 8px; }
.blog-footer a { color: #aaa; text-decoration: none; transition: color .2s; }
.blog-footer a:hover { color: var(--turq, #16C9A3); }
.blog-footer-copy { font-size: .85rem; text-align: center; margin: 0; }

@media (max-width: 900px) {
    .blog-listing { grid-template-columns: repeat(2, 1fr); }
    .blog-card.featured { grid-column: span 2; }
    .blog-card.featured .blog-card-link { grid-template-columns: 1fr; }
    .blog-nav-links { gap: 18px; font-size: .88rem; }
    .blog-footer-top { grid-template-columns: 1fr; }
}
@media (max-width: 620px) {
    .blog-listing { grid-template-columns: 1fr; padding: 30px 20px; }
    .blog-card.featured { grid-column: span 1; }
    .blog-card.featured .blog-card-body h2 { font-size: 1.35rem; }
    .blog-nav-links { display: none; }
    .blog-hero { padding: 40px 0 28px; }
    .blog-article { padding: 30px 20px 50px; }
}

