:root {
    --bg-color: #f7fcfa;
    --surface-color: rgba(255, 255, 255, 0.9);
    --surface-strong: #ffffff;
    --surface-accent: #edf9f5;
    --surface-border: rgba(51, 137, 114, 0.14);
    --text-main: #17362f;
    --text-muted: #5c7b73;
    --primary: #3ba37c;
    --primary-hover: #308666;
    --secondary: #8fd0e8;
    --secondary-deep: #5eaecb;
    --shadow-soft: 0 20px 48px rgba(82, 140, 125, 0.12);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-padding-top: 96px;
}

body {
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(238, 250, 246, 0.98) 54%, rgba(232, 246, 251, 0.98) 100%);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    scroll-behavior: smooth;
}

body.gdpr-banner-visible {
    padding-bottom: 148px;
}

.bg-mesh {
    position: fixed;
    inset: 0;
    z-index: -1;
    background:
        radial-gradient(circle at 8% 18%, rgba(143, 208, 232, 0.34) 0%, transparent 32%),
        radial-gradient(circle at 82% 14%, rgba(59, 163, 124, 0.2) 0%, transparent 30%),
        radial-gradient(circle at 48% 86%, rgba(176, 235, 214, 0.34) 0%, transparent 34%);
    filter: blur(42px);
}

.container {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.12;
}

p {
    color: var(--text-muted);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-deep) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gradient-text-blue {
    background: linear-gradient(135deg, var(--secondary-deep) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.gdpr-banner {
    position: fixed;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 220;
    display: none;
    transform: translateY(24px);
    opacity: 0;
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.gdpr-banner.is-visible {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.gdpr-banner.is-hiding {
    opacity: 0;
    transform: translateY(24px);
}

.gdpr-banner__inner {
    max-width: 1080px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 22px;
    border-radius: 24px;
    border: 1px solid rgba(59, 163, 124, 0.18);
    background:
        radial-gradient(circle at 0% 0%, rgba(143, 208, 232, 0.22), transparent 28%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(237, 249, 245, 0.98) 100%);
    box-shadow: 0 20px 44px rgba(74, 120, 109, 0.16);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.gdpr-banner__copy {
    display: grid;
    gap: 6px;
}

.gdpr-banner__eyebrow {
    color: var(--primary);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.gdpr-banner__text {
    color: var(--text-main);
    font-size: 0.96rem;
    max-width: 720px;
}

.gdpr-banner__text a {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

.gdpr-banner__text a:hover {
    color: var(--primary-hover);
}

.gdpr-banner__actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.gdpr-banner__button {
    min-width: 132px;
}

.navbar {
    padding: 18px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(14px);
    background: rgba(247, 252, 250, 0.74);
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(247, 252, 250, 0.94);
    border-bottom: 1px solid var(--surface-border);
    box-shadow: 0 10px 24px rgba(111, 152, 141, 0.08);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-main);
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 2px;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.nav-links a:hover {
    color: var(--primary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary-deep) 100%);
    color: #fff;
    box-shadow: 0 14px 28px rgba(59, 163, 124, 0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(59, 163, 124, 0.26);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.72);
    color: var(--secondary-deep);
    border: 1px solid rgba(94, 174, 203, 0.22);
}

.btn-secondary:hover,
.btn-outline:hover {
    background: #fff;
    transform: translateY(-2px);
}

.btn-outline {
    background: rgba(255, 255, 255, 0.72);
    color: var(--primary);
    border: 1px solid rgba(59, 163, 124, 0.22);
    text-align: center;
}

.hero-banner {
    padding-top: 24px;
}

.hero-banner-card {
    display: grid;
    grid-template-columns: minmax(280px, 420px) minmax(0, 1fr);
    align-items: stretch;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(59, 163, 124, 0.14);
    box-shadow: 0 24px 48px rgba(82, 140, 125, 0.16);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 249, 244, 0.98) 100%);
}

.hero-banner-media {
    position: relative;
    min-height: 640px;
}

.hero-banner-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    filter: saturate(1.03) brightness(1.01);
}

.hero-banner-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 46px;
    background:
        radial-gradient(circle at 100% 0%, rgba(143, 208, 232, 0.26), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 251, 246, 0.98) 100%);
}

.hero-banner-copy h2 {
    color: var(--text-main);
    font-size: clamp(1.8rem, 3.4vw, 3.2rem);
    letter-spacing: -0.04em;
    margin-bottom: 12px;
    /* max-width: 520px; */
    line-height: 1.02;
}

.hero-banner-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
}

