/* ============================================================
   Standard Time® — Shared Stylesheet
   Colors: #2e7d32 primary | #1b5e20 dark | #4caf50 light | #e8f5e9 bg
   ============================================================ */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', Arial, sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { color: #2e7d32; text-decoration: none; }
a:hover { color: #1b5e20; text-decoration: underline; }

ul { list-style: none; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
  color: #1b5e20;
}

h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }
h4 { font-size: 1.1rem; }

p { margin-bottom: 1rem; }

/* ---------- Layout Utilities ---------- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section { padding: 4rem 0; }
.section--alt { background: #e8f5e9; }
.section--dark { background: #1b5e20; color: #e8f5e9; }
.section--dark h2,
.section--dark h3 { color: #a5d6a7; }

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 2rem; }

/* ---------- Navigation ---------- */
.navbar {
  background: #1b5e20;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.navbar__brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: #4caf50;
  letter-spacing: -0.5px;
  white-space: nowrap;
  text-decoration: none;
}
.navbar__brand:hover { color: #a5d6a7; text-decoration: none; }

.navbar__nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.navbar__nav a {
  color: #e8f5e9;
  font-weight: 500;
  padding: 0.5rem 0.75rem;
  border-radius: 4px;
  font-size: 0.92rem;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
  white-space: nowrap;
}
.navbar__nav a:hover,
.navbar__nav a.active {
  background: #2e7d32;
  color: #fff;
  text-decoration: none;
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0.5rem;
}
.navbar__toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #e8f5e9;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

/* ---------- Hero Section ---------- */
.hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 60%, #388e3c 100%);
  color: #e8f5e9;
  padding: 5rem 1.5rem;
}

.hero__inner {
  display: flex;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.hero__logo {
  flex-shrink: 0;
  width: 256px;
  height: 256px;
  object-fit: contain;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4));
}

.hero__content { flex: 1; }

.hero__content h1 {
  color: #fff;
  margin-bottom: 1rem;
}

.hero__content p {
  font-size: 1.15rem;
  color: #c8e6c9;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  font-size: 1rem;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.1s;
  text-decoration: none;
  line-height: 1;
}
.btn:hover { transform: translateY(-1px); text-decoration: none; }

