/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }
body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: #05060a;
    color: #e4e4e7;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; width: 100%; }

/* ===== AMBIENT DEEP GLOW BACKGROUND ===== */
body::before {
    content: '';
    position: fixed;
    top: -40%; left: -30%;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse 600px 600px, rgba(212,175,55,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: -1;
}
body::after {
    content: '';
    position: fixed;
    bottom: -40%; right: -30%;
    width: 100%; height: 100%;
    background: radial-gradient(ellipse 500px 500px, rgba(212,175,55,0.025) 0%, transparent 65%);
    pointer-events: none;
    z-index: -1;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #05060a; }
::-webkit-scrollbar-thumb { background: #1a1d2e; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: rgba(212,175,55,0.3); }

/* ===== 🪟 GLASS CARD ===== */
.glass {
    background: rgba(12,14,24,0.25);
    backdrop-filter: blur(20px) saturate(1.4);
    -webkit-backdrop-filter: blur(20px) saturate(1.4);
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 18px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.glass::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06) 20%, rgba(212,175,55,0.15) 50%, rgba(255,255,255,0.06) 80%, transparent);
    pointer-events: none;
}
.glass::after {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle at 20% 0%, rgba(212,175,55,0.03) 0%, transparent 50%);
    pointer-events: none;
}
.glass:hover {
    border-color: rgba(212,175,55,0.16);
    transform: translateY(-3px);
    box-shadow: 0 12px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.06), 0 0 40px rgba(212,175,55,0.04);
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed; top: 0; width: 100%; z-index: 100;
    background: rgba(5,6,10,0.7);
    backdrop-filter: blur(28px) saturate(1.7);
    -webkit-backdrop-filter: blur(28px) saturate(1.7);
    border-bottom: 1px solid rgba(212,175,55,0.05);
}
.nav-inner {
    display: flex; align-items: center; justify-content: space-between;
    padding: 14px 20px; max-width: 1200px; margin: 0 auto;
}
.logo {
    font-size: 1.4rem; font-weight: 900; color: #fff;
    letter-spacing: -0.5px;
    display: flex; align-items: center; gap: 3px;
}
.logo span { 
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #c8a45c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.logo-icon {
    display: inline-block;
    margin-right: 6px;
    font-size: 1rem;
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
    font-size: 0.86rem; color: #8b8fa3;
    font-weight: 500; position: relative;
    transition: color 0.25s;
}
.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute; bottom: -3px; left: 0;
    width: 0; height: 1.5px;
    background: #d4af37;
    transition: width 0.3s;
    border-radius: 1px;
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }
.nav-links a:not(.nav-cta):hover { color: #fff; }
.nav-cta {
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 40%, #c8a45c 100%);
    color: #0a0b12 !important;
    padding: 9px 20px;
    border-radius: 10px;
    font-weight: 700 !important;
    font-size: 0.83rem !important;
    box-shadow: 0 4px 20px rgba(212,175,55,0.2);
    transition: all 0.3s;
}
.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.4) !important;
}