.hero-banner-copy p {
    /* max-width: 620px; */
}

.hero-banner-copy p+p {
    margin-top: 16px;
}

.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
    gap: 56px;
    align-items: center;
    padding-top: 114px;
    padding-right: clamp(12px, 3vw, 36px);
    padding-bottom: 24px;
}

.hero-content {
    max-width: 760px;
    z-index: 2;
}

.badge,
.section-kicker {
    display: inline-block;
    margin-bottom: 15px;
    padding: 8px 18px;
    background: rgba(143, 208, 232, 0.22);
    color: var(--secondary-deep);
    border: 1px solid rgba(94, 174, 203, 0.22);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.badge {
    margin-bottom: 28px;
}

.hero h1 {
    font-size: clamp(2.2rem, 4.25vw, 3.45rem);
    letter-spacing: -0.04em;
    margin-bottom: 14px;
    max-width: 720px;
}

.hero h1 .gradient-text {
    display: block;
    font-size: 0.9em;
    margin-top: 6px;
}

.hero-intro {
    color: var(--primary);
    font-weight: 700;
}

.hero p:not(.source-note) {
    font-size: 1.1rem;
    margin-bottom: 18px;
    max-width: 640px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-graphics {
    position: relative;
    width: 100%;
    max-width: 423px;
    height: 468px;
    justify-self: center;
}

.glass-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(28px);
    z-index: 1;
}

.orb-1 {
    width: 280px;
    height: 280px;
    background: rgba(143, 208, 232, 0.44);
    top: -24px;
    right: -24px;
    animation: float 8s ease-in-out infinite;
}

.orb-2 {
    width: 240px;
    height: 240px;
    background: rgba(124, 212, 177, 0.32);
    bottom: 0;
    left: 12px;
    animation: float 10s ease-in-out infinite reverse;
}

.glass-panel {
    position: relative;
    z-index: 10;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(238, 250, 246, 0.9) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(94, 174, 203, 0.18);
    border-radius: 25px;
    padding: 30px 27px;
    box-shadow: var(--shadow-soft);
    transform: perspective(1000px) rotateY(-6deg) rotateX(4deg);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.6s ease;
}

.glass-panel:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(1deg) translateY(-6px);
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.stat-block {
    padding: 14px 16px 13px;
    margin-bottom: 11px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(59, 163, 124, 0.12);
    border-radius: 18px;
}

.stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.85rem;
    line-height: 1;
    margin-bottom: 7px;
    color: var(--primary);
}

.stat-copy {
    color: var(--text-muted);
    font-size: 0.86rem;
    font-weight: 600;
}

.source-note {
    margin-top: 14px;
    font-size: 0.49rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.section {
    padding: 104px 24px;
}

.section-header {
    text-align: center;
    margin-bottom: 62px;
}

.section-header h2 {
    font-size: 3rem;
    margin: 18px 0 18px;
    letter-spacing: -0.03em;
}

.section-header p {
    font-size: 1.08rem;
    max-width: 760px;
    margin: 0 auto;
}

.section-header::after {
    content: "";
    display: block;
    width: 82px;
    height: 4px;
    margin: 22px auto 0;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--primary), var(--secondary-deep));
    opacity: 0.85;
}

.grid {
    display: grid;
    gap: 24px;
}

