/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* BRAND */
:root {
  --brand-green: #2ecc71; /* A1 */
  --brand-yellow: #f1c40f;
  --brand-gray: #f7f7f7;
  --brand-dark: #222;
}

/* GLOBAL */
body {
  font-family: 'Inter', sans-serif;
  background: var(--brand-gray);
  color: var(--brand-dark);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 16px;
}

/* HEADER */
.site-header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
}

.logo img {
  height: 40px;
  width: auto;
}

.nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav a {
  text-decoration: none;
  color: #333;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--brand-green);
  color: #fff;
  font-weight: 600;
}

/* HERO */
.hero {
  padding: 64px 0 48px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text h1 {
  font-size: 1.9rem;
  margin-bottom: 12px;
}

.hero-text p {
  margin-bottom: 16px;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0;
}

.owner-note {
  font-size: 0.9rem;
  color: #555;
}

.owner-note a {
  color: #0077cc;
}

.hero-visuals {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image img {
  border-radius: 16px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}

/* DEVICE MOCKUP */
.device-mockup {
  display: flex;
  justify-content: center;
}

.device-frame {
  width: 220px;
  border-radius: 40px;
  padding: 12px;
  background: linear-gradient(135deg, #ffffff, #e8f9f1);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.device-screen {
  border-radius: 28px;
  overflow: hidden;
  background: #000;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: 0.2s ease;
}

.btn-green {
  background: var(--brand-green);
  color: #fff;
}

.btn-outline {
  background: transparent;
  color: var(--brand-dark);
  border: 1px solid #ccc;
}

.btn:hover {
  opacity: 0.9;
}

.btn-block {
  width: 100%;
  margin-top: 8px;
}

/* SECTIONS */
section {
  padding: 64px 0;
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 24px auto;
  color: #555;
}

h2 {
  text-align: center;
  margin-bottom: 12px;
  font-size: 1.6rem;
}

/* FEATURES */
.features-grid {
  display: grid;
  gap: 20px;
}

.feature-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feature-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.feature-icon {
  display: inline-block;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  margin-bottom: 12px;
}

/* Icon color variants */
.icon-qr {
  background: var(--brand-green);
}
.icon-message {
  background: var(--brand-yellow);
}
.icon-automation {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-yellow));
}

/* PRICING */
.pricing-grid {
  display: grid;
  gap: 20px;
  margin-top: 24px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  position: relative;
}

.card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.card .tagline {
  font-size: 0.9rem;
  color: #888;
  margin-bottom: 8px;
}

.card .price {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 12px 0;
}

.card p {
  margin-bottom: 10px;
}

.card.highlight {
  border: 2px solid var(--brand-green);
}

/* Pricing icons */
.card-icon {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  position: absolute;
  top: 20px;
  right: 20px;
}

.icon-crew {
  background: var(--brand-green);
}
.icon-solo {
  background: var(--brand-yellow);
}

/* TIERS */
.tiers-grid {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.tier-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.tier-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.tier-card ul {
  list-style: disc;
  padding-left: 20px;
  font-size: 0.95rem;
}

.tier-image {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.tiers-cta {
  margin-top: 24px;
  text-align: center;
}

/* FINAL CTA */
.final-cta {
  background: #fff;
}

.final-cta-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.final-cta-text h2 {
  text-align: left;
}

.final-cta-text p {
  margin: 12px 0 16px;
}

/* FOOTER */
.site-footer {
  padding: 24px 0;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}

/* DESKTOP */
@media (min-width: 900px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    flex: 1;
    padding-right: 24px;
  }

  .hero-visuals {
    flex: 1;
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .hero-image {
    flex: 1;
    padding-right: 16px;
  }

  .device-mockup {
    flex: 0 0 auto;
  }

  .hero-buttons {
    flex-direction: row;
    justify-content: flex-start;
  }

  .btn-block {
    width: auto;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pricing-grid {
    grid-template-columns: 2fr 1.5fr;
  }

  .tiers-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .final-cta-inner {
    flex-direction: row;
    align-items: center;
  }

  .final-cta-text {
    flex: 1;
    padding-right: 24px;
  }
.final-cta-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* CLOSE the desktop media query */
}  /* closes @media (min-width: 900px) */


/* Base desktop styling improvements */
.nav-cta {
  padding: 8px 16px;
  border-radius: 9999px;
  font-weight: 600;
  background-color: #1db954; /* brighter green */
  color: white;
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 2px 4px rgba(0,0,0,0.15);
  transition: all 0.2s ease;
}

/* Hover (desktop only) */
.nav-cta:hover {
  background-color: #1ed760;
}

/* --- REMOVE ALL BROKEN MOBILE MEDIA QUERIES ---
   You can add clean mobile overrides later, but for now
   this restores your CSS to a valid, working state.
*/

/* --- CLEAN MOBILE OVERRIDE FOR THE REAL NAV BUTTON --- */

@media (max-width: 600px) {
  .nav-cta {
    padding: 12px 20px !important;
    font-size: 15px !important;
    border-radius: 9999px !important;
    white-space: nowrap !important;
  }
	.mobile-hide{
	display:none;
	}
}
