/* ---------------------------------------------------------
   GLOBAL RESET
--------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-family: "Inter", "Segoe UI", sans-serif;
    font-size: 18px;
    color: #1a1a1a;
    background: #ffffff;
    line-height: 1.6;
}

body {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main[role="main"] {
    flex: 1 0 auto;
}

/* ---------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------- */
h1, h2, h3 {
    font-weight: lighter;
    line-height: 1.25;
    margin-bottom: 1rem;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 1.9rem;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
}

/* ---------------------------------------------------------
   HERO SECTION
--------------------------------------------------------- */
.hero {
    padding: 4rem 0;
    border-bottom: 1px solid #e5e5e5;
}

.hero-title {
    font-size: 2.2rem;
    font-weight: lighter;
    margin-bottom: 1rem;
}

.hero-title-brand {
    font-size: 1.45em;
}

.hero-image {
    display: block;
    width: 100%;
    height: auto;
    margin: 0 0 2rem 0;
}

.hero-subtitle {
    font-size: 1.3rem;
    max-width: 700px;
    color: #444;
    margin-bottom: 2rem;
    font-weight: lighter;
}

.hero-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    transition: background 0.2s ease;
}

    .hero-button:hover {
        background: #333;
    }

/* ---------------------------------------------------------
   METRICS
--------------------------------------------------------- */
.metrics {
    display: flex;
    gap: 1.5rem;
    margin: 3rem 0;
}

.metric-pill {
    padding: 1rem 1.5rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fafafa;
    text-align: center;
    flex: 1;
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
}

.metric-label {
    font-size: 0.9rem;
    color: #666;
}

/* ---------------------------------------------------------
   GRID CARDS
--------------------------------------------------------- */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.card {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
    transition: box-shadow 0.2s ease;
}

    .card:hover {
        box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    }

.card-title {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.card-body {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.2rem;
}

.card-link {
    font-weight: 600;
    text-decoration: none;
    color: #1a1a1a;
}

    .card-link:hover {
        text-decoration: underline;
    }

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.footer {
    margin-top: 4rem;
    padding-top: 2rem;
    text-align: center;
}

.footer-text {
    font-size: 0.95rem;
    color: #666;
}

.footer a,
.pdf-link {
    color: #666;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.footer a:hover,
.footer a:focus,
.pdf-link:hover,
.pdf-link:focus {
    opacity: 0.6;
}

/* ---------------------------------------------------------
   FORMS & CONTACT
--------------------------------------------------------- */
.hero-centered {
    text-align: center;
    padding: 48px 0 40px;
    max-width: 760px;
    margin: 0 auto;
}

.hero-centered .hero-title {
    margin-bottom: 16px;
}

.hero-centered .hero-sub {
    max-width: 620px;
    margin: 0 auto;
    font-size: 1rem;
}

.form-card {
    border-radius: var(--radius-lg, 8px);
    background: #ffffff;
    border: 1px solid #e5e5e5;
    padding: 28px;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08); /* match standard card hover state but static */
    color: #1a1a1a;
}

.form-card h2 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.form-card > p {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 20px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
}

.form-group label {
    font-size: 0.85rem;
    color: #555;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 10px 12px;
    border-radius: var(--radius-md, 4px);
    border: 1px solid #e5e5e5;
    background: #fafafa;
    color: #1a1a1a;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a1a1a;
}

.form-group select option {
    background: #ffffff;
    color: #1a1a1a;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.form-full {
    grid-column: span 2;
}

.form-card .btn-primary {
    display: block;
    width: 100%;
    margin-top: 20px;
    padding: 12px 20px;
    background: #1a1a1a;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.2s ease;
}

.form-card .btn-primary:hover {
    background: #333;
}

/* Contact Form (standalone, not in grid) */
.form-card-standalone {
    margin-top: 40px;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: minmax(0, 1fr);
    }
    .form-full {
        grid-column: span 1;
    }
}

/* ---------------------------------------------------------
   HOMEPAGE — THE THREE C'S
--------------------------------------------------------- */
.three-cs-section {
    padding: 50px 0;
    background: #f7f7f7;
    margin-top: 40px;
    border-radius: 8px;
}

.three-cs-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.three-cs-section .lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.15rem;
    color: #555;
}

.three-cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    padding: 0 20px;
}

