* { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark: #252328;
  --gray-bg: #f9f9f9;
  --green: #8ac539;
  --green-dark: #447c17;
  --text-body: #5c5c66;
  --text-footer: #5a5a63;
  --text-muted: #6e6f75;
  --border: #e2e2e6;
}

body {
  font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.5;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.btn { display: inline-block; padding: 12px 22px; border-radius: 5px; font-weight: 600; font-size: 14px; cursor: pointer; border: 2px solid transparent; transition: background 0.15s ease, opacity 0.15s ease; }
.btn-primary { background: var(--green); color: #1c1c1c; }
.btn-primary:hover { background: var(--green-dark); }
.btn-outline { border-color: var(--dark); color: var(--dark); background: transparent; }
.btn-outline:hover { background: var(--dark); color: #fff; }
.btn-outline-white { border-color: #fff; color: #fff; }
.btn-outline-white:hover { background: #fff; color: var(--dark); }
.btn-sm { padding: 8px 16px; font-size: 13px; }

.promo-bar { background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; gap: 16px; padding: 14px 24px; font-size: 14px; flex-wrap: wrap; text-align: center; position: relative; }
.promo-dot { width: 8px; height: 8px; background: var(--green); border-radius: 50%; display: inline-block; }
.promo-close { position: absolute; right: 20px; top: 12px; background: none; border: none; color: #fff; font-size: 18px; cursor: pointer; }

.utility-bar { background: var(--gray-bg); border-bottom: 1px solid var(--border); }
.utility-inner { display: flex; justify-content: flex-end; }
.utility-links { display: flex; gap: 24px; padding: 8px 0; font-size: 12px; text-transform: uppercase; letter-spacing: 0.03em; color: #444; }
.dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; display: inline-block; margin-right: 6px; }

.site-header { background: #fff; border-bottom: 1px solid var(--border); position: relative; }
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 20px 24px; }
.logo { display: flex; align-items: center; gap: 8px; }
.logo-mark { width: 30px; height: 30px; border-radius: 6px; background: conic-gradient(from 90deg, var(--green), #4aa3d9, #e0607c, #f2b134, var(--green)); display: inline-block; }
.logo-stack { display: flex; flex-direction: column; line-height: 1.15; }
.logo-text { font-weight: 700; font-size: 20px; }
.logo-tagline { font-size: 11px; font-weight: 500; color: var(--text-footer); letter-spacing: 0.02em; }
.footer-tagline { font-size: 12px; color: var(--text-footer); margin-bottom: 8px; }

/* About page */
.about-hero { padding: 96px 0 20px; background: #fff; text-align: center; }
.about-hero h1 { font-size: 40px; font-weight: 600; line-height: 1.25; margin: 0 auto 20px; max-width: 820px; }
.about-hero .section-sub { max-width: 620px; margin: 0 auto; }
.story-section { padding: 30px 0 80px; }
.story-section .container { max-width: 760px; }
.story-section p { color: var(--text-body); font-size: 17px; line-height: 1.75; margin-bottom: 20px; }
.story-section h2 { font-size: 22px; font-weight: 600; margin: 40px 0 14px; }
.story-section h2:first-of-type { margin-top: 0; }
.story-section h3 { font-size: 18px; font-weight: 600; color: var(--dark); margin: 28px 0 10px; }
.story-section ul, .story-section ol { margin: 0 0 20px; padding-left: 22px; color: var(--text-body); font-size: 17px; line-height: 1.75; }
.story-section ul { list-style: disc; }
.story-section ol { list-style: decimal; }
.story-section li { margin-bottom: 8px; }
.story-section table { width: 100%; border-collapse: collapse; margin: 4px 0 28px; font-size: 15px; }
.story-section th, .story-section td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border); color: var(--text-body); }
.story-section th { color: var(--dark); font-weight: 600; background: var(--gray-bg); }
.story-section .faq-list { margin-top: 4px; }
.legal-notice { display: flex; align-items: flex-start; gap: 12px; background: #fdf3d6; border: 1px solid #f0dd9c; border-radius: 6px; padding: 18px 22px; margin: 24px 0; text-align: left; }
.legal-notice p { color: #6b5a1e; font-size: 14px; line-height: 1.6; margin: 0; }
.legal-notice-icon { font-size: 16px; line-height: 1.6; }
.legal-list li { margin-bottom: 10px; }
.legal-list a { color: var(--dark); font-weight: 600; }
.legal-list a:hover { color: var(--green-dark); }
.values-section { padding: 20px 0 90px; background: var(--gray-bg); }
.value-card { flex: 1; min-width: 220px; text-align: left; }
.value-card h4 { margin-bottom: 10px; font-size: 17px; }
.value-card p { color: var(--text-body); font-size: 14px; }
.team-section { padding: 20px 0 90px; }
.team-placeholder { border: 1px dashed var(--border); border-radius: 8px; padding: 60px 24px; text-align: center; color: #999; font-size: 14px; }
.main-nav ul { display: flex; gap: 28px; font-size: 15px; font-weight: 500; }
.header-icons { display: flex; gap: 18px; }
.header-icons button { background: none; border: none; font-size: 18px; cursor: pointer; }

.main-nav li.has-dropdown { position: relative; }
.main-nav .dropdown-toggle { display: flex; align-items: center; gap: 5px; }
.main-nav .dropdown-caret { font-size: 10px; }
.main-nav .dropdown-menu { display: none; position: absolute; top: 100%; left: 0; margin-top: 14px; background: #fff; border: 1px solid var(--border); border-radius: 8px; box-shadow: 0 12px 28px rgba(0,0,0,0.1); min-width: 220px; padding: 8px 0; z-index: 30; }
.main-nav li.has-dropdown:hover .dropdown-menu,
.main-nav li.has-dropdown:focus-within .dropdown-menu { display: block; }
.main-nav .dropdown-menu li { padding: 0; }
.main-nav .dropdown-menu a { display: block; padding: 10px 20px; font-weight: 500; font-size: 14px; white-space: nowrap; }
.main-nav .dropdown-menu a:hover { background: var(--gray-bg); color: var(--green-dark); }

.hero { padding: 96px 0; background: #fff; }
.hero-inner { display: flex; flex-direction: column; align-items: center; }
.hero-slides { position: relative; width: 100%; min-height: 460px; }
.hero-slide { position: absolute; top: 0; left: 0; width: 100%; display: flex; align-items: center; gap: 48px; opacity: 0; visibility: hidden; transition: opacity 0.6s ease; }
.hero-slide.active { opacity: 1; visibility: visible; position: relative; }
.hero-copy { flex: 1; }
.hero-copy h1 { font-size: 48px; font-weight: 600; line-height: 1.15; margin-bottom: 20px; }
.hero-copy p { font-size: 18px; color: var(--text-body); margin-bottom: 28px; max-width: 460px; }
.hero-ctas { display: flex; gap: 16px; }
.hero-media { flex: 1; }
.hero-media img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 20px 40px rgba(0,0,0,0.12); }
.hero-dots { display: flex; justify-content: center; gap: 10px; margin-top: 32px; }
.hero-dot { width: 10px; height: 10px; border-radius: 50%; border: none; background: var(--border); cursor: pointer; padding: 0; }
.hero-dot.active { background: var(--green); }

.product-cards { padding: 40px 0; }
.card-row { display: flex; gap: 20px; flex-wrap: wrap; }
.product-card { flex: 1; min-width: 240px; background: var(--gray-bg); padding: 28px; border-radius: 4px; transition: box-shadow 0.15s ease; }
.product-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.08); }
.product-card h3, .product-card-title { font-size: 19px; margin-bottom: 10px; }
.product-card p { color: var(--text-body); font-size: 15px; margin-bottom: 16px; }
.product-card a { color: var(--dark); font-weight: 600; font-size: 14px; }

.callout { padding: 30px 0; }
.callout-inner { display: flex; align-items: center; gap: 20px; border-left: 4px solid var(--green); padding: 24px 32px; background: var(--gray-bg); flex-wrap: wrap; }
.dot.big { width: 12px; height: 12px; flex-shrink: 0; }
.callout-inner p { flex: 1; font-weight: 600; font-size: 17px; min-width: 240px; }

.logo-strip { padding: 50px 0; text-align: center; }
.eyebrow { text-transform: uppercase; font-size: 13px; letter-spacing: 0.05em; color: #888; margin-bottom: 24px; }
.logo-row { display: flex; justify-content: center; gap: 32px; flex-wrap: wrap; }
.logo-placeholder { width: 110px; height: 44px; background: var(--gray-bg); border: 1px dashed var(--border); display: flex; align-items: center; justify-content: center; font-size: 12px; color: #999; border-radius: 4px; }

.features { padding: 96px 0; }
.section-title { font-size: 32px; font-weight: 600; text-align: center; margin-bottom: 50px; }
.feature-row { display: flex; align-items: center; gap: 48px; margin-bottom: 80px; }
.feature-row:last-child { margin-bottom: 0; }
.feature-row.reverse { flex-direction: row-reverse; }
.feature-text { flex: 1; }
.feature-icon { display: inline-flex; width: 42px; height: 42px; align-items: center; justify-content: center; background: var(--gray-bg); border-radius: 8px; font-size: 20px; margin-bottom: 16px; }
.feature-text h3 { font-size: 27px; font-weight: 600; margin-bottom: 14px; }
.feature-text p { color: var(--text-body); margin-bottom: 20px; max-width: 420px; }
.feature-media { flex: 1; }
.feature-media img { width: 100%; height: auto; border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }

.testimonial { padding: 96px 0; background: var(--gray-bg); }
.testimonial-inner { display: flex; align-items: center; gap: 48px; }
.testimonial-media { flex: 1; }
.testimonial-media img { width: 100%; border-radius: 8px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.testimonial-copy { flex: 1; }
.testimonial-copy h3 { font-size: 26px; margin-bottom: 12px; }
.testimonial-copy p { color: var(--text-body); margin-bottom: 12px; }
.read-more { font-weight: 600; color: var(--dark); }
.testimonial-copy blockquote { position: relative; font-size: 18px; font-weight: 600; line-height: 1.4; margin: 24px 0 20px; padding-left: 16px; border-left: 3px solid var(--green); color: var(--dark); }
.quote-mark { color: var(--green); font-size: 26px; font-weight: 700; margin-right: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.avatar-placeholder { width: 42px; height: 42px; border-radius: 50%; background: linear-gradient(135deg, var(--green), #4aa3d9); flex-shrink: 0; }
.cite-name { font-weight: 600; font-size: 14px; }
.cite-role { font-size: 13px; color: #888; }

.solution-finder { padding: 96px 0; text-align: center; }
.section-sub { color: var(--text-body); margin-bottom: 40px; }
.finder-card { flex: 1; min-width: 200px; border: 1px solid var(--border); border-radius: 6px; padding: 30px; transition: box-shadow 0.15s ease, transform 0.15s ease; }
.finder-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.08); transform: translateY(-2px); }
.finder-card h4, .finder-card-title { margin-bottom: 12px; font-size: 18px; }
.finder-card a { font-weight: 600; color: var(--dark); }

.product-grid-section { padding: 64px 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; text-align: left; }
@media (max-width: 900px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .product-grid { grid-template-columns: 1fr; } }

.final-cta { background: var(--dark); color: #fff; padding: 90px 0; text-align: center; }
.final-cta h2 { font-size: 32px; margin-bottom: 12px; }
.final-cta p { margin-bottom: 28px; color: #ccc; }

/* Pricing page */
.pricing-hero { padding: 96px 0 20px; background: #fff; text-align: center; }
.pricing-hero h1 { font-size: 40px; font-weight: 600; line-height: 1.25; margin: 0 auto 16px; max-width: 780px; }
.pricing-hero .section-sub { max-width: 560px; margin: 0 auto; margin-bottom: 0; }

.billing-toggle { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.billing-toggle span { font-size: 14px; font-weight: 600; color: var(--text-muted); transition: color 0.15s ease; }
.billing-toggle span.active { color: var(--dark); }
.toggle-switch { position: relative; width: 48px; height: 26px; background: var(--border); border-radius: 999px; border: none; cursor: pointer; padding: 0; flex-shrink: 0; transition: background 0.15s ease; }
.toggle-switch::after { content: ''; position: absolute; top: 3px; left: 3px; width: 20px; height: 20px; background: #fff; border-radius: 50%; transition: transform 0.15s ease; box-shadow: 0 1px 3px rgba(0,0,0,0.25); }
.toggle-switch.on { background: var(--green); }
.toggle-switch.on::after { transform: translateX(22px); }
.save-badge { background: rgba(138,197,57,0.15); color: var(--green-dark); font-size: 12px; font-weight: 700; padding: 4px 10px; border-radius: 999px; }

.pricing-cards { padding: 60px 0 40px; }
.pricing-card-row { display: flex; gap: 20px; flex-wrap: wrap; align-items: stretch; }
.pricing-card { flex: 1; min-width: 240px; background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 32px 26px; display: flex; flex-direction: column; }
.pricing-card.featured { border-color: var(--green); box-shadow: 0 16px 40px rgba(0,0,0,0.1); position: relative; }
.popular-badge { position: absolute; top: -13px; left: 50%; transform: translateX(-50%); background: var(--green); color: #1c1c1c; font-size: 12px; font-weight: 700; padding: 5px 14px; border-radius: 999px; white-space: nowrap; }
.pricing-card h3 { font-size: 19px; margin-bottom: 6px; }
.plan-tagline { font-size: 13px; color: var(--text-body); margin-bottom: 20px; min-height: 18px; }
.price { display: none; align-items: baseline; gap: 4px; margin-bottom: 6px; }
.price .amount { font-size: 34px; font-weight: 700; }
.price .period { font-size: 14px; color: var(--text-body); }
.price-note { display: none; font-size: 12px; color: var(--text-footer); margin-bottom: 24px; min-height: 16px; }
.price-monthly { display: flex; }
p.price-note.price-monthly { display: block; }
.pricing-cards.annual-billing .price-monthly { display: none; }
.pricing-cards.annual-billing .price-annual { display: flex; }
.pricing-cards.annual-billing p.price-annual { display: block; }
.plan-features { margin-bottom: 28px; flex: 1; }
.plan-features li { font-size: 14px; color: var(--text-body); padding-left: 22px; position: relative; margin-bottom: 12px; }
.plan-features li::before { content: '\2713'; position: absolute; left: 0; color: var(--green-dark); font-weight: 700; }
.pricing-card .btn { text-align: center; }

.comparison-section { padding: 40px 0 90px; background: var(--gray-bg); }
.comparison-table-wrap { overflow-x: auto; }
.comparison-table { width: 100%; border-collapse: collapse; background: #fff; border-radius: 8px; min-width: 760px; }
.comparison-table th, .comparison-table td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--border); font-size: 14px; }
.comparison-table th:first-child, .comparison-table td:first-child { text-align: left; color: var(--dark); font-weight: 600; }
.comparison-table thead th { font-size: 14px; font-weight: 700; padding-top: 20px; }
.comparison-table thead th.highlight-col, .comparison-table td.highlight-col { background: rgba(138,197,57,0.06); }
.comparison-table td { color: var(--text-body); }
.comparison-table .yes { color: var(--green-dark); font-weight: 700; }
.comparison-table .no { color: var(--text-muted); }

.faq-section { padding: 90px 0; }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; text-align: left; background: none; border: none; padding: 22px 0; font-size: 16px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; color: var(--dark); font-family: inherit; }
.faq-icon { font-size: 20px; line-height: 1; color: var(--text-body); transition: transform 0.2s ease; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
.faq-item.open .faq-answer { max-height: 200px; }
.faq-answer p { padding-bottom: 22px; color: var(--text-body); font-size: 15px; line-height: 1.6; max-width: 680px; }

/* Contact page */
.contact-section { padding: 60px 0 100px; }
.contact-grid { display: flex; gap: 48px; flex-wrap: wrap; align-items: flex-start; }
.contact-form-col { flex: 1.2; min-width: 280px; }
.contact-info-col { flex: 1; min-width: 260px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 14px; font-weight: 600; margin-bottom: 8px; color: var(--dark); }
.form-group input, .form-group textarea { width: 100%; padding: 12px 14px; border: 1px solid var(--border); border-radius: 5px; font-size: 14px; font-family: inherit; color: var(--dark); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--green); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-error { color: #c0392b; font-size: 13px; margin-top: 12px; }
.btn[disabled] { opacity: 0.6; cursor: not-allowed; }
.contact-card { background: var(--gray-bg); border-radius: 8px; padding: 32px 28px; }
.contact-card h3 { font-size: 19px; margin-bottom: 20px; }
.contact-method { margin-bottom: 18px; }
.contact-method:last-child { margin-bottom: 0; }
.contact-method-label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-footer); margin-bottom: 4px; }
.contact-method a { font-size: 15px; font-weight: 600; color: var(--dark); }
.contact-method a:hover { color: var(--green-dark); }

.site-footer { background: #fff; border-top: 1px solid var(--border); padding: 60px 0 20px; }
.footer-grid { display: flex; gap: 32px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-col { flex: 1; min-width: 140px; }
.footer-col h5, .footer-col-title { font-size: 13px; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 16px; color: #444; }
.footer-col ul li { color: var(--text-footer); font-size: 14px; margin-bottom: 10px; }
.footer-bottom { border-top: 1px solid var(--border); padding-top: 20px; }
.footer-bottom p { color: var(--text-muted); font-size: 12px; line-height: 18px; }
.footer-bottom-row { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px 20px; }
.footer-social { color: var(--text-muted); font-size: 12px; }
.footer-social:hover { color: var(--text-footer); }

/* Products / Solutions feature stack */
.feature-stack { padding: 64px 0; }
.feature-stack.alt { background: var(--gray-bg); }
.feature-stack .container { max-width: 720px; }
.feature-stack h2 { font-size: 26px; font-weight: 600; margin: 16px 0 14px; }
.feature-stack p { color: var(--text-body); font-size: 16px; line-height: 1.7; }
.feature-stack .btn { margin-top: 20px; }

.eyebrow { color: var(--green-dark); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; margin-bottom: 12px; }

.solutions-grid-section { padding: 56px 0 80px; background: var(--gray-bg); }
.solutions-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 26px; }
.solution-card { background: #fff; border: 1px solid var(--border); border-radius: 12px; padding: 30px 26px; box-shadow: 0 2px 6px rgba(0,0,0,0.04); transition: transform 0.2s ease, box-shadow 0.2s ease; border-top: 4px solid var(--green); flex: 0 1 340px; max-width: 340px; }
.solution-card:hover { transform: translateY(-4px); box-shadow: 0 10px 24px rgba(0,0,0,0.08); }
.solution-icon { font-size: 30px; margin-bottom: 12px; }
.solution-card h2 { font-size: 19px; font-weight: 600; margin-bottom: 10px; }
.solution-card p { color: var(--text-body); font-size: 15px; line-height: 1.7; margin: 0; }
.solution-card .read-more-link { display: inline-block; margin-top: 14px; font-weight: 600; font-size: 14px; color: var(--dark); }
.solution-card .read-more-link:hover { color: var(--green-dark); }

/* Blog */
.blog-hero { padding: 96px 0 20px; background: #fff; text-align: center; }
.blog-hero h1 { font-size: 40px; font-weight: 600; line-height: 1.25; margin: 0 auto 16px; max-width: 780px; }
.blog-hero .section-sub { max-width: 620px; margin: 0 auto; }
.blog-list-section { padding: 50px 0 90px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
@media (max-width: 700px) { .blog-grid { grid-template-columns: 1fr; } }
.blog-card { border: 1px solid var(--border); border-radius: 10px; padding: 30px 26px; transition: box-shadow 0.15s ease, transform 0.15s ease; }
.blog-card:hover { box-shadow: 0 10px 26px rgba(0,0,0,0.08); transform: translateY(-2px); }
.blog-card-meta { font-size: 12px; text-transform: uppercase; letter-spacing: 0.04em; color: var(--text-muted); margin-bottom: 10px; }
.blog-card h2 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.blog-card p { color: var(--text-body); font-size: 15px; line-height: 1.6; margin-bottom: 16px; }
.blog-card .read-more-link { font-weight: 600; color: var(--dark); font-size: 14px; }
.blog-card .read-more-link:hover { color: var(--green-dark); }

.post-hero { padding: 70px 0 10px; background: #fff; }
.post-hero .container { max-width: 760px; }
.post-breadcrumb { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }
.post-breadcrumb a { color: var(--text-muted); font-weight: 600; }
.post-breadcrumb a:hover { color: var(--green-dark); }
.post-hero h1 { font-size: 36px; font-weight: 600; line-height: 1.28; margin-bottom: 14px; }
.post-meta { font-size: 13px; color: var(--text-muted); margin-bottom: 8px; }
.post-hero-image { width: 100%; height: auto; border-radius: 8px; margin: 28px 0 8px; box-shadow: 0 12px 30px rgba(0,0,0,0.08); }
.post-cta { background: var(--gray-bg); border-radius: 8px; padding: 26px 28px; margin-top: 40px; display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.post-cta p { color: var(--dark); font-weight: 600; font-size: 15px; margin: 0; }

/* Auth pages (signup / login) */
.auth-wrap { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 60px 24px; background: var(--gray-bg); }
.auth-logo { margin-bottom: 32px; }
.auth-card { background: #fff; border: 1px solid var(--border); border-radius: 10px; padding: 40px 36px; width: 100%; max-width: 420px; box-shadow: 0 12px 30px rgba(0,0,0,0.06); }
.auth-card h1 { font-size: 24px; font-weight: 600; margin-bottom: 28px; text-align: center; line-height: 1.3; }
.auth-submit { width: 100%; text-align: center; margin-top: 6px; }
.optional-label { font-weight: 400; color: var(--text-footer); text-transform: none; }
.auth-success p { color: var(--text-body); font-size: 15px; line-height: 1.6; text-align: center; }
.auth-alt-link, .auth-extra-link { text-align: center; font-size: 13px; color: var(--text-body); margin-top: 16px; }
.auth-alt-link a, .auth-extra-link a { color: var(--green-dark); font-weight: 600; }
.auth-forgot { text-align: right; margin: -12px 0 20px; font-size: 13px; }
.auth-forgot a { color: var(--text-footer); }
.auth-forgot a:hover { color: var(--green-dark); }

@media (max-width: 800px) {
  .hero-slide, .feature-row, .feature-row.reverse, .testimonial-inner { flex-direction: column; }
  .main-nav { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-bottom: 1px solid var(--border); max-height: 0; overflow: hidden; transition: max-height 0.25s ease; z-index: 20; }
  .main-nav.nav-open { max-height: 520px; overflow-y: auto; }
  .main-nav ul { flex-direction: column; padding: 16px 24px; gap: 18px; }
  .main-nav .dropdown-menu { display: block; position: static; box-shadow: none; border: none; margin: 10px 0 0; padding: 0 0 0 14px; }
  .main-nav .dropdown-menu a { padding: 8px 0; }
  .main-nav .dropdown-caret { display: none; }
}
