@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

:root {
  --primary: #0B132B;
  --primary-light: #1C2541;
  --accent: #02C39A;
  --accent-hover: #00A896;
  --accent-gradient: linear-gradient(135deg, #02C39A, #00A896);
  --accent-glow: rgba(2, 195, 154, 0.4);
  --bg-main: #F8FAFC;
  --bg-card: #FFFFFF;
  --bg-card-glass: rgba(255, 255, 255, 0.75);
  --text-main: #334155;
  --text-head: #0F172A;
  --text-white: #FFFFFF;
  --border-light: rgba(241, 245, 249, 1);
  --border-glass: rgba(255, 255, 255, 0.25);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05);
  --shadow-md: 0 10px 25px -5px rgba(0,0,0,0.05), 0 8px 10px -6px rgba(0,0,0,0.05);
  --shadow-lg: 0 20px 40px -15px rgba(11, 19, 43, 0.08);
  --shadow-accent: 0 15px 30px -10px rgba(2, 195, 154, 0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --font-head: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1280px;
}

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

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  color: var(--text-head);
  font-weight: 700;
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.section-header {
  max-width: 700px;
  margin: 0 auto 60px auto;
}

.section-header h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--primary);
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-main);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-normal);
  cursor: pointer;
  border: none;
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
}

.btn-primary {
  background: var(--accent-gradient);
  color: var(--text-white);
}

.btn-primary:hover {
  box-shadow: var(--shadow-accent);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: var(--text-white);
  transform: translateY(-2px);
}

.btn-white {
  background-color: var(--text-white);
  color: var(--primary);
}

.btn-white:hover {
  background-color: var(--bg-main);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.grid {
  display: grid;
  gap: 32px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

.card {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

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

.card-glass {
  background: var(--bg-card-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-md);
  transition: var(--transition-normal);
}

.card-glass:hover {
  transform: translateY(-4px);
  border-color: rgba(2, 195, 154, 0.3);
}

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 15px rgba(0,0,0,0.03);
  transition: var(--transition-fast);
}

header.scrolled {
  background-color: var(--primary);
  color: var(--text-white);
}

header.scrolled .logo-text {
  color: var(--text-white);
}

header.scrolled .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

header.scrolled .nav-links a:hover,
header.scrolled .nav-links a.active {
  color: var(--accent);
}

header.scrolled .btn-primary {
  background: var(--text-white);
  color: var(--primary);
}

header.scrolled .btn-primary:hover {
  background: var(--accent);
  color: var(--text-white);
  box-shadow: var(--shadow-accent);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo i {
  font-size: 1.8rem;
  color: var(--accent);
}

.logo-text {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.5px;
}

.logo-accent {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  color: var(--text-main);
  font-size: 0.95rem;
  position: relative;
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent);
  transition: var(--transition-normal);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.hamburger-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--primary);
  background: none;
  border: none;
}

header.scrolled .hamburger-btn {
  color: var(--text-white);
}

.nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 17, 36, 0.6);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-nav-panel {
  position: fixed;
  top: 0;
  right: -50%;
  width: 50%;
  height: 100%;
  background-color: var(--bg-card);
  z-index: 1001;
  box-shadow: -10px 0 30px rgba(0,0,0,0.1);
  padding: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: right var(--transition-normal);
}

.mobile-nav-panel.active {
  right: 0;
}

.mobile-close-btn {
  position: absolute;
  top: 24px;
  right: 24px;
  font-size: 1.8rem;
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
  transition: var(--transition-fast);
}

.mobile-close-btn:hover {
  color: var(--accent);
  transform: rotate(90deg);
}

.mobile-nav-links {
  list-style: none;
  width: 100%;
  text-align: center;
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.mobile-nav-links a {
  font-family: var(--font-head);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
  padding: 10px;
  border-radius: var(--radius-sm);
}

.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  background-color: var(--border-light);
  color: var(--accent);
}

.mobile-cta {
  margin-top: auto;
  width: 100%;
}

.mobile-cta .btn {
  width: 100%;
}

.hero-wrapper {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1559526324-4b87b5e36e44?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--text-white);
  padding-top: 100px;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 17, 36, 0.95) 0%, rgba(28, 37, 65, 0.8) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero-subtitle {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  animation: fadeInUp 0.8s ease;
}

