/* =========================================
   Jarus & Co CPA - Main Stylesheet
   ========================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #666666;
  background: #ffffff;
}

a { color: #0178c1; text-decoration: none; }
a:hover { color: #015a94; text-decoration: underline; }

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

ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: #1a2332;
  font-weight: 700;
  line-height: 1.3;
}
h1 { font-size: 42px; }
h2 { font-size: 32px; }
h3 { font-size: 24px; }
h4 { font-size: 20px; }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 16px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn-primary {
  background: #0178c1;
  color: #ffffff;
  border-color: #0178c1;
}
.btn-primary:hover {
  background: #015a94;
  border-color: #015a94;
  color: #ffffff;
  text-decoration: none;
}

.btn-outline {
  background: transparent;
  color: #ffffff;
  border-color: #ffffff;
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-blue {
  background: transparent;
  color: #0178c1;
  border-color: #0178c1;
}
.btn-outline-blue:hover {
  background: #0178c1;
  color: #ffffff;
  text-decoration: none;
}

.btn-white {
  background: #ffffff;
  color: #0178c1;
  border-color: #ffffff;
}
.btn-white:hover {
  background: #f0f0f0;
  color: #015a94;
  text-decoration: none;
}

/* --- Header --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-top {
  background: #1a2332;
  padding: 8px 0;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-top-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-top-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.5px;
}
.header-phone a { color: #ffffff; }
.header-phone a:hover { color: #a8d8f0; text-decoration: none; }

.header-main {
  background: #ffffff;
  padding: 10px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: nowrap;
}
.site-logo { flex-shrink: 0; }
.site-nav { flex: 1; display: flex; justify-content: flex-end; }

.site-logo img {
  height: 55px;
  width: auto;
}

/* --- Navigation --- */
.site-nav {
  display: flex;
  align-items: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.nav-list > li {
  position: relative;
}

.nav-list > li > a {
  display: block;
  padding: 8px 12px;
  color: #1a2332;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}

.nav-list > li > a:hover,
.nav-list > li.active > a {
  background: #0178c1;
  color: #ffffff;
  text-decoration: none;
}

.nav-list .nav-highlight > a {
  background: #0178c1;
  color: #ffffff;
  border-radius: 3px;
}
.nav-list .nav-highlight > a:hover {
  background: #015a94;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  min-width: 220px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
  border-top: 3px solid #0178c1;
  z-index: 500;
  border-radius: 0 0 4px 4px;
}

.has-dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu li a {
  display: block;
  padding: 10px 16px;
  color: #333333;
  font-size: 14px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.15s, color 0.15s;
}

.dropdown-menu li:last-child a { border-bottom: none; }

.dropdown-menu li a:hover {
  background: #f5f6f7;
  color: #0178c1;
  text-decoration: none;
}

.nav-caret {
  font-size: 10px;
  margin-left: 4px;
  display: inline-block;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 540px;
  background-color: #1a2332;
  background-image: url('https://dta0yqvfnusiq.cloudfront.net/jaruscpa/2015/08/NEW_cta1.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 80px 20px;
}

.hero-eyebrow {
  display: block;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: #0178c1;
  margin-bottom: 16px;
  background: rgba(0,0,0,0.3);
  display: inline-block;
  padding: 6px 16px;
  border-radius: 3px;
}

.hero-title {
  font-size: 52px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.9);
  margin-bottom: 36px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.65;
}

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

/* --- Page Banner (interior pages) --- */
.page-banner {
  background: #1a2332;
  background-size: cover;
  background-position: center;
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(1, 120, 193, 0.82);
}

.page-banner .container {
  position: relative;
  z-index: 1;
}

.page-banner h1 {
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 10px;
}

.page-banner .breadcrumb {
  color: rgba(255,255,255,0.8);
  font-size: 14px;
}

.page-banner .breadcrumb a { color: rgba(255,255,255,0.9); }
.page-banner .breadcrumb a:hover { color: #ffffff; }

/* --- Sections --- */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #f5f6f7;
}

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

.section-header h2 {
  font-size: 34px;
  color: #1a2332;
  margin-bottom: 14px;
}

.section-header p {
  font-size: 17px;
  color: #666666;
  max-width: 640px;
  margin: 0 auto;
}

.section-divider {
  width: 60px;
  height: 4px;
  background: #0178c1;
  margin: 16px auto 0;
  border-radius: 2px;
}

/* --- Trust Bar --- */
.trust-bar {
  background: #ffffff;
  border-top: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  padding: 30px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #333333;
}

.trust-item img {
  height: 50px;
  width: auto;
}

.trust-item-text strong {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: #1a2332;
}

.trust-item-text span {
  font-size: 13px;
  color: #666;
}

.stars { color: #f5a623; font-size: 16px; }

/* --- Card Grid --- */
.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  justify-content: center;
}

.card-grid-3 .card { flex: 1 1 calc(33.333% - 20px); min-width: 260px; }
.card-grid-2 .card { flex: 1 1 calc(50% - 14px); min-width: 280px; }

.card {
  background: #ffffff;
  border-radius: 6px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid transparent;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  border-top-color: #0178c1;
}

.card-icon {
  font-size: 42px;
  margin-bottom: 18px;
  color: #0178c1;
}

.card h3 {
  font-size: 20px;
  color: #1a2332;
  margin-bottom: 12px;
}

.card p {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
}

.card a.card-link {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 700;
  color: #0178c1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.card a.card-link:hover { color: #015a94; }

/* --- CTA Section --- */
.cta-section {
  background: #0178c1;
  padding: 70px 20px;
  text-align: center;
}

.cta-section h2 {
  color: #ffffff;
  font-size: 34px;
  margin-bottom: 16px;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

/* --- About Section --- */
.about-section .about-inner {
  display: flex;
  gap: 60px;
  align-items: center;
}

.about-text { flex: 1; }
.about-image { flex: 0 0 420px; }
.about-image img {
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.about-text h2 { font-size: 32px; margin-bottom: 16px; }
.about-text .lead {
  font-size: 17px;
  color: #444;
  margin-bottom: 20px;
  font-weight: 600;
}
.about-text p { color: #666; margin-bottom: 16px; }

/* --- Profile Section --- */
.profile-section {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.profile-image {
  flex: 0 0 280px;
}
.profile-image img {
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  width: 100%;
}
.profile-content { flex: 1; }
.profile-content h1 { font-size: 36px; margin-bottom: 8px; }
.profile-content .title {
  font-size: 16px;
  color: #0178c1;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* --- Testimonials --- */
.testimonials-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.testimonial {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 6px;
  padding: 30px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  border-left: 4px solid #0178c1;
}

.testimonial p {
  font-style: italic;
  color: #555;
  margin-bottom: 16px;
  font-size: 15px;
}

.testimonial-author {
  font-weight: 700;
  color: #1a2332;
  font-size: 14px;
}

.testimonial-stars { color: #f5a623; margin-bottom: 12px; }

/* --- Services List (interior page) --- */
.services-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.service-item {
  display: flex;
  gap: 24px;
  padding: 28px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  border-left: 4px solid #0178c1;
}

.service-icon {
  font-size: 36px;
  flex-shrink: 0;
  color: #0178c1;
  padding-top: 4px;
}

.service-text h3 { font-size: 22px; margin-bottom: 10px; }
.service-text p { color: #666; }

/* --- FAQ --- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid #e0e0e0;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 22px 50px 22px 0;
  cursor: pointer;
  font-size: 17px;
  font-weight: 700;
  color: #1a2332;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: #0178c1;
  font-weight: 400;
  position: absolute;
  right: 0;
  transition: transform 0.2s;
}

.faq-question.active::after { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 0 22px 0;
  color: #666;
  font-size: 15px;
  line-height: 1.7;
}
.faq-answer.open { display: block; }
.faq-answer p { margin-bottom: 12px; }
.faq-answer ul {
  list-style: disc;
  margin: 12px 0 12px 24px;
}
.faq-answer ul li { margin-bottom: 6px; }

/* --- Contact Form --- */
.contact-grid {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.contact-form-col { flex: 1; }
.contact-info-col { flex: 0 0 320px; }

.contact-info-box {
  background: #f5f6f7;
  border-radius: 6px;
  padding: 36px;
  border-top: 4px solid #0178c1;
}

.contact-info-box h3 { margin-bottom: 20px; font-size: 22px; }

.contact-detail {
  display: flex;
  gap: 14px;
  margin-bottom: 20px;
  align-items: flex-start;
}

.contact-detail-icon {
  font-size: 22px;
  color: #0178c1;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-detail-text strong {
  display: block;
  color: #1a2332;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}

.contact-detail-text a { color: #0178c1; }
.contact-detail-text p { color: #666; font-size: 15px; margin: 0; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-weight: 700;
  font-size: 14px;
  color: #1a2332;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #d0d0d0;
  border-radius: 4px;
  font-size: 15px;
  color: #333;
  font-family: inherit;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #0178c1;
  box-shadow: 0 0 0 3px rgba(1,120,193,0.1);
}

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

.form-note {
  font-size: 13px;
  color: #888;
  font-style: italic;
  margin-top: 10px;
}

/* --- Packages/Pricing --- */
.pricing-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.pricing-card {
  flex: 1 1 280px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  border: 3px solid #0178c1;
  transform: scale(1.02);
}

.pricing-header {
  background: #1a2332;
  color: #ffffff;
  padding: 28px 24px;
  text-align: center;
}

.pricing-header.featured-header { background: #0178c1; }

.pricing-header h3 { color: #ffffff; font-size: 22px; margin-bottom: 4px; }
.pricing-subtitle { font-size: 13px; opacity: 0.8; }

.pricing-body {
  padding: 28px 24px;
  flex: 1;
}

.pricing-body ul { list-style: none; }
.pricing-body ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
  font-size: 15px;
  color: #666;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.pricing-body ul li::before {
  content: '✓';
  color: #0178c1;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-footer {
  padding: 20px 24px;
  text-align: center;
  border-top: 1px solid #f0f0f0;
}

/* --- Two-column content --- */
.two-col {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}

.two-col > * { flex: 1; }

.content-image {
  border-radius: 6px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  width: 100%;
}

/* --- Blog --- */
.blog-grid {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.blog-card {
  flex: 1 1 calc(33.333% - 20px);
  min-width: 260px;
  background: #ffffff;
  border-radius: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.blog-card-img { width: 100%; height: 200px; object-fit: cover; }

.blog-card-body { padding: 24px; flex: 1; }
.blog-card-body h3 { font-size: 18px; margin-bottom: 10px; }
.blog-card-meta { font-size: 13px; color: #999; margin-bottom: 10px; }
.blog-card-body p { font-size: 14px; color: #666; }

/* --- Text content styles --- */
.text-content h2 { font-size: 28px; margin: 36px 0 16px; color: #1a2332; }
.text-content h2:first-child { margin-top: 0; }
.text-content h3 { font-size: 22px; margin: 28px 0 12px; color: #1a2332; }
.text-content p { margin-bottom: 16px; color: #555; line-height: 1.75; }
.text-content ul, .text-content ol {
  margin: 0 0 16px 28px;
}
.text-content ul { list-style: disc; }
.text-content ol { list-style: decimal; }
.text-content li { margin-bottom: 8px; color: #555; }
.text-content strong { color: #333; }
.text-content a { color: #0178c1; }
.text-content a:hover { color: #015a94; }

/* --- Map container --- */
.map-container {
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
  margin-top: 30px;
}

/* --- Footer --- */
.site-footer {
  background: #1a2332;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.footer-col { flex: 1; min-width: 220px; }

.footer-logo {
  margin-bottom: 16px;
  filter: brightness(0) invert(1);
  opacity: 0.85;
  max-height: 45px;
  width: auto;
}

.footer-tagline {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-col h4 {
  color: #ffffff;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  padding-bottom: 8px;
  border-bottom: 2px solid #0178c1;
  display: inline-block;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul li a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}
.footer-col ul li a:hover {
  color: #0178c1;
  text-decoration: none;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}

.footer-contact-icon { font-size: 16px; color: #0178c1; flex-shrink: 0; margin-top: 2px; }

.footer-contact-item a { color: rgba(255,255,255,0.8); font-size: 14px; }
.footer-contact-item a:hover { color: #0178c1; }
.footer-contact-item p { font-size: 14px; color: rgba(255,255,255,0.7); margin: 0; }

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}
.footer-social a:hover {
  background: #0178c1;
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copyright {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
}
.footer-legal a:hover {
  color: rgba(255,255,255,0.85);
  text-decoration: none;
}

/* --- Login Page --- */
.login-box {
  max-width: 440px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
  padding: 48px 40px;
}

.login-box h2 { text-align: center; margin-bottom: 8px; }
.login-box .login-sub { text-align: center; color: #888; margin-bottom: 30px; font-size: 14px; }

.login-or {
  text-align: center;
  margin: 20px 0;
  color: #999;
  font-size: 14px;
  position: relative;
}
.login-or::before, .login-or::after {
  content: '';
  position: absolute;
  top: 50%;
  width: calc(50% - 30px);
  height: 1px;
  background: #e0e0e0;
}
.login-or::before { left: 0; }
.login-or::after { right: 0; }

.btn-portal {
  display: block;
  width: 100%;
  padding: 14px;
  text-align: center;
  border-radius: 4px;
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 12px;
  border: 2px solid transparent;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-portal-qbo { background: #2ca01c; color: #fff; }
.btn-portal-qbo:hover { background: #238b15; color: #fff; text-decoration: none; }
.btn-portal-cs { background: #0078d4; color: #fff; }
.btn-portal-cs:hover { background: #006abd; color: #fff; text-decoration: none; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-white { color: #ffffff; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }

.badge {
  display: inline-block;
  padding: 4px 10px;
  background: #0178c1;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 3px;
}

.highlight-box {
  background: #f0f8ff;
  border-left: 4px solid #0178c1;
  padding: 20px 24px;
  border-radius: 0 6px 6px 0;
  margin: 24px 0;
}

.highlight-box p { color: #555; margin: 0; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .nav-list > li > a { padding: 8px 8px; font-size: 13px; }
  .hero-title { font-size: 42px; }
}

@media (max-width: 768px) {
  h1 { font-size: 30px; }
  h2 { font-size: 26px; }
  h3 { font-size: 20px; }

  .hero { min-height: 400px; }
  .hero-title { font-size: 32px; }
  .hero-subtitle { font-size: 15px; }
  .hero-buttons { flex-direction: column; align-items: center; }

  .header-main .container { flex-direction: column; gap: 10px; }
  .nav-list { flex-wrap: wrap; justify-content: center; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; background: #f5f6f7; }
  .has-dropdown:hover .dropdown-menu { display: block; }

  .about-section .about-inner { flex-direction: column; }
  .about-image { flex: none; width: 100%; }

  .profile-section { flex-direction: column; }
  .profile-image { flex: none; width: 200px; }

  .two-col { flex-direction: column; }
  .contact-grid { flex-direction: column; }
  .contact-info-col { flex: none; width: 100%; }

  .card-grid-3 .card { flex: 1 1 calc(50% - 14px); }

  .trust-bar .container { gap: 24px; }

  .footer-grid { flex-direction: column; gap: 36px; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
  .footer-legal { justify-content: center; }

  .section { padding: 50px 0; }
  .page-banner { padding: 40px 20px; }
  .page-banner h1 { font-size: 28px; }

  .pricing-card.featured { transform: scale(1); }

  .header-top { display: none; }
}

@media (max-width: 480px) {
  .card-grid-3 .card { flex: 1 1 100%; }
  .blog-card { flex: 1 1 100%; }
  .hero-title { font-size: 26px; }
  .cta-section h2 { font-size: 26px; }
}
