:root {
  --primary: #3498db;
  --accent: #f1c40f;
  --bg: #f9f9f9;
  --text: #212121;
  --dark: #1a1d23;
  --electric-blue: #2980b9;
  --cyan: #1abc9c;
  --white: #ffffff;
  --gray-100: #f7f7f7;
  --gray-200: #e5e5e5;
  --gray-800: #2c2f33;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif, sans-serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif, cursive;
  font-weight: 800;
}

h1 { font-size: 5rem; }
h2 { font-size: 3.5rem; }
h3 { font-size: 2.5rem; }
h4 { font-size: 2rem; }

.navbar {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  padding: 1rem 0;
  box-shadow: 0 4px 21px rgba(0,0,0,0.3);
}

.navbar-brand .logo-img {
  max-height: 48px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.navbar-brand .site-name {
  font-size: 1.5rem;
  color: var(--white);
}

.nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--electric-blue);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  pointer-events: none;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--white) !important;
  transform: translateY(-2px);
}

.dropdown-menu {
  background: var(--dark);
  border: none;
  box-shadow: 0 12px 29px rgba(0,0,0,0.3);
}

.dropdown-item {
  color: rgba(255,255,255,0.9);
  transition: all 0.3s ease;
}

.dropdown-item:hover {
  background: var(--electric-blue);
  color: var(--white);
}

.btn-primary {
  background: linear-gradient(135deg, var(--electric-blue) 0%, var(--cyan) 100%);
  border: none;
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 53px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(59,130,246,0.6);
}

.btn-outline-light {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 48px;
  transition: all 0.3s ease;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--dark);
  transform: translateY(-3px);
}

.btn-outline-primary {
  border: 2px solid var(--electric-blue);
  color: var(--electric-blue);
  padding: 0.75rem 2rem;
  font-weight: 700;
  border-radius: 49px;
  transition: all 0.3s ease;
}

.btn-outline-primary:hover {
  background: var(--electric-blue);
  color: var(--white);
  transform: translateY(-3px);
}

.hero-section {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 10%;
  margin-top: 75px;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(44,62,80,0.7) 100%);
  pointer-events: none;
}

.hero-section .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
  animation: fadeInUp 0.8s ease;
}

.hero-lead {
  color: rgba(255,255,255,0.95);
  font-size: 1.4rem;
  margin-bottom: 2rem;
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-cta {
  animation: fadeInUp 0.8s ease 0.4s backwards;
}

.hero-features ul {
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.hero-features li {
  color: var(--white);
  font-size: 1.1rem;
}

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

section {
  padding: 200px 0;
  position: relative;
}

section:nth-child(odd) {
  margin-top: -78px;
}

.section-header {
  margin-bottom: 81px;
}

.section-title {
  color: var(--dark);
  margin-bottom: 1rem;
  position: relative;
}

.section-subtitle {
  color: var(--gray-800);
  font-size: 1.2rem;
}

.feature-card, .service-card, .testimonial-card, .team-card, .stat-card, .pricing-card, .blog-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem;
  height: 100%;
  transition: all 0.4s ease;
  box-shadow: 29px 27px 61px #d1d1d1, -29px -30px 57px #ffffff;
  position: relative;
}

.feature-card::before, .service-card::before, .testimonial-card::before {
  content: '';
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  border-radius: 17px;
  opacity: 0;
  transition: all 0.4s ease;
  z-index: -1;
  pointer-events: none;
}

.feature-card:hover, .service-card:hover, .testimonial-card:hover, .team-card:hover {
  transform: translateY(-11px);
  box-shadow: 38px 40px 78px #c1c1c1, -42px -43px 77px #ffffff;
}

.feature-card:hover::before, .service-card:hover::before, .testimonial-card:hover::before {
  opacity: 1;
}

.feature-icon {
  width: 77px;
  height: 77px;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin-bottom: 1.5rem;
  box-shadow: 0 13px 32px rgba(59,130,246,0.3);
}

.feature-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.feature-description {
  color: var(--gray-800);
  margin: 0;
}

.service-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 14px 17px 0 0;
  margin: -2.5rem -2.5rem 1.5rem;
}

.service-content {
  position: relative;
}

.service-title {
  color: var(--dark);
  margin-bottom: 1rem;
}

