/* ============================================
   NOVUS AGENCY — Master Stylesheet
   ============================================ */

/* --- Tailwind CDN is also loaded — this extends it --- */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,600;0,700;1,600&display=swap');

:root {
  --gold: #d4a853;
  --gold-light: #e0b85e;
  --gold-dark: #b07e1e;
  --night-900: #0a0a0f;
  --night-800: #12121a;
  --night-700: #1a1a25;
  --night-600: #252535;
  --text: #f0efe7;
  --text-dim: rgba(240, 239, 231, 0.45);
  --text-muted: rgba(240, 239, 231, 0.25);
  --border: rgba(255, 255, 255, 0.04);
  --border-hover: rgba(212, 168, 83, 0.2);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--night-900);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
::selection { background: rgba(212,168,83,0.3); color: #fff; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--night-900); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 2px; }

/* --- Typography --- */
h1, h2, h3, h4, .font-display { font-family: 'Playfair Display', serif; }
.gold { color: var(--gold); }
.text-dim { color: var(--text-dim); }

/* --- Custom Cursor --- */
.cursor-dot { width: 8px; height: 8px; background: var(--gold); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9999; transition: transform 0.1s; transform: translate(-4px, -4px); }
.cursor-ring { width: 40px; height: 40px; border: 1px solid rgba(212,168,83,0.3); border-radius: 50%; position: fixed; pointer-events: none; z-index: 9998; transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.15s; transform: translate(-20px, -20px); }
.cursor-ring.hover { width: 64px; height: 64px; border-color: var(--gold); background: rgba(212,168,83,0.05); }

/* --- Loader --- */
#loader { position: fixed; inset: 0; z-index: 99999; background: var(--night-900); display: flex; align-items: center; justify-content: center; flex-direction: column; transition: opacity 0.8s, visibility 0.8s; }
#loader.hidden { opacity: 0; visibility: hidden; }
#loader .bar { width: 120px; height: 2px; background: var(--night-600); border-radius: 2px; overflow: hidden; margin-top: 24px; }
#loader .bar-inner { height: 100%; width: 0%; background: var(--gold); border-radius: 2px; }
#loader .letter { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); letter-spacing: 8px; }

/* --- Navigation --- */
nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 20px 5%; display: flex; align-items: center; justify-content: space-between; transition: background 0.4s, padding 0.4s, box-shadow 0.4s; max-width: 100%; margin: 0 auto; }
nav.scrolled { background: rgba(10,10,15,0.92); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); padding: 12px 5%; box-shadow: 0 1px 0 var(--border); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; max-width: 1400px; margin: 0 auto; }
.nav-logo { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--text); text-decoration: none; transition: opacity 0.3s; }
.nav-logo:hover { opacity: 0.8; }
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; }
.nav-links a { color: var(--text-dim); text-decoration: none; font-size: 0.78rem; letter-spacing: 1px; text-transform: uppercase; transition: color 0.3s; font-weight: 500; position: relative; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s; }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }
.nav-cta { padding: 10px 24px; background: var(--gold); color: var(--night-900) !important; border-radius: 4px; font-weight: 600 !important; transition: background 0.3s, transform 0.3s !important; }
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--text); transition: all 0.3s; border-radius: 2px; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Page Header --- */
.page-header { padding: 160px 5% 80px; max-width: 1400px; margin: 0 auto; position: relative; }
.page-header-sm { padding: 140px 5% 60px; }
.page-label { display: inline-block; padding: 6px 16px; border: 1px solid rgba(212,168,83,0.2); border-radius: 100px; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; background: rgba(212,168,83,0.04); }
.page-title { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.08; margin-bottom: 16px; max-width: 800px; }
.page-desc { color: var(--text-dim); font-size: 1.05rem; line-height: 1.8; max-width: 560px; font-weight: 300; }

/* --- Hero Banner --- */
.hero-banner { width: 100%; height: 60vh; min-height: 400px; max-height: 700px; position: relative; overflow: hidden; }
.hero-banner img { width: 100%; height: 100%; object-fit: cover; }
.hero-banner .overlay { position: absolute; inset: 0; background: linear-gradient(to top, var(--night-900), transparent 50%, rgba(10,10,15,0.3) 100%); }
.hero-banner-sm { height: 40vh; min-height: 300px; max-height: 500px; }

