/* ═══════════════════════════════════════════════════════════════
   Automa8 — Global Design System
   Matches: design reference screenshots
   Primary: #10b77f (green)  |  Background: #f3f4f6 (light grey)
   ═══════════════════════════════════════════════════════════════ */

/* ── Scroll animations ── */
.observe {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.observe.in-view {
    opacity: 1;
    transform: translateY(0);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: #f3f4f6;
    color: #111827;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    outline: none;
}

ul {
    list-style: none;
}

input,
select,
textarea {
    font-family: inherit;
}

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

.container-sm {
    max-width: 680px;
}

.container-md {
    max-width: 760px;
}

.section {
    padding: 5rem 0;
}

.pt-0 {
    padding-top: 0 !important;
}

.mt-2 {
    margin-top: 0.5rem;
}

.text-center {
    text-align: center;
}

.bg-white {
    background: #ffffff;
}

.bg-light-green-subtle {
    background: #f0fdf8;
}

/* ── Typography ── */
h1 {
    font-size: clamp(2rem, 4.5vw, 3.25rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: #111827;
}

h2 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #111827;
}

h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111827;
    line-height: 1.35;
}

h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
}

p {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.75;
}

.text-primary-color {
    color: #10b77f;
}

/* ── Badges ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 1rem;
}

.badge-subtle {
    background: #e6f7f0;
    color: #10b77f;
    border: 1px solid #b2e8d0;
}

.badge-subtle .badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #10b77f;
    flex-shrink: 0;
}

.badge-subtle-green {
    background: #e6f7f0;
    color: #065f46;
    border: 1px solid #b2e8d0;
}

.badge-light-green {
    background: #e6f7f0;
    color: #065f46;
}

.badge-icon-pill {
    background: #e6f7f0;
    border: 1px solid #b2e8d0;
    color: #065f46;
    font-size: 0.68rem;
    padding: 0.3rem 0.8rem;
}

.badge-small-icon {
    font-size: 0.9rem !important;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #10b77f;
    color: #fff;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.6rem 1.25rem;
    border-radius: 0.5rem;
    transition: background 0.18s, box-shadow 0.18s, transform 0.18s;
    white-space: nowrap;
}

.btn-primary:hover {
    background: #0d9668;
    box-shadow: 0 4px 18px rgba(16, 183, 127, .30);
    transform: translateY(-1px);
}

.btn-full {
    width: 100%;
    justify-content: center;
    padding: 0.8rem;
    font-size: 0.95rem;
    border-radius: 0.5rem;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: #10b77f;
    font-size: 0.875rem;
    font-weight: 700;
    padding: 0.7rem 1.25rem;
    border-radius: 0.5rem;
    border: 1.5px solid #10b77f;
    transition: background 0.18s, transform 0.18s;
}

.btn-outline:hover {
    background: #e6f7f0;
    transform: translateY(-1px);
}

/* CTA box buttons */
.btn-primary-invert {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #10b77f;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background 0.15s, transform 0.15s;
}

.btn-primary-invert:hover {
    background: #f0fdf8;
    transform: translateY(-1px);
}

.btn-primary-invert-lg {
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #10b77f;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    transition: background 0.15s;
}

.btn-primary-invert-lg:hover {
    background: #f0fdf8;
}

.btn-outline-invert {
    display: inline-flex;
    align-items: center;
    background: transparent;
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.75rem 2rem;
    border-radius: 0.5rem;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    transition: border-color 0.15s, background 0.15s;
}

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

/* ══════════════  HEADER  ══════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: 60px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid #e5e7eb;
    transition: box-shadow 0.2s;
}

.site-header.scrolled {
    box-shadow: 0 2px 16px rgba(0, 0, 0, .07);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-text {
    font-size: 1.1rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 1.75rem;
}

.main-nav a {
    font-size: 0.875rem;
    font-weight: 500;
    color: #6b7280;
    transition: color 0.15s;
}

.main-nav a:hover,
.main-nav a.active {
    color: #10b77f;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 20px;
    height: 2px;
    background: #374151;
    border-radius: 2px;
    transition: transform 0.25s, opacity 0.25s;
}

.hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
    opacity: 0;
}

.hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ══════════════  HOME HERO  ══════════════ */
.hero-section {
    padding: 5rem 1.5rem 4rem;
    background: #f3f4f6;
}

#product {
    padding-bottom: 2rem;
}

.hero-title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.08;
    margin-bottom: 1.25rem;
}

.hero-subtitle {
    font-size: 1rem;
    color: #6b7280;
    max-width: 52ch;
    margin: 0 auto 2rem;
    line-height: 1.75;
}