/* ===== HERO ===== */
.hero {
    padding: 150px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: radial-gradient(ellipse 800px 500px at 50% 30%, rgba(212,175,55,0.05) 0%, transparent 70%);
    pointer-events: none;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.12);
    padding: 7px 18px;
    border-radius: 100px;
    font-size: 0.76rem;
    color: #f5d76e;
    font-weight: 600;
    margin-bottom: 22px;
    letter-spacing: 0.2px;
}
.hero-dot {
    width: 5px; height: 5px;
    background: #f5d76e;
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.2; }
}
.hero h1 {
    font-size: clamp(2rem, 5.5vw, 3.8rem);
    font-weight: 900;
    line-height: 1.12;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.8px;
}
.hero h1 .gold {
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 35%, #ffe066 65%, #c8a45c 100%);
    background-size: 250% 250%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 5s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
.hero-sub {
    font-size: 1.1rem;
    color: #6b7194;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
    font-weight: 500;
}
.hero-text {
    font-size: 1.05rem;
    color: #c8cbd8;
    max-width: 600px;
    margin: 0 auto 28px;
    line-height: 1.7;
}
.hero-text strong { 
    background: linear-gradient(135deg, #d4af37, #f5d76e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}
.hero-actions {
    display: flex; align-items: center; justify-content: center;
    gap: 14px; flex-wrap: wrap;
    margin-bottom: 14px;
}
.hero-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 40%, #c8a45c 100%);
    color: #0a0b12;
    padding: 15px 34px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(212,175,55,0.25);
    transition: all 0.35s;
}
.hero-btn::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 35%, rgba(255,255,255,0.12) 40%, transparent 45%);
    animation: btn-shine 4s ease-in-out infinite;
}
@keyframes btn-shine {
    0% { transform: translateX(-100%) rotate(25deg); }
    25% { transform: translateX(100%) rotate(25deg); }
    100% { transform: translateX(100%) rotate(25deg); }
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(212,175,55,0.45);
}
.hero-btn-2 {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.03);
    backdrop-filter: blur(10px);
    color: #c8cbd8;
    padding: 15px 26px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.92rem;
    border: 1px solid rgba(212,175,55,0.08);
    transition: all 0.3s;
}
.hero-btn-2:hover {
    border-color: rgba(212,175,55,0.25);
    color: #fff;
    background: rgba(255,255,255,0.06);
    box-shadow: 0 4px 20px rgba(212,175,55,0.08);
}
.hero-small {
    margin-top: 14px;
    font-size: 0.82rem;
    color: #4a5072;
}
.hero-small strong { color: #8b8fa3; }

/* ===== TRUST STRIP ===== */
.trust-strip {
    padding: 16px 0;
    border-top: 1px solid rgba(212,175,55,0.04);
    border-bottom: 1px solid rgba(212,175,55,0.04);
    background: rgba(212,175,55,0.008);
}
.trust-strip-inner {
    display: flex; align-items: center; justify-content: center;
    gap: 40px; flex-wrap: wrap;
    max-width: 900px; margin: 0 auto;
}
.trust-chip {
    display: flex; align-items: center; gap: 8px;
    color: #5a6080; font-size: 0.8rem; font-weight: 500;
}
.trust-chip-box {
    width: 30px; height: 30px;
    background: rgba(212,175,55,0.06);
    border: 1px solid rgba(212,175,55,0.08);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* ========================================
   🪟 TRUE GLASSMORPHIC GRID COMPONENT
   ======================================== */

.tg-grid {
    display: grid;
    gap: 16px;
    width: 100%;
}
/* Phone: always 2 columns minimum */
.tg-grid-4 { grid-template-columns: repeat(2, 1fr); }
.tg-grid-3 { grid-template-columns: repeat(2, 1fr); }

.tg-card {
    background: rgba(12,14,24,0.22);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid rgba(212,175,55,0.07);
    border-radius: 18px;
    padding: 30px 22px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}
.tg-card::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.12), transparent);
    pointer-events: none;
}
.tg-card::after {
    content: '';
    position: absolute;
    top: -80%; left: -30%;
    width: 160%; height: 200%;
    background: radial-gradient(circle at 30% 10%, rgba(212,175,55,0.025) 0%, transparent 50%);
    pointer-events: none;
}
.tg-card:hover {
    border-color: rgba(212,175,55,0.16);
    transform: translateY(-5px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.06), 0 0 50px rgba(212,175,55,0.03);
}
.tg-num {
    width: 50px; height: 50px;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 50%, #c8a45c 100%);
    color: #0a0b12;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800; font-size: 1.2rem;
    margin: 0 auto 16px;
    box-shadow: 0 4px 20px rgba(212,175,55,0.2);
}
.tg-card h3 {
    font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: #fff;
}
.tg-card p { font-size: 0.85rem; color: #8b8fa3; line-height: 1.6; }
.tg-card strong { color: #d4af37; }
.tg-stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 40%, #c8a45c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2px;
    letter-spacing: -1px;
}
.tg-stat-label { color: #6b7194; font-size: 0.85rem; font-weight: 500; }

/* ===== PROOF / RESULTS SECTION ===== */
.proof-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin: 0 auto;
}
.proof-card {
    background: rgba(12,14,24,0.22);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid rgba(212,175,55,0.07);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.proof-card::before {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.12), transparent);
    pointer-events: none;
    z-index: 2;
}
.proof-card:hover {
    border-color: rgba(212,175,55,0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(212,175,55,0.06);
}
.proof-img-wrap {
    width: 100%;
    position: relative;
    overflow: hidden;
    background: #05060a;
}
.proof-img-wrap img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.proof-card:hover .proof-img-wrap img {
    transform: scale(1.03);
}
.proof-caption {
    padding: 14px 18px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.proof-badge {
    display: inline-block;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.15);
    color: #f5d76e;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 6px;
    letter-spacing: 0.3px;
}
.proof-label {
    color: #6b7194;
    font-size: 0.78rem;
    font-weight: 500;
}
.proof-foot {
    text-align: center;
    color: #5a6080;
    font-size: 0.85rem;
    margin-top: 24px;
}
.proof-foot a {
    color: #d4af37;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 399px) {
    .proof-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .proof-caption { padding: 10px 12px 14px; flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (min-width: 601px) and (max-width: 900px) {
    .proof-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; }
}
@media (min-width: 901px) {
    .proof-grid { grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; }
    .proof-caption { padding: 16px 22px 22px; }
}

/* ===== SECTION HEADERS ===== */
.sec-head {
    text-align: center;
    margin-bottom: 44px;
}
.sec-tag {
    display: inline-block;
    background: rgba(212,175,55,0.05);
    border: 1px solid rgba(212,175,55,0.1);
    padding: 5px 16px;
    border-radius: 100px;
    font-size: 0.7rem;
    color: #d4af37;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 14px;
}
.sec-head h2 {
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    letter-spacing: -0.4px;
}
.sec-head p {
    color: #6b7194;
    font-size: 0.95rem;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}

/* ===== SECTIONS ===== */
.section { padding: 80px 0; }
.section-dark { padding: 80px 0; background: rgba(3,4,8,0.4); position: relative; }
.section-dark::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.06), transparent);
}