/* --- Section --- */
.section { padding: 100px 5%; max-width: 1400px; margin: 0 auto; }
.section-sm { padding: 60px 5%; }
.section-wide { padding: 100px 5%; }
.section-dark { background: var(--night-800); }
.section-label { display: inline-block; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3.2rem); margin-bottom: 16px; line-height: 1.15; }
.section-desc { color: var(--text-dim); max-width: 560px; font-weight: 300; line-height: 1.8; font-size: 1rem; }

/* --- Grids --- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 60px; }

/* --- Cards --- */
.card { background: var(--night-800); border-radius: 12px; border: 1px solid var(--border); padding: 36px; transition: all 0.4s; }
.card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.card-img { width: 100%; aspect-ratio: 16/9; border-radius: 8px; overflow: hidden; margin-bottom: 20px; background: var(--night-700); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.card:hover .card-img img { transform: scale(1.05); }
.card h3 { font-size: 1.2rem; margin-bottom: 10px; }
.card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

/* --- Stats --- */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; border-radius: 12px; overflow: hidden; background: var(--border); }
.stat-item { padding: 48px 32px; text-align: center; background: var(--night-800); }
.stat-number { font-family: 'Playfair Display', serif; font-size: clamp(2.5rem, 4vw, 3.5rem); color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 8px; letter-spacing: 1px; text-transform: uppercase; }

/* --- Services Grid --- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; border-radius: 12px; overflow: hidden; background: var(--border); }
.service-card { padding: 44px 32px; background: var(--night-800); transition: all 0.4s; position: relative; overflow: hidden; cursor: default; }
.service-card::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(212,168,83,0.04), transparent); opacity: 0; transition: opacity 0.5s; }
.service-card:hover::before { opacity: 1; }
.service-card:hover { background: var(--night-700); }
.service-icon { font-size: 2rem; margin-bottom: 20px; display: block; }
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; font-weight: 600; }
.service-card p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; font-weight: 300; }
.service-num { position: absolute; top: 20px; right: 24px; font-size: 3rem; font-family: 'Playfair Display', serif; color: rgba(212,168,83,0.05); line-height: 1; }

/* --- Buttons --- */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 32px; border-radius: 4px; font-weight: 600; font-size: 0.88rem; letter-spacing: 0.3px; cursor: pointer; transition: all 0.3s; text-decoration: none; border: none; }
.btn-primary { background: var(--gold); color: var(--night-900); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(212,168,83,0.2); }
.btn-outline { background: transparent; border: 1px solid rgba(240,239,231,0.15); color: var(--text); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }
.btn-sm { padding: 10px 20px; font-size: 0.8rem; }