.hero-email-form {
    display: flex;
    gap: 0.6rem;
    max-width: 420px;
    margin: 0 auto 0.75rem;
}

.hero-email-form input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1.5px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    background: #fff;
    color: #111827;
    outline: none;
    transition: border-color 0.15s;
}

.hero-email-form input:focus {
    border-color: #10b77f;
}

.hero-micro {
    font-size: 0.78rem;
    color: #9ca3af;
    margin-top: 0.75rem;
}

/* ══════════════  SECTION HEADER  ══════════════ */
.section-header {
    margin-bottom: 3rem;
}

.section-header h2 {
    margin-bottom: 0.75rem;
}

.section-header p {
    max-width: 58ch;
    margin: 0 auto;
}

/* ══════════════  3-COLUMN CARD GRID  ══════════════ */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.card-soft {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    padding: 1.75rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.card-soft:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    transform: translateY(-3px);
}

.card-icon-small {
    width: 40px;
    height: 40px;
    background: #e6f7f0;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: #10b77f;
}

.card-icon-small .material-symbols-outlined {
    font-size: 1.2rem;
    color: #10b77f;
    font-variation-settings: 'FILL' 1;
}

.card-soft h3 {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.card-soft p {
    font-size: 0.875rem;
}

/* ══════════════  ALTERNATING FEATURE ROWS  ══════════════ */
.features-alternating {
    padding-top: 2rem;
}

.features-alternating .feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.features-alternating .feature-row:first-child {
    padding-top: 3rem;
}

.features-alternating .feature-row:last-child {
    border-bottom: none;
}

.features-alternating .feature-row.reverse .feature-text {
    order: 2;
}

.features-alternating .feature-row.reverse .feature-image {
    order: 1;
}

.feature-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-text h2 {
    margin-bottom: 0.25rem;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-top: 0.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: #374151;
}

.icon-check {
    font-size: 1.1rem !important;
    color: #10b77f;
    font-variation-settings: 'FILL' 1;
}

.feature-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Placeholder mock UI */
.mock-ui {
    width: 100%;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, .07);
}

.mock-ui-header {
    padding: 0.75rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: #9ca3af;
    background: #fafafa;
    border-bottom: 1px solid #f0f0f0;
}

.mock-ui-body {
    padding: 1.25rem;
}

.mock-bar {
    height: 10px;
    background: #e5e7eb;
    border-radius: 5px;
    margin-bottom: 0.5rem;
}

.mock-bar.short {
    width: 60%;
}

.mock-chart {
    height: 80px;
    background: linear-gradient(to right, #e6f7f0, #10b77f22);
    border-radius: 0.5rem;
    margin-top: 0.75rem;
}

.mock-table-row {
    height: 10px;
    background: #f3f4f6;
    border-radius: 4px;
    margin-bottom: 0.65rem;
}

.mock-cards {
    display: flex;
    gap: 0.75rem;
}

.mock-card-small {
    flex: 1;
    height: 70px;
    background: #f0fdf8;
    border: 1px solid #b2e8d0;
    border-radius: 0.5rem;
}

/* ══════════════  4-COLUMN CARD GRID  ══════════════ */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.card-outline {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    padding: 1.75rem 1.5rem;
    transition: box-shadow 0.2s, transform 0.2s;
}

.card-outline:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .07);
    transform: translateY(-3px);
}

.card-icon-line {
    margin-bottom: 1rem;
    color: #10b77f;
}

.card-icon-line .material-symbols-outlined {
    font-size: 1.5rem;
    color: #10b77f;
    font-variation-settings: 'FILL' 0;
}

.card-outline h4 {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.card-outline p {
    font-size: 0.825rem;
    color: #9ca3af;
}

/* ══════════════  PRICING CARDS  ══════════════ */
.pricing-deck {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pr-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    transition: box-shadow 0.2s;
}

.pr-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, .08);
}

.pr-card.popular {
    border-color: #10b77f;
    box-shadow: 0 0 0 2px #10b77f;
}

.badge-popular {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: #10b77f;
    color: #fff;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    padding: 0.22rem 0.9rem;
    border-radius: 999px;
    white-space: nowrap;
}

.pr-card h4 {
    font-size: 1rem;
    color: #374151;
    font-weight: 700;
}

.pr-desc {
    font-size: 0.825rem;
    color: #9ca3af;
}

.pr-price {
    font-size: 2.25rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -0.03em;
}

.pr-price span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #9ca3af;
}

