/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  width: 100%;
}

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.5;
  color: #1a1a1a;
  background-color: #ffffff;
  font-weight: 400;
}

/* Ensure all text elements use Manrope */
h1, h2, h3, h4, h5, h6, p, div, span, button, input {
  font-family: inherit;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Navigation */
.navbar {
  background: white;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo-img {
  height: 40px;
  width: auto;
}

.nav-menu {
  display: none;
  gap: 32px;
}

.nav-link {
  text-decoration: none;
  color: #1a1a1a;
  font-weight: 500;
  transition: color 0.3s ease;
}

.nav-link:hover {
  color: #39C1D2;
}

.nav-hamburger {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger-line {
  width: 25px;
  height: 3px;
  background-color: #1a1a1a;
  transition: all 0.3s ease;
}

.nav-hamburger.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.nav-hamburger.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

.nav-menu.mobile-open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 70px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 20px;
  gap: 20px;
}

/* Hero Section */
.hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
  padding: 150px 0 80px;
  min-height: 80vh;
  display: flex;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  text-align: center;
  gap: 40px;
}

.logo-container {
  margin-bottom: 20px;
}

.hero-logo {
  height: 60px;
  width: auto;
}

.hero-headline {
  font-size: 2.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 16px;
  line-height: 1.15;
  letter-spacing: -0.025em;
}

.hero-subheadline {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 32px;
  max-width: 600px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta-button {
  border: none;
  padding: 14px 29px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
}

.cta-button.primary {
  background: #39C1D2;
  color: white;
  box-shadow: 0 4px 12px rgba(57, 193, 210, 0.3);
}

.cta-button.primary:hover {
  background: #2A9BAA;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(57, 193, 210, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #39C1D2;
  border: 2px solid #39C1D2;
}

.cta-button.secondary:hover {
  background: #39C1D2;
  color: white;
}

.hero-app-image {
  width: 100%;
  max-width: 660px;
  height: auto;
}

/* Why Different Section */
.why-different {
  padding: 80px 0;
  background: white;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

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

.difference-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease;
}

.difference-card:hover {
  transform: translateY(-4px);
}

.difference-icon, .feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 26px;
  color: #39C1D2;
  display: flex;
  align-items: center;
  justify-content: center;
}

.difference-icon svg, .feature-icon svg {
  width: 100%;
  height: 100%;
}

.feature-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(70%) sepia(76%) saturate(423%) hue-rotate(143deg) brightness(89%) contrast(90%);
}

.difference-card h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
}

.difference-card p {
  color: #666;
  line-height: 1.6;
}

/* Features Section */
.features {
  padding: 80px 0;
  background: #f8f9fa;
}

.features .section-title {
  margin-bottom: 60px;
}

.features-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.feature-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
}



.feature-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Estate Pros Section */
.estate-pros {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.estate-pros-subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 60px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.estate-pros-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.estate-pro-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
  border: 1px solid #e9ecef;
}

.estate-pro-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.estate-pro-icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}

.estate-pro-icon-img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(70%) sepia(76%) saturate(423%) hue-rotate(143deg) brightness(89%) contrast(90%);
}

.estate-pro-card h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.estate-pro-card p {
  color: #666;
  line-height: 1.6;
  font-size: 1rem;
}

/* Pricing Section */
.pricing {
  padding: 80px 0;
  background: white;
}

.pricing-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 40px;
}

.pricing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.toggle-label {
  font-weight: 500;
  color: #666;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .4s;
  border-radius: 34px;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .4s;
  border-radius: 50%;
}

input:checked + .slider {
  background-color: #39C1D2;
}

input:checked + .slider:before {
  transform: translateX(26px);
}

.pricing-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
  margin-bottom: 40px;
}

/* Pricing Carousel Container */
.pricing-carousel-container {
  position: relative;
  margin-bottom: 40px;
}

/* SwiperJS Mobile Carousel Styles */
@media (max-width: 767px) {
  .pricing-carousel-container {
    padding: 30px 0 0;
  }

  .pricing-swiper {
    width: 100%;
    padding: 0 20px 50px 20px;
  }

  .pricing-swiper .swiper-slide {
    height: auto;
  }

  .pricing-card {
    width: 100%;
    height: auto;
    max-height: none;
    margin: 0;
  }

  .swiper-pagination {
    bottom: 10px !important;
  }

  .swiper-pagination-bullet {
    width: 12px !important;
    height: 12px !important;
    background: #d1d5db !important;
    opacity: 1 !important;
    margin: 0 6px !important;
  }

  .swiper-pagination-bullet-active {
    background: #39C1D2 !important;
    transform: scale(1.2);
  }
}

/* Desktop Pricing - Display as grid */
@media (min-width: 768px) {
  .pricing-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    transform: none !important;
  }

  .pricing-swiper .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
  }

  .swiper-pagination {
    display: none;
  }
}

.pricing-card {
  background: white;
  border: 2px solid #e9ecef;
  border-radius: 16px;
  padding: 16px 16px 20px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  height: auto;
  max-height: 420px;
}

.pricing-card.featured {
  border-color: #39C1D2;
  transform: scale(1.02);
  margin-top: 30px;
}

.pricing-card.featured::before {
  content: "Most Popular";
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: #39C1D2;
  color: white;
  padding: 6px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 10;
}

.plan-header h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 8px;
}

