/* Reset & Base */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary: #156d95;
  --primary-hover: #125d80;
  --text-dark: #202020;
  --text-muted: #666666;
  --text-light: #9a9a9a;
  --bg-white: #ffffff;
  --bg-light: #fafafa;
  --bg-card: #e9e9e9;
  --border-color: #e5e5e5;
  --accent-teal: #146e96;
  --accent-green: #167e6c;
}

html {
  scroll-behavior: smooth;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  pointer-events: auto;
  cursor: pointer;
}

.logo-image {
  height: 33px; /* Reduced from 40px */
  width: auto;
}

/*.copyright img {
  height: 20px;
  vertical-align: middle;
  margin: 0 5px;
}
*/

body {
  font-family: "Figtree", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-dark);
  background-color: var(--bg-white);
  overflow-x: hidden;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes blink {
  0%,
  50% {
    opacity: 1;
  }
  51%,
  100% {
    opacity: 0;
  }
}

@keyframes scrollLeft {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes scrollRight {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

.animate-fade-in {
  animation: fadeIn 0.7s ease-out forwards;
}

.animate-slide-up {
  animation: slideUp 0.7s ease-out forwards;
}

.delay-100 {
  animation-delay: 100ms;
}
.delay-200 {
  animation-delay: 200ms;
}
.delay-300 {
  animation-delay: 300ms;
}
.delay-400 {
  animation-delay: 400ms;
}
.delay-500 {
  animation-delay: 500ms;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-dark);
  text-decoration: none;
  transition: color 0.2s;
}

.nav-logo:hover {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1rem;
  font-weight: 400;
  padding: 0.5rem 0.75rem;
  position: relative;
  transition: color 0.2s;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 100%;
}

.nav-link:hover {
  color: var(--primary);
}

.nav-cta {
  background: var(--primary);
  color: white;
  padding: 15px 18px;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 1rem;
  font-weight: 500;
  transition: all 0.2s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--primary-hover);
  border-radius: 1rem;
  box-shadow: 0 4px 12px rgba(21, 109, 149, 0.3);
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  position: relative;
  transition: background 0.3s;
}

.hamburger::before,
.hamburger::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 2px;
  background: var(--text-dark);
  transition: all 0.3s;
}

.hamburger::before {
  top: -8px;
}
.hamburger::after {
  top: 8px;
}

.mobile-menu-btn.active .hamburger {
  background: transparent;
}

.mobile-menu-btn.active .hamburger::before {
  top: 0;
  transform: rotate(45deg);
}

.mobile-menu-btn.active .hamburger::after {
  top: 0;
  transform: rotate(-45deg);
}

.mobile-menu {
  display: none;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--border-color);
  padding: 1.5rem;
  flex-direction: column;
  gap: 1rem;
}

.mobile-menu.active {
  display: flex;
}

.mobile-link {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.125rem;
  font-weight: 400;
  padding: 0.75rem 0;
  transition: color 0.2s;
}

.mobile-link:hover {
  color: var(--primary);
}

.mobile-cta {
  background: var(--primary);
  color: white;
  padding: 15px 18px;
  border-radius: 9999px;
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  margin-top: 1rem;
  transition: all 0.2s;
}
/*Made by MD Touhidul Islam Kanon*/
/* Hero Section */
.hero-section {
  padding: 8rem 2rem 4rem;
  background: var(--bg-white);
}

.hero-container {
  max-width: 1280px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.hero-content-card {
  background: var(--bg-card);
  border-radius: 40px;
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1;
  overflow: hidden;
}

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--text-light);
  font-family: "Geist Mono", monospace;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-decoration: none;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: 3.5rem;
  line-height: 1.07;
  font-weight: 500;
  color: var(--text-dark);
  max-width: 520px;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.75;
  color: #404040;
  max-width: 520px;
  margin-bottom: 1.5rem;
}

.hero-buttons {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 15px 18px;
  border-radius: 9999px;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.15s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  border-radius: 1rem;
  background: var(--primary-hover);
}

.btn-secondary {
  background: transparent;
  color: var(--text-dark);
  border: 1px solid var(--text-dark);
}

.btn-secondary:hover {
  border-radius: 1rem;
}

