/* ========================================
   AdvantEdge Leadership Coaching & Counseling
   Design System — Blue / Teal Brand Theme
   (Colors matched to coachbarbarajordan.com)
   ======================================== */

:root {
  --navy: #16425B;
  --navy-dark: #0d2b3e;
  --navy-mid: #235E70;
  --navy-blue: #2F6690;
  --gold: #30A2C5;
  --gold-light: #82B4D3;
  --slate: #4a5568;
  --light: #CDE7EF;
  --white: #ffffff;
  --border: #b8d9e8;
  --text: #2d3748;
  --success: #2d7a4f;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Playfair Display', serif; line-height: 1.2; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* ======== NAVIGATION ======== */
nav { position: fixed; top: 0; width: 100%; background: rgba(22,66,91,0.97); backdrop-filter: blur(8px); z-index: 100; padding: 0 5%; }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 70px; max-width: 1200px; margin: 0 auto; }
.logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; font-weight: 700; line-height: 1.2; }
.logo img { height: 48px; width: auto; display: block; }
.logo span { display: block; color: var(--gold); font-size: 0.75rem; font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 1.5rem; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.mobile-menu-btn { display: none; background: none; border: none; color: var(--white); font-size: 1.5rem; cursor: pointer; padding: 0.5rem; }
.mobile-nav { display: none; position: fixed; top: 70px; left: 0; right: 0; background: var(--navy); padding: 1rem 5%; border-top: 1px solid rgba(255,255,255,0.1); z-index: 99; }
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; color: rgba(255,255,255,0.85); font-size: 1rem; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
.mobile-nav a:hover { color: var(--gold); }

/* ======== BUTTONS ======== */
.btn { display: inline-block; padding: 0.65rem 1.5rem; border-radius: 4px; font-weight: 600; font-size: 0.9rem; cursor: pointer; transition: all 0.2s; border: none; font-family: 'Inter', sans-serif; text-align: center; }
.btn-gold { background: var(--gold); color: var(--white); }
.btn-gold:hover { background: var(--gold-light); color: var(--navy); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(48,162,197,0.4); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid var(--gold); }
.btn-outline:hover { background: var(--gold); color: var(--white); }
.btn-outline-dark { background: transparent; color: var(--navy); border: 2px solid var(--gold); }
.btn-outline-dark:hover { background: var(--gold); color: var(--white); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); transform: translateY(-1px); box-shadow: 0 4px 15px rgba(22,66,91,0.3); }

/* ======== HERO ======== */
.hero { min-height: 100vh; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, var(--navy-blue) 100%); display: flex; align-items: center; padding: 100px 5% 60px; position: relative; overflow: hidden; }
.hero::before { content: ''; position: absolute; top: -50%; right: -20%; width: 700px; height: 700px; background: radial-gradient(circle, rgba(48,162,197,0.12) 0%, transparent 70%); border-radius: 50%; }
.hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-eyebrow { display: inline-block; background: rgba(48,162,197,0.15); border: 1px solid rgba(48,162,197,0.4); color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.4rem 1rem; border-radius: 20px; margin-bottom: 1.5rem; }
.hero h1 { font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 1.25rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; font-weight: 300; max-width: 500px; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 2.5rem; backdrop-filter: blur(10px); }
.hero-card-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.hero-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.75rem; }
.hero-card p { color: rgba(255,255,255,0.75); font-size: 0.95rem; margin-bottom: 1.5rem; }
.hero-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.stat-label { font-size: 0.78rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }

/* Hero portrait panel */
.hero-portrait { border-radius: 16px; overflow: hidden; position: relative; box-shadow: 0 30px 60px rgba(0,0,0,0.4); }
.hero-portrait img { width: 100%; height: 420px; object-fit: cover; display: block; }
.hero-portrait-badge { position: absolute; bottom: 1.5rem; left: 1.5rem; right: 1.5rem; background: rgba(22,66,91,0.9); backdrop-filter: blur(8px); border: 1px solid rgba(48,162,197,0.3); border-radius: 10px; padding: 1rem 1.25rem; }
.hero-portrait-badge .btn { width: 100%; display: block; text-align: center; margin-top: 0.75rem; }
.hero-stats-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border-top: 1px solid rgba(255,255,255,0.1); margin-top: 1rem; padding-top: 1rem; }

