:root {
    --bg: #f6f2ea;
    --bg-alt: #fbf8f3;
    --surface: rgba(255, 255, 255, 0.78);
    --surface-strong: #ffffff;
    --surface-muted: #f1ebe1;
    --text: #18222d;
    --text-soft: #5d6b78;
    --line: rgba(24, 34, 45, 0.1);
    --line-strong: rgba(24, 34, 45, 0.16);
    --primary: #006666;
    --primary-dark: #004d4d;
    --primary-soft: rgba(0, 102, 102, 0.12);
    --accent: #ff9644;
    --accent-soft: rgba(255, 150, 68, 0.14);
    --warning: #d97706;
    --warning-soft: rgba(217, 119, 6, 0.14);
    --success: #1e9a63;
    --shadow: 0 24px 60px rgba(33, 47, 61, 0.12);
    --shadow-soft: 0 18px 40px rgba(33, 47, 61, 0.08);
    --radius-xl: 30px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(0, 102, 102, 0.1), transparent 30%),
        radial-gradient(circle at top right, rgba(255, 150, 68, 0.08), transparent 28%),
        linear-gradient(180deg, #faf6ef 0%, #f6f2ea 36%, #f9f5ef 100%);
    line-height: 1.6;
    min-width: 320px;
}

body.menu-open {
    overflow: hidden;
}

.site-bg {
    position: fixed;
    inset: 0;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.2) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: radial-gradient(circle at center, black 34%, transparent 85%);
    opacity: 0.35;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

button,
input,
textarea,
select {
    font: inherit;
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    padding: 18px 0;
    transition: padding 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
    padding: 12px 0;
    background: rgba(250, 246, 239, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(24, 34, 45, 0.08);
    box-shadow: 0 10px 35px rgba(28, 39, 52, 0.06);
}

.nav-shell {
    display: flex;
    align-items: center;
    gap: 24px;
    justify-content: space-between;
}

.brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
}

.brand-logo {
    width: auto;
    height: 44px;
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(15, 124, 240, 0.22);
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.brand-copy strong {
    font-size: 18px;
    letter-spacing: -0.04em;
}

.brand-copy small,
.eyebrow,
.plan-label,
.page-meta,
.legal-meta,
.tag,
.billing-label,
.contact-card small,
.card-kicker,
.footer-title,
.muted-label {
    font-family: 'DM Mono', monospace;
}

.brand-copy small {
    color: var(--text-soft);
    font-size: 11px;
}

.nav-panel {
    display: flex;
    align-items: center;
    gap: 28px;
    flex: 1;
    justify-content: flex-end;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 26px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-soft);
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.is-current {
    color: var(--text);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    padding: 12px 20px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 12px 28px rgba(0, 102, 102, 0.22);
}

.btn-primary:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.48);
    border-color: rgba(24, 34, 45, 0.12);
    color: var(--text);
}

.btn-secondary:hover {
    border-color: rgba(24, 34, 45, 0.22);
    box-shadow: var(--shadow-soft);
}

.btn-large {
    padding: 15px 26px;
}

.nav-toggle {
    display: none;
    width: 48px;
    height: 48px;
    border-radius: 16px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.7);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--text);
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
    position: relative;
    padding: 56px 0 90px;
}

.hero-home {
    padding-top: 48px;
}

.hero-grid,
.split-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 44px;
    align-items: center;
}

.split-layout-wide {
    gap: 56px;
}

.hero-copy h1,
.page-hero h1,
.section-heading h2,
.cta-shell h2,
.split-layout h2 {
    margin: 0;
    letter-spacing: -0.05em;
    line-height: 0.98;
}

.hero-copy h1 {
    font-size: clamp(3rem, 7vw, 5.6rem);
    max-width: 11ch;
}

.page-hero h1,
.section-heading h2,
.cta-shell h2,
.split-layout h2 {
    font-size: clamp(2.2rem, 4.6vw, 4rem);
}

.lead,
.section-heading p,
.section-copy,
.page-hero p,
.legal-content p,
.contact-intro p,
.faq-answer p,
.faq-snippet p,
.info-card p,
.feature-preview p,
.price-card p,
.comparison-table td,
.comparison-table th,
.contact-card p,
.policy-card p {
    color: var(--text-soft);
    font-size: 17px;
}

.lead {
    max-width: 58ch;
    margin: 24px 0 0;
}

.eyebrow,
.page-meta,
.legal-meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--primary-dark);
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eyebrow::before,
.page-meta::before,
.legal-meta::before {
    content: "";
    width: 24px;
    height: 1px;
    background: currentColor;
}