.hero-image-card {
  background: var(--bg-white);
  border-radius: 40px;
  aspect-ratio: 1;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats Section */
.stats-section {
  background: var(--bg-white);
  overflow: hidden;
}

.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 2rem;
}

.stats-content {
  grid-column: 1;
  position: relative;
  z-index: 10;
}

.stats-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: "Geist Mono", monospace;
  font-size: 0.75rem;
  text-transform: uppercase;
  color: var(--accent-teal);
  margin-bottom: 3rem;
  padding: 0 0.5rem;
  height: 1.5rem;
}

.cursor-blink {
  display: inline-block;
  width: 6px;
  height: 12px;
  background: var(--accent-teal);
  border-radius: 2px;
  animation: blink 1s infinite;
}

.stats-title {
  font-size: 2.5rem;
  font-weight: 400;
  line-height: 1.2;
  color: #111a4a;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.stats-title .text-muted {
  opacity: 0.4;
}

.stats-description {
  font-size: 1.125rem;
  line-height: 1.5;
  color: #111a4a;
  opacity: 0.6;
  margin-bottom: 1.5rem;
}

.stats-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #232730;
  cursor: pointer;
  text-decoration: none;
  margin-top: 1.25rem;
  box-shadow: 0 1px 1px 0 rgba(255, 255, 255, 0), 0 0 0 1px rgba(87, 90, 100, 0.12);
  transition: all 0.2s;
}

.stats-btn:hover {
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05), 0 0 0 1px rgba(87, 90, 100, 0.18);
}

.stats-btn svg {
  transition: transform 0.15s;
}

.stats-btn:hover svg {
  transform: translateX(4px);
}

.stats-visual {
  grid-column: 2;
  position: relative;
  height: 416px;
  overflow: visible;
}

.animated-bars {
  position: absolute;
  top: 0;
  left: 0;
  width: 680px;
  height: 416px;
  pointer-events: none;
}

.bar {
  position: absolute;
  width: 6px;
  border-radius: 3px;
  background: linear-gradient(
    rgb(176, 200, 196) 0%,
    rgb(176, 200, 196) 10%,
    rgba(156, 217, 93, 0.1) 40%,
    rgba(113, 210, 240, 0) 75%
  );
  animation: fadeIn 1s ease-out forwards;
}

.bar.up {
  background: linear-gradient(
    to top,
    rgb(176, 200, 196) 0%,
    rgb(176, 200, 196) 10%,
    rgba(156, 217, 93, 0.1) 40%,
    rgba(113, 210, 240, 0) 75%
  );
}

.bar-dot {
  position: absolute;
  width: 8px;
  height: 8px;
  background: var(--accent-green);
  border-radius: 50%;
  left: -1px;
}

.stats-numbers {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2rem;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-value {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--accent-teal);
  line-height: 1.1;
  letter-spacing: -0.025em;
}

.stat-label {
  font-size: 0.75rem;
  line-height: 1.1;
  color: #7c7f88;
}

/* Pricing Section */
.pricing-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.pricing-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.pricing-header {
  text-align: center;
  margin-bottom: 4rem;
}

.pricing-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
}