.hero-title {
  font-size: 4rem;
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.15;
  margin-bottom: 24px;
  letter-spacing: -1px;
  animation: fadeInUp 1s ease;
}

.hero-desc {
  font-size: 1.25rem;
  color: rgba(241, 245, 249, 0.85);
  margin-bottom: 40px;
  animation: fadeInUp 1.2s ease;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeInUp 1.4s ease;
}

.stats-panel {
  position: relative;
  z-index: 2;
  margin-top: 40px;
  animation: fadeInUp 1.6s ease;
}

.stats-grid {
  background-color: var(--bg-card-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-glass);
  border-radius: var(--radius-lg);
  padding: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  box-shadow: var(--shadow-lg);
}

.stat-item {
  text-align: center;
  padding: 10px;
}

.stat-item:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.why-card {
  padding: 40px;
}

.why-icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-md);
  background: var(--accent-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-size: 1.5rem;
  margin-bottom: 24px;
  box-shadow: var(--shadow-accent);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.timeline {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}

.timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background-color: var(--border-light);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}

.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}

.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--bg-main);
  border: 4px solid var(--accent);
  top: 30px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition-normal);
}

.timeline-left {
  left: 0;
}

.timeline-right {
  left: 50%;
}

.timeline-right::after {
  left: -10px;
}

.timeline-content {
  padding: 30px;
  background-color: var(--bg-card);
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.timeline-content h3 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.timeline-content h3 i {
  color: var(--accent);
}

.timeline-badge {
  position: absolute;
  top: -15px;
  left: 30px;
  background: var(--accent-gradient);
  color: var(--text-white);
  padding: 4px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}

.timeline-right .timeline-badge {
  left: auto;
  right: 30px;
}

.timeline-item:hover::after {
  background-color: var(--accent);
  transform: scale(1.2);
}

.tip-card {
  position: relative;
  min-height: 380px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition-normal);
}

.tip-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(9, 17, 36, 0.1) 0%, rgba(9, 17, 36, 0.9) 100%);
  z-index: 1;
  transition: var(--transition-normal);
}

.tip-card:hover .tip-card-overlay {
  background: linear-gradient(180deg, rgba(9, 17, 36, 0.3) 0%, rgba(9, 17, 36, 0.95) 100%);
}

.tip-content {
  position: relative;
  z-index: 2;
  color: var(--text-white);
}

.tip-tag {
  background-color: var(--accent);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  margin-bottom: 12px;
}

.tip-content h3 {
  color: var(--text-white);
  font-size: 1.35rem;
  margin-bottom: 10px;
  line-height: 1.3;
}

.tip-content p {
  font-size: 0.9rem;
  color: rgba(241, 245, 249, 0.8);
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: all var(--transition-normal);
}

.tip-card:hover .tip-content p {
  opacity: 1;
  max-height: 100px;
  margin-top: 10px;
}

.service-card {
  padding: 40px;
  border-top: 4px solid transparent;
}

.service-card:hover {
  border-top-color: var(--accent);
}

.service-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 24px;
}

.service-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
  color: var(--primary);
}

.category-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px 30px;
}

.category-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(2, 195, 154, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  transition: var(--transition-normal);
}

.category-card:hover .category-icon {
  background-color: var(--accent);
  color: var(--text-white);
  transform: scale(1.1);
}

.category-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
  color: var(--primary);
}

.category-info p {
  font-size: 0.85rem;
}

.testimonial-card {
  padding: 40px;
}

.testimonial-stars {
  color: #FBC02D;
  margin-bottom: 20px;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-main);
  margin-bottom: 24px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user-info h4 {
  font-size: 1rem;
  color: var(--primary);
}

.testimonial-user-info p {
  font-size: 0.85rem;
  color: var(--text-main);
}

.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion-item {
  background-color: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.accordion-item[open] {
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 195, 154, 0.3);
}

.accordion-summary {
  list-style: none;
  outline: none;
  cursor: pointer;
  padding: 24px 30px;
  font-family: var(--font-head);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--primary);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.accordion-summary::-webkit-details-marker {
  display: none;
}