.service-description {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.service-link {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.service-link:hover {
  color: var(--cyan);
  transform: translateX(5px);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
  line-height: 1;
}

.testimonial-text {
  color: var(--gray-800);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.testimonial-avatar {
  width: 57px;
  height: 63px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 5px 16px rgba(0,0,0,0.2);
}

.testimonial-name {
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}

.testimonial-role {
  color: var(--gray-800);
  margin: 0;
  font-size: 0.95rem;
}

.team-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 15px 19px 0 0;
  margin: -2.5rem -2.5rem 1.5rem;
}

.team-name {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
}

.team-role {
  color: var(--gray-800);
  margin-bottom: 1rem;
}

.team-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 41px;
  height: 37px;
  background: var(--electric-blue);
  color: var(--white);
  border-radius: 50%;
  margin-right: 0.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.team-social a:hover {
  background: var(--cyan);
  transform: translateY(-3px);
}

.stat-icon {
  font-size: 3rem;
  color: var(--electric-blue);
  margin-bottom: 1rem;
}

.stat-number {
  font-size: 3.5rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.stat-label {
  color: var(--gray-800);
  font-size: 1.1rem;
  margin: 0;
}

.integrations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 2rem;
}

.integration-item {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 17px 19px 41px #d1d1d1, -20px -23px 40px #ffffff;
  transition: all 0.3s ease;
}

.integration-item:hover {
  transform: translateY(-5px);
  box-shadow: 27px 25px 48px #c1c1c1, -24px -24px 51px #ffffff;
}

.integration-item i {
  font-size: 3rem;
  color: var(--electric-blue);
}

.pricing-card {
  text-align: center;
  position: relative;
  overflow: visible;
}

.pricing-card.featured {
  transform: scale(1.05);
  box-shadow: 41px 37px 83px #c1c1c1, -41px -41px 81px #ffffff;
}

.pricing-badge {
  position: absolute;
  top: -13px;
  right: 19px;
  background: linear-gradient(135deg, var(--accent), #ff6b6b);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 48px;
  font-weight: 700;
  box-shadow: 0 5px 12px rgba(231,76,60,0.4);
}

.pricing-plan {
  color: var(--dark);
  margin-bottom: 1rem;
}

.pricing-price {
  margin: 2rem 0;
}

.pricing-price .currency {
  font-size: 2rem;
  vertical-align: super;
}

.pricing-price .amount {
  font-size: 4rem;
  font-weight: 800;
  color: var(--electric-blue);
}

.pricing-price .period {
  font-size: 1.2rem;
  color: var(--gray-800);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  text-align: left;
}

.pricing-features li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--gray-200);
}

.pricing-features li i {
  margin-right: 0.75rem;
  color: var(--electric-blue);
}

.pricing-features li.disabled {
  color: var(--gray-800);
  opacity: 0.5;
}

.pricing-features li.disabled i {
  color: var(--gray-800);
}

.cta-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(59,130,246,0.1) 0%, transparent 70%);
  animation: pulse 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.1) rotate(180deg); }
}

.cta-title {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.accordion-item {
  background: var(--white);
  border: none;
  border-radius: 19px !important;
  margin-bottom: 1rem;
  box-shadow: 20px 22px 37px #d1d1d1, -23px -23px 39px #ffffff;
}

.accordion-button {
  background: var(--white);
  color: var(--dark);
  font-weight: 700;
  font-size: 1.2rem;
  border: none;
  border-radius: 13px !important;
  padding: 1.5rem;
}

.accordion-button:not(.collapsed) {
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  color: var(--white);
  box-shadow: none;
}

.accordion-button:focus {
  box-shadow: none;
  border: none;
}

.accordion-body {
  padding: 1.5rem;
  color: var(--gray-800);
}

.page-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 77px;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(44,62,80,0.65) 100%);
  pointer-events: none;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.page-hero-content .lead {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
}

.contact-form-wrapper {
  background: var(--white);
  border-radius: 17px;
  padding: 2.5rem;
  box-shadow: 28px 31px 60px #d1d1d1, -30px -30px 59px #ffffff;
}

.contact-form-wrapper h3 {
  color: var(--dark);
  margin-bottom: 1.5rem;
}

.form-label {
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}

.form-control {
  border: 2px solid var(--gray-200);
  border-radius: 11px;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus {
  border-color: var(--electric-blue);
  box-shadow: 0 0 0 0.2rem rgba(59,130,246,0.25);
}

.contact-info {
  position: relative;
}

.contact-item {
  display: flex;
  align-items: start;
  margin-bottom: 2rem;
}

.contact-icon {
  width: 52px;
  height: 48px;
  background: linear-gradient(135deg, var(--electric-blue), var(--cyan));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.3rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.contact-text h4 {
  color: var(--dark);
  margin-bottom: 0.5rem;
  font-size: 1.3rem;
}

.contact-text p {
  color: var(--gray-800);
  margin: 0;
}

.contact-text a {
  color: var(--electric-blue);
  text-decoration: none;
  transition: all 0.3s ease;
}

.contact-text a:hover {
  color: var(--cyan);
}

.blog-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 15px 18px 0 0;
  margin: -2.5rem -2.5rem 1.5rem;
  transition: all 0.3s ease;
}

.blog-image-link {
  display: block;
  overflow: hidden;
  border-radius: 13px 19px 0 0;
  margin: -2.5rem -2.5rem 1.5rem;
}

.blog-image-link:hover .blog-image {
  transform: scale(1.05);
}

.blog-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.blog-date, .blog-category {
  color: var(--gray-800);
}

.blog-category {
  background: var(--electric-blue);
  color: var(--white);
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  font-size: 0.85rem;
}

.blog-title a {
  color: var(--dark);
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-title a:hover {
  color: var(--electric-blue);
}

.blog-excerpt {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
}

.blog-link {
  color: var(--electric-blue);
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s ease;
}

.blog-link:hover {
  color: var(--cyan);
  transform: translateX(5px);
}

.article-header {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 79px;
}

.article-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.9) 0%, rgba(44,62,80,0.75) 100%);
  pointer-events: none;
}