/* --- Blog --- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-card { background: var(--night-800); border-radius: 12px; border: 1px solid var(--border); overflow: hidden; transition: all 0.4s; }
.blog-card:hover { border-color: var(--border-hover); transform: translateY(-6px); }
.blog-card-img { width: 100%; aspect-ratio: 16/10; overflow: hidden; background: var(--night-700); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.blog-card:hover .blog-card-img img { transform: scale(1.05); }
.blog-card-body { padding: 28px; }
.blog-card-meta { display: flex; gap: 16px; font-size: 0.75rem; color: var(--text-muted); margin-bottom: 12px; }
.blog-card-body h3 { font-size: 1.15rem; margin-bottom: 10px; line-height: 1.4; }
.blog-card-body h3 a { color: var(--text); text-decoration: none; }
.blog-card-body h3 a:hover { color: var(--gold); }
.blog-card-body p { color: var(--text-dim); font-size: 0.88rem; line-height: 1.7; margin-bottom: 16px; }
.blog-card-tag { display: inline-block; padding: 3px 10px; background: rgba(212,168,83,0.08); color: var(--gold); font-size: 0.7rem; border-radius: 100px; letter-spacing: 0.5px; }

/* --- Blog Article --- */
.article { max-width: 760px; margin: 0 auto; padding: 60px 5% 100px; }
.article h1 { font-size: clamp(2rem, 3.5vw, 3rem); line-height: 1.15; margin-bottom: 24px; }
.article .meta { display: flex; gap: 20px; color: var(--text-muted); font-size: 0.85rem; margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }
.article img { width: 100%; border-radius: 12px; margin: 32px 0; }
.article h2 { font-size: 1.6rem; margin-top: 48px; margin-bottom: 16px; }
.article h3 { font-size: 1.25rem; margin-top: 32px; margin-bottom: 12px; }
.article p { font-size: 1.02rem; line-height: 1.85; color: rgba(240,239,231,0.75); margin-bottom: 20px; font-weight: 300; }
.article ul, .article ol { color: rgba(240,239,231,0.7); line-height: 1.85; margin-bottom: 20px; padding-left: 24px; }
.article li { margin-bottom: 8px; }
.article blockquote { border-left: 2px solid var(--gold); padding: 20px 28px; margin: 32px 0; background: var(--night-800); border-radius: 0 8px 8px 0; font-style: italic; font-size: 1.1rem; color: rgba(240,239,231,0.8); }
.article blockquote cite { display: block; margin-top: 12px; font-size: 0.85rem; color: var(--text-muted); font-style: normal; }
.article .toc { background: var(--night-800); border: 1px solid var(--border); border-radius: 12px; padding: 28px 32px; margin-bottom: 40px; }
.article .toc h3 { margin-top: 0; margin-bottom: 16px; font-size: 1rem; color: var(--gold); }
.article .toc ol { margin-bottom: 0; }
.article .toc a { color: var(--text-dim); text-decoration: none; }
.article .toc a:hover { color: var(--gold); }
.article code { background: var(--night-800); padding: 2px 8px; border-radius: 4px; font-size: 0.88rem; color: var(--gold-light); }
.article pre { background: var(--night-800); padding: 24px; border-radius: 8px; overflow-x: auto; margin: 24px 0; border: 1px solid var(--border); }
.article pre code { background: none; padding: 0; color: rgba(240,239,231,0.8); }

/* --- Testimonials --- */
.testimonials-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.testimonial-card { padding: 36px 32px; background: var(--night-800); border-radius: 12px; border: 1px solid var(--border); transition: all 0.4s; }
.testimonial-card:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.testimonial-card .stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; letter-spacing: 3px; }
.testimonial-card blockquote { color: rgba(240,239,231,0.6); font-size: 0.93rem; line-height: 1.75; font-style: italic; font-weight: 300; margin-bottom: 20px; }
.testimonial-card footer { display: flex; align-items: center; gap: 14px; }
.testimonial-card .avatar { width: 40px; height: 40px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-weight: 600; font-size: 0.8rem; color: var(--night-900); flex-shrink: 0; }
.testimonial-card .name { font-size: 0.88rem; font-weight: 600; }
.testimonial-card .role { font-size: 0.75rem; color: var(--text-muted); }

/* --- Process Steps --- */
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.process-step { padding: 32px 24px; background: var(--night-800); border-radius: 12px; position: relative; border: 1px solid var(--border); transition: all 0.4s; }
.process-step:hover { border-color: var(--border-hover); transform: translateY(-4px); }
.process-step .step-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; color: rgba(212,168,83,0.06); position: absolute; top: 12px; right: 20px; line-height: 1; }
.process-step h4 { font-size: 1rem; margin-bottom: 8px; }
.process-step p { font-size: 0.82rem; color: var(--text-dim); line-height: 1.6; }