.about-grid {
    grid-template-columns: minmax(0, 1fr);
    max-width: 960px;
    margin: 0 auto;
}

.solution-grid,
.preferences-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.features-grid,
.mission-grid,
.impact-grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.product-grid {
    grid-template-columns: 1.1fr 1.3fr 0.9fr;
}

.pricing-section {
    padding-top: 92px;
}

.pricing-shell {
    display: grid;
    gap: 28px;
}

.pricing-choice-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.pricing-choice-card,
.pricing-flow-card {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    border: 1px solid rgba(59, 163, 124, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(143, 208, 232, 0.22), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(241, 250, 247, 0.98) 100%);
    box-shadow: 0 22px 48px rgba(97, 144, 132, 0.12);
}

.pricing-choice-card {
    display: grid;
    grid-template-rows: 280px auto;
}

.pricing-choice-media {
    position: relative;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(222, 244, 251, 0.8), rgba(236, 249, 244, 0.92));
}

.pricing-choice-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pricing-choice-copy {
    display: grid;
    gap: 14px;
    padding: 30px;
}

.pricing-choice-kicker,
.pricing-flow-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 7px 14px;
    border-radius: 999px;
    background: rgba(143, 208, 232, 0.2);
    border: 1px solid rgba(94, 174, 203, 0.16);
    color: var(--secondary-deep);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-choice-copy h3 {
    font-size: clamp(1.6rem, 2vw, 2rem);
    margin: 0;
}

.pricing-choice-copy p {
    margin: 0;
}

.pricing-choice-button {
    margin-top: 8px;
    width: fit-content;
}

.pricing-flow-card {
    padding: 32px;
    min-height: 360px;
}

.pricing-flow-topline {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 28px;
}

.pricing-back-button {
    border: 1px solid rgba(59, 163, 124, 0.16);
    background: rgba(255, 255, 255, 0.78);
    color: var(--text-main);
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

.pricing-back-button:hover {
    transform: translateY(-2px);
    background: #fff;
}

.pricing-flow-content {
    max-width: 100%;
}

.pricing-flow-header {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.08;
    margin-bottom: 24px;
}

.pricing-step-stage {
    min-height: 186px;
    position: relative;
}

.pricing-step {
    display: grid;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    padding: 22px;
    border-radius: 24px;
    border: 1px solid rgba(59, 163, 124, 0.1);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.22s ease, transform 0.22s ease;
}

.pricing-step.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.pricing-step.is-leaving {
    opacity: 0;
    transform: translateY(-12px);
}

.pricing-step-question {
    color: var(--text-main);
    font-size: 1.1rem;
    font-weight: 700;
}

.pricing-step-meta {
    color: var(--text-muted);
    font-size: 0.94rem;
    margin-top: -6px;
}

.pricing-step-input {
    width: 100%;
    padding: 16px 18px;
    border-radius: 18px;
    border: 1px solid rgba(59, 163, 124, 0.18);
    background: rgba(255, 255, 255, 0.84);
    color: var(--text-main);
    font: inherit;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.pricing-step-input:focus {
    border-color: rgba(59, 163, 124, 0.36);
    box-shadow: 0 0 0 4px rgba(59, 163, 124, 0.08);
}

.pricing-step-submit {
    width: fit-content;
    margin-top: 6px;
}

.pricing-step-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pricing-step-hint {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.pricing-flow-note,
.pricing-save-status {
    margin-top: 20px;
    font-size: 0.92rem;
}

.pricing-flow-note {
    color: var(--text-muted);
}

.pricing-save-status {
    color: var(--primary);
    min-height: 1.4em;
}

.pricing-success {
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
}

.pricing-success h3 {
    font-size: 1.6rem;
    margin: 0;
}

.pricing-success p {
    margin: 0;
}

.resources-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

#resources .resources-grid {
    grid-template-columns: repeat(2, minmax(320px, 460px));
    justify-content: center;
}

.contact-grid {
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
    align-items: start;
}

.glass-card {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 10%, rgba(143, 208, 232, 0.22), transparent 34%),
        radial-gradient(circle at 5% 100%, rgba(163, 233, 202, 0.22), transparent 38%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 251, 247, 0.97) 100%);
    border: 1px solid rgba(59, 163, 124, 0.12);
    border-radius: 24px;
    padding: 36px 30px;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease, box-shadow 0.45s ease;
    box-shadow: 0 14px 32px rgba(102, 152, 136, 0.1);
}

