/* Pageclip Contact Form Section */
.pageclip-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem 2rem 1.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(6, 95, 70, 0.08);
}
.pageclip-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #1f2937;
  gap: 0.5rem;
}
.pageclip-form input,
.pageclip-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  background: #f8fafc;
  color: #1f2937;
  resize: vertical;
  transition: border-color 0.2s;
}
.pageclip-form input:focus,
.pageclip-form textarea:focus {
  outline: none;
  border-color: #059669;
}
.pageclip-form__submit,
.pageclip-form button[type="submit"] {
  background: #059669;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  padding: 0.9rem 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.pageclip-form__submit:hover,
.pageclip-form button[type="submit"]:hover {
  background: #047857;
}
/* Contact Form Section */
.contact-section {
  background: #f8fafc;
  padding: 3rem 0 2rem 0;
}
.contact-title {
  text-align: center;
  font-size: 2rem;
  font-weight: 700;
  color: #059669;
  margin-bottom: 2rem;
}
.contact-form {
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem 2rem 1.5rem 2rem;
  border-radius: 1.5rem;
  box-shadow: 0 4px 24px rgba(6, 95, 70, 0.08);
}
.contact-form label {
  display: flex;
  flex-direction: column;
  font-weight: 500;
  color: #1f2937;
  gap: 0.5rem;
}
.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 0.75rem;
  background: #f8fafc;
  color: #1f2937;
  resize: vertical;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #059669;
}
.contact-form button[type="submit"] {
  background: #059669;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 600;
  border: none;
  border-radius: 0.75rem;
  padding: 0.9rem 0;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
}
.contact-form button[type="submit"]:hover {
  background: #047857;
}
/* Hero background video and overlay */
.hero-bg-video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}
.hero-bg-video {
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(120deg, rgba(16,32,32,0.97) 0%, rgba(16,32,32,0.85) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero {
  position: relative;
  overflow: hidden;
}
.hero-container, .hero-content, .hero-image {
  padding: 1rem 0 2rem 0;
  z-index: 2;
}
@media (max-width: 600px) {
  .desktop-only {
    display: block !important;
  }
}
/* Reset and Base Styles */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif !important;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #1f2937;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding:1em 0;
  background: rgba(10, 182, 139, 1.0);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
  padding: 0 1rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.nav-desktop {
  display: none;
  gap: 1.5rem;
}

.nav-link {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
    font-size: 1.05rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover {
  color: white;
}

.mobile-menu-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  padding: 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  transition: background-color 0.2s;
}

.mobile-menu-btn:hover {
  background: rgba(255, 255, 255, 0.3);
}

.mobile-menu {
  display: none;
  background: white;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
  display: block;
}

.mobile-nav {
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mobile-nav-link {
  color: #1f2937;
  text-decoration: none;
    font-size: 1.25rem;
  font-weight: 500;
  transition: color 0.2s;
}

.mobile-nav-link:hover {
  color: #10b981;
}

/* Hero Section */
.hero {
  background: linear-gradient(to bottom, #0AB68B, #047857);
  padding: 3rem 0 2rem;
  position: relative;
  overflow: hidden;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}
@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }
  .hero-title {
    text-align: center;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
  }
}

.hero-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  line-height: 1.2;
  letter-spacing: -0.025em;
}

.hero-subtitle {
  color: white;
  font-size: 1rem;
  max-width: 600px;
}

.coming-soon-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 0.75rem 1.5rem;
  color: white;
  width: fit-content;
}

.coming-soon-badge svg {
  margin-right: 0.5rem;
}

.badge-text {
  font-weight: 500;
}

.badge-subtext {
  font-size: 0.875rem;
  opacity: 0.9;
  margin-left: 0.5rem;
}

.scroll-indicator {
  display: flex;
  align-items: center;
}

.bounce {
  animation: bounce 2s infinite;
  color: white;
}

@keyframes bounce {
  0%,
  20%,
  53%,
  80%,
  100% {
    transform: translate3d(0, 0, 0);
  }
  40%,
  43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

.hero-image {
  display: flex;
  justify-content: center;
}

.phone-mockup {
  position: relative;
  width: 320px;
  height: auto;
  background: #000;
  border-radius: 1.2rem;
  border: 4px solid #000;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 10px;
}

.phone-screen {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0.8rem;
  background: #f8fafc;
}

.phone-gloss {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 50%, transparent 100%);
  border-radius: 0.5rem;
  pointer-events: none;
}

@keyframes hero-float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  50% {
    transform: translateY(-12px) rotate(0deg);
  }
  75% {
    transform: translateY(-6px) rotate(-1deg);
  }
}