.hero-actions,
.cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-top: 36px;
}

.hero-proof div,
.info-card,
.feature-preview,
.mini-panel,
.faq-shell,
.contact-card,
.policy-card,
.dashboard-card,
.form-panel,
.table-panel,
.price-card,
.legal-shell,
.faq-snippet,
.floating-note,
.support-panel,
.feature-detail,
.stack-card,
.integration-card {
    background: var(--surface);
    backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.85);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.hero-proof div {
    padding: 18px;
}

.hero-proof strong {
    display: block;
    font-size: 1.6rem;
    letter-spacing: -0.04em;
}

.hero-proof span {
    color: var(--text-soft);
    font-size: 14px;
}

.dashboard-card {
    overflow: hidden;
    position: relative;
}

.dashboard-large {
    transform: rotate(-1.4deg);
}

.dashboard-large::after {
    content: "";
    position: absolute;
    inset: auto -20% -30% auto;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(0, 102, 102, 0.16), transparent 70%);
}

.window-top {
    display: flex;
    gap: 8px;
    padding: 16px 18px;
    border-bottom: 1px solid rgba(24, 34, 45, 0.08);
}

.window-top span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(24, 34, 45, 0.18);
}

.window-top span:nth-child(1) {
    background: rgba(217, 119, 6, 0.42);
}

.window-top span:nth-child(2) {
    background: rgba(30, 154, 99, 0.42);
}

.window-top span:nth-child(3) {
    background: rgba(0, 102, 102, 0.42);
}

.dashboard-body {
    padding: 22px;
}

.dash-overview {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    margin-bottom: 16px;
}

.mini-stat,
.workflow-panel,
.chart-panel,
.comparison-table tr:nth-child(odd) td,
.comparison-table tr:nth-child(odd) th,
.faq-question,
.pricing-note,
.contact-detail-list li,
.timeline-list div,
.automation-list span,
.metric-pill,
.stack-card,
.integration-card {
    background: var(--surface-muted);
}

.mini-stat {
    border-radius: var(--radius-md);
    padding: 18px;
}

.mini-stat span,
.mini-stat small,
.workflow-head span,
.chart-label-row span,
.timeline-list span,
.integration-card p,
.metric-pill small,
.faq-question span,
.contact-card small,
.contact-detail-list li span,
.comparison-table thead th,
.comparison-table tbody th,
.legal-content li,
.legal-content strong,
.policy-card strong,
.section-heading p,
.page-hero p,
.footer-copy,
.footer-bottom,
.billing-meta,
.pricing-period,
.page-badge,
.status-pill,
.support-panel p {
    color: var(--text-soft);
}

.mini-stat strong,
.workflow-item strong,
.chart-label-row strong,
.section-heading h2,
.price-card h3,
.page-hero h1,
.hero-copy h1,
.feature-detail h3,
.faq-question strong,
.legal-content h2,
.legal-content h3,
.contact-card h3,
.policy-card h3,
.support-panel h3,
.stack-card h3,
.comparison-table tbody th,
.feature-preview h3,
.info-card h3,
.faq-snippet h3,
.integration-card h3 {
    color: var(--text);
}

.accent-card {
    background: linear-gradient(135deg, rgba(0, 102, 102, 0.14) 0%, rgba(255, 150, 68, 0.14) 100%);
}

.mini-stat strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    margin: 8px 0 6px;
    letter-spacing: -0.05em;
}

.mini-stat span,
.mini-stat small,
.workflow-head span,
.chart-label-row span,
.tag,
.contact-card small,
.status-pill,
.page-badge,
.billing-meta,
.pricing-period {
    font-size: 12px;
}

.workflow-panel,
.chart-panel,
.form-panel,
.table-panel,
.support-panel,
.pricing-note {
    border-radius: var(--radius-md);
    padding: 18px;
}

.workflow-head,
.chart-label-row,
.mini-panel-head,
.billing-row,
.footer-bottom,
.contact-detail-list li,
.feature-detail-head,
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.workflow-list {
    display: grid;
    gap: 12px;
    margin-top: 16px;
}

.workflow-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    background: rgba(255, 255, 255, 0.6);
    padding: 14px;
    border-radius: 14px;
}

.workflow-item small,
.timeline-list span,
.faq-answer p,
.faq-snippet p,
.footer-links a,
.footer-copy,
.footer-bottom,
.comparison-table td,
.contact-card p,
.contact-detail-list li,
.policy-card p,
.automation-list span,
.price-card p,
.contact-intro p {
    font-size: 15px;
}

