/* ==========================================================================
   CSS Variables & Design Tokens (Inspired by DesignCafe Modern Aesthetics)
   ========================================================================== */
:root {
  --primary: #d97706;          /* Warm Gold / Ochre Accent */
  --primary-dark: #b45309;     /* Deep Gold hover */
  --primary-light: #fef3c7;    /* Soft Ochre Background */
  --secondary: #0f172a;        /* Deep Slate / Charcoal */
  --secondary-light: #1e293b;  /* Slate Card */
  --accent: #e11d48;           /* Highlight / Urgent Tag */
  
  --bg-main: #f8fafc;          /* Soft off-white */
  --bg-white: #ffffff;
  --bg-light: #f1f5f9;
  
  --text-dark: #0f172a;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --text-white: #ffffff;
  
  --border-color: #e2e8f0;
  --border-radius-sm: 6px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-full: 9999px;
  
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 6px 18px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 16px 36px rgba(15, 23, 42, 0.12);
  --transition: all 0.28s ease-in-out;
  --font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-family: var(--font-family);
  color: var(--text-dark);
  background-color: var(--bg-main);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button, input, select {
  font-family: inherit;
  font-size: 1rem;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* Typography Helpers */
.text-center { text-align: center; }
.section { padding: 90px 0; }
.section-eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--primary-dark);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-title {
  font-size: 2.3rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 650px;
  margin: 0 auto 48px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--border-radius-sm);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
}
.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.45);
}
.btn-secondary {
  background-color: var(--bg-white);
  color: var(--secondary);
}
.btn-secondary:hover {
  background-color: var(--bg-light);
  transform: translateY(-2px);
}
.btn-block {
  width: 100%;
}

/* ==========================================================================
   Top Announcement Bar
   ========================================================================== */
.top-bar {
  background-color: var(--secondary);
  color: #cbd5e1;
  font-size: 0.82rem;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.top-bar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar-left i {
  color: var(--primary);
  margin-right: 6px;
}
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.top-bar-right a:hover {
  color: var(--primary-light);
}
.top-bar .divider {
  color: #475569;
}

/* ==========================================================================
   Main Header & Navigation
   ========================================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--text-white);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}
.logo-text {
  display: flex;
  flex-direction: column;
}
.brand-name {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--secondary);
  line-height: 1.1;
  letter-spacing: 1px;
}
.brand-sub {
  font-size: 0.65rem;
  letter-spacing: 3px;
  color: var(--primary-dark);
  font-weight: 700;
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-link {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.nav-link:hover {
  color: var(--primary);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--secondary);
  cursor: pointer;
}
.mobile-cta {
  display: none;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  position: relative;
  background-image: url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=1600&q=80');
  background-size: cover;
  background-position: center;
  padding: 100px 0;
  min-height: 600px;
  display: flex;
  align-items: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(15, 23, 42, 0.92) 0%, rgba(15, 23, 42, 0.7) 60%, rgba(15, 23, 42, 0.4) 100%);
}
.hero-container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 50px;
  align-items: center;
}
.hero-content {
  color: var(--text-white);
}
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(217, 119, 6, 0.25);
  border: 1px solid rgba(217, 119, 6, 0.5);
  color: #fef08a;
  padding: 6px 14px;
  border-radius: var(--border-radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 18px;
}
.hero-title .highlight {
  color: var(--primary);
  background: linear-gradient(120deg, #fbbf24, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-subtitle {
  font-size: 1.1rem;
  color: #cbd5e1;
  margin-bottom: 30px;
  line-height: 1.6;
}
.hero-usps {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.usp-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  padding: 10px 16px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255, 255, 255, 0.12);
}
.usp-item i {
  color: var(--primary);
}

/* Hero Lead Form Card */
.hero-form-card {
  background-color: var(--bg-white);
  padding: 34px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
}
.hero-form-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 4px;
}
.hero-form-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--secondary);
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-sm);
  background-color: #f8fafc;
  outline: none;
  transition: var(--transition);
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--primary);
  background-color: #fff;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}