/* ======== PAGE HERO (inner pages) ======== */
.page-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 120px 5% 60px; text-align: center; position: relative; }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, transparent, var(--gold), transparent); }
.page-hero .section-tag { color: var(--gold); }
.page-hero h1 { color: var(--white); font-size: clamp(2rem, 3.5vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* ======== SOCIAL PROOF BAR ======== */
.proof { background: var(--light); padding: 1.5rem 5%; border-bottom: 1px solid var(--border); }
.proof-inner { max-width: 1200px; margin: 0 auto; display: flex; align-items: center; justify-content: center; gap: 2.5rem; flex-wrap: wrap; }
.proof-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.9rem; color: var(--slate); font-weight: 500; }
.stars { color: #f5a623; font-size: 1rem; letter-spacing: 1px; }
.proof-divider { width: 1px; height: 30px; background: var(--border); }

/* ======== SECTIONS ======== */
section { padding: 90px 5%; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-tag { display: inline-block; color: var(--gold); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; margin-bottom: 0.75rem; }
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); color: var(--navy); margin-bottom: 1rem; }
.section-sub { font-size: 1.05rem; color: var(--slate); max-width: 580px; margin-bottom: 3rem; }
.text-center { text-align: center; }
.text-center .section-sub { margin-left: auto; margin-right: auto; }

/* ======== SERVICES ======== */
.services { background: var(--white); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.service-card { background: var(--light); border-radius: 12px; padding: 2.5rem 2rem; border: 1px solid var(--border); transition: all 0.3s; position: relative; overflow: hidden; }
.service-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transform: scaleX(0); transition: transform 0.3s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(22,66,91,0.1); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon { font-size: 2.8rem; margin-bottom: 1.25rem; display: block; }
.service-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.75rem; }
.service-card p { color: var(--slate); font-size: 0.93rem; line-height: 1.7; }

/* ======== ABOUT ======== */
.about { background: var(--navy); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(48,162,197,0.15); border: 1px solid rgba(48,162,197,0.3); padding: 0.5rem 1rem; border-radius: 20px; color: var(--gold); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.about h2 { color: var(--white); margin-bottom: 1.25rem; }
.about p { color: rgba(255,255,255,0.78); font-size: 0.97rem; margin-bottom: 1.25rem; line-height: 1.8; }
.about-features { list-style: none; margin: 1.5rem 0 2rem; }
.about-features li { color: rgba(255,255,255,0.85); font-size: 0.93rem; padding: 0.5rem 0; display: flex; align-items: center; gap: 0.75rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.about-features li::before { content: '\2726'; color: var(--gold); font-size: 0.7rem; flex-shrink: 0; }
.about-visual { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 3rem 2.5rem; text-align: center; }
.about-visual-icon { font-size: 5rem; margin-bottom: 1.5rem; display: block; }
.about-visual h3 { color: var(--white); font-size: 1.4rem; margin-bottom: 1rem; }

/* About portrait (real photo) */
.about-portrait { border-radius: 16px; overflow: hidden; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.about-portrait img { width: 100%; display: block; object-fit: cover; }
.credentials { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
.cred { background: rgba(48,162,197,0.1); border: 1px solid rgba(48,162,197,0.2); border-radius: 8px; padding: 1rem; text-align: center; }
.cred-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--gold); font-weight: 700; display: block; }
.cred-text { font-size: 0.75rem; color: rgba(255,255,255,0.65); text-transform: uppercase; letter-spacing: 0.05em; }

/* ======== TESTIMONIALS ======== */
.testimonials { background: var(--light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.testimonial { background: var(--white); border-radius: 12px; padding: 2rem; border: 1px solid var(--border); position: relative; }
.testimonial::before { content: '\201C'; position: absolute; top: -10px; left: 20px; font-family: 'Playfair Display', serif; font-size: 5rem; color: var(--gold); line-height: 1; opacity: 0.4; }
.testimonial .stars { display: block; margin-bottom: 1rem; font-size: 0.9rem; }
.testimonial p { color: var(--slate); font-size: 0.93rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.author-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-mid)); display: flex; align-items: center; justify-content: center; color: var(--white); font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.author-name { font-weight: 600; color: var(--navy); font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--slate); }

/* ======== CTA SECTION ======== */
.cta-section { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); padding: 90px 5%; }
.cta-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.cta-left h2 { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: 1rem; }
.cta-left p { color: rgba(255,255,255,0.78); margin-bottom: 2rem; font-size: 0.97rem; line-height: 1.8; }
.cta-phone { display: flex; align-items: center; gap: 0.75rem; color: var(--gold); font-size: 1.4rem; font-weight: 700; font-family: 'Playfair Display', serif; margin-bottom: 0.5rem; }
.cta-phone-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-family: 'Inter', sans-serif; font-weight: 400; letter-spacing: 0.05em; text-transform: uppercase; }
.cta-features { display: flex; flex-direction: column; gap: 0.75rem; }
.cta-feature { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.75); font-size: 0.9rem; }
.cta-feature .gold { color: var(--gold); }