/* ===== PROP FIRMS ===== */
.firms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 720px; margin: 0 auto;
}
.firm-chip {
    background: rgba(12,14,24,0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212,175,55,0.06);
    border-radius: 12px;
    padding: 18px 14px;
    text-align: center;
    font-weight: 600;
    font-size: 0.85rem;
    color: #c8cbd8;
    transition: all 0.35s;
}
.firm-chip:hover {
    border-color: rgba(212,175,55,0.2);
    color: #f5d76e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.2);
}
.firm-chip:last-child {
    border-color: rgba(212,175,55,0.16);
    color: #d4af37;
    background: rgba(212,175,55,0.05);
}
.firms-foot {
    text-align: center; color: #5a6080;
    font-size: 0.85rem; margin-top: 28px;
}
.firms-foot a { 
    color: #d4af37; font-weight: 600; 
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== BLOG ===== */
.blog-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 36px;
}
.blog-card {
    background: rgba(12,14,24,0.22);
    backdrop-filter: blur(22px) saturate(1.5);
    -webkit-backdrop-filter: blur(22px) saturate(1.5);
    border: 1px solid rgba(212,175,55,0.07);
    border-radius: 18px;
    padding: 28px 22px;
    transition: all 0.4s;
    display: flex; flex-direction: column;
}
.blog-card:hover {
    border-color: rgba(212,175,55,0.16);
    transform: translateY(-4px);
    box-shadow: 0 12px 50px rgba(0,0,0,0.3), 0 0 0 1px rgba(212,175,55,0.06);
}
.blog-tag {
    display: inline-block;
    background: rgba(212,175,55,0.07);
    color: #d4af37;
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 6px;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    align-self: flex-start;
}
.blog-card h3 {
    font-size: 1.05rem; font-weight: 700;
    margin-bottom: 8px; color: #fff;
    line-height: 1.35; flex: 1;
}
.blog-card p {
    font-size: 0.85rem; color: #8b8fa3;
    margin-bottom: 14px; line-height: 1.55;
}
.blog-link {
    color: #d4af37; font-weight: 600; font-size: 0.85rem;
    display: inline-flex; align-items: center; gap: 5px;
    margin-top: auto;
    transition: gap 0.3s;
}
.blog-card:hover .blog-link { gap: 9px; }
.blog-all {
    display: block; text-align: center;
    color: #d4af37; font-weight: 600; font-size: 0.9rem;
}