.pr-price-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
}

.pr-features {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    flex: 1;
}

.pr-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

.icon-check-small {
    font-size: 1rem !important;
    color: #10b77f;
    font-variation-settings: 'FILL' 1;
}

/* ══════════════  CTA BOX  ══════════════ */
.cta-box {
    background: linear-gradient(135deg, #10b77f 0%, #079769 60%, #047857 100%);
    border-radius: 1.25rem;
    padding: 4rem 2rem;
    color: #fff;
}

.cta-box h2 {
    color: #fff;
    font-size: clamp(1.4rem, 3vw, 2rem);
    margin-bottom: 0.75rem;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    flex-wrap: wrap;
}

/* ══════════════  SECTION DIVIDER  ══════════════ */
.section-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
}

/* ══════════════  FEATURES PAGE HERO  ══════════════ */
.features-hero {
    padding: 4.5rem 1.5rem 3rem;
    background: #f3f4f6;
}

.features-hero h1 {
    margin-bottom: 1rem;
}

.features-hero-sub {
    color: #6b7280;
    font-size: 1rem;
    max-width: 56ch;
    margin: 0 auto;
    line-height: 1.75;
}

/* Feature block — full width alternating sections */
.feature-block-wide {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 2rem 0;
}

.feature-block-wide.reverse .feature-block-text {
    order: 2;
}

.feature-block-wide.reverse .feature-block-screen {
    order: 1;
}

.feature-block-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Dark screen mock */
.screen-mock {
    border-radius: 0.875rem;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
}

.screen-topbar {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 0.9rem;
    background: #1e2a23;
}

.screen-topbar.light {
    background: #fafafa;
    border-bottom: 1px solid #e5e7eb;
}

.screen-dots {
    display: flex;
    gap: 5px;
}

.screen-dots span {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.screen-dots span:nth-child(1) {
    background: #ef4444;
}

.screen-dots span:nth-child(2) {
    background: #f59e0b;
}

.screen-dots span:nth-child(3) {
    background: #22c55e;
}

.screen-title {
    font-size: 0.72rem;
    font-weight: 600;
    color: #6b7280;
    margin-left: 0.35rem;
}

.screen-title.dark {
    color: #374151;
}

.sb-badge-green {
    margin-left: auto;
    background: #10b77f;
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
    letter-spacing: 0.05em;
}

.dark-screen {
    background: #1a2421;
}

.dark-screen-body {
    display: flex;
    height: 200px;
}

.dark-sidebar {
    width: 70px;
    padding: 1rem 0.75rem;
    border-right: 1px solid #2d3d35;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.ds-item {
    height: 6px;
    background: #2d3d35;
    border-radius: 3px;
}

.ds-item.active {
    background: #10b77f;
}

.dark-content {
    flex: 1;
    padding: 1rem 1.25rem;
}

.dc-stat {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.2rem;
}

.dc-stat.green {
    color: #10b77f;
}

.dc-label {
    font-size: 0.65rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.dc-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 80px;
}

.dc-bar {
    flex: 1;
    background: #10b77f;
    border-radius: 3px 3px 0 0;
    opacity: 0.7;
}

.dc-bar:last-child {
    opacity: 1;
}

/* Light screen mock */
.light-screen {
    background: #fff;
}

.light-screen-body {
    padding: 0.75rem 1rem 1rem;
}

.ls-row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1fr 1.5fr;
    gap: 0.5rem;
    padding: 0.4rem 0;
    font-size: 0.72rem;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

.ls-row.header-row {
    font-weight: 700;
    color: #9ca3af;
    font-size: 0.65rem;
    text-transform: uppercase;
}

.ls-action-row {
    padding-top: 0.75rem;
}

.ls-btn-green {
    background: #10b77f;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 0.3rem 0.75rem;
    border-radius: 0.35rem;
}

/* Board cards mock */
.board-cards {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.board-card {
    flex: 1;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem;
}

.board-card-label {
    font-size: 0.65rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.board-card-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.4rem;
}

.board-progress {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    margin-bottom: 0.3rem;
}

.board-progress-fill {
    height: 100%;
    background: #10b77f;
    border-radius: 2px;
}

.board-card-target {
    font-size: 0.62rem;
    color: #9ca3af;
}

.board-activity {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.ba-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    color: #6b7280;
}

.ba-row span:nth-child(2) {
    flex: 1;
}

.ba-time {
    color: #9ca3af;
}

.ba-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

.ba-dot.green {
    background: #10b77f;
}

.ba-dot.blue {
    background: #3b82f6;
}

/* ══════════════  ABOUT PAGE  ══════════════ */

/* Shared section wrapper — light grey bg, generous vertical padding */
.about-section {
    background: #f3f4f6;
    padding: 4rem 0;
}

/* ── Philosophy grid (left text / right image, 50/50) ── */
.philosophy-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: flex-start;
}

.philosophy-text {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

/* Badge — matches design: grey/green pill with shield icon */
.about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: #e8f5ee;
    border: 1px solid #b2e8d0;
    color: #065f46;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    width: fit-content;
}

.about-badge-icon {
    font-size: 0.9rem !important;
    color: #10b77f;
    font-variation-settings: 'FILL' 1;
}

/* Large bold h1 */
.philosophy-h1 {
    font-size: clamp(1.9rem, 4vw, 3rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.1;
    color: #111827;
    margin: 0;
}

/* Green italic subtitle */
.philosophy-green {
    color: #10b77f;
    font-size: 1rem;
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

/* Body paragraphs */
.philosophy-body {
    font-size: 0.9rem;
    color: #6b7280;
    line-height: 1.75;
    margin: 0;
}

/* Forest image — rounded, fills right column */
.philosophy-image {
    display: flex;
    align-items: flex-start;
}

.about-img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .09);
    display: block;
}

/* Thin horizontal rule between the two sections */
.about-divider {
    border: none;
    border-top: 1px solid #e5e7eb;
    margin: 0;
}

/* ── Contact grid (left info / right card, ~40/60) ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: flex-start;
}

.contact-left {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding-top: 0.25rem;
}

.contact-h2 {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: #111827;
    margin: 0;
}

.contact-desc {
    font-size: 0.875rem;
    color: #6b7280;
    line-height: 1.7;
    margin: 0;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-top: 0.25rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: #10b77f;
    font-weight: 500;
}

.contact-icon {
    font-size: 1.05rem !important;
    color: #10b77f;
    flex-shrink: 0;
}

/* White contact form card */
.contact-right {
    display: flex;
    flex-direction: column;
}

.contact-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    padding: 1.75rem 1.75rem 2rem;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .04);
}