.workflow-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-blue { background: var(--primary); }
.dot-green { background: var(--success); }
.dot-amber { background: var(--warning); }

.tag,
.status-pill,
.page-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    justify-self: start;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0, 102, 102, 0.12);
    color: var(--primary-dark);
}

.page-badge {
    padding: 4px 14px;
    min-height: 0;
    line-height: 1.1;
    white-space: nowrap;
}

.tag-soft {
    background: rgba(30, 154, 99, 0.12);
    color: var(--success);
}

.tag-warning {
    background: rgba(217, 119, 6, 0.14);
    color: var(--warning);
}

.chart-bars {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    align-items: end;
    gap: 12px;
    min-height: 180px;
    margin-top: 20px;
}

.chart-bars span {
    border-radius: 18px 18px 6px 6px;
    background: linear-gradient(180deg, rgba(0, 102, 102, 0.95), rgba(255, 150, 68, 0.72));
}

.section {
    padding: 96px 0;
}

.section-tight {
    padding-top: 0;
}

.section-contrast {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(255, 255, 255, 0.18));
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.section-heading {
    max-width: 720px;
    margin-bottom: 34px;
}

.section-heading p,
.page-hero p {
    max-width: 620px;
    margin-top: 18px;
}

.section-copy {
    margin: 18px 0 24px;
}

.logo-strip {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 14px 22px;
    display: flex;
    gap: 18px;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-soft);
}

.logo-strip > span {
    color: var(--text-soft);
    font-size: 14px;
}

.logo-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.logo-list span {
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(24, 34, 45, 0.08);
    font-size: 14px;
}

.card-grid,
.feature-preview-grid,
.contact-grid,
.policy-grid,
.pricing-grid,
.integration-grid,
.feature-detail-grid,
.stack-grid,
.metric-list,
.timeline-list,
.automation-list,
.footer-links,
.faq-list,
.faq-sidebar,
.contact-intro,
.contact-detail-list {
    display: grid;
    gap: 22px;
}

.card-grid-three,
.feature-preview-grid,
.pricing-grid,
.integration-grid,
.policy-grid,
.pricing-preview-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.pricing-shell .pricing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    align-items: start;
}

.faq-list,
.faq-sidebar,
.contact-intro,
.metric-list,
.timeline-list,
.automation-list,
.footer-links,
.contact-detail-list {
    gap: 12px;
}

.info-card,
.feature-preview,
.price-card,
.policy-card,
.contact-card,
.faq-snippet,
.stack-card,
.integration-card,
.feature-detail,
.floating-note,
.mini-panel {
    padding: 24px;
}

.card-kicker {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--primary-dark);
    font-size: 12px;
}

.info-card h3,
.feature-preview h3,
.faq-snippet h3,
.contact-card h3,
.policy-card h3,
.integration-card h3,
.stack-card h3,
.feature-detail h3 {
    margin: 0 0 10px;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
}

.mini-panel-highlight {
    background: linear-gradient(135deg, rgba(0, 102, 102, 0.14), rgba(255, 255, 255, 0.82));
}

.mini-panel-head strong,
.contact-card h3,
.support-panel h3,
.policy-card h3,
.stack-card h3,
.integration-card h3 {
    font-size: 1.2rem;
}

.timeline-list div,
.automation-list span,
.metric-pill,
.stack-card,
.integration-card {
    border-radius: 16px;
    padding: 16px;
}

.timeline-list strong,
.comparison-table tbody th,
.faq-question strong,
.contact-card h3,
.policy-card h3,
.stack-card h3,
.integration-card h3,
.support-panel h3 {
    display: block;
    margin-bottom: 6px;
}