.input-with-prefix {
  display: flex;
  align-items: center;
}
.input-with-prefix .prefix {
  background: #e2e8f0;
  padding: 12px 14px;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: var(--border-radius-sm) 0 0 var(--border-radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
}
.input-with-prefix input {
  border-radius: 0 var(--border-radius-sm) var(--border-radius-sm) 0;
}
.form-disclaimer {
  font-size: 0.75rem !important;
  color: var(--text-muted);
  text-align: center;
  margin-top: 14px;
  margin-bottom: 0 !important;
}

/* ==========================================================================
   Trust Bar Section
   ========================================================================== */
.trust-bar-section {
  background-color: var(--bg-white);
  padding: 30px 0;
  border-bottom: 1px solid var(--border-color);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-icon {
  width: 50px;
  height: 50px;
  background-color: var(--primary-light);
  color: var(--primary-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  border-radius: var(--border-radius-sm);
}
.trust-card h4 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--secondary);
}
.trust-card p {
  font-size: 0.82rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Offerings Grid
   ========================================================================== */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 26px;
}
.offering-card {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}
.offering-img-wrap {
  height: 220px;
  overflow: hidden;
}
.offering-img-wrap img {
  width: 100%;
  height: 100%;
  transition: transform 0.5s ease;
}
.offering-card:hover .offering-img-wrap img {
  transform: scale(1.08);
}
.offering-body {
  padding: 24px;
}
.offering-body h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 8px;
}
.offering-body p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 18px;
  line-height: 1.5;
}
.card-link {
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--primary-dark);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.card-link:hover {
  gap: 10px;
}

/* ==========================================================================
   Interactive Cost Estimator
   ========================================================================== */
.estimator-section {
  background-color: #f1f5f9;
}
.estimator-box {
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-md);
  max-width: 860px;
  margin: 0 auto;
}
.estimator-step {
  margin-bottom: 30px;
}
.step-label {
  display: block;
  font-size: 0.98rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 14px;
}
.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}
.option-btn {
  background-color: var(--bg-main);
  border: 2px solid var(--border-color);
  padding: 16px 14px;
  border-radius: var(--border-radius-sm);
  text-align: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--secondary);
  transition: var(--transition);
}
.option-btn span {
  display: block;
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
  margin-top: 4px;
}
.option-btn:hover {
  border-color: var(--primary);
}
.option-btn.active {
  border-color: var(--primary);
  background-color: var(--primary-light);
  color: var(--primary-dark);
}
.estimator-result-card {
  margin-top: 36px;
  background: linear-gradient(135deg, var(--secondary), #1e293b);
  color: var(--text-white);
  padding: 28px;
  border-radius: var(--border-radius-md);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.result-info span {
  font-size: 0.88rem;
  color: #94a3b8;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 1px;
}
.result-info h3 {
  font-size: 2rem;
  font-weight: 800;
  color: #fbbf24;
  margin: 4px 0;
}
.result-note {
  font-size: 0.78rem;
  color: #cbd5e1;
}

/* ==========================================================================
   Portfolio / Design Showcase
   ========================================================================== */
.filter-group {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 36px;
}
.filter-btn {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 10px 22px;
  border-radius: var(--border-radius-full);
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: var(--transition);
  color: var(--text-dark);
}
.filter-btn.active, .filter-btn:hover {
  background-color: var(--primary);
  color: var(--text-white);
  border-color: var(--primary);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 26px;
}
.portfolio-card {
  position: relative;
  border-radius: var(--border-radius-md);
  overflow: hidden;
  height: 290px;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
}
.portfolio-card img {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
}
.portfolio-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(15, 23, 42, 0.9) 0%, rgba(15, 23, 42, 0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 22px;
  color: var(--text-white);
}
.portfolio-info .tag {
  background-color: var(--primary);
  color: var(--text-white);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--border-radius-full);
  width: fit-content;
  margin-bottom: 8px;
}
.portfolio-info h4 {
  font-size: 1.15rem;
  font-weight: 700;
}
.portfolio-info p {
  font-size: 0.82rem;
  color: #cbd5e1;
}
.portfolio-card:hover img {
  transform: scale(1.1);
}

/* ==========================================================================
   Process (How It Works)
   ========================================================================== */
.process-section {
  background-color: var(--bg-white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.process-card {
  position: relative;
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  padding: 34px 24px;
  border-radius: var(--border-radius-md);
  transition: var(--transition);
}
.process-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}
.step-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 1.8rem;
  font-weight: 900;
  color: #e2e8f0;
}
.process-icon {
  font-size: 2rem;
  color: var(--primary-dark);
  margin-bottom: 18px;
}
.process-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--secondary);
  margin-bottom: 10px;
}
.process-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ==========================================================================
   Reviews / Testimonials
   ========================================================================== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background-color: var(--bg-white);
  padding: 30px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}