.contact-card form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Field group */
.cf-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.cf-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #374151;
}

.cf-input {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #111827;
    background: #fff;
    outline: none;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
}

.cf-input:focus {
    border-color: #10b77f;
    box-shadow: 0 0 0 3px rgba(16, 183, 127, .1);
}

.cf-textarea {
    width: 100%;
    padding: 0.65rem 0.875rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #111827;
    background: #fff;
    outline: none;
    resize: vertical;
    min-height: 120px;
    transition: border-color 0.15s, box-shadow 0.15s;
    font-family: inherit;
    line-height: 1.6;
}

.cf-textarea:focus {
    border-color: #10b77f;
    box-shadow: 0 0 0 3px rgba(16, 183, 127, .1);
}

/* Full-width green submit button */
.cf-submit {
    width: 100%;
    padding: 0.8rem;
    background: #10b77f;
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    border-radius: 0.5rem;
    border: none;
    cursor: pointer;
    transition: background 0.15s;
    font-family: inherit;
    margin-top: 0.25rem;
}

.cf-submit:hover {
    background: #0d9668;
}

/* ── About page footer (light, minimal, logo + copyright only) ── */
.about-footer {
    background: #f3f4f6;
    border-top: 1px solid #e5e7eb;
    padding: 1.1rem 0;
}

.about-footer-inner {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0.25rem;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: flex-start;
}

.about-footer-logo-text {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -0.02em;
}

.about-footer-copy {
    font-size: 0.78rem;
    color: #9ca3af;
    margin: 0;
}