/* Features Section */
.features {
  padding: 3rem 0 2rem;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-badge {
  display: inline-block;
  background: #d1fae5;
  color: #047857;
  padding: 0.25rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}

.section-title {
  font-size: 1.875rem;
  font-weight: 700;
  letter-spacing: -0.025em;
}

.section-description {
  color: #6b7280;
  font-size: 1rem;
  max-width: 900px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  position: relative;
}

.feature-icon {
  background: #d1fae5;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #059669;
}

.feature-title {
  font-size: 1.25rem;
  font-weight: 700;
}

.feature-description {
  color: #6b7280;
  text-align: center;
}

.pro-badge,
.coming-soon-badge-feature {
  position: absolute;
  top: -0.5rem;
  right: -0.5rem;
  color: white;
  font-size: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 9999px;
  font-weight: 600;
}

.pro-badge {
  background: #7c3aed;
}

.coming-soon-badge-feature {
  background: #f97316;
}

/* How It Works Section */
.how-it-works {
  background: #f9fafb;
  padding: 2rem 0 8rem;
}

.tabs-container {
  max-width: 1280px;
  margin: 0 auto;
}

.tabs-list {
  flex-wrap: wrap;
  display: flex;
  gap: 0.5rem;
  background: #e0f2f1;
  border-radius: 2rem;
  padding: 0.5rem 1rem;
  margin-bottom: 2rem;
  box-shadow: 0 2px 8px rgba(16,32,32,0.08);
}

.tab-trigger {
  min-width: 120px;
@media (max-width: 600px) {
  .tabs-list {
    padding: 0.5rem 0.25rem;
    gap: 0.25rem;
  }
  .tab-trigger {
    font-size: 0.85rem;
    padding: 0.5rem 0.5rem;
    min-width: 90px;
  }
}
  background: #ffffff;
  border: 2px solid #d1fae5;
  padding: 0.75rem 1.5rem;
  border-radius: 1.5rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #059669;
  transition: all 0.2s;
  box-shadow: 0 1px 4px rgba(16,32,32,0.06);
  flex: 1 1 0;
}

.tab-trigger.active {
  background: #059669;
  color: #fff;
  border-color: #059669;
  box-shadow: 0 2px 8px rgba(16,32,32,0.12);
}

.tab-trigger:hover:not(.active) {
  color: #047857;
  background: #d1fae5;
}

.desktop-only {
  display: none;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.tab-image {
  display: flex;
  justify-content: center;
}

.phone-mockup-small {
  position: relative;
  width: 320px;
  height: auto;
  background: #000;
  border-radius: 1.2rem;
  border: 4px solid #000;
  box-shadow: 0 10px 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  padding: 10px;
}

.phone-mockup-small img {
  width: 100%;
  height: 100%;
  object-fit: fill;
  border-radius: 0.8rem;
  background: #f8fafc;
}

.tab-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.tab-text h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.tab-text p {
  color: #6b7280;
}

.feature-list {
  list-style: none;
  display: grid;
  gap: 0.5rem;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.feature-list li::before {
  content: "✓";
  background: #10b981;
  color: white;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: bold;
  flex-shrink: 0;
}

/* CTA Section */
.cta {
  background: #10b981;
  padding: 3rem 0 3rem;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
}

.cta-description {
  color: white;
  font-size: 1rem;
  max-width: 900px;
  line-height: 1.7;
}

.cta-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 9999px;
  padding: 1rem 2rem;
  color: white;
  gap: 0.75rem;
}

.cta-badge-text {
  text-align: left;
}

.cta-badge-title {
  font-weight: 600;
  font-size: 1.125rem;
}

.cta-badge-subtitle {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Footer */
.footer {
  border-top: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}

.footer-container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
}

.footer-copyright {
  font-size: 0.75rem;
  color: #6b7280;
}

.footer-nav {
  display: flex;
  gap: 1rem;
}

.footer-link {
  font-size: 0.75rem;
  color: #6b7280;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (min-width: 768px) {
  .nav-desktop {
    display: flex;
  }

  .mobile-menu-btn {
    display: none;
  }

  .hero-container {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .hero-title {
    font-size: 3rem;
  }

  .hero-subtitle {
    font-size: 1.25rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-title {
    font-size: 3rem;
  }

  .section-description {
    font-size: 1.25rem;
  }

  .tabs-list {
    grid-template-columns: repeat(5, 1fr);
  }

  .desktop-only {
    display: block;
  }

  .tab-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .cta-title {
    font-size: 3rem;
  }

  .cta-description {
    font-size: 1.25rem;
  }

  .footer-container {
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3.75rem;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .container {
    padding: 0 1.5rem;
  }

  .header .container {
    padding: 0 1rem;
  }
}

@media (min-width: 1280px) {
  .hero-title {
    font-size: 4rem;
  }
}
