/* ===== NAVBAR ===== */
.navbar {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 68px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: white;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 600;
}

.nav-logo span { color: rgba(255,255,255,0.85); }
.nav-logo strong { color: var(--accent-light); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: white;
  background: rgba(255,255,255,0.1);
}

.nav-cta {
  background: var(--accent) !important;
  color: white !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 8px !important;
}

.nav-cta:hover {
  background: var(--accent-light) !important;
  color: var(--primary) !important;
}

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--primary);
  padding: 10px 20px 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  padding: 12px 0;
  font-size: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }
  .nav-container { padding: 0 20px; }
}

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4d7b 50%, #2563a8 100%);
  padding: 70px 60px;
  color: white;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 350px; height: 350px;
  background: rgba(255,255,255,0.04);
  border-radius: 50%;
}

.page-hero-content { max-width: 700px; position: relative; z-index: 1; }

.page-hero h1 {
  font-size: 2.4rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 16px;
}

.page-hero h1 span { color: var(--accent-light); }

.page-hero p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  max-width: 580px;
}

@media (max-width: 768px) {
  .page-hero { padding: 50px 24px; }
  .page-hero h1 { font-size: 1.8rem; }
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: white;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 14px rgba(232,160,32,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,160,32,0.45);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: white;
  font-weight: 700;
  padding: 13px 28px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.95rem;
  border: 2px solid rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.2s;
}

.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: white;
}

.btn-full { width: 100%; justify-content: center; }
.btn-large { padding: 16px 36px; font-size: 1.05rem; }

/* ===== FORMS ===== */
.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(37,99,168,0.12);
  background: white;
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.checkbox-group { margin-bottom: 14px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  accent-color: var(--primary);
}

.checkbox-label a { color: var(--primary-light); }

.form-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 12px;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  font-size: 3rem;
  margin-bottom: 16px;
}

.form-success h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.form-success p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-success a { color: var(--primary-light); }

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ===== CONTACT PAGE ===== */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 60px 40px;
}

.contact-form-card {
  background: var(--card-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  padding: 40px;
  box-shadow: var(--shadow);
}

.contact-form-card h2 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.contact-form-card > p {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-info-sidebar { display: flex; flex-direction: column; gap: 20px; }

.contact-info-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.contact-info-card.highlight-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-color: transparent;
}

.contact-info-card.highlight-card h4 { color: var(--accent-light); }
.contact-info-card.highlight-card p { color: rgba(255,255,255,0.85); }

.contact-info-icon {
  font-size: 2rem;
  margin-bottom: 10px;
}

.contact-info-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.contact-info-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.response-time {
  display: inline-block;
  margin-top: 8px;
  font-size: 0.78rem;
  color: var(--success);
  font-weight: 600;
  background: #dcfce7;
  padding: 3px 10px;
  border-radius: 50px;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.social-link {
  display: block;
  color: var(--primary-light);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 12px;
  background: var(--bg);
  border-radius: 8px;
  transition: background 0.2s;
}

.social-link:hover { background: var(--border); }

@media (max-width: 900px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
    padding: 30px 20px;
  }
}

/* ===== FAQ ===== */
.faq-section {
  background: var(--bg);
  padding: 60px 40px;
}

.faq-container {
  max-width: 1100px;
  margin: 0 auto;
}

.faq-section h2 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 36px;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.faq-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  box-shadow: var(--shadow);
}

.faq-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.faq-item p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.65;
}

@media (max-width: 768px) {
  .faq-grid { grid-template-columns: 1fr; }
  .faq-section { padding: 40px 20px; }
}

/* ===== LEAD CAPTURE HERO ===== */
.lead-hero {
  background: linear-gradient(135deg, var(--primary) 0%, #1e4d7b 50%, #2563a8 100%);
  padding: 80px 60px;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.lead-hero::before {
  content: '';
  position: absolute;
  top: -100px; right: 350px;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}

.lead-hero-content { color: white; position: relative; z-index: 1; }

.lead-hero-content h1 {
  font-size: 2.6rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}

.lead-hero-content h1 span { color: var(--accent-light); }

.lead-hero-content p {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 520px;
}

.lead-hero-stats {
  display: flex;
  gap: 30px;
}

.lead-stat { text-align: left; }
.lead-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent-light);
}
.lead-stat span {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

.lead-hero-form { position: relative; z-index: 1; }

.lead-form-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}