/* ===== FAQ ===== */
.faq-list { max-width: 680px; margin: 0 auto; display: grid; gap: 10px; }
.faq-item {
    background: rgba(12,14,24,0.2);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(212,175,55,0.06);
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s;
}
.faq-item:hover { border-color: rgba(212,175,55,0.1); }
.faq-item h3 {
    font-size: 0.95rem; font-weight: 600;
    color: #fff;
    cursor: pointer;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    transition: color 0.2s;
}
.faq-item h3::after {
    content: '+';
    font-size: 1.2rem;
    color: #5a6080;
    transition: all 0.35s;
    font-weight: 300;
}
.faq-item.active { border-color: rgba(212,175,55,0.12); }
.faq-item.active h3::after {
    content: '−';
    color: #d4af37;
    transform: rotate(0deg);
}
.faq-item h3:hover { color: #d4af37; }
.faq-item p {
    font-size: 0.85rem; color: #8b8fa3;
    padding: 0 22px 18px;
    display: none;
    line-height: 1.65;
}
.faq-item.active p { display: block; }

/* ===== CTA ===== */
.cta-section {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-section::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 65%);
    pointer-events: none;
}
.cta-inner {
    position: relative;
    max-width: 540px; margin: 0 auto;
}
.cta-section h2 {
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 800;
    margin-bottom: 14px;
    color: #fff;
    letter-spacing: -0.4px;
}
.cta-section p {
    color: #8b8fa3;
    font-size: 0.95rem;
    margin-bottom: 28px;
    line-height: 1.6;
}
.cta-btn-gold {
    display: inline-flex; align-items: center; gap: 8px;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 40%, #c8a45c 100%);
    color: #0a0b12;
    padding: 15px 36px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(212,175,55,0.25);
    transition: all 0.35s;
}
.cta-btn-gold::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: linear-gradient(45deg, transparent 35%, rgba(255,255,255,0.12) 40%, transparent 45%);
    animation: btn-shine 4s ease-in-out infinite;
}
.cta-btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 45px rgba(212,175,55,0.45);
}