/* --- Team --- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.team-card { text-align: center; }
.team-card img { width: 100%; aspect-ratio: 1; border-radius: 12px; object-fit: cover; margin-bottom: 16px; background: var(--night-700); }
.team-card h4 { font-size: 1rem; margin-bottom: 4px; }
.team-card p { font-size: 0.8rem; color: var(--text-dim); }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 24px 0; }
.faq-question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; font-weight: 500; font-size: 1.05rem; background: none; border: none; color: var(--text); width: 100%; text-align: left; padding: 0; }
.faq-question:hover { color: var(--gold); }
.faq-question .icon { font-size: 1.2rem; transition: transform 0.3s; }
.faq-item.open .faq-question .icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s, padding 0.4s; color: var(--text-dim); line-height: 1.7; font-size: 0.92rem; }
.faq-item.open .faq-answer { max-height: 500px; padding-top: 16px; }

/* --- Contact --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.contact-form input, .contact-form textarea, .contact-form select { padding: 14px 18px; background: var(--night-800); border: 1px solid var(--border); border-radius: 8px; color: var(--text); font-family: 'Inter', sans-serif; font-size: 0.9rem; transition: border-color 0.3s; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form label { font-size: 0.85rem; font-weight: 500; margin-bottom: -12px; }
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-info-item .icon { width: 44px; height: 44px; background: var(--night-800); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-info-item h4 { font-size: 0.95rem; margin-bottom: 4px; }
.contact-info-item p { font-size: 0.85rem; color: var(--text-dim); }

/* --- CTA Section --- */
.cta-section { padding: 120px 5%; background: radial-gradient(ellipse at 30% 50%, rgba(212,168,83,0.04), transparent 70%); text-align: center; }
.cta-section h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.5rem); max-width: 700px; margin: 0 auto 16px; }
.cta-section p { max-width: 500px; margin: 0 auto 36px; color: var(--text-dim); font-weight: 300; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* --- Footer --- */
footer { padding: 60px 5%; border-top: 1px solid var(--border); max-width: 1400px; margin: 0 auto; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand .nav-logo { font-size: 1.4rem; display: inline-block; margin-bottom: 12px; }
.footer-brand p { font-size: 0.85rem; color: var(--text-dim); max-width: 300px; line-height: 1.7; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 16px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { color: var(--text-dim); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid var(--border); font-size: 0.8rem; color: var(--text-muted); }
.footer-social { display: flex; gap: 20px; }
.footer-social a { color: var(--text-muted); text-decoration: none; font-size: 0.8rem; transition: color 0.3s; }
.footer-social a:hover { color: var(--gold); }

/* --- Image Placeholder Gradient (fallback) --- */
.img-grad { background: linear-gradient(135deg, var(--night-700), var(--night-600)); display: flex; align-items: center; justify-content: center; color: rgba(212,168,83,0.1); font-size: 2rem; }

/* --- Utilities --- */
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mt-40 { margin-top: 40px; }
.mt-60 { margin-top: 60px; }
.mb-40 { margin-bottom: 40px; }
.gap-16 { gap: 16px; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.max-w-700 { max-width: 700px; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* --- Glassmorphism --- */
.glass { background: rgba(18, 18, 26, 0.6); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(255, 255, 255, 0.06); }
.glass-light { background: rgba(255, 255, 255, 0.03); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border: 1px solid rgba(255, 255, 255, 0.06); }
.glass-gold { background: rgba(212, 168, 83, 0.06); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border: 1px solid rgba(212, 168, 83, 0.1); }
.glass-card { background: rgba(18, 18, 26, 0.5); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.05); border-radius: 12px; transition: all 0.4s; }
.glass-card:hover { background: rgba(18, 18, 26, 0.7); border-color: rgba(212, 168, 83, 0.15); }
.glow-border { position: relative; }
.glow-border::before { content: ''; position: absolute; inset: -1px; border-radius: inherit; background: linear-gradient(135deg, rgba(212,168,83,0.2), transparent 40%, rgba(212,168,83,0.05)); z-index: -1; }
.hero-glass { background: rgba(10, 10, 15, 0.3); backdrop-filter: blur(24px) saturate(1.2); -webkit-backdrop-filter: blur(24px) saturate(1.2); border: 1px solid rgba(255, 255, 255, 0.06); border-radius: 16px; }

/* --- SVG Icons --- */
.icon-svg { width: 40px; height: 40px; flex-shrink: 0; display: inline-flex; align-items: center; justify-content: center; }
.icon-svg svg { width: 100%; height: 100%; }
.icon-svg-sm { width: 28px; height: 28px; }
.icon-svg-lg { width: 56px; height: 56px; }
.icon-circle { border-radius: 12px; background: rgba(212, 168, 83, 0.06); border: 1px solid rgba(212, 168, 83, 0.1); padding: 10px; }

/* --- Animations --- */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 0; transform: translateX(40px); transition: opacity 0.8s, transform 0.8s; }
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-2, .grid-2-1, .contact-grid { grid-template-columns: 1fr; }
  .grid-3, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,10,15,0.98); flex-direction: column; justify-content: center; gap: 32px; z-index: -1; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: flex; z-index: 1001; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .grid-3, .blog-grid { grid-template-columns: 1fr; }
  .grid-4, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .page-header { padding: 120px 5% 40px; }
  .hero-banner { height: 40vh; min-height: 280px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
}