.automation-list span {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.automation-list span::before,
.check-list li::before {
    content: "\2713";
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: rgba(30, 154, 99, 0.14);
    color: var(--success);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    line-height: 1;
    flex-shrink: 0;
}

.check-list,
.legal-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.check-list {
    display: grid;
    gap: 12px;
}

.check-list li,
.contact-detail-list li,
.footer-links a,
.legal-content li {
    color: var(--text-soft);
}

.check-list li {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: start;
    gap: 10px;
    line-height: 1.45;
}

.compact {
    gap: 10px;
}

.section-cta {
    margin-top: 28px;
}

.page-hero {
    padding-top: 48px;
}

.page-hero-shell,
.faq-layout,
.contact-grid,
.feature-detail-grid,
.stack-grid {
    display: grid;
    gap: 24px;
}

.page-hero-shell {
    grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
    align-items: end;
}

.floating-note,
.support-panel,
.form-panel,
.legal-shell {
    padding: 24px;
}

.floating-note strong,
.support-panel strong {
    display: block;
    font-size: 2rem;
    line-height: 1;
    letter-spacing: -0.05em;
    margin: 10px 0 6px;
}

.metric-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.feature-detail-grid,
.stack-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.status-pill {
    background: rgba(15, 118, 110, 0.12);
    color: var(--accent);
}

.pricing-shell {
    display: grid;
    gap: 24px;
}

.pricing-source-note {
    margin: 0;
    color: var(--text-soft);
    font-size: 14px;
}

.pricing-status {
    grid-column: 1 / -1;
}

.billing-row {
    gap: 16px;
    justify-content: flex-start;
}

.billing-label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-soft);
}

.billing-label.active {
    color: var(--text);
}

.billing-toggle {
    position: relative;
    width: 68px;
    height: 36px;
    border-radius: 999px;
    background: rgba(24, 34, 45, 0.12);
    border: none;
    padding: 0;
    cursor: pointer;
}

.billing-toggle .toggle-knob {
    position: absolute;
    top: 4px;
    left: 4px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 8px 18px rgba(24, 34, 45, 0.18);
    transition: transform 0.2s ease;
}

.billing-toggle.annual {
    background: rgba(0, 102, 102, 0.22);
}

.billing-toggle.annual .toggle-knob {
    transform: translateX(32px);
}

.billing-meta {
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(30, 154, 99, 0.12);
    color: var(--success);
}

.price-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card.featured {
    border-color: rgba(0, 102, 102, 0.2);
    box-shadow: 0 24px 60px rgba(0, 102, 102, 0.14);
}

.plan-label {
    margin: 0 0 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
}

.price-card h3 {
    margin: 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 3.35rem;
    line-height: 0.95;
}

.price-card h3 span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-soft);
}

.pricing-meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 12px 0 0;
    min-height: 28px;
}

.pricing-meta-row.is-free {
    min-height: 0;
}

.pricing-mrp,
.pricing-save {
    display: inline-flex;
    align-items: center;
    min-height: 28px;
}

.pricing-mrp {
    color: var(--text-soft);
    font-size: 0.98rem;
    text-decoration: line-through;
    text-decoration-thickness: 1.5px;
}

.pricing-save {
    padding: 5px 10px;
    border-radius: 999px;
    background: rgba(0, 102, 102, 0.1);
    color: var(--primary-dark);
    font-size: 0.86rem;
    font-weight: 700;
}

.is-hidden {
    display: none;
}

.pricing-period {
    margin: 10px 0 18px;
}

.plan-cta-wrap {
    margin-top: auto;
    padding-top: 18px;
}

.plan-cta {
    width: 100%;
    justify-content: center;
}

@media (max-width: 1320px) {
    .pricing-shell .pricing-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.table-panel {
    overflow-x: auto;
}

.pricing-table-cta {
    display: flex;
    justify-content: center;
    margin-top: 28px;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 760px;
}

.comparison-table th,
.comparison-table td {
    text-align: left;
    padding: 16px;
    border-bottom: 1px solid var(--line);
}

.comparison-table thead th {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.faq-layout {
    grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
}

.faq-shell {
    padding: 14px;
}

.faq-item {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid transparent;
}

.faq-item + .faq-item {
    margin-top: 12px;
}

.faq-question {
    width: 100%;
    border: none;
    padding: 20px;
    text-align: left;
    cursor: pointer;
    gap: 18px;
}

.faq-question span {
    transition: transform 0.2s ease;
}

.faq-item.open .faq-question span {
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 20px 20px;
    background: rgba(255, 255, 255, 0.72);
}

.faq-item.open .faq-answer {
    display: block;
}

.form-panel {
    padding: 24px;
}

.contact-form-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.field {
    display: grid;
    gap: 8px;
    flex: 1 1 240px;
}

.field-full {
    flex-basis: 100%;
}

.field label {
    font-size: 14px;
    font-weight: 700;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    border-radius: 16px;
    border: 1px solid rgba(24, 34, 45, 0.1);
    background: rgba(255, 255, 255, 0.82);
    padding: 14px 16px;
    color: var(--text);
}

.field textarea {
    min-height: 150px;
    resize: vertical;
}

.form-response {
    margin-top: 14px;
    color: var(--accent);
    font-size: 14px;
}

.form-response.is-success {
    color: var(--success);
}

.form-response.is-error {
    color: #b42318;
}

.contact-card,
.support-panel {
    display: grid;
    gap: 10px;
}

.contact-detail-list li {
    padding: 14px 16px;
    border-radius: 16px;
}

.policy-grid {
    margin-top: 26px;
}

.policy-card strong {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--primary-dark);
}

.legal-shell {
    padding: 28px;
}

.legal-content h2,
.legal-content h3 {
    letter-spacing: -0.04em;
}

.legal-content h2 {
    margin: 0 0 12px;
    font-size: 2rem;
}

.legal-content h3 {
    margin: 28px 0 8px;
    font-size: 1.3rem;
}

.legal-content p,
.legal-content li {
    margin: 0 0 12px;
}

.legal-content ul {
    display: grid;
    gap: 8px;
    margin-top: 10px;
}

.cta-section {
    padding-top: 0;
}

.cta-shell {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 32px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(0, 102, 102, 0.12), rgba(255, 150, 68, 0.08), rgba(255, 255, 255, 0.72));
    border: 1px solid rgba(255, 255, 255, 0.82);
    box-shadow: var(--shadow);
}