.plan-subtitle {
  font-size: 0.875rem;
  color: #39C1D2;
  font-weight: 600;
  margin-bottom: 16px;
}

.plan-description {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.4;
  margin-bottom: 16px;
  text-align: center;
  flex-grow: 0;
}

.price {
  font-size: 2.2rem;
  font-weight: 700;
  color: #39C1D2;
  margin-bottom: 16px;
}

.price span {
  font-size: 0.85rem;
  color: #666;
  font-weight: 400;
}

.features {
  list-style: none;
  margin-bottom: 16px;
  text-align: left;
  padding: 0;
}

.features li {
  padding: 2px 0;
  color: #666;
  font-size: 0.85rem;
  line-height: 1.3;
  word-wrap: break-word;
}

.checkmark {
  color: #39C1D2;
  font-weight: 600;
  margin-right: 8px;
}

.plan-button {
  width: 100%;
  background: #39C1D2;
  color: white;
  border: none;
  padding: 14px 22px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.plan-button:hover {
  background: #2A9BAA;
}

.pricing-footer {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.guarantee-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
  font-size: 0.9rem;
}

.guarantee-icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.guarantee-icon svg {
  width: 16px;
  height: 16px;
  fill: #39C1D2;
}

/* FAQ Section */
.faq {
  padding: 80px 0;
  background: #f8f9fa;
}

.faq-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: 1fr;
}

.faq-item {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-item h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 12px;
}

.faq-item p {
  color: #666;
  line-height: 1.6;
}

/* Final CTA Section */
.final-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #39C1D2 0%, #2A9BAA 100%);
  text-align: center;
  color: white;
}

.final-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.final-cta p {
  font-size: 1.2rem;
  margin-bottom: 32px;
  opacity: 0.9;
}

.final-cta .cta-button.primary {
  background: white;
  color: #39C1D2;
}

.final-cta .cta-button.primary:hover {
  background: #f8f9fa;
  transform: translateY(-2px);
}

/* Features Page Styles */
.features-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.features-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.features-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.features-subtitle {
  font-size: 1.25rem;
  color: #666;
  line-height: 1.6;
}

.detailed-features {
  padding: 80px 0;
  background: white;
}

.detailed-features-grid {
  display: grid;
  gap: 40px;
  grid-template-columns: 1fr;
}

.detailed-feature-card {
  background: #f8f9fa;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.detailed-feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.detailed-feature-card h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 16px;
}

.detailed-feature-card p {
  font-size: 1rem;
  color: #666;
  line-height: 1.6;
}

.features-cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #39C1D2 0%, #2a9bb8 100%);
  text-align: center;
  color: white;
}

.features-cta h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
}

.features-cta p {
  font-size: 1.25rem;
  margin-bottom: 40px;
  opacity: 0.9;
}

/* About Us Page */
.about-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  letter-spacing: -0.025em;
}

.about-content {
  text-align: left;
  margin-bottom: 40px;
}

.about-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #555;
  margin-bottom: 24px;
}

.about-intro {
  font-size: 1.25rem !important;
  font-weight: 500;
  color: #333 !important;
  margin-bottom: 32px !important;
}

.about-conclusion {
  font-size: 1.15rem !important;
  font-weight: 500;
  color: #39C1D2 !important;
  margin-bottom: 0 !important;
}

.about-cta {
  text-align: center;
  margin-top: 40px;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 24px;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 32px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #39C1D2;
}

/* Terms & Conditions Page */
.terms-hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.terms-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.terms-title {
  font-size: 3rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.terms-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 30px;
  font-weight: 500;
}

.terms-intro {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  text-align: left;
}

.terms-content {
  padding: 80px 0;
  background: white;
}

.terms-sections {
  max-width: 800px;
  margin: 0 auto;
}

.terms-section {
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid #e9ecef;
}

.terms-section:last-child {
  border-bottom: none;
}

.terms-section h2 {
  font-size: 1.5rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.terms-section p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 16px;
}

.terms-section ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.terms-section li {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 20px;
  position: relative;
}

.terms-section li:before {
  content: "•";
  color: #39C1D2;
  font-weight: bold;
  position: absolute;
  left: 0;
}

.terms-section a {
  color: #39C1D2;
  text-decoration: none;
}

.terms-section a:hover {
  text-decoration: underline;
}

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid #333;
  color: #ccc;
}

/* Tablet Styles */
@media (min-width: 768px) {
  .container {
    padding: 0 40px;
  }

  .nav-container {
    padding: 0 40px;
  }

  .nav-menu {
    display: flex;
  }

  .nav-hamburger {
    display: none;
  }

  .hero-content {
    flex-direction: row;
    text-align: left;
  }

  .hero-text {
    flex: 1;
  }

  .hero-image {
    flex: 1;
  }

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

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

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

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

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

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

/* Desktop Styles */
@media (min-width: 1024px) {
  .container {
    max-width: 1200px;
  }

  .hero-headline {
    font-size: 3.5rem;
  }

  .hero-subheadline {
    font-size: 1.25rem;
  }

  .hero-content {
    align-items: center;
    gap: 60px;
  }

  .hero-text .hero-buttons {
    justify-content: flex-start;
  }

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

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

  .detailed-features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }

  .estate-pros-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }

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

  .pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  }

  .pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
  }

  .guarantee-item {
    font-size: 1rem;
  }

  .footer-content {
    flex-direction: row;
    justify-content: space-between;
  }
}