.lead-form-header {
  background: linear-gradient(135deg, var(--accent), #d97706);
  padding: 20px 28px;
  color: white;
}

.lead-form-header h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.lead-form-header p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.85);
}

.lead-form-card form {
  padding: 24px 28px;
}

.lead-form-card .form-group { margin-bottom: 16px; }
.lead-form-card .form-group label { font-size: 0.82rem; margin-bottom: 5px; }
.lead-form-card .form-group input,
.lead-form-card .form-group select {
  padding: 10px 14px;
  font-size: 0.9rem;
}

@media (max-width: 960px) {
  .lead-hero {
    grid-template-columns: 1fr;
    padding: 50px 24px;
    gap: 40px;
  }
  .lead-hero-content h1 { font-size: 2rem; }
  .lead-hero-stats { gap: 20px; }
}

/* ===== WHAT YOU GET ===== */
.what-you-get {
  padding: 80px 60px;
  background: var(--bg);
}

.wyg-container { max-width: 1100px; margin: 0 auto; }

.wyg-header {
  text-align: center;
  margin-bottom: 50px;
}

.wyg-header h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.wyg-header h2 span { color: var(--accent); }

.wyg-header p { color: var(--text-muted); font-size: 1rem; }

.wyg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.wyg-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}

.wyg-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.wyg-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.wyg-item h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.wyg-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.wyg-tag {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
}

@media (max-width: 900px) {
  .wyg-grid { grid-template-columns: 1fr 1fr; }
  .what-you-get { padding: 50px 24px; }
}

@media (max-width: 600px) {
  .wyg-grid { grid-template-columns: 1fr; }
}

/* ===== DEPRECIATION CALCULATOR ===== */
.calculator-section {
  padding: 80px 60px;
  background: linear-gradient(135deg, #f0f7ff, #e8f0fe);
}

.calc-section-container {
  max-width: 1000px;
  margin: 0 auto;
}

.calc-intro {
  text-align: center;
  margin-bottom: 40px;
}

.calc-intro h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.calc-intro h2 span { color: var(--accent); }
.calc-intro p { color: var(--text-muted); font-size: 1rem; max-width: 560px; margin: 0 auto; }

.interactive-calc {
  background: var(--card-bg);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(26,60,94,0.15);
  border: 1px solid var(--border);
}

.ic-header {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  padding: 22px 32px;
}

.ic-header h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }
.ic-header p { font-size: 0.83rem; color: rgba(255,255,255,0.7); }

.ic-body { padding: 32px; }

.ic-inputs { margin-bottom: 32px; }