.cta-shell > div:first-child {
    flex: 1;
    min-width: 0;
}

.cta-actions {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    min-width: 214px;
}

.cta-actions .btn {
    width: 100%;
    min-height: 58px;
    white-space: nowrap;
    text-align: center;
}

.site-footer {
    padding: 42px 0 30px;
}

.footer-grid {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 24px;
}

.footer-grid > div {
    flex: 1;
}

.footer-brand {
    margin-bottom: 16px;
}

.footer-brand .brand-logo {
    height: 40px;
}

.footer-copy {
    max-width: 38ch;
}

.footer-title {
    color: var(--text);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 10px 0 16px;
}

.footer-links a:hover,
.footer-bottom-links a:hover {
    color: var(--text);
}

.footer-bottom {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid var(--line);
    color: var(--text-soft);
}

.footer-bottom-links {
    display: flex;
    gap: 16px;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 {
    transition-delay: 0.08s;
}

.reveal-delay-2 {
    transition-delay: 0.16s;
}

@media (max-width: 1080px) {
    .nav-toggle {
        display: inline-flex;
    }

    .nav-panel {
        position: absolute;
        top: calc(100% + 12px);
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        padding: 18px;
        border-radius: 24px;
        background: rgba(251, 248, 243, 0.96);
        border: 1px solid rgba(24, 34, 45, 0.08);
        box-shadow: var(--shadow);
    }

    .nav-panel.open {
        display: flex;
    }

    .nav-links,
    .nav-actions,
    .cta-shell,
    .footer-grid,
    .footer-bottom,
    .logo-strip {
        flex-direction: column;
        align-items: flex-start;
    }

    .cta-actions {
        width: 100%;
        min-width: 0;
    }

    .nav-links {
        gap: 14px;
    }

    .hero-grid,
    .split-layout,
    .page-hero-shell,
    .faq-layout,
    .contact-grid,
    .feature-detail-grid,
    .stack-grid,
    .card-grid-three,
    .feature-preview-grid,
    .pricing-preview-grid,
    .pricing-grid,
    .integration-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }

    .hero-proof {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 720px) {
    .container {
        width: min(var(--container), calc(100% - 28px));
    }

    .site-header {
        padding: 12px 0;
    }

    .hero,
    .page-hero,
    .section {
        padding: 76px 0;
    }

    .hero-home,
    .page-hero {
        padding-top: 26px;
    }

    .hero-copy h1 {
        max-width: none;
    }

    .dashboard-large {
        transform: none;
    }

    .brand-logo,
    .footer-brand .brand-logo {
        height: 36px;
    }

    .dash-overview {
        grid-template-columns: 1fr;
    }

    .workflow-item {
        grid-template-columns: auto 1fr;
    }

    .workflow-item .tag {
        grid-column: 2;
        width: fit-content;
    }

    .logo-strip {
        border-radius: 26px;
        padding: 18px;
    }

    .chart-bars {
        gap: 8px;
        min-height: 140px;
    }

    .faq-question {
        padding: 18px;
    }

    .faq-answer {
        padding: 0 18px 18px;
    }

    .legal-shell,
    .form-panel,
    .price-card,
    .info-card,
    .feature-preview,
    .policy-card,
    .contact-card,
    .support-panel,
    .stack-card,
    .mini-panel,
    .feature-detail,
    .floating-note {
        padding: 20px;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}