.accordion-summary-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background-color: var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  transition: var(--transition-normal);
}

.accordion-item[open] .accordion-summary-icon {
  background-color: var(--accent);
  color: var(--text-white);
  transform: rotate(180deg);
}

.accordion-content {
  padding: 0 30px 24px 30px;
  border-top: 1px solid var(--border-light);
  color: var(--text-main);
  font-size: 0.95rem;
  animation: fadeInDown 0.3s ease;
}

.newsletter-section {
  background-color: var(--primary);
  color: var(--text-white);
  position: relative;
  overflow: hidden;
}

.newsletter-bg-gradient {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(2, 195, 154, 0.15) 0%, transparent 50%);
  z-index: 1;
}

.newsletter-container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.newsletter-section h2 {
  color: var(--text-white);
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.newsletter-section p {
  color: rgba(241, 245, 249, 0.8);
  font-size: 1.125rem;
  margin-bottom: 40px;
}

.newsletter-form {
  display: flex;
  gap: 16px;
  max-width: 600px;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.08);
  padding: 8px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 0 24px;
  color: var(--text-white);
  font-size: 0.95rem;
}

.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
  box-shadow: none;
}

.cta-banner {
  background: var(--accent-gradient);
  color: var(--text-white);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.cta-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-text h2 {
  color: var(--text-white);
  font-size: 2.25rem;
  margin-bottom: 8px;
}

.cta-text p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

.cta-actions {
  display: flex;
  gap: 16px;
}

.footer {
  background-color: var(--primary);
  color: rgba(241, 245, 249, 0.7);
  padding: 80px 0 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer h3, .footer h4 {
  color: var(--text-white);
  font-family: var(--font-head);
  margin-bottom: 24px;
}

.footer-about-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.footer-about-logo i {
  color: var(--accent);
  font-size: 1.8rem;
}

.footer-about-logo span {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-white);
  letter-spacing: -0.5px;
}

.footer-about-text {
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.6;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  font-size: 1rem;
}

.footer-social-link:hover {
  background-color: var(--accent);
  transform: translateY(-3px);
}

.footer-links-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-links-list a {
  font-size: 0.95rem;
  color: rgba(241, 245, 249, 0.7);
  transition: var(--transition-fast);
}

.footer-links-list a:hover {
  color: var(--accent);
  padding-left: 6px;
}

.footer-newsletter-text {
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.footer-newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-newsletter-form input {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  padding: 14px 20px;
  color: var(--text-white);
  outline: none;
  font-size: 0.9rem;
}

.footer-newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer-newsletter-form button {
  width: 100%;
}

.footer-bottom {
  margin-top: 60px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.9rem;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--accent);
}

.page-banner {
  position: relative;
  background-size: cover;
  background-position: center;
  color: var(--text-white);
  padding: 120px 0 80px 0;
  text-align: center;
}

.page-banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(9, 17, 36, 0.95) 0%, rgba(28, 37, 65, 0.85) 100%);
  z-index: 1;
}

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

.page-banner h1 {
  font-size: 3rem;
  color: var(--text-white);
  margin-bottom: 12px;
}

.page-banner p {
  font-size: 1.15rem;
  color: rgba(241, 245, 249, 0.85);
  max-width: 600px;
  margin: 0 auto;
}

.guide-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
}

.filter-btn {
  background-color: var(--bg-card);
  border: 1px solid var(--border-light);
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  cursor: pointer;
  transition: var(--transition-normal);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--accent-gradient);
  color: var(--text-white);
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.guide-card-img {
  height: 240px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.guide-card-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background-color: var(--accent);
  color: var(--text-white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.guide-card-content {
  padding: 30px;
}

.guide-card-meta {
  display: flex;
  gap: 16px;
  font-size: 0.8rem;
  margin-bottom: 12px;
  color: var(--text-main);
}

.guide-card-meta i {
  color: var(--accent);
  margin-right: 4px;
}

.guide-card-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--primary);
}