.glass-card::before {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    top: 0;
    height: 1px;
    background: linear-gradient(90deg, rgba(94, 174, 203, 0.1), rgba(59, 163, 124, 0.34), rgba(94, 174, 203, 0.1));
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 163, 124, 0.24);
    box-shadow: 0 24px 44px rgba(98, 149, 136, 0.16);
}

.card-icon {
    margin-bottom: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, rgba(143, 208, 232, 0.22), rgba(59, 163, 124, 0.16));
    border: 1px solid rgba(94, 174, 203, 0.18);
    width: 64px;
    height: 64px;
    border-radius: 18px;
    color: var(--primary);
}

.card h3 {
    font-size: 1.28rem;
    margin-bottom: 14px;
    letter-spacing: -0.02em;
}

.card p+p {
    margin-top: 16px;
}

.plain-lead {
    margin-top: 18px;
    color: var(--text-main);
    font-size: 1rem;
    font-weight: 500;
}

.tag-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 22px;
}

.tag {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(59, 163, 124, 0.16);
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 700;
}

.list-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 26px 28px;
    background:
        radial-gradient(circle at 100% 0%, rgba(143, 208, 232, 0.22), transparent 28%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(242, 250, 247, 0.98) 100%);
    border: 1px solid rgba(59, 163, 124, 0.12);
    border-radius: 22px;
    text-decoration: none;
    color: inherit;
    transition: background 0.3s ease, transform 0.35s ease, box-shadow 0.35s ease;
    box-shadow: 0 12px 28px rgba(102, 152, 136, 0.08);
}

.list-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 34px rgba(102, 152, 136, 0.12);
}

.icon-wrap {
    font-size: 1.5rem;
    background: linear-gradient(145deg, rgba(143, 208, 232, 0.22), rgba(59, 163, 124, 0.18));
    border: 1px solid rgba(94, 174, 203, 0.18);
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary);
}

.list-card .content h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    color: var(--text-main);
}

.list-card .content p {
    font-size: 0.88rem;
    margin: 0;
}

.lead-form label {
    display: grid;
    gap: 8px;
    font-weight: 700;
    color: var(--text-main);
    font-size: 0.94rem;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-bottom: 18px;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 14px 16px;
    border-radius: 16px;
    border: 1px solid rgba(59, 163, 124, 0.16);
    background: rgba(255, 255, 255, 0.78);
    font: inherit;
    color: var(--text-main);
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: rgba(59, 163, 124, 0.36);
    box-shadow: 0 0 0 4px rgba(59, 163, 124, 0.08);
}

.lead-form textarea {
    resize: vertical;
    min-height: 140px;
}

.form-actions {
    margin-top: 22px;
}

.form-status {
    margin-top: 14px;
    color: var(--primary);
    font-size: 0.92rem;
    min-height: 1.4em;
}

.contact-card {
    display: grid;
    gap: 16px;
}

.calendly-card {
    background: #fafafa;
}

.contact-link {
    color: var(--primary);
    font-weight: 700;
    text-decoration: none;
}

footer {
    border-top: 1px solid var(--surface-border);
    padding: 40px 0;
    margin-top: 40px;
    background: rgba(255, 255, 255, 0.52);
}

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: center;
}

.footer-logo {
    margin-bottom: 8px;
    justify-content: center;
}

.footer-email {
    color: var(--text-main);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s;
    margin-bottom: 4px;
}