.article-header-content {
  position: relative;
  z-index: 2;
}

.article-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.article-category {
  background: var(--electric-blue);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
}

.article-date {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
}

.article-header h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.article-lead {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
}

.article-body {
  padding: 102px 0;
}

.article-body h2 {
  color: var(--dark);
  margin: 3rem 0 1.5rem;
}

.article-body h3 {
  color: var(--dark);
  margin: 2rem 0 1rem;
}

.article-body p {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.article-body ul, .article-body ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.article-body li {
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.related-card {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 17px 18px 40px #d1d1d1, -20px -20px 43px #ffffff;
  transition: all 0.3s ease;
}

.related-card:hover {
  transform: translateY(-5px);
  box-shadow: 23px 24px 50px #c1c1c1, -26px -24px 52px #ffffff;
}

.related-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: all 0.3s ease;
}

.related-card:hover .related-image {
  transform: scale(1.05);
}

.related-card h3 {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem;
  background: linear-gradient(to top, rgba(15,23,42,0.95), transparent);
  color: var(--white);
  margin: 0;
  font-size: 1.5rem;
}

.related-card a {
  text-decoration: none;
}

.policy-page {
  padding: 150px 0 99px;
}

.policy-page h1 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.policy-date {
  color: var(--gray-800);
  font-style: italic;
  margin-bottom: 3rem;
}

.policy-page h2 {
  color: var(--dark);
  margin: 3rem 0 1.5rem;
}

.policy-page p {
  color: var(--gray-800);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.policy-page ul, .policy-page ol {
  margin-bottom: 1.5rem;
  padding-left: 2rem;
}

.policy-page li {
  color: var(--gray-800);
  margin-bottom: 0.75rem;
  line-height: 1.8;
}

.service-hero {
  min-height: 60vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 76px;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.85) 0%, rgba(44,62,80,0.65) 100%);
  pointer-events: none;
}

.service-hero-content {
  position: relative;
  z-index: 2;
}

.service-hero-content h1 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.service-hero-content .lead {
  color: rgba(255,255,255,0.95);
  font-size: 1.3rem;
  margin-bottom: 2rem;
}

.process-step {
  text-align: center;
  padding: 2rem;
}

.process-number {
  font-size: 4rem;
  font-weight: 800;
  color: var(--electric-blue);
  opacity: 0.3;
  margin-bottom: 1rem;
  font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, sans-serif, cursive;
}

.process-step h4 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.process-step p {
  color: var(--gray-800);
  margin: 0;
}

.mission-card, .value-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  height: 100%;
  box-shadow: 30px 31px 57px #d1d1d1, -33px -32px 57px #ffffff;
  transition: all 0.3s ease;
}

.mission-card:hover, .value-card:hover {
  transform: translateY(-5px);
  box-shadow: 33px 33px 70px #c1c1c1, -37px -35px 69px #ffffff;
}

.mission-icon, .value-icon {
  font-size: 3rem;
  color: var(--electric-blue);
  margin-bottom: 1.5rem;
}

.mission-card h3, .value-card h4 {
  color: var(--dark);
  margin-bottom: 1rem;
}

.mission-card p, .value-card p {
  color: var(--gray-800);
  margin: 0;
}

.case-study {
  padding: 99px 0;
}

.case-study-category {
  color: var(--electric-blue);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.stat-box {
  background: var(--gray-100);
  border-radius: 9px;
  padding: 1.5rem;
  text-align: center;
}

.stat-box h3 {
  color: var(--electric-blue);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-box p {
  color: var(--gray-800);
  margin: 0;
  font-size: 0.9rem;
}

.footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
  color: rgba(255,255,255,0.9);
  margin-top: -79px;
  position: relative;
  z-index: 1;
}

.footer-brand .logo-img {
  max-height: 38px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.3));
}

.footer-brand .site-name {
  font-size: 1.3rem;
  color: var(--white);
}

.footer-description {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 37px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--electric-blue);
  transform: translateY(-3px);
}

.footer-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

.footer-links {
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer-contact li {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0.75rem;
}

.footer-contact a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact a:hover {
  color: var(--white);
}

.copyright {
  color: rgba(255,255,255,0.7);
}

.footer hr {
  border-color: rgba(255,255,255,0.2);
}

@media (max-width: 991px) {
  h1 { font-size: 3.5rem; }
  h2 { font-size: 2.5rem; }
  h3 { font-size: 1.8rem; }

  section {
    padding: 103px 0;
  }

  section:nth-child(odd) {
    margin-top: 0;
  }

  .hero-section {
    min-height: 80vh;
    padding: 97px 0;
  }

  .navbar-brand .site-name {
    font-size: 1.2rem;
  }
}

@media (max-width: 767px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  h3 { font-size: 1.5rem; }

  body {
    font-size: 1rem;
  }

  section {
    padding: 58px 0;
  }

  .hero-section {
    min-height: 70vh;
  }

  .section-header {
    margin-bottom: 38px;
  }

  .pricing-card.featured {
    transform: none;
  }
}