.guide-card-content p {
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.guide-card-link {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.guide-card-link:hover {
  gap: 10px;
}

.score-chart-container {
  max-width: 900px;
  margin: 0 auto 60px auto;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-light);
}

.score-ranges {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 30px;
}

.range-box {
  border-radius: var(--radius-sm);
  padding: 20px 10px;
  text-align: center;
  color: var(--text-white);
  font-weight: 700;
}

.range-poor {
  background-color: #EF4444;
}

.range-fair {
  background-color: #F59E0B;
}

.range-good {
  background-color: #10B981;
}

.range-vgood {
  background-color: #06B6D4;
}

.range-excellent {
  background-color: #3B82F6;
}

.range-box span {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 6px;
  opacity: 0.9;
}

.score-factor-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.score-factor-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: rgba(2, 195, 154, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--accent);
  flex-shrink: 0;
}

.score-factor-content h3 {
  font-size: 1.15rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.comparison-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.comp-column {
  padding: 40px;
  border-radius: var(--radius-md);
}

.comp-good {
  background-color: rgba(16, 185, 129, 0.05);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.comp-bad {
  background-color: rgba(239, 68, 68, 0.05);
  border: 1px solid rgba(239, 68, 68, 0.2);
}

.comp-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.comp-header i {
  font-size: 1.5rem;
}

.comp-good .comp-header {
  color: #10B981;
}

.comp-bad .comp-header {
  color: #EF4444;
}

.comp-header h3 {
  font-size: 1.35rem;
}

.comp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.comp-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}

.comp-list li i {
  margin-top: 4px;
}

.comp-good .comp-list li i {
  color: #10B981;
}

.comp-bad .comp-list li i {
  color: #EF4444;
}

.calculator-card {
  padding: 40px;
}

.calc-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

.form-group input, .form-group select, .form-group textarea {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  outline: none;
  font-size: 0.95rem;
  transition: var(--transition-normal);
  background-color: var(--bg-main);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--accent);
  background-color: var(--bg-card);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.download-card {
  display: flex;
  gap: 24px;
  padding: 30px;
}

.download-icon-box {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-sm);
  background-color: rgba(2, 195, 154, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--accent);
  flex-shrink: 0;
}

.download-info h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--primary);
}

.download-info p {
  font-size: 0.9rem;
  margin-bottom: 16px;
}

.checklist-box {
  padding: 40px;
}

.checklist-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.checklist-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
}

.checklist-list li i {
  color: var(--accent);
}

.checklist-list li.checked {
  text-decoration: line-through;
  opacity: 0.6;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 48px;
}

.contact-form-box {
  padding: 40px;
}

.contact-form-box h3 {
  font-size: 1.75rem;
  margin-bottom: 10px;
  color: var(--primary);
}

.contact-form-box p {
  margin-bottom: 30px;
}

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

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

.contact-info-box {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.info-item {
  display: flex;
  gap: 20px;
}

.info-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  background-color: var(--primary);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.info-content h4 {
  font-size: 1.1rem;
  margin-bottom: 6px;
  color: var(--primary);
}

.info-content p {
  font-size: 0.95rem;
}

.map-placeholder {
  height: 280px;
  background-size: cover;
  background-position: center;
  background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=600&auto=format&fit=crop');
  border-radius: var(--radius-md);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(9, 17, 36, 0.7);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  text-align: center;
  padding: 20px;
}

.map-pin {
  font-size: 2.5rem;
  color: var(--accent);
  margin-bottom: 12px;
  animation: bounce 2s infinite;
}

.map-overlay p {
  font-weight: 600;
  font-size: 1.1rem;
}

.custom-alert-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(9, 17, 36, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-normal);
}

.custom-alert-overlay.active {
  opacity: 1;
  visibility: visible;
}

.custom-alert-box {
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  padding: 40px;
  width: 90%;
  max-width: 450px;
  text-align: center;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
  transform: scale(0.8);
  transition: var(--transition-normal);
}

.custom-alert-overlay.active .custom-alert-box {
  transform: scale(1);
}

.custom-alert-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--accent-gradient);
  color: var(--text-white);
  font-size: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  box-shadow: var(--shadow-accent);
}

.custom-alert-title {
  font-size: 1.5rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.custom-alert-msg {
  font-size: 0.95rem;
  color: var(--text-main);
  margin-bottom: 30px;
}

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-15px);
  }
  60% {
    transform: translateY(-7px);
  }
}