/* ======== FORMS ======== */
.cta-form { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 12px; padding: 2.5rem; backdrop-filter: blur(10px); }
.cta-form h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; color: rgba(255,255,255,0.75); font-size: 0.82rem; font-weight: 500; margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.05em; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2); border-radius: 6px; padding: 0.75rem 1rem; color: var(--white); font-size: 0.93rem; font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group select option { background: var(--navy); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 90px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* Light form variant (for contact page) */
.form-light .form-group label { color: var(--slate); }
.form-light .form-group input, .form-light .form-group select, .form-light .form-group textarea {
  background: var(--white); border: 1px solid var(--border); color: var(--text);
}
.form-light .form-group input::placeholder, .form-light .form-group textarea::placeholder { color: var(--slate); }
.form-light .form-group input:focus, .form-light .form-group select:focus, .form-light .form-group textarea:focus { border-color: var(--gold); }
.form-light .form-group select option { background: var(--white); color: var(--text); }

/* ======== PRODUCTS ======== */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2.5rem; }
.product-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.product-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(22,66,91,0.1); }
.product-image { background: var(--light); padding: 2rem; text-align: center; min-height: 200px; display: flex; align-items: center; justify-content: center; }
.product-image .placeholder-icon { font-size: 5rem; }
.product-body { padding: 2rem; }
.product-body h3 { color: var(--navy); margin-bottom: 0.75rem; }
.product-body p { color: var(--slate); font-size: 0.93rem; line-height: 1.7; margin-bottom: 1.5rem; }
.product-price { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--gold); font-weight: 700; margin-bottom: 1rem; }
.product-badge { display: inline-block; background: rgba(48,162,197,0.12); color: var(--navy-mid); font-size: 0.75rem; font-weight: 600; padding: 0.3rem 0.75rem; border-radius: 12px; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 1rem; }