.cs-item {
    background: #ffffff;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

.cs-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cs-item p {
    font-size: 1rem;
    color: #444;
    line-height: 1.5;
}

/* ---------------------------------------------------------
   HOMEPAGE — CLARITY / CHAOS
--------------------------------------------------------- */
.lead {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.5;
}

.highlight-box {
    background: #f0f4fa;
    border-left: 4px solid #2c5282;
    padding: 20px 24px;
    border-radius: 6px;
    margin: 1.5rem 0 2rem 0;
    font-size: 1.1rem;
}

.pillar {
    margin-bottom: 1.75rem;
}

.pillar h3 {
    color: #2c5282;
    font-size: 1.35rem;
    margin-bottom: 0.5rem;
}

.closing {
    font-size: 1.2rem;
    color: #333;
    font-style: italic;
    margin-top: 2rem;
}

/* ---------------------------------------------------------
   HOMEPAGE — CALL TO ACTION
--------------------------------------------------------- */
.cta {
    text-align: center;
    background: #f7f7f7;
    padding: 50px 20px;
    border-radius: 8px;
    margin-top: 40px;
}

.cta p {
    max-width: 640px;
    margin: 0 auto 1.5rem auto;
    color: #555;
}

/* ---------------------------------------------------------
   PRICING PAGE — HEADER
--------------------------------------------------------- */
.pricing-header {
    padding-bottom: 3rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 3rem;
}

.pricing-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-nav .nav-logo {
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    color: #1a1a1a;
    letter-spacing: -0.02em;
}

.pricing-nav .nav-link {
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
}

.pricing-nav .nav-link:hover {
    color: #1a1a1a;
}

.pricing-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.75rem;
}

.pricing-title {
    font-size: 2.6rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1rem;
}

.pricing-subtitle {
    font-size: 1.05rem;
    color: #444;
    max-width: 600px;
    margin-bottom: 0;
}

/* ---------------------------------------------------------
   PRICING PAGE — TWO-COLUMN LAYOUT
--------------------------------------------------------- */
.pricing-main {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
}

/* ---------------------------------------------------------
   PRICING PAGE — BASE PLATFORM CARD
--------------------------------------------------------- */
.platform-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2.5rem;
    background: #fff;
    margin-bottom: 2.5rem;
}

.platform-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1a1a1a;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 0.25rem 0.6rem;
    margin-bottom: 1.25rem;
}

.platform-price {
    font-size: 3.4rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.platform-period {
    font-size: 1.5rem;
    font-weight: 400;
    color: #888;
    letter-spacing: 0;
}

.platform-included {
    font-size: 1rem;
    color: #444;
    margin-top: 0.5rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid #e5e5e5;
}

.platform-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem 2rem;
}

.platform-features li {
    font-size: 0.95rem;
    color: #444;
    padding-left: 1.1em;
    position: relative;
}

.platform-features li::before {
    content: "–";
    position: absolute;
    left: 0;
    color: #aaa;
}

/* ---------------------------------------------------------
   PRICING PAGE — INTEGRATIONS
--------------------------------------------------------- */
.integrations-section {
    margin-bottom: 2.5rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.section-desc {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.integration-list {
    list-style: none;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
}

.integration-list li + li {
    border-top: 1px solid #e5e5e5;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    cursor: pointer;
    background: #fff;
    transition: background 0.12s ease;
}

.integration-item:hover {
    background: #fafafa;
}

.integration-item.is-checked {
    background: #fafafa;
}

.integration-check {
    width: 17px;
    height: 17px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #1a1a1a;
}

.integration-name {
    flex: 1;
    font-size: 1rem;
    color: #1a1a1a;
}

.integration-price {
    font-size: 0.95rem;
    font-weight: 600;
    color: #555;
    white-space: nowrap;
}

/* ---------------------------------------------------------
   PRICING PAGE — CALCULATOR CARD
--------------------------------------------------------- */
.pricing-right {
    position: sticky;
    top: 2rem;
}

.calculator-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    background: #fafafa;
}

.calc-eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.5rem;
}

.calc-total {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: #1a1a1a;
    line-height: 1;
    margin-bottom: 0.4rem;
}

.calc-period {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 1.5rem;
}

.calc-divider {
    border: none;
    border-top: 1px solid #e5e5e5;
    margin-bottom: 1.25rem;
}

.calc-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
    margin-bottom: 1.75rem;
    min-height: 2.5rem;
}

.calc-line {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    font-size: 0.9rem;
    color: #555;
}

.calc-line--base {
    font-weight: 600;
    color: #1a1a1a;
}

.calc-cta {
    display: block;
    text-align: center;
    padding: 0.85rem 1.5rem;
    background: #1a1a1a;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s ease;
    margin-bottom: 1rem;
}

.calc-cta:hover {
    background: #333;
}

.calc-note {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.55;
    margin-bottom: 0;
}

/* ---------------------------------------------------------
   PRICING PAGE — RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 860px) {
    .pricing-main {
        grid-template-columns: 1fr;
    }

    .pricing-right {
        position: static;
        order: -1;
    }

    .pricing-title {
        font-size: 2rem;
    }

    .platform-price {
        font-size: 2.8rem;
    }

    .calc-total {
        font-size: 2.4rem;
    }

    .platform-features {
        grid-template-columns: 1fr;
    }
}

/* ---------------------------------------------------------
   PRIVACY PAGE — HEADER
--------------------------------------------------------- */
.privacy-page {
    padding-top: 1rem;
}

