/* Reset and Base Styles */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #111827;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: #111827;
}

h1 {
  font-size: 3rem;
  font-weight: 700;
}
h2 {
  font-size: 2.5rem;
  font-weight: 600;
}
h3 {
  font-size: 1.875rem;
  font-weight: 600;
}
h4 {
  font-size: 1.5rem;
  font-weight: 600;
}
h5 {
  font-size: 1.25rem;
  font-weight: 600;
}
h6 {
  font-size: 1.125rem;
  font-weight: 600;
}

p {
  font-size: 1rem;
  line-height: 1.5;
  color: #6b7280;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

/* Container */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-family: "Inter", sans-serif;
  font-size: 0.875rem;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background-color: #2563eb;
  color: #ffffff;
  border-color: #2563eb;
}

.btn-primary:hover {
  background-color: #1d4ed8;
  border-color: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  background-color: transparent;
  color: #2563eb;
  border-color: #2563eb;
}

.btn-ghost:hover {
  background-color: #2563eb;
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
}

.btn-outline {
  background-color: transparent;
  color: #111827;
  border-color: #d1d5db;
}

.btn-outline:hover {
  background-color: #f9fafb;
  border-color: #6b7280;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1rem;
}

.btn-text {
  flex: 1;
}

.btn-icon {
  opacity: 0;
  transform: translateX(-8px);
  transition: all 0.2s ease;
}

.btn:hover .btn-icon {
  opacity: 1;
  transform: translateX(0);
}

/* Top Bar */
.top-bar {
  background-color: #2563eb;
  color: #ffffff;
  padding: 8px 0;
  font-size: 0.875rem;
}