.pricing-subtitle {
  font-size: 1.125rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.pricing-card {
  position: relative;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 2px solid var(--border-color);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  background: var(--bg-white);
}

.pricing-card:hover {
  border-color: rgba(21, 109, 149, 0.5);
}

.pricing-card.selected {
  border-color: var(--primary);
  background: rgba(21, 109, 149, 0.05);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: white;
  padding: 0.25rem 1rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  white-space: nowrap;
}

.plan-header {
  margin-bottom: 1rem;
}

.plan-name {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.plan-subtitle {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.currency {
  font-size: 1.125rem;
  color: var(--text-muted);
}

.amount {
  font-size: 1.875rem;
  font-weight: 500;
}

.plan-features {
  list-style: none;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
}

.check-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(21, 109, 149, 0.1);
  flex-shrink: 0;
  margin-top: 2px;
}

.check-icon::after {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23156d95' stroke-width='3' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}

.plan-btn {
  width: 100%;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.2s;
  background: #f4f4f5;
  color: var(--text-dark);
}

.plan-btn.selected {
  background: var(--primary);
  color: white;
}

.pricing-cta {
  text-align: center;
  margin-top: 3rem;
}

.cta-btn {
  background: var(--primary);
  color: white;
  padding: 15px 18px;
  border-radius: 9999px;
  border: none;
  font-size: 1.125rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cta-btn:hover {
  border-radius: 1rem;
  background: var(--primary-hover);
}

/* Features Section */
.features-section {
  min-height: 100vh;
  background: linear-gradient(to bottom right, var(--bg-white), var(--bg-light));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem;
}

.features-container {
  max-width: 1280px;
  width: 100%;
}

.features-header {
  text-align: center;
  margin-bottom: 4rem;
}

.features-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  letter-spacing: -0.025em;
}

.features-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.feature-card {
  padding: 1.5rem;
  border-radius: 1rem;
  background: var(--bg-white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  opacity: 0;
  animation: slideUp 0.7s ease-out forwards;
}

.feature-card:hover {
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}

.feature-description {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.5;
}

/* Samples Section */
.samples-section {
  padding: 6rem 0;
  background: var(--bg-white);
}

.samples-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}

.samples-header {
  text-align: center;
  margin-bottom: 3rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.samples-title {
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1rem;
  letter-spacing: -0.025em;
}

.samples-subtitle {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 1.5rem;
}

.samples-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 9999px;
  background: white;
  color: var(--text-dark);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  box-shadow: 0 -1px 0 0 rgb(181, 181, 181) inset, -1px 0 0 0 rgb(227, 227, 227) inset, 1px 0 0 0 rgb(227, 227, 227)
    inset, 0 1px 0 0 rgb(227, 227, 227) inset;
  background-image: linear-gradient(rgba(255, 255, 255, 0.06) 80%, rgba(255, 255, 255, 0.12));
  transition: box-shadow 0.075s ease-out;
}

.samples-btn:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Improved Carousel Styles */
.carousel-wrapper {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.carousel-fade-left,
.carousel-fade-right {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  z-index: 10;
  pointer-events: none;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.7) 60%, rgba(255, 255, 255, 0) 100%);
}

.carousel-track {
  display: flex;
  gap: 2rem;
  white-space: nowrap;
  animation: scrollLeft 40s linear infinite;
  will-change: transform;
}

.carousel-track:hover {
  animation-play-state: paused;
}

.carousel-item {
  width: 340px;
  height: 480px;
  border-radius: 16px;
  background: linear-gradient(rgb(255, 255, 255), rgb(248, 248, 248));
  box-shadow:
    rgba(0, 0, 0, 0.08) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.1) 0px 4px 12px 0px,
    rgba(0, 0, 0, 0.06) 0px 16px 32px -8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.carousel-item:hover {
  transform: scale(1.02);
  box-shadow:
    rgba(0, 0, 0, 0.1) 0px 0px 0px 1px,
    rgba(0, 0, 0, 0.15) 0px 8px 16px 0px,
    rgba(0, 0, 0, 0.1) 0px 20px 40px -8px;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  padding: 8px;
}

/* FAQ Section */
.faq-section {
  padding: 6rem 2rem;
  background: var(--bg-white);
}

.faq-container {
  max-width: 1280px;
  margin: 0 auto;
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 4rem;
}

.faq-title-col {
  position: relative;
}

.faq-title {
  font-size: 2.5rem;
  font-weight: 400;
  color: var(--text-dark);
  letter-spacing: -0.025em;
  position: sticky;
  top: 6rem;
}

.faq-item {
  border-bottom: 1px solid var(--border-color);
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: opacity 0.15s;
}

.faq-question:hover {
  opacity: 0.7;
}

.faq-question span:first-child {
  font-size: 1.125rem;
  line-height: 1.75;
  color: var(--text-dark);
  padding-right: 2rem;
}

.faq-icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.faq-icon::before,
.faq-icon::after {
  content: "";
  position: absolute;
  background: var(--text-dark);
  transition: transform 0.2s;
}

.faq-icon::before {
  width: 14px;
  height: 1.5px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-icon::after {
  width: 1.5px;
  height: 14px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-answer p {
  padding-bottom: 1.5rem;
  padding-right: 3rem;
  font-size: 1.125rem;
  line-height: 1.5;
  color: var(--text-muted);
}

/* Footer */
.footer {
  background: var(--bg-light);
  border-top: 1px solid var(--border-color);
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand {
  grid-column: 1 / 2;
  display: flex;
  flex-direction: column;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.875rem;
  line-height: 1.25;
  color: var(--text-muted);
  max-width: 280px;
}

.footer-contact-info {
  margin-top: 1rem;
}

.footer-contact-info p {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  transition: all 0.15s;
}

.social-link.whatsapp:hover {
  color: #25d366;
  border-color: #25d366;
}

.social-link.instagram:hover {
  color: #e1306c;
  border-color: #e1306c;
}

.social-link.email:hover {
  color: var(--text-dark);
  border-color: var(--text-dark);
}

.footer-links-col h4 {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-links a:hover {
  color: var(--text-dark);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.copyright {
  font-size: 0.875rem;
  color: var(--text-muted);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.875rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-legal a:hover {
  color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
  }

  .hero-content-card {
    aspect-ratio: auto;
    padding: 3rem;
  }

  .hero-image-card {
    aspect-ratio: 4 / 3;
  }

  .hero-title {
    font-size: 2.5rem;
    line-height: 1.1;
  }

  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-visual {
    display: none;
  }

  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .faq-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .faq-title {
    position: static;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .nav-cta {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .hero-section {
    padding: 6rem 1rem 2rem;
  }

  .hero-content-card {
    padding: 2rem;
    border-radius: 24px;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-image-card {
    border-radius: 24px;
  }

  .stats-numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .carousel-item {
    width: 280px;
    height: 400px;
  }

  .carousel-wrapper {
    height: 440px;
  }

  .carousel-fade-left,
  .carousel-fade-right {
    width: 25%;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    width: 220px;
    height: 320px;
  }

  .carousel-wrapper {
    height: 360px;
  }
}
 .legal-page {
      padding: 140px 24px 80px;
      background: var(--bg-white);
    }
    .legal-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .legal-header {
      margin-bottom: 3rem;
      text-align: center;
    }
    .legal-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }
    .legal-updated {
      font-size: 0.875rem;
      color: var(--text-muted);
    }
    .legal-content {
      line-height: 1.8;
    }
    .legal-content h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-dark);
      margin: 2.5rem 0 1rem;
    }
    .legal-content h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-dark);
      margin: 1.5rem 0 0.75rem;
    }
    .legal-content p {
      margin-bottom: 1rem;
      color: var(--text-muted);
    }
    .legal-content ul {
      margin: 1rem 0 1.5rem 1.5rem;
      color: var(--text-muted);
    }
    .legal-content li {
      margin-bottom: 0.5rem;
    }
    .legal-content a {
      color: var(--primary);
      text-decoration: none;
    }
    .legal-content a:hover {
      text-decoration: underline;
    }
    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.2s;
    }
    .legal-back:hover {
      opacity: 0.8;
    }
     .legal-page {
      padding: 140px 24px 80px;
      background: var(--bg-white);
    }
    .legal-container {
      max-width: 800px;
      margin: 0 auto;
    }
    .legal-header {
      margin-bottom: 3rem;
      text-align: center;
    }
    .legal-title {
      font-size: clamp(28px, 4vw, 40px);
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 1rem;
    }
    .legal-updated {
      font-size: 0.875rem;
      color: var(--text-muted);
    }
    .legal-content {
      line-height: 1.8;
    }
    .legal-content h2 {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--text-dark);
      margin: 2.5rem 0 1rem;
    }
    .legal-content h3 {
      font-size: 1.125rem;
      font-weight: 600;
      color: var(--text-dark);
      margin: 1.5rem 0 0.75rem;
    }
    .legal-content p {
      margin-bottom: 1rem;
      color: var(--text-muted);
    }
    .legal-content ul, .legal-content ol {
      margin: 1rem 0 1.5rem 1.5rem;
      color: var(--text-muted);
    }
    .legal-content li {
      margin-bottom: 0.5rem;
    }
    .legal-content a {
      color: var(--primary);
      text-decoration: none;
    }
    .legal-content a:hover {
      text-decoration: underline;
    }
    .legal-back {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-bottom: 2rem;
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
      transition: opacity 0.2s;
    }
    .legal-back:hover {
      opacity: 0.8;
    }
    .legal-content strong {
      color: var(--text-dark);
    }