/* ======== BLOG ======== */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 2rem; }
.blog-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: all 0.3s; }
.blog-card:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(22,66,91,0.1); }
.blog-card-image { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); height: 180px; display: flex; align-items: center; justify-content: center; }
.blog-card-image .blog-icon { font-size: 3rem; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { font-size: 0.78rem; color: var(--slate); margin-bottom: 0.5rem; text-transform: uppercase; letter-spacing: 0.05em; }
.blog-card-body h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card-body h3 a { transition: color 0.2s; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { color: var(--slate); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1rem; }
.blog-read-more { color: var(--gold); font-weight: 600; font-size: 0.9rem; }

/* Blog post content */
.blog-post { max-width: 760px; margin: 0 auto; }
.blog-post-meta { color: var(--slate); font-size: 0.85rem; margin-bottom: 2rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.blog-post-content { font-size: 1.05rem; line-height: 1.85; color: var(--text); }
.blog-post-content h2 { font-size: 1.6rem; color: var(--navy); margin: 2.5rem 0 1rem; }
.blog-post-content h3 { font-size: 1.3rem; color: var(--navy); margin: 2rem 0 0.75rem; }
.blog-post-content p { margin-bottom: 1.25rem; }
.blog-post-content ul, .blog-post-content ol { margin-bottom: 1.25rem; padding-left: 1.5rem; }
.blog-post-content li { margin-bottom: 0.5rem; }
.blog-post-content blockquote { border-left: 4px solid var(--gold); padding: 1rem 1.5rem; margin: 1.5rem 0; background: var(--light); border-radius: 0 8px 8px 0; font-style: italic; color: var(--slate); }

/* ======== AUDIO PLAYER ======== */
.audio-player { background: var(--light); border: 1px solid var(--border); border-radius: 8px; padding: 1rem 1.5rem; margin: 1.5rem 0; display: flex; align-items: center; gap: 1rem; }
.audio-play-btn { width: 44px; height: 44px; border-radius: 50%; background: var(--navy); border: none; color: var(--gold); font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.2s; }
.audio-play-btn:hover { background: var(--navy-mid); transform: scale(1.05); }
.audio-info { flex: 1; min-width: 0; }
.audio-title { font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; }
.audio-progress { width: 100%; height: 4px; background: var(--border); border-radius: 2px; overflow: hidden; cursor: pointer; }
.audio-progress-bar { height: 100%; background: var(--gold); border-radius: 2px; width: 0%; transition: width 0.1s; }
.audio-time { font-size: 0.75rem; color: var(--slate); margin-top: 0.25rem; }
.audio-controls { display: flex; align-items: center; gap: 0.5rem; }
.audio-speed { background: var(--white); border: 1px solid var(--border); border-radius: 4px; padding: 0.2rem 0.5rem; font-size: 0.75rem; color: var(--slate); cursor: pointer; font-family: 'Inter', sans-serif; }

/* ======== FAQ ======== */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.5rem 0; cursor: pointer; gap: 1rem; }
.faq-question h3 { font-size: 1.1rem; color: var(--navy); font-family: 'Inter', sans-serif; font-weight: 600; }
.faq-toggle { font-size: 1.5rem; color: var(--gold); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-answer-inner { padding: 0 0 1.5rem; color: var(--slate); font-size: 0.95rem; line-height: 1.75; }

/* ======== FOOTER ======== */
footer { background: var(--navy-dark); padding: 3rem 5% 2rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-top { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; padding-bottom: 2rem; border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-logo { font-family: 'Playfair Display', serif; color: var(--white); font-size: 1.1rem; margin-bottom: 0.5rem; }
.footer-logo img { height: 40px; width: auto; display: block; margin-bottom: 0.5rem; }
.footer-logo span { display: block; color: var(--gold); font-size: 0.72rem; font-family: 'Inter', sans-serif; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 0.2rem; }
.footer-desc { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.7; margin-top: 0.75rem; }
.footer-col h4 { color: var(--white); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { color: rgba(255,255,255,0.5); font-size: 0.87rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 1.5rem; flex-wrap: wrap; gap: 0.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.35); font-size: 0.8rem; }

/* ======== ANIMATIONS ======== */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }

/* ======== RESPONSIVE ======== */
@media (max-width: 900px) {
  .hero-inner, .about-inner, .cta-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .services-grid, .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .hero { padding-top: 90px; }
  .credentials { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
}
@media (max-width: 600px) {
  .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .proof-divider { display: none; }
  .hero-ctas { flex-direction: column; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  section { padding: 60px 5%; }
  .product-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
}
