* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #2563eb;
  --secondary: #10b981;
  --accent: #f59e0b;
  --dark: #1e293b;
  --gray: #64748b;
  --light: #f1f5f9;
  --white: #fff;
}
body {
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
h1 {
  font-size: 2.5rem;
}
h2 {
  font-size: 2rem;
}
h3 {
  font-size: 1.4rem;
}
h4 {
  font-size: 1.1rem;
}
p {
  margin-bottom: 1rem;
}
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.header {
  background: var(--white);
  padding: 15px 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  position: relative;
  z-index: 1000;
}
.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
}
.nav {
  display: flex;
  gap: 25px;
}
.nav a {
  color: var(--dark);
  font-size: 14px;
  font-weight: 500;
}
.nav a:hover {
  color: var(--primary);
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: 0 0;
  border: none;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  transition: all 0.3s ease;
}
.mega-hero {
  background: linear-gradient(
    135deg,
    #1e3a8a 0%,
    var(--primary) 50%,
    var(--secondary) 100%
  );
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
}
.hero-bg-shapes {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  opacity: 0.08;
}
.shape {
  position: absolute;
  border-radius: 50%;
  animation: float 20s infinite ease-in-out;
}
.shape-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  animation-delay: 0s;
}
.shape-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--secondary) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  animation-delay: 7s;
}
.shape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
  top: 30%;
  left: 60%;
  animation-delay: 14s;
}
@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-20px, 20px) scale(0.9);
  }
}
.mega-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-content-left {
  color: var(--white);
}
.hero-badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.hero-content-left h1 {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}
.hero-content-left p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.95;
  line-height: 1.7;
}
.hero-cta-group {
  display: flex;
  gap: 15px;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 12px;
  opacity: 0.9;
}
.hero-visual {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.btn-primary,
.btn-secondary,
.btn-outline {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--white);
  color: var(--primary);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.btn-secondary {
  background: var(--primary);
  color: var(--white);
}
.btn-secondary:hover {
  background: var(--dark);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-primary-large {
  display: inline-block;
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  background: var(--primary);
  color: var(--white);
  transition: all 0.3s ease;
}
.btn-primary-large:hover {
  background: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}
.section-header-center {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
}
.section-tag {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.section-header-center h2 {
  margin-bottom: 1rem;
}
.section-header-center p {
  color: var(--gray);
  font-size: 1.05rem;
}
.expertise-showcase {
  padding: 70px 0;
  background: var(--white);
}
.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.expertise-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.expertise-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.expertise-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.expertise-icon i {
  font-size: 1.8rem;
  color: var(--white);
}
.expertise-card h3 {
  margin-bottom: 0.8rem;
}
.expertise-card p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}
.methodology-section {
  padding: 70px 0;
  background: var(--light);
}
.methodology-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.methodology-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.methodology-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.methodology-content .section-tag {
  background: var(--white);
}
.methodology-content h2 {
  margin-bottom: 1.5rem;
}
.methodology-content > p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.methodology-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 2rem;
}
.method-point {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.point-icon {
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.point-icon i {
  font-size: 1.3rem;
  color: var(--primary);
}
.point-text h4 {
  margin-bottom: 0.5rem;
}
.point-text p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.results-showcase {
  padding: 70px 0;
  background: var(--white);
}
.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.result-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  transition: all 0.3s ease;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.result-card:hover {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  transform: translateY(-5px);
}
.result-metric {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.result-card p {
  font-size: 14px;
  margin: 0;
  line-height: 1.6;
}
.result-card:hover p {
  color: var(--white);
}
.testimonials-section {
  padding: 70px 0;
  background: var(--light);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.testimonial-card {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}
.testimonial-stars {
  margin-bottom: 1rem;
}
.testimonial-stars i {
  color: #fbbf24;
  font-size: 16px;
}
.testimonial-card p {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.testimonial-author strong {
  display: block;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.testimonial-author span {
  font-size: 13px;
  color: var(--gray);
}
.industries-section {
  padding: 70px 0;
  background: var(--white);
}
.industries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: center;
}
.industry-tag {
  background: var(--light);
  padding: 12px 25px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}
.industry-tag:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.final-cta {
  padding: 70px 0;
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: var(--white);
}
.final-cta-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
}
.cta-left h2 {
  margin-bottom: 1rem;
}
.cta-left p {
  opacity: 0.9;
  font-size: 1.05rem;
  margin: 0;
}
.cta-right {
  text-align: right;
}
.cta-note {
  font-size: 13px;
  opacity: 0.8;
  margin-top: 1rem;
}
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 25px 0;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
.footer-info p {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
}
.footer-links {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-links a {
  font-size: 13px;
  opacity: 0.8;
}
.footer-links a:hover {
  opacity: 1;
  color: var(--primary);
}
.privacy-popup {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.privacy-popup.show {
  transform: translateY(0);
}
.popup-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.popup-content p {
  font-size: 13px;
  margin: 0;
  flex: 1;
}
.popup-actions {
  display: flex;
  gap: 15px;
  align-items: center;
}
.popup-link {
  font-size: 13px;
  text-decoration: underline;
}
.popup-accept {
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 8px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
}
.popup-accept:hover {
  background: #4f46e5;
}
.page-hero-alt {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 70px 0;
  color: var(--white);
}
.hero-alt-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.hero-tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.hero-alt-content h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.hero-alt-content p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
}
.services-detailed {
  padding: 70px 0;
}
.services-detailed-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
.service-detailed-card {
  background: var(--light);
  padding: 35px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.service-detailed-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.service-icon-large {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}
.service-icon-large i {
  font-size: 2rem;
  color: var(--white);
}
.service-detailed-card h3 {
  margin-bottom: 1rem;
}
.service-detailed-card > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.service-features {
  list-style: none;
  padding: 0;
}
.service-features li {
  font-size: 13px;
  color: var(--gray);
  padding: 6px 0;
  padding-left: 20px;
  position: relative;
}
.service-features li:before {
  content: '•';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}
.pricing-showcase {
  padding: 70px 0;
  background: var(--light);
}
.pricing-showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.pricing-showcase-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  position: relative;
}
.pricing-showcase-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.featured-pricing {
  border: 3px solid var(--primary);
}
.featured-badge {
  position: absolute;
  top: 20px;
  right: -30px;
  background: var(--primary);
  color: var(--white);
  padding: 5px 40px;
  font-size: 12px;
  font-weight: 600;
  transform: rotate(45deg);
}
.pricing-header {
  padding: 35px;
  text-align: center;
  background: var(--light);
}
.pricing-header h3 {
  margin-bottom: 1rem;
}
.pricing-amount {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}
.pricing-period {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
}
.pricing-body {
  padding: 35px;
}
.pricing-list {
  list-style: none;
  margin-bottom: 2rem;
}
.pricing-list li {
  padding: 10px 0;
  font-size: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-list i {
  color: var(--secondary);
  font-size: 16px;
}
.process-visual {
  padding: 70px 0;
}
.process-timeline {
  max-width: 900px;
  margin: 0 auto;
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 25px;
  margin-bottom: 40px;
}
.timeline-marker {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.timeline-content h4 {
  margin-bottom: 0.8rem;
}
.timeline-content p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
  line-height: 1.7;
}
.guides-featured {
  padding: 70px 0;
  background: var(--light);
}
.featured-guide-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.featured-guide-image {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.featured-guide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.guide-category {
  display: inline-block;
  background: var(--white);
  color: var(--primary);
  padding: 6px 18px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.featured-guide-content h2 {
  margin-bottom: 1.5rem;
}
.featured-guide-content > p {
  color: var(--gray);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.guide-highlights {
  display: flex;
  gap: 25px;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.highlight-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray);
}
.highlight-item i {
  color: var(--primary);
}
.guides-collection {
  padding: 70px 0;
}
.guides-collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.guide-collection-card {
  background: var(--light);
  padding: 30px;
  border-radius: 12px;
  transition: all 0.3s ease;
}
.guide-collection-card:hover {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}
.guide-card-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.guide-card-icon i {
  font-size: 1.8rem;
  color: var(--white);
}
.guide-collection-card h3 {
  margin-bottom: 1rem;
}
.guide-collection-card > p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.guide-card-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 1rem;
}
.guide-card-meta span {
  font-size: 13px;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 5px;
}
.guide-card-link {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.guide-card-link:hover {
  color: var(--dark);
}
.guide-card-link i {
  font-size: 12px;
}
.topics-browse {
  padding: 70px 0;
  background: var(--light);
}
.topics-browse-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.topic-browse-card {
  background: var(--white);
  padding: 25px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.topic-browse-card:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}
.topic-browse-card i {
  font-size: 1.5rem;
}
.contact-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 70px 0;
  color: var(--white);
  text-align: center;
}
.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.contact-hero p {
  font-size: 1.1rem;
  opacity: 0.95;
  margin: 0;
}
.contact-main {
  padding: 70px 0;
}
.contact-wrapper {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 50px;
}
.contact-form-section h2 {
  margin-bottom: 2rem;
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 14px;
}
.form-group input,
.form-group textarea {
  padding: 14px;
  border: 2px solid var(--light);
  border-radius: 8px;
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  transition: all 0.3s ease;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: 0;
  border-color: var(--primary);
}
.checkbox-group {
  flex-direction: row;
  align-items: center;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-weight: 400;
}
.checkbox-label input[type='checkbox'] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact-info-section h2 {
  margin-bottom: 2rem;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 25px;
  margin-bottom: 2rem;
}
.contact-item {
  display: flex;
  gap: 15px;
  align-items: flex-start;
}
.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 5px;
}
.contact-item h4 {
  margin-bottom: 0.3rem;
}
.contact-item p {
  font-size: 14px;
  color: var(--gray);
  margin: 0;
}
.business-hours {
  background: var(--light);
  padding: 25px;
  border-radius: 12px;
}
.business-hours h4 {
  margin-bottom: 1rem;
}
.business-hours p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 0.5rem;
}
.map-section {
  padding: 70px 0;
  background: var(--light);
}
.map-section h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.map-container {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.thankyou-section,
.error-section {
  padding: 100px 0;
  text-align: center;
  min-height: calc(100vh - 40px);
  display: flex;
  align-items: center;
}
.thankyou-content,
.error-content {
  max-width: 700px;
  margin: 0 auto;
}
.thankyou-icon {
  margin-bottom: 2rem;
}
.thankyou-icon i {
  font-size: 5rem;
  color: var(--primary);
}
.thankyou-content h1 {
  margin-bottom: 1.5rem;
}
.thankyou-content p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.thankyou-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.error-code {
  font-size: 8rem;
  font-weight: 700;
  color: var(--primary);
  opacity: 0.3;
  line-height: 1;
  margin-bottom: 1rem;
}
.error-content h1 {
  margin-bottom: 1.5rem;
}
.error-content p {
  color: var(--gray);
  margin-bottom: 2rem;
  font-size: 1.1rem;
}
.error-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}
.policy-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  padding: 70px 0;
  color: var(--white);
  text-align: center;
}
.policy-hero h1 {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}
.policy-hero p {
  font-size: 14px;
  opacity: 0.9;
  margin: 0;
}
.policy-content {
  padding: 70px 0;
}
.policy-text {
  max-width: 900px;
  margin: 0 auto;
}
.policy-text h2 {
  margin-top: 2.5rem;
  margin-bottom: 1.2rem;
}
.policy-text h3 {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.policy-text p {
  color: var(--gray);
  margin-bottom: 1.2rem;
  line-height: 1.8;
}
.policy-text strong {
  color: var(--dark);
}
@media (max-width: 992px) {
  .mega-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-content-left h1 {
    font-size: 2.5rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
  }
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .methodology-layout {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .services-detailed-grid {
    grid-template-columns: 1fr;
  }
  .pricing-showcase-grid {
    grid-template-columns: 1fr;
  }
  .featured-guide-layout {
    grid-template-columns: 1fr;
  }
  .guides-collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .topics-browse-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .final-cta-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-right {
    text-align: center;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.7rem;
  }
  h3 {
    font-size: 1.3rem;
  }
  .nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 999;
  }
  .nav.active {
    transform: translateX(0);
  }
  .nav-toggle {
    display: flex;
  }
  .mega-hero {
    padding: 60px 0;
  }
  .hero-content-left h1 {
    font-size: 2rem;
  }
  .hero-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
  .stat-number {
    font-size: 1.5rem;
  }
  .stat-label {
    font-size: 11px;
  }
  .expertise-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .result-card {
    padding: 25px 20px;
    min-height: 160px;
  }
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
  .popup-content {
    flex-direction: column;
    text-align: center;
  }
  .footer-content {
    flex-direction: column;
    text-align: center;
  }
  .error-code {
    font-size: 5rem;
  }
  .thankyou-section,
  .error-section {
    padding: 60px 0;
    min-height: calc(100vh - 50px);
  }
  .hero-alt-content h1 {
    font-size: 2.2rem;
  }
  .policy-hero h1 {
    font-size: 2.2rem;
  }
}
@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
  .mega-hero {
    padding: 40px 0;
  }
  .hero-content-left h1 {
    font-size: 1.7rem;
  }
  .hero-content-left p {
    font-size: 1rem;
  }
  .hero-stats {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 12px 24px;
    font-size: 13px;
  }
  .btn-primary-large {
    padding: 14px 30px;
    font-size: 14px;
  }
  .expertise-grid,
  .services-detailed-grid,
  .pricing-showcase-grid,
  .guides-collection-grid,
  .topics-browse-grid {
    grid-template-columns: 1fr;
  }
  .results-grid {
    grid-template-columns: 1fr;
  }
  .result-card {
    padding: 20px 15px;
    min-height: 140px;
  }
  .result-metric {
    font-size: 1.8rem;
  }
  .result-card p {
    font-size: 13px;
  }
  .hero-cta-group {
    flex-direction: column;
  }
  .hero-alt-content h1 {
    font-size: 1.8rem;
  }
  .policy-hero h1 {
    font-size: 1.8rem;
  }
}
@media (max-width: 320px) {
  .container {
    padding: 0 12px;
  }
  .logo {
    font-size: 1.1rem;
  }
  .hero-content-left h1 {
    font-size: 1.5rem;
  }
  .hero-content-left p {
    font-size: 14px;
    line-height: 1.5;
  }
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }
  .stat-number {
    font-size: 1.2rem;
  }
  .stat-label {
    font-size: 10px;
  }
  .btn-primary,
  .btn-secondary,
  .btn-outline {
    padding: 10px 18px;
    font-size: 12px;
    width: 100%;
    text-align: center;
  }
  .btn-primary-large {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }
  .expertise-card,
  .service-detailed-card,
  .guide-collection-card {
    padding: 20px;
  }
  .expertise-icon,
  .guide-card-icon {
    width: 50px;
    height: 50px;
  }
  .expertise-icon i,
  .guide-card-icon i {
    font-size: 1.5rem;
  }
  .section-tag {
    font-size: 11px;
    padding: 5px 14px;
  }
  h2 {
    font-size: 1.5rem;
  }
  h3 {
    font-size: 1.1rem;
  }
  h4 {
    font-size: 1rem;
  }
  .result-card {
    padding: 16px 10px;
    min-height: 110px;
  }
  .result-metric {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  .result-card p {
    font-size: 11px;
    line-height: 1.4;
  }
  .testimonial-card,
  .pricing-showcase-card {
    padding: 20px;
  }
  .pricing-amount {
    font-size: 2.5rem;
  }
  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 15px;
  }
  .timeline-marker {
    width: 60px;
    height: 60px;
    font-size: 1.4rem;
  }
  .industry-tag {
    padding: 10px 18px;
    font-size: 12px;
  }
  .popup-content {
    padding: 0 10px;
  }
  .popup-content p {
    font-size: 12px;
  }
  .popup-accept {
    padding: 6px 16px;
    font-size: 12px;
  }
  .footer-content {
    gap: 10px;
  }
  .footer-links {
    gap: 12px;
  }
  .nav {
    padding: 15px;
  }
  .nav a {
    font-size: 13px;
  }
}

.team-section {
  padding: 70px 0;
  background: var(--white);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.team-member {
  background: var(--light);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}
.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.team-photo {
  width: 100%;
  height: 280px;
  overflow: hidden;
  position: relative;
}
.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.team-member:hover .team-photo img {
  transform: scale(1.1);
}
.team-info {
  padding: 25px;
  text-align: center;
}
.team-info h3 {
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
.team-role {
  color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 1rem;
}
.team-bio {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.6;
  margin: 0;
}
.portfolio-section {
  padding: 70px 0;
  background: var(--light);
}
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
.portfolio-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}
.portfolio-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}
.portfolio-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.portfolio-item:hover .portfolio-image img {
  transform: scale(1.05);
}
.portfolio-content {
  padding: 25px;
}
.portfolio-category {
  display: inline-block;
  background: var(--light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: 15px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 0.8rem;
}
.portfolio-content h3 {
  margin-bottom: 0.8rem;
  font-size: 1.2rem;
}
.portfolio-content p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.faq-section {
  padding: 70px 0;
  background: var(--white);
}
.faq-container {
  max-width: 900px;
  margin: 0 auto;
}
.faq-item {
  background: var(--light);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 15px;
  transition: all 0.3s ease;
}
.faq-item:hover {
  background: var(--white);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}
.faq-question {
  font-weight: 600;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 12px;
}
.faq-question::before {
  content: 'Q:';
  color: var(--primary);
  font-weight: 700;
  font-size: 1.3rem;
}
.faq-answer {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  margin: 0;
  padding-left: 32px;
}
.process-steps-section {
  padding: 70px 0;
  background: var(--light);
}
.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}
.process-step {
  background: var(--white);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.process-step::after {
  content: '→';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 700;
}
.process-step:last-child::after {
  display: none;
}
.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}
.process-step h3 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}
.process-step p {
  font-size: 13px;
  color: var(--gray);
  margin: 0;
  line-height: 1.6;
}
.cta-modern {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="white" opacity="0.1"/></svg>');
  opacity: 0.3;
}
.cta-modern-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-modern h2 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.2);
}
.cta-modern p {
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
  opacity: 0.95;
  line-height: 1.7;
}
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-cta-white {
  background: var(--white);
  color: var(--primary);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-cta-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.btn-cta-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  padding: 16px 40px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  display: inline-block;
}
.btn-cta-outline:hover {
  background: var(--white);
  color: var(--primary);
}
@media (max-width: 992px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .process-step::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  .process-steps-grid {
    grid-template-columns: 1fr;
  }
  .cta-modern h2 {
    font-size: 2rem;
  }
  .cta-modern p {
    font-size: 1rem;
  }
}
@media (max-width: 480px) {
  .team-photo {
    height: 220px;
  }
  .portfolio-image {
    height: 200px;
  }
  .cta-modern {
    padding: 60px 0;
  }
  .cta-modern h2 {
    font-size: 1.7rem;
  }
  .cta-buttons {
    flex-direction: column;
  }
  .btn-cta-white,
  .btn-cta-outline {
    padding: 14px 30px;
    font-size: 14px;
  }
}
@media (max-width: 320px) {
  .team-photo {
    height: 200px;
  }
  .team-info {
    padding: 18px;
  }
  .team-info h3 {
    font-size: 1.1rem;
  }
  .team-role {
    font-size: 12px;
  }
  .team-bio {
    font-size: 12px;
  }
  .portfolio-image {
    height: 180px;
  }
  .portfolio-content {
    padding: 18px;
  }
  .portfolio-content h3 {
    font-size: 1.1rem;
  }
  .cta-modern {
    padding: 50px 0;
  }
  .cta-modern h2 {
    font-size: 1.5rem;
    line-height: 1.3;
  }
  .cta-modern p {
    font-size: 14px;
    line-height: 1.6;
  }
  .btn-cta-white,
  .btn-cta-outline {
    padding: 12px 24px;
    font-size: 13px;
    width: 100%;
  }
  .faq-item {
    padding: 18px;
  }
  .faq-question {
    font-size: 0.95rem;
  }
  .faq-answer {
    font-size: 13px;
    padding-left: 24px;
  }
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  .process-step {
    padding: 20px;
  }
  .process-step h3 {
    font-size: 1rem;
  }
  .process-step p {
    font-size: 12px;
  }
  .service-icon-large {
    width: 60px;
    height: 60px;
  }
  .service-icon-large i {
    font-size: 1.6rem;
  }
  .pricing-header,
  .pricing-body {
    padding: 25px;
  }
  .contact-item i {
    font-size: 1.2rem;
  }
  .business-hours {
    padding: 20px;
  }
}