.privacy-header {
    padding-bottom: 2.5rem;
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2.5rem;
}

.privacy-badge {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #555;
    background: #f0f0f0;
    border-radius: 4px;
    padding: 0.3rem 0.7rem;
    margin-bottom: 1rem;
}

.privacy-subtitle {
    font-size: 1.15rem;
    color: #555;
    max-width: 600px;
    margin-bottom: 1.25rem;
}

.privacy-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* ---------------------------------------------------------
   PRIVACY PAGE — TWO-COLUMN LAYOUT
--------------------------------------------------------- */
.privacy-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}

.privacy-toc-col {
    min-width: 0;
}

.toc-sticky {
    position: sticky;
    top: 1.5rem;
}

.toc-label {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.75rem;
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    border-left: 2px solid #e5e5e5;
    margin-bottom: 1.5rem;
}

.toc-link {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
    color: #555;
    text-decoration: none;
    border-left: 2px solid transparent;
    margin-left: -2px;
    transition: color 0.15s ease, border-color 0.15s ease;
}

.toc-link:hover {
    color: #1a1a1a;
}

.toc-link.active {
    color: #1a1a1a;
    font-weight: 600;
    border-left-color: #1a1a1a;
}

.toc-note {
    font-size: 0.82rem;
    color: #666;
    line-height: 1.5;
    padding: 1rem;
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

/* ---------------------------------------------------------
   PRIVACY PAGE — CONTENT
--------------------------------------------------------- */
.privacy-content-col {
    min-width: 0;
}

.privacy-section {
    margin-bottom: 3rem;
}

.privacy-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.privacy-section h3 {
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
}

.privacy-section p {
    color: #444;
}

.info-note {
    font-size: 0.9rem;
    color: #666;
}

.info-category {
    margin-bottom: 1.75rem;
}

.info-category-title {
    margin-bottom: 0.6rem;
}

.info-category-list {
    padding-left: 1.3rem;
    color: #444;
}

.info-category-list li {
    margin-bottom: 0.4rem;
}

.legal-basis-list,
.retention-list {
    padding-left: 1.3rem;
    color: #444;
}

.legal-basis-list li,
.retention-list li {
    margin-bottom: 0.6rem;
}

.use-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1rem;
}

.use-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.25rem;
    background: #fff;
}

.use-card-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.use-card p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}

.sharing-item {
    padding-left: 1.1rem;
    border-left: 4px solid #e5e5e5;
    margin-bottom: 1.25rem;
}

.sharing-item-title {
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.sharing-item p:last-child {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 0;
}

.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 0.5rem 2rem;
    list-style: none;
    padding-left: 0;
    margin: 1rem 0 1.5rem;
    font-size: 0.9rem;
    color: #444;
}

.security-grid li {
    padding-left: 1.2em;
    position: relative;
}

.security-grid li::before {
    content: "\2022";
    position: absolute;
    left: 0;
    color: #1a1a1a;
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 0.75rem;
    margin: 1.25rem 0;
}

.rights-tile {
    background: #fafafa;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1rem;
    font-size: 0.9rem;
    color: #444;
}

.privacy-table-wrap {
    overflow-x: auto;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    margin: 1.25rem 0;
}

.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.privacy-table thead {
    background: #f7f7f7;
}

.privacy-table th,
.privacy-table td {
    text-align: left;
    padding: 0.85rem 1.1rem;
}

.privacy-table th {
    font-weight: 600;
}

.privacy-table td {
    color: #555;
    border-top: 1px solid #e5e5e5;
}

.contact-card {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    background: #fff;
}

.contact-item {
    margin-top: 1.25rem;
}

.contact-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #888;
    margin-bottom: 0.25rem;
}

.contact-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

.contact-value:hover {
    text-decoration: underline;
}

.contact-address {
    padding-top: 1rem;
    border-top: 1px solid #e5e5e5;
    color: #444;
    line-height: 1.5;
}

.dpo-note {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.8rem;
    color: #888;
}

.privacy-footnote {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
    text-align: center;
}

.privacy-footnote p {
    font-size: 0.8rem;
    color: #888;
    max-width: 560px;
    margin: 0 auto 1rem auto;
}

.privacy-copyright {
    font-size: 0.75rem;
    color: #999;
    letter-spacing: 0.05em;
}

/* ---------------------------------------------------------
   PRIVACY PAGE — RESPONSIVE
--------------------------------------------------------- */
@media (max-width: 860px) {
    .privacy-layout {
        grid-template-columns: 1fr;
    }

    .toc-sticky {
        position: static;
    }
}