.btn--primary {
  background: #4caf50;
  color: #fff;
  border-color: #4caf50;
}
.btn--primary:hover { background: #388e3c; border-color: #388e3c; color: #fff; }

.btn--outline {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn--outline:hover { background: rgba(255,255,255,0.1); color: #fff; }

.btn--dark {
  background: #1b5e20;
  color: #fff;
  border-color: #1b5e20;
}
.btn--dark:hover { background: #2e7d32; border-color: #2e7d32; color: #fff; }

.btn--lg {
  font-size: 1.1rem;
  padding: 0.9rem 2.2rem;
}

.btn--sm {
  font-size: 0.875rem;
  padding: 0.5rem 1.2rem;
}

/* CTA strip */
.cta-strip {
  background: #2e7d32;
  padding: 2.5rem 1.5rem;
  text-align: center;
  color: #e8f5e9;
}
.cta-strip h2 { color: #fff; margin-bottom: 0.75rem; }
.cta-strip p { color: #c8e6c9; margin-bottom: 1.5rem; }
.cta-strip .btn--primary { font-size: 1.1rem; margin: 0 0.5rem 0.5rem; }

/* ---------- Cards / Thumbnails ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border: 1px solid #c8e6c9;
  border-radius: 10px;
  padding: 1.75rem 1.5rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover { box-shadow: 0 6px 24px rgba(46,125,50,0.15); transform: translateY(-3px); }

.card__icon {
  width: 48px;
  height: 48px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.card p { font-size: 0.92rem; color: #444; margin-bottom: 1rem; }

.card .btn { margin-top: auto; }

/* Section intro */
.section__intro {
  max-width: 720px;
  margin: 0 auto 2.5rem;
  text-align: center;
}
.section__intro h2 { margin-bottom: 0.75rem; }
.section__intro p { color: #555; font-size: 1.05rem; }

/* ---------- AI Images ---------- */
.ai-image-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 1.5rem 0;
}

/* ---------- AI Image Placeholder (legacy div) ---------- */
.ai-image {
  width: 100%;
  min-height: 320px;
  background: linear-gradient(135deg, #c8e6c9 0%, #e8f5e9 50%, #a5d6a7 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2e7d32;
  font-style: italic;
  font-size: 0.95rem;
  text-align: center;
  padding: 2rem;
  margin: 1.5rem 0;
  border: 2px dashed #4caf50;
  position: relative;
  overflow: hidden;
}
.ai-image::before {
  content: '[ Image: ' attr(data-description) ' ]';
  display: block;
  font-weight: 600;
}

/* ---------- Feature Badges ---------- */
.badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.2rem 0.55rem;
  border-radius: 4px;
  margin-left: 0.4rem;
  vertical-align: middle;
}
.badge--pro { background: #2e7d32; color: #fff; }
.badge--enterprise { background: #1b5e20; color: #a5d6a7; }

/* Feature list */
.feature-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.feature-item {
  background: #fff;
  border-left: 4px solid #4caf50;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.feature-item h4 { color: #2e7d32; margin-bottom: 0.35rem; font-size: 1rem; }
.feature-item p { font-size: 0.875rem; color: #555; margin: 0; }

/* ---------- Pricing Cards ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.pricing-card {
  background: #fff;
  border: 2px solid #c8e6c9;
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
  transition: box-shadow 0.2s;
}
.pricing-card:hover { box-shadow: 0 8px 32px rgba(46,125,50,0.18); }
.pricing-card--featured {
  border-color: #2e7d32;
  background: #f1f8f1;
}
.pricing-card__label {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #2e7d32;
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 0.3rem 1rem;
  border-radius: 20px;
}
.pricing-card h3 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.pricing-card__price {
  font-size: 2.5rem;
  font-weight: 800;
  color: #2e7d32;
  margin: 1rem 0 0.25rem;
}
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: #666; }
.pricing-card p { color: #555; font-size: 0.92rem; margin-bottom: 1.5rem; }
.pricing-card ul { text-align: left; margin: 1.25rem 0 1.75rem; }
.pricing-card ul li {
  padding: 0.4rem 0;
  font-size: 0.9rem;
  color: #333;
  border-bottom: 1px solid #e8f5e9;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.pricing-card ul li::before { content: '✓'; color: #4caf50; font-weight: 700; flex-shrink: 0; }

/* ---------- Contact Form ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.contact-info h3 { margin-bottom: 1rem; }
.contact-info p { color: #555; }
.contact-info a { color: #2e7d32; font-weight: 600; }

.contact-details {
  margin: 1.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.contact-detail {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.05rem;
}
.contact-detail__icon {
  width: 40px;
  height: 40px;
  background: #e8f5e9;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: #1b5e20;
  font-size: 0.92rem;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid #c8e6c9;
  border-radius: 6px;
  font-size: 1rem;
  font-family: inherit;
  color: #1a1a1a;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: #2e7d32;
  box-shadow: 0 0 0 3px rgba(46,125,50,0.12);
}
.form-group textarea { resize: vertical; min-height: 140px; }

/* ---------- Video Grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(480px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.video-wrapper iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}

/* ---------- Who Uses / Benefits Page ---------- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.two-col--reverse { direction: rtl; }
.two-col--reverse > * { direction: ltr; }

.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}
.audience-item {
  background: #e8f5e9;
  border-radius: 8px;
  padding: 1rem 1.25rem;
  font-weight: 600;
  color: #1b5e20;
  font-size: 0.95rem;
}

.benefit-section { padding: 2rem 0; border-bottom: 1px solid #e8f5e9; }
.benefit-section:last-child { border-bottom: none; }
.benefit-section h3 { color: #2e7d32; margin-bottom: 0.75rem; }
.benefit-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.benefit-bullet {
  background: #e8f5e9;
  color: #1b5e20;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.87rem;
  font-weight: 500;
}

/* ---------- Store Page ---------- */
.store-container {
  min-height: 500px;
}

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, #1b5e20 0%, #2e7d32 100%);
  padding: 3.5rem 1.5rem;
  text-align: center;
  color: #e8f5e9;
}
.page-hero h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero p { color: #c8e6c9; font-size: 1.1rem; max-width: 680px; margin: 0 auto; }

/* ---------- Footer ---------- */
.footer {
  background: #1b5e20;
  color: #c8e6c9;
  padding: 3rem 1.5rem 1.5rem;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto 2rem;
}
.footer__brand { color: #4caf50; font-size: 1.25rem; font-weight: 800; margin-bottom: 0.75rem; }
.footer__tagline { font-size: 0.88rem; color: #a5d6a7; line-height: 1.5; }
.footer__contact-item { font-size: 0.92rem; margin-bottom: 0.4rem; }
.footer__contact-item a { color: #c8e6c9; }
.footer__contact-item a:hover { color: #fff; }

.footer__col h4 { color: #fff; font-size: 0.95rem; margin-bottom: 0.75rem; }
.footer__col ul li { margin-bottom: 0.35rem; }
.footer__col ul li a { color: #a5d6a7; font-size: 0.88rem; }
.footer__col ul li a:hover { color: #fff; }

.footer__bottom {
  border-top: 1px solid #2e7d32;
  padding-top: 1.25rem;
  text-align: center;
  font-size: 0.83rem;
  color: #81c784;
  max-width: 1200px;
  margin: 0 auto;
}

/* ---------- Breadcrumb ---------- */
.breadcrumb {
  background: #e8f5e9;
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
  color: #555;
}
.breadcrumb a { color: #2e7d32; }
.breadcrumb span { margin: 0 0.4rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .navbar__nav {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0; right: 0;
    background: #1b5e20;
    padding: 1rem;
    gap: 0.25rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  }
  .navbar__nav.open { display: flex; }
  .navbar__nav a { padding: 0.65rem 1rem; font-size: 1rem; }
  .navbar__toggle { display: flex; }
  .navbar { position: sticky; }

  .hero__inner { flex-direction: column; text-align: center; gap: 2rem; }
  .hero__logo { width: 180px; height: 180px; }
  .hero__actions { justify-content: center; }

  .two-col { grid-template-columns: 1fr; }
  .two-col--reverse { direction: ltr; }

  .video-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .section { padding: 2.5rem 0; }
  .card-grid { grid-template-columns: 1fr; }
  .feature-list { grid-template-columns: 1fr; }
  .audience-list { grid-template-columns: 1fr; }
}