/* ===== FOOTER ===== */
.footer {
    padding: 40px 0;
    border-top: 1px solid rgba(212,175,55,0.04);
}
.footer-inner {
    display: flex; justify-content: space-between; align-items: center;
    flex-wrap: wrap; gap: 16px;
}
.footer-left p { font-size: 0.82rem; color: #4a5072; }
.footer-right { display: flex; align-items: center; gap: 20px; }
.footer-right a {
    font-size: 0.85rem; color: #6b7194;
    transition: color 0.2s;
}
.footer-right a:hover { color: #d4af37; }

/* ========================================
   📱 RESPONSIVE — PHONE FIRST
   On phone: 2-3 columns always
   ======================================== */

/* Small phones < 400px */
@media (max-width: 399px) {
    .container { padding: 0 14px; }
    .tg-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tg-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .firms-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .tg-card { padding: 22px 14px; border-radius: 14px; }
    .tg-stat-num { font-size: 2rem; }
    .tg-num { width: 42px; height: 42px; font-size: 1rem; }
    .tg-card h3 { font-size: 0.9rem; }
    .tg-card p { font-size: 0.78rem; }
    .trust-strip-inner { gap: 16px; }
    .trust-chip { font-size: 0.7rem; }
    .hero h1 { font-size: 1.7rem; }
    .hero-text { font-size: 0.9rem; }
    .hero-btn, .hero-btn-2 { padding: 12px 20px; font-size: 0.85rem; }
    .sec-head h2 { font-size: 1.3rem; }
    .section { padding: 50px 0; }
    .section-dark { padding: 50px 0; }
    .blog-card { padding: 20px 16px; }
    .blog-card h3 { font-size: 0.9rem; }
    .firm-chip { padding: 14px 10px; font-size: 0.78rem; }
}

/* Phones 400-600px */
@media (min-width: 400px) and (max-width: 600px) {
    .container { padding: 0 16px; }
    .tg-grid-4 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .tg-grid-3 { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .firms-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .tg-card { padding: 26px 18px; }
    .tg-stat-num { font-size: 2.2rem; }
    .section { padding: 60px 0; }
    .section-dark { padding: 60px 0; }
}

/* Tablet 601-900px: 3 columns where appropriate */
@media (min-width: 601px) and (max-width: 900px) {
    .tg-grid-4 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .tg-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
    .firms-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
    .section { padding: 70px 0; }
    .section-dark { padding: 70px 0; }
}

/* Desktop 901px+ */
@media (min-width: 901px) {
    .tg-grid-4 { grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .tg-grid-3 { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .blog-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .firms-grid { grid-template-columns: repeat(4, 1fr); gap: 14px; max-width: 780px; }
    .section { padding: 100px 0; }
    .section-dark { padding: 100px 0; }
    .tg-card { padding: 34px 26px; }
    .tg-card h3 { font-size: 1.1rem; }
}

/* Nav responsive */
@media (max-width: 600px) {
    .nav-links a:not(.nav-cta) { display: none; }
    .nav-inner { padding: 12px 16px; }
    .logo { font-size: 1.2rem; }
    .hero { padding: 110px 0 50px; }
    .hero-badge { font-size: 0.68rem; padding: 5px 14px; }
    .hero-actions { flex-direction: column; align-items: stretch; gap: 10px; }
    .hero-btn, .hero-btn-2 { justify-content: center; }
    .trust-strip-inner { gap: 12px; flex-wrap: nowrap; overflow-x: auto; padding: 0 16px; -webkit-overflow-scrolling: touch; }
    .trust-chip { white-space: nowrap; font-size: 0.72rem; flex-shrink: 0; }
    .footer-inner { flex-direction: column; text-align: center; }
    .footer-right { justify-content: center; }
}

/* ===== BLOG/ABOUT PAGES ===== */
.blog-page { padding: 130px 0 60px; }
.blog-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800; color: #fff;
    margin-bottom: 8px; letter-spacing: -0.4px;
}
.blog-page .sub { color: #6b7194; margin-bottom: 40px; font-size: 0.95rem; }

.post-page {
    padding: 130px 0 50px;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 20px; padding-right: 20px;
}
.post-page h1 {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 800; color: #fff;
    line-height: 1.3; margin-bottom: 10px; letter-spacing: -0.4px;
}
.post-meta {
    color: #6b7194; font-size: 0.82rem;
    margin-bottom: 28px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(212,175,55,0.05);
}
.post-content { font-size: 0.98rem; color: #c8cbd8; line-height: 1.8; }
.post-content h2 {
    font-size: 1.5rem; font-weight: 700;
    color: #fff; margin: 40px 0 14px; letter-spacing: -0.2px;
}
.post-content h3 {
    font-size: 1.15rem; font-weight: 600;
    color: #fff; margin: 28px 0 10px;
}
.post-content p { margin-bottom: 18px; }
.post-content ul, .post-content ol { margin: 0 0 18px 22px; }
.post-content li { margin-bottom: 6px; }
.post-content strong { color: #fff; }
.post-content .highlight {
    background: rgba(212,175,55,0.03);
    border-left: 3px solid #d4af37;
    padding: 18px 22px;
    border-radius: 0 10px 10px 0;
    margin: 28px 0;
}
.post-content a { color: #d4af37; text-decoration: underline; }
.post-cta-box {
    background: rgba(12,14,24,0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.07);
    border-radius: 18px;
    padding: 36px 28px;
    text-align: center;
    margin: 40px 0;
}
.post-cta-box h3 { color: #fff; font-size: 1.15rem; margin-bottom: 8px; }
.post-cta-box p { color: #8b8fa3; margin-bottom: 18px; font-size: 0.9rem; }
.post-cta-box a {
    display: inline-block;
    background: linear-gradient(135deg, #d4af37 0%, #f5d76e 40%, #c8a45c 100%);
    color: #0a0b12; padding: 13px 30px;
    border-radius: 12px; font-weight: 700;
    box-shadow: 0 4px 20px rgba(212,175,55,0.2);
    transition: all 0.3s;
}
.post-cta-box a:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212,175,55,0.35);
}
.post-nav {
    display: flex; justify-content: space-between;
    margin-top: 40px; padding-top: 20px;
    border-top: 1px solid rgba(212,175,55,0.05);
    gap: 16px; flex-wrap: wrap;
}
.post-nav a { color: #d4af37; font-weight: 600; font-size: 0.88rem; }

.about-page {
    padding: 130px 0 60px;
    max-width: 720px;
    margin: 0 auto;
    padding-left: 20px; padding-right: 20px;
}
.about-page h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800; color: #fff;
    margin-bottom: 20px; letter-spacing: -0.4px;
}
.about-page p {
    font-size: 0.98rem; color: #c8cbd8;
    margin-bottom: 18px; line-height: 1.8;
}
.about-page .gl-box {
    background: rgba(12,14,24,0.25);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(212,175,55,0.07);
    border-radius: 18px;
    padding: 28px;
    margin: 36px 0;
}

/* ===== ENSURE NO OVERFLOW ===== */
img, video, iframe { max-width: 100%; height: auto; }
pre, code { word-break: break-word; overflow-x: auto; }