.ic-input-group {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ic-input-group label {
  min-width: 200px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

.ic-input-group input[type="range"] {
  flex: 1;
  min-width: 200px;
  accent-color: var(--primary);
  height: 6px;
  border: none;
  background: transparent;
  padding: 0;
}

.ic-input-group select {
  flex: 1;
  min-width: 200px;
  padding: 10px 14px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  background: var(--bg);
  color: var(--text);
  outline: none;
}

.ic-value {
  min-width: 100px;
  text-align: right;
  font-weight: 700;
  color: var(--primary);
  font-size: 1rem;
}

.ic-results {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 20px;
}

.ic-result-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 16px;
  text-align: center;
}

.ic-result-item.highlight-result {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  border-color: #93c5fd;
}

.ic-result-item.highlight-result-gold {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  border-color: #fcd34d;
}

.ic-result-value {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 6px;
}

.highlight-result-gold .ic-result-value { color: #92400e; }

.ic-result-label {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 600;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ic-disclaimer {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  font-style: italic;
  padding: 12px;
  background: #fffbeb;
  border-radius: var(--radius-sm);
  border: 1px solid #fde68a;
}

@media (max-width: 900px) {
  .ic-results { grid-template-columns: 1fr 1fr; }
  .calculator-section { padding: 50px 24px; }
}

@media (max-width: 500px) {
  .ic-results { grid-template-columns: 1fr; }
  .ic-input-group { flex-direction: column; align-items: flex-start; }
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  padding: 80px 60px;
  background: var(--bg);
}

.testimonials-container {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-section h2 {
  font-size: 1.9rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 20px;
  font-size: 4rem;
  color: var(--border);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-stars {
  color: var(--accent);
  font-size: 1rem;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
  font-weight: 700;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-section { padding: 50px 24px; }
}

/* ===== FINAL CTA ===== */
.final-cta {
  background: linear-gradient(135deg, var(--primary), #2563a8);
  padding: 80px 60px;
  text-align: center;
  color: white;
}

.final-cta-content { max-width: 600px; margin: 0 auto; }

.final-cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.final-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 600px) {
  .final-cta { padding: 50px 24px; }
  .final-cta h2 { font-size: 1.6rem; }
}

/* ===== SITE FOOTER ===== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.65);
  padding: 60px 60px 0;
}

.footer-container {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-light);
  margin-bottom: 12px;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-links h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-links ul { list-style: none; }
.footer-links ul li { padding: 4px 0; }
.footer-links ul li a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links ul li a:hover { color: var(--accent-light); }

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  max-width: 1200px;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
  .site-footer { padding: 40px 24px 0; }
}

@media (max-width: 500px) {
  .footer-container { grid-template-columns: 1fr; }
}

/* ===== ABOUT PAGE ===== */
.about-mission {
  padding: 80px 60px;
  background: white;
}

.about-container {
  max-width: 1100px;
  margin: 0 auto;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: start;
}

.mission-text h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.mission-text h2 span { color: var(--accent); }

.mission-text p {
  color: var(--text-muted);
  font-size: 0.97rem;
  line-height: 1.8;
  margin-bottom: 16px;
}

.mission-values {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.value-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f0f7ff;
  border: 1px solid #bfdbfe;
  color: var(--primary);
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 50px;
}

.mission-stat-card {
  background: linear-gradient(135deg, var(--primary), #2563a8);
  border-radius: var(--radius);
  padding: 36px;
  color: white;
}

.msc-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.msc-item:last-child { border-bottom: none; }

.msc-value {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1;
  margin-bottom: 4px;
}

.msc-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}

@media (max-width: 900px) {
  .mission-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-mission { padding: 50px 24px; }
}

/* ===== WHY SECTION ===== */
.why-section {
  padding: 70px 60px;
  background: var(--bg);
}

.why-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 40px;
}

.why-section h2 span { color: var(--accent); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  text-align: center;
}

.why-icon {
  font-size: 2.5rem;
  margin-bottom: 14px;
}

.why-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-section { padding: 50px 24px; }
}

/* ===== TEAM ===== */
.team-section {
  padding: 80px 60px;
  background: white;
}

.team-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 10px;
}

.team-section h2 span { color: var(--accent); }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.team-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: box-shadow 0.25s, transform 0.25s;
}

.team-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.team-avatar {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  margin: 0 auto 14px;
}

.team-card h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.team-title {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 12px;
}

.team-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 14px;
}

.team-credentials { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; }

.cred-badge {
  display: inline-block;
  background: #dbeafe;
  color: var(--primary);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 50px;
}

@media (max-width: 900px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-section { padding: 50px 24px; }
}

@media (max-width: 500px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* ===== PARTNERS ===== */
.partners-section {
  padding: 70px 60px;
  background: var(--bg);
}

.partners-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 36px;
}

.partners-section h2 span { color: var(--accent); }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.partner-item {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow);
}

.partner-icon { font-size: 1.6rem; }

.partner-name {
  font-size: 0.87rem;
  font-weight: 600;
  color: var(--text);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partners-section { padding: 50px 24px; }
}

/* ===== SERVICES PAGE ===== */
.services-intro {
  background: white;
  padding: 40px 60px;
  border-bottom: 1px solid var(--border);
}

.services-container {
  max-width: 1100px;
  margin: 0 auto;
}