.top-bar-content {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.top-bar-text {
  opacity: 0.9;
}

/* Header */
.header {
  position: fixed;
  top: 44px;
  left: 0;
  right: 0;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(229, 231, 235, 0.6);
  z-index: 1000;
  transition: all 0.3s ease;
}

.header.scrolled {
  top: 0;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo svg {
  display: block;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  padding: 8px 0;
  position: relative;
  transition: color 0.2s ease;
}

.nav-link:hover {
  color: #2563eb;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #2563eb;
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background-color: #374151;
  transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Sections */
.section {
  padding: 80px 0;
}

.section-header {
  margin-bottom: 64px;
}

.section-title {
  margin-bottom: 16px;
  color: #111827;
}

.section-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Hero Section */
.hero {
  padding: 160px 0 120px;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  position: relative;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #111827;
}

.hero-subtitle {
  font-size: 1.25rem;
  line-height: 1.5;
  color: #4b5563;
  margin-bottom: 32px;
}

.hero-highlight {
  background-color: #eff6ff;
  border-left: 4px solid #2563eb;
  padding: 16px 20px;
  margin-bottom: 40px;
  border-radius: 8px;
}

.highlight-text {
  font-weight: 600;
  color: #2563eb;
  font-size: 1rem;
}

.hero-cta {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
}

.trust-badges {
  opacity: 0.8;
}

.trust-text {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
  display: block;
}

.trust-logos {
  display: flex;
  gap: 24px;
  align-items: center;
}

.trust-logo {
  font-size: 0.875rem;
  font-weight: 600;
  color: #9ca3af;
  padding: 8px 16px;
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background-color: #ffffff;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-graphic {
  transform: perspective(600px) rotateY(-5deg) rotateX(5deg);
  transition: transform 0.3s ease;
}

.hero-graphic:hover {
  transform: perspective(600px) rotateY(-2deg) rotateX(2deg);
}

/* Value Proposition */
.value-prop {
  background-color: #ffffff;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.value-card {
  padding: 32px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  text-align: center;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.value-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  background-color: #eff6ff;
  border-radius: 16px;
  margin: 0 auto 24px;
  transition: all 0.3s ease;
}

.value-card:hover .value-icon {
  background-color: #2563eb;
  transform: scale(1.05);
}

.value-card:hover .value-icon svg {
  stroke: #ffffff;
}

.value-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.value-desc {
  color: #6b7280;
  line-height: 1.6;
}

/* Services Section */
.services {
  background-color: #f8fafc;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  padding: 40px 32px;
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #2563eb, #10b981);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
  margin-bottom: 24px;
}

.service-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.service-desc {
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
}

.service-features li {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.service-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 600;
}

/* Methodology Timeline */
.methodology {
  background-color: #ffffff;
}

.timeline {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  align-items: start;
  position: relative;
}

.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 39px;
  top: 80px;
  bottom: -48px;
  width: 2px;
  background: linear-gradient(to bottom, #2563eb, #e5e7eb);
}

.timeline-number {
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 700;
  border-radius: 50%;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.timeline-content {
  padding-top: 8px;
}

.timeline-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
}

.timeline-desc {
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.timeline-result {
  background-color: #f0fdf4;
  color: #15803d;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  border-left: 4px solid #10b981;
}

/* Results Section */
.results {
  background-color: #f8fafc;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
}

.case-study {
  background-color: #ffffff;
  border-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  padding: 32px;
  transition: all 0.3s ease;
}

.case-study:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.case-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.case-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #111827;
}

.case-duration {
  background-color: #eff6ff;
  color: #2563eb;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 500;
}

.case-chart {
  margin-bottom: 24px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.case-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 24px;
}

.metric {
  text-align: center;
  padding: 16px;
  background-color: #f8fafc;
  border-radius: 12px;
}

.metric-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  margin-bottom: 4px;
}

.metric-label {
  font-size: 0.75rem;
  color: #6b7280;
  font-weight: 500;
}

.case-cta {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap 0.2s ease;
}

.case-cta:hover {
  gap: 8px;
}

.case-cta::after {
  content: "→";
  transition: transform 0.2s ease;
}

.case-cta:hover::after {
  transform: translateX(2px);
}

/* Pricing Section */
.pricing {
  background-color: #ffffff;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-bottom: 48px;
}

.pricing-card {
  background-color: #ffffff;
  border: 2px solid #e5e7eb;
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: #2563eb;
}

.pricing-recommended {
  border-color: #2563eb;
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(37, 99, 235, 0.15);
}

.pricing-ribbon {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(90deg, #2563eb, #1d4ed8);
  color: #ffffff;
  padding: 8px 24px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-header {
  text-align: center;
  margin-bottom: 32px;
}

.pricing-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #111827;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 16px;
}

.price-currency {
  font-size: 1rem;
  color: #6b7280;
  margin-right: 4px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  color: #2563eb;
}

.price-period {
  font-size: 1rem;
  color: #6b7280;
  margin-left: 4px;
}

.pricing-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.5;
}

.pricing-features {
  margin-bottom: 32px;
}

.pricing-features ul {
  list-style: none;
}

.pricing-features li {
  color: #4b5563;
  font-size: 0.875rem;
  margin-bottom: 12px;
  padding-left: 4px;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.pricing-footer .btn {
  width: 100%;
  justify-content: center;
}

.pricing-note {
  text-align: center;
  color: #6b7280;
  font-size: 0.875rem;
  font-style: italic;
}

/* Testimonials */
.testimonials {
  background-color: #f8fafc;
}

.testimonial-slider {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.testimonial-container {
  overflow: hidden;
  border-radius: 20px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.3s ease;
}

.testimonial-card {
  min-width: 100%;
  padding: 48px;
  background-color: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
  text-align: left;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
}

.testimonial-text {
  font-size: 1.25rem;
  line-height: 1.6;
  color: #374151;
  margin-bottom: 32px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before {
  content: '"';
  font-size: 4rem;
  color: #2563eb;
  position: absolute;
  top: -16px;
  left: -16px;
  line-height: 1;
  opacity: 0.3;
}

.testimonial-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.author-info {
  flex: 1;
}

.author-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  margin-bottom: 4px;
}

.author-position {
  color: #6b7280;
  font-size: 0.875rem;
}

.author-logo {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #2563eb;
  color: #ffffff;
  font-weight: 600;
  border-radius: 12px;
  font-size: 0.875rem;
}

.testimonial-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
}

.testimonial-prev:hover,
.testimonial-next:hover {
  background-color: #2563eb;
  border-color: #2563eb;
  color: #ffffff;
}

.testimonial-dots {
  display: flex;
  gap: 8px;
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #d1d5db;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.testimonial-dot.active {
  background-color: #2563eb;
}

/* FAQ Section */
.faq {
  background-color: #ffffff;
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  margin-bottom: 16px;
  overflow: hidden;
  transition: all 0.2s ease;
}

.faq-item:hover {
  border-color: #2563eb;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.1);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background-color: #ffffff;
  border: none;
  text-align: left;
  font-size: 1.125rem;
  font-weight: 600;
  color: #111827;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  transition: all 0.2s ease;
}

.faq-question:hover {
  background-color: #f8fafc;
}

.faq-question[aria-expanded="true"] {
  background-color: #eff6ff;
  color: #2563eb;
}

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-answer.active {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 32px 24px;
  color: #6b7280;
  line-height: 1.6;
}

/* Blog Section */
.blog {
  background-color: #f8fafc;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.blog-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.blog-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-category {
  position: absolute;
  top: 16px;
  left: 16px;
  background-color: #2563eb;
  color: #ffffff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 0.75rem;
  font-weight: 600;
}

.blog-content {
  padding: 24px;
}

.blog-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #111827;
  line-height: 1.3;
}

.blog-excerpt {
  color: #6b7280;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 0.875rem;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.blog-date {
  color: #9ca3af;
  font-size: 0.75rem;
}

.blog-cta {
  color: #2563eb;
  font-weight: 500;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.blog-cta:hover {
  color: #1d4ed8;
}

/* CTA Large Section */
.cta-large {
  background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
  color: #ffffff;
}

.cta-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.cta-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.cta-subtitle {
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
}

.cta-form {
  background-color: #ffffff;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

/* Forms */
.consultation-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
  margin-bottom: 6px;
}

.form-input,
.form-select,
.form-textarea {
  padding: 12px 16px;
  border: 1px solid #d1d5db;
  border-radius: 8px;
  font-size: 0.875rem;
  transition: all 0.2s ease;
  background-color: #ffffff;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #2563eb;
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-error {
  font-size: 0.75rem;
  color: #dc2626;
  margin-top: 4px;
  display: none;
}

.form-error.show {
  display: block;
}

.form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.form-disclaimer {
  font-size: 0.75rem;
  color: #6b7280;
  text-align: center;
  margin-top: 12px;
  line-height: 1.4;
}

/* Footer */
.footer {
  background-color: #111827;
  color: #ffffff;
  padding: 80px 0 32px;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 20px;
  color: #ffffff;
}

.footer-desc {
  color: #d1d5db;
  line-height: 1.6;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #374151;
  border-radius: 8px;
  transition: all 0.2s ease;
}

.social-link:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: #d1d5db;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #2563eb;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #d1d5db;
  font-size: 0.875rem;
  line-height: 1.5;
}

.contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 32px;
}

.footer-legal {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-policies {
  display: flex;
  gap: 24px;
}

.footer-policies a {
  color: #d1d5db;
  font-size: 0.875rem;
  transition: color 0.2s ease;
}

.footer-policies a:hover {
  color: #2563eb;
}

/* Scroll to Top Button */
.scroll-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 56px;
  height: 56px;
  background-color: #2563eb;
  color: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  z-index: 100;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.scroll-top:hover {
  background-color: #1d4ed8;
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

/* Notification */
.notification {
  position: fixed;
  top: 100px;
  right: 32px;
  background-color: #10b981;
  color: #ffffff;
  padding: 16px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(16, 185, 129, 0.3);
  transform: translateX(400px);
  transition: transform 0.3s ease;
  z-index: 1100;
  max-width: 320px;
}

.notification.show {
  transform: translateX(0);
}

.notification-content {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.notification-icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.notification-text strong {
  display: block;
  font-weight: 600;
  margin-bottom: 2px;
}

.notification-text span {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Reveal Animation */
[data-reveal] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }

  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-title {
    font-size: 2.75rem;
  }

  .cta-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .timeline-item {
    grid-template-columns: 60px 1fr;
    gap: 24px;
  }

  .timeline-number {
    width: 60px;
    height: 60px;
    font-size: 1.25rem;
  }

  .timeline-item:not(:last-child)::after {
    left: 29px;
    top: 60px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }

  .hero {
    padding: 140px 0 80px;
  }

  .hero-title {
    font-size: 2.25rem;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
  }

  .btn-large {
    padding: 14px 28px;
  }

  .nav-menu {
    position: fixed;
    top: 124px;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 32px 24px;
    gap: 24px;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-toggle {
    display: flex;
  }

  .nav-actions .btn {
    display: none;
  }

  .nav-menu .btn {
    display: flex;
    margin-top: 16px;
  }

  .value-grid,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .pricing-recommended {
    transform: none;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-legal {
    flex-direction: column;
    text-align: center;
  }

  .trust-logos {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .timeline {
    gap: 32px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }

  .timeline-item:not(:last-child)::after {
    display: none;
  }

  .top-bar {
    font-size: 0.75rem;
    padding: 6px 0;
  }

  .top-bar-text {
    padding: 0 16px;
  }

  .scroll-top {
    bottom: 24px;
    right: 24px;
    width: 48px;
    height: 48px;
  }

  .notification {
    right: 16px;
    left: 16px;
    max-width: none;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 16px;
  }

  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.75rem;
  }

  .hero-title {
    font-size: 1.875rem;
  }

  .btn {
    padding: 10px 20px;
    font-size: 0.8125rem;
  }

  .btn-large {
    padding: 12px 24px;
    font-size: 0.875rem;
  }

  .value-card,
  .service-card {
    padding: 24px;
  }

  .testimonial-card {
    padding: 24px 20px;
  }

  .cta-form {
    padding: 24px;
  }

  .top-bar-text {
    font-size: 0.6875rem;
  }
}