.review-stars {
  color: #f59e0b;
  font-size: 0.9rem;
  margin-bottom: 14px;
}
.review-text {
  font-size: 0.95rem;
  color: var(--secondary);
  font-style: italic;
  margin-bottom: 22px;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: var(--border-radius-full);
  background-color: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}
.reviewer strong {
  display: block;
  font-size: 0.92rem;
  color: var(--secondary);
}
.reviewer span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ==========================================================================
   FAQ Accordion
   ========================================================================== */
.faq-section {
  background-color: #f8fafc;
}
.faq-accordion {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background-color: var(--bg-white);
  border-radius: var(--border-radius-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 18px 22px;
  background: none;
  border: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--secondary);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question i {
  color: var(--primary);
  transition: transform 0.3s ease;
}
.faq-question.active i {
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
  background-color: #fafbfc;
}
.faq-answer p {
  padding-bottom: 18px;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ==========================================================================
   CTA Banner
   ========================================================================== */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--text-white);
  padding: 60px 0;
}
.cta-banner-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
}
.cta-content h2 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 6px;
}
.cta-content p {
  font-size: 1rem;
  color: var(--primary-light);
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--secondary);
  color: #94a3b8;
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-logo .brand-name {
  color: var(--text-white);
}
.footer-tagline {
  margin: 18px 0 22px;
  font-size: 0.88rem;
  line-height: 1.6;
}
.social-links {
  display: flex;
  gap: 12px;
}
.social-links a {
  width: 36px;
  height: 36px;
  border-radius: var(--border-radius-full);
  background-color: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 0.9rem;
}
.social-links a:hover {
  background-color: var(--primary);
  color: var(--text-white);
}
.footer-col h4 {
  color: var(--text-white);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 12px;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: #94a3b8;
}
.footer-col ul li a:hover {
  color: var(--primary-light);
}
.contact-info li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}
.contact-info i {
  color: var(--primary);
  margin-top: 4px;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  font-size: 0.82rem;
}
.footer-bottom-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.legal-links {
  display: flex;
  gap: 18px;
}
.legal-links a:hover {
  color: var(--text-white);
}

/* ==========================================================================
   Floating Widgets & Modal
   ========================================================================== */
.floating-actions {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 99;
}
.whatsapp-btn {
  width: 56px;
  height: 56px;
  background-color: #25d366;
  color: #fff;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
}

/* Modal */
.modal-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(15, 23, 42, 0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-card {
  position: relative;
  background-color: var(--bg-white);
  width: 90%;
  max-width: 480px;
  padding: 36px;
  border-radius: var(--border-radius-md);
  box-shadow: var(--shadow-lg);
  transform: translateY(20px);
  transition: var(--transition);
}
.modal-overlay.active .modal-card {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--text-muted);
  cursor: pointer;
}
.modal-header {
  margin-bottom: 20px;
}
.modal-header h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--secondary);
}
.modal-header p {
  font-size: 0.86rem;
  color: var(--text-muted);
}

/* Toast */
.toast {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%) translateY(100px);
  background-color: var(--secondary);
  color: var(--text-white);
  padding: 14px 24px;
  border-radius: var(--border-radius-full);
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 0.92rem;
  font-weight: 600;
  z-index: 2000;
  transition: transform 0.4s ease, opacity 0.4s ease;
  opacity: 0;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.toast i {
  color: #22c55e;
  font-size: 1.2rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .top-bar-right {
    display: none;
  }
  .hide-on-mobile {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
  .nav-menu {
    position: fixed;
    top: 76px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 76px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 30px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
  }
  .nav-menu.active {
    left: 0;
  }
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
  }
  .mobile-cta {
    display: block;
    width: 100%;
  }
  .mobile-cta .btn {
    width: 100%;
  }
  .hero-title {
    font-size: 2.1rem;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .estimator-result-card {
    flex-direction: column;
    align-items: flex-start;
  }
  .estimator-result-card .btn {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
  }
}