.services-intro-grid {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.si-stat {
  text-align: center;
  padding: 16px 36px;
  border-right: 1px solid var(--border);
}

.si-stat:last-child { border-right: none; }

.si-value { font-size: 2rem; margin-bottom: 6px; }
.si-label { font-size: 0.8rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

.main-services {
  padding: 70px 60px;
  background: var(--bg);
}

.service-card-full {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 36px;
  align-items: start;
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  transition: box-shadow 0.25s;
}

.service-card-full:hover { box-shadow: var(--shadow-hover); }

.service-card-full.reverse {
  grid-template-columns: 1fr 100px;
}

.service-card-full.reverse .scf-icon {
  order: 2;
}

.scf-icon {
  width: 80px; height: 80px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  flex-shrink: 0;
}

.scf-badge {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-light);
  margin-bottom: 6px;
}

.scf-content h2 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.scf-content > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 20px;
}

.scf-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 24px;
}

.scf-feature {
  font-size: 0.88rem;
  color: var(--text);
  padding: 6px 0;
}

.scf-pricing {
  display: flex;
  align-items: center;
  gap: 20px;
}

.price-from {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.price-from strong {
  font-size: 1.3rem;
  color: var(--primary);
  font-weight: 800;
}

@media (max-width: 768px) {
  .service-card-full,
  .service-card-full.reverse {
    grid-template-columns: 1fr;
  }
  .service-card-full.reverse .scf-icon { order: 0; }
  .scf-features { grid-template-columns: 1fr; }
  .main-services { padding: 40px 24px; }
  .services-intro { padding: 30px 24px; }
}

/* ===== PACKAGES ===== */
.packages-section {
  padding: 80px 60px;
  background: white;
}

.packages-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 8px;
}

.packages-section h2 span { color: var(--accent); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.package-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  position: relative;
  transition: box-shadow 0.25s, transform 0.25s;
}

.package-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
}

.package-card.featured {
  border-color: var(--accent);
  transform: scale(1.04);
  box-shadow: 0 12px 40px rgba(232,160,32,0.2);
}

.package-card.featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.package-popular {
  background: var(--accent);
  color: white;
  text-align: center;
  padding: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.package-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
}

.package-name {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.package-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.package-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.package-features {
  list-style: none;
  padding: 20px 28px;
}

.package-features li {
  font-size: 0.88rem;
  color: var(--text);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}

.package-features li:last-child { border-bottom: none; }

.package-card .btn-primary,
.package-card .btn-outline {
  margin: 8px 28px 28px;
  width: calc(100% - 56px);
  justify-content: center;
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
  box-shadow: none;
}

.package-card .btn-primary {
  background: linear-gradient(135deg, var(--accent), #d97706);
  color: white;
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(232,160,32,0.35);
}

@media (max-width: 900px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
  .packages-section { padding: 50px 24px; }
}

/* ===== POPUP MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.3s ease;
}

.modal-overlay.hidden { display: none; }

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.modal-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  max-width: 520px;
  width: 100%;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  animation: slideUp 0.35s ease;
  position: relative;
}

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

.modal-close {
  position: absolute;
  top: 14px; right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 1.3rem;
  cursor: pointer;
  width: 32px; height: 32px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
  z-index: 10;
}

.modal-close:hover { background: rgba(255,255,255,0.3); }

.modal-header {
  background: linear-gradient(135deg, var(--primary), #2563a8);
  color: white;
  padding: 28px 32px 24px;
  text-align: center;
  position: relative;
}

.modal-header .modal-icon { font-size: 2.5rem; margin-bottom: 10px; }

.modal-header h3 {
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 6px;
}

.modal-header p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
}

.modal-body { padding: 28px 32px; }

.modal-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.modal-benefit {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 500;
}

.modal-benefit::before {
  content: '✅';
  font-size: 0.8rem;
  flex-shrink: 0;
}

.modal-form .form-group { margin-bottom: 14px; }

.modal-footer {
  text-align: center;
  margin-top: 14px;
}

.modal-footer button {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 0.82rem;
  cursor: pointer;
  text-decoration: underline;
}

/* ===== INDEX PAGE NAVBAR ADDITION ===== */
.index-navbar-spacer { height: 68px; }
</style>