.footer-email:hover {
    color: var(--primary);
}

.footer-content p {
    font-size: 0.92rem;
}

.compliance-strip {
    margin-top: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(59, 163, 124, 0.12);
}

.compliance-title {
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 18px;
}

.compliance-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.compliance-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 72px;
    padding: 16px 18px;
    text-align: left;
    border-radius: 20px;
    border: 1px solid rgba(59, 163, 124, 0.14);
    background:
        radial-gradient(circle at 100% 0%, rgba(143, 208, 232, 0.16), transparent 30%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.94) 0%, rgba(242, 251, 247, 0.96) 100%);
    box-shadow: 0 12px 28px rgba(102, 152, 136, 0.08);
}

.compliance-badge span {
    color: var(--text-main);
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.35;
}

.compliance-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 16px;
    color: var(--primary);
    background: linear-gradient(145deg, rgba(143, 208, 232, 0.24), rgba(59, 163, 124, 0.18));
    border: 1px solid rgba(94, 174, 203, 0.18);
}

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

@keyframes float {
    0% {
        transform: translateY(0) translateX(0);
    }

    50% {
        transform: translateY(-18px) translateX(8px);
    }

    100% {
        transform: translateY(0) translateX(0);
    }
}

@media (max-width: 1180px) {
    .nav-links {
        gap: 18px;
    }

    .nav-links a {
        font-size: 0.82rem;
    }

    .hero {
        grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
        gap: 34px;
    }

    .product-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 992px) {
    body.gdpr-banner-visible {
        padding-bottom: 182px;
    }

    .gdpr-banner__inner {
        flex-direction: column;
        align-items: stretch;
    }

    .gdpr-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }

    .pricing-flow-card {
        padding: 26px;
    }

    .pricing-flow-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .nav-links {
        display: none;
    }

    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: 128px;
        padding-right: 0;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-content {
        max-width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-graphics {
        margin-top: 24px;
        max-width: 440px;
        height: auto;
    }

    .glass-panel {
        transform: none;
    }

    .glass-panel:hover {
        transform: translateY(-4px);
    }

    .about-grid,
    .solution-grid,
    .preferences-grid,
    #resources .resources-grid,
    .form-row,
    .compliance-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    body.gdpr-banner-visible {
        padding-bottom: 214px;
    }

    .gdpr-banner {
        left: 14px;
        right: 14px;
        bottom: 14px;
    }

    .gdpr-banner__inner {
        padding: 18px 16px;
        border-radius: 20px;
    }

    .gdpr-banner__actions {
        flex-direction: column-reverse;
        align-items: stretch;
    }

    .gdpr-banner__button {
        width: 100%;
    }

    .pricing-choice-card {
        grid-template-rows: 220px auto;
    }

    .pricing-choice-copy,
    .pricing-flow-card {
        padding: 22px;
    }

    .pricing-step {
        padding: 18px;
    }

    .pricing-step-stage {
        min-height: 210px;
    }

    .pricing-step-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .pricing-step-submit {
        width: 100%;
    }

    .navbar {
        padding: 16px 0;
    }

    .hero-banner {
        padding-top: 18px;
    }

    .hero-banner-card {
        grid-template-columns: 1fr;
        border-radius: 26px;
    }

    .hero-banner-media {
        min-height: 420px;
    }

    .hero-banner-copy {
        padding: 24px;
    }

    .hero-banner-copy h2 {
        font-size: 1.75rem;
    }

    .hero-banner-subtitle {
        font-size: 0.92rem;
    }

    .nav-container {
        gap: 12px;
    }

    .logo {
        font-size: 1.12rem;
    }

    .btn {
        padding: 11px 16px;
        font-size: 0.88rem;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .section {
        padding: 82px 24px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .features-grid,
    .mission-grid,
    .impact-grid,
    .resources-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .compliance-badge {
        text-align: left;
    }
}