@media (max-width: 1400px) {
  :root {
    --max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  :root {
    --max-width: 960px;
  }
  .hero-title {
    font-size: 3.5rem;
  }
  .grid-4 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  :root {
    --max-width: 720px;
  }
  .section-header h2 {
    font-size: 2.25rem;
  }
  .nav-links {
    display: none;
  }
  .header-actions {
    display: none;
  }
  .hamburger-btn {
    display: block;
  }
  .hero-title {
    font-size: 3rem;
  }
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .stat-item:not(:last-child) {
    border-right: none;
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 0;
  }
  .timeline-item::after {
    left: 21px;
    right: auto;
  }
  .timeline-right {
    left: 0;
  }
  .timeline-right::after {
    left: 21px;
  }
  .timeline-right .timeline-badge {
    left: 30px;
    right: auto;
  }
  .comparison-box {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --max-width: 540px;
  }
  .section-padding {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-desc {
    font-size: 1.1rem;
  }
  .grid-2 {
    grid-template-columns: 1fr;
  }
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .grid-4 {
    grid-template-columns: 1fr;
  }
  .cta-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }
  .cta-actions {
    justify-content: center;
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .mobile-nav-panel {
    width: 70%;
    right: -70%;
  }
  .score-ranges {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
  .stat-item:nth-child(odd) {
    border-right: none;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: var(--radius-md);
    background-color: transparent;
    border: none;
    padding: 0;
    gap: 12px;
  }
  .newsletter-form input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 24px;
    border-radius: 30px;
  }
  .newsletter-form button {
    width: 100%;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .mobile-nav-panel {
    width: 85%;
    right: -85%;
  }
}

@media (max-width: 400px) {
  .section-header h2 {
    font-size: 1.85rem;
  }
  .hero-title {
    font-size: 2.15rem;
  }
  .why-card {
    padding: 24px;
  }
  .service-card {
    padding: 24px;
  }
  .testimonial-card {
    padding: 24px;
  }
  .accordion-summary {
    padding: 20px 24px;
    font-size: 1rem;
  }
  .accordion-content {
    padding: 0 24px 20px 24px;
  }
  .contact-form-box {
    padding: 24px 20px;
  }
  .mobile-nav-panel {
    width: 100%;
    right: -100%;
    padding: 24px;
  }
}

/* Custom Overrides - added at the bottom to preserve existing code */
.stats-panel {
  padding-bottom: 50px;
}

@media (max-width: 576px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item:nth-child(odd) {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
  }
  .guide-filters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 8px;
    justify-content: center;
  }
  .guide-filters .filter-btn {
    width: 100%;
    padding: 8px 4px;
    font-size: 0.72rem;
    text-align: center;
    white-space: normal;
    word-break: break-word;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
    min-height: 44px;
    border-radius: var(--radius-sm);
  }
  .tip-card:hover .tip-content p,
  .tip-card:active .tip-content p {
    opacity: 1;
    max-height: 150px;
    margin-top: 10px;
  }
}

/* Card Centering Overrides */
.why-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-icon {
  margin: 0 auto 24px auto;
}

.grid-3 .tip-card {
  justify-content: center;
  align-items: center;
}
.grid-3 .tip-content {
  text-align: center;
}

.service-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-icon {
  margin: 0 auto 24px auto;
}

.grid-3 .card {
  text-align: center;
}
.grid-3 .category-card {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.grid-3 .category-icon {
  margin-bottom: 12px;
}
.grid-3 .download-card {
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.grid-3 .download-icon-box {
  margin-bottom: 16px;
}
.grid-3 .guide-card-meta {
  justify-content: center;
}

/* Sidebar button spacing override */
.mobile-cta {
  margin-top: 40px !important;
}

/* Align score-factor-content to the left */
.score-factor-item {
  align-self: stretch;
  text-align: left;
}
.score-factor-content {
  text-align: left;
}

/* Align info-item and why-card div content to the left */
.info-item {
  align-self: stretch;
  text-align: left;
}
.info-content {
  text-align: left;
}
.why-card > div:not(.why-icon) {
  align-self: stretch;
  text-align: left;
}