/* ══════════════  MAIN FOOTER  ══════════════ */
.site-footer {
    background: #111827;
    padding: 3.5rem 1.5rem 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: flex-start;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-brand .logo-text {
    color: #f9fafb;
}

.footer-tagline {
    font-size: 0.825rem;
    color: #6b7280;
    line-height: 1.5;
}

.footer-copy {
    font-size: 0.75rem;
    color: #4b5563;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-col h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #f9fafb;
    margin-bottom: 0.25rem;
}

.footer-col a {
    font-size: 0.825rem;
    color: #6b7280;
    transition: color 0.15s;
}

.footer-col a:hover {
    color: #10b77f;
}

/* ══════════════  FORM / MODAL  ══════════════ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.68rem;
    font-weight: 700;
    color: #9ca3af;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.input-wrap,
.select-wrap {
    position: relative;
}

.input-icon {
    position: absolute;
    left: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.05rem !important;
    color: #9ca3af;
    pointer-events: none;
}

.input-wrap input,
.select-wrap select {
    width: 100%;
    padding: 0.65rem 0.9rem 0.65rem 2.6rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 2rem;
    background: #f9fafb;
    color: #111827;
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.15s;
    -webkit-appearance: none;
    appearance: none;
}

.input-wrap input:focus,
.select-wrap select:focus {
    border-color: #10b77f;
}

.select-arrow {
    position: absolute;
    right: 0.85rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem !important;
    color: #9ca3af;
    pointer-events: none;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(107, 114, 128, .6);
    backdrop-filter: blur(3px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.22s;
}

.modal-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.modal-card {
    background: #fff;
    border-radius: 1.25rem;
    padding: 2.5rem 2rem 2rem;
    width: 100%;
    max-width: 400px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .18);
    transform: translateY(14px) scale(0.97);
    transition: transform 0.28s ease;
    text-align: center;
}

.modal-overlay.open .modal-card {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    background: none;
    font-size: 1.4rem;
    color: #9ca3af;
    line-height: 1;
    transition: color 0.15s;
}

.modal-close:hover {
    color: #374151;
}

.modal-icon-top {
    width: 52px;
    height: 52px;
    background: #e6f7f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #10b77f;
}

.modal-icon-top .material-symbols-outlined {
    font-size: 1.5rem;
    color: #10b77f;
    font-variation-settings: 'FILL' 1;
}

.modal-title {
    font-size: 1.35rem;
    font-weight: 800;
    margin-bottom: 0.4rem;
}

.modal-sub {
    font-size: 0.85rem;
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.modal-form {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    text-align: left;
}

.modal-note {
    text-align: center;
    font-size: 0.73rem;
    color: #9ca3af;
    margin-top: 0.25rem;
}

.modal-success {
    padding: 2rem 0;
}

.success-icon {
    font-size: 3rem;
    color: #10b77f;
    display: block;
    margin-bottom: 0.75rem;
    font-variation-settings: 'FILL' 1;
}

.modal-success h3 {
    margin-bottom: 0.4rem;
}

.modal-success p {
    font-size: 0.875rem;
    color: #6b7280;
}

.style-small {
    font-size: 1rem !important;
    line-height: 1;
}

/* ══════════════  BLOG  ══════════════ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.blog-featured {
    grid-column: 1 / -1;
}

.blog-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 0.875rem;
    overflow: hidden;
    transition: box-shadow 0.2s, transform 0.2s;
}

.blog-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, .08);
    transform: translateY(-3px);
}

.blog-card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.blog-tag {
    display: inline-flex;
    background: #e6f7f0;
    color: #10b77f;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    width: fit-content;
}

.blog-card h2 {
    font-size: 1rem;
    line-height: 1.4;
}

.blog-card h2 a {
    color: #111827;
    transition: color 0.15s;
}

.blog-card h2 a:hover {
    color: #10b77f;
}

.blog-card p {
    font-size: 0.875rem;
    color: #6b7280;
}

.blog-meta {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.75rem;
    color: #9ca3af;
    margin-top: auto;
}

/* newsletter inside CTA box */
.newsletter-row {
    display: flex;
    gap: 0.6rem;
    max-width: 400px;
    margin: 0 auto;
    margin-top: 1.5rem;
}

.newsletter-field {
    flex: 1;
    padding: 0.65rem 1rem;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    outline: none;
    color: #111827;
}

/* ══════════════  RESPONSIVE  ══════════════ */
@media (max-width: 960px) {
    .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-deck {
        grid-template-columns: 1fr;
        max-width: 360px;
        margin: 0 auto;
    }

    .feature-block-wide {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .feature-block-wide.reverse .feature-block-text {
        order: 0;
    }

    .feature-block-wide.reverse .feature-block-screen {
        order: 0;
    }

    .philosophy-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 720px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .features-alternating .feature-row {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .features-alternating .feature-row.reverse .feature-text {
        order: 0;
    }

    .features-alternating .feature-row.reverse .feature-image {
        order: 0;
    }

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

    .main-nav {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        background: #fff;
        border-bottom: 1px solid #e5e7eb;
        flex-direction: column;
        padding: 1.25rem 1.5rem;
        gap: 1rem;
        z-index: 99;
    }

    .main-nav.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }
}

@media (max-width: 480px) {
    .hero-email-form {
        flex-direction: column;
    }

    .hero-email-form input,
    .hero-email-form .btn-primary {
        width: 100%;
    }

    .about-footer-inner {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }
}