/* ========================
       DESIGN TOKENS
    ======================== */
        :root,
        [data-theme="light"] {
            --color-bg: #f5f4f0;
            --color-surface: #f9f8f5;
            --color-surface-2: #ffffff;
            --color-surface-offset: #ede9e4;
            --color-divider: #dcd8d2;
            --color-border: #d0ccc6;
            --color-text: #1e1c18;
            --color-text-muted: #6b6860;
            --color-text-faint: #a8a59e;
            --color-text-inverse: #f5f4f0;

            /* FBA Brand — warm teal-green + amber accent */
            --color-primary: #0d7a6b;
            --color-primary-hover: #0a5f53;
            --color-primary-active: #074a41;
            --color-primary-light: #d1ede8;
            --color-accent: #e97d2b;
            --color-accent-hover: #cc6520;
            --color-accent-light: #fce6d2;

            --radius-sm: 0.375rem;
            --radius-md: 0.5rem;
            --radius-lg: 0.75rem;
            --radius-xl: 1rem;
            --radius-2xl: 1.5rem;
            --radius-full: 9999px;

            --shadow-sm: 0 1px 3px rgba(20, 18, 12, 0.08);
            --shadow-md: 0 4px 16px rgba(20, 18, 12, 0.10);
            --shadow-lg: 0 12px 40px rgba(20, 18, 12, 0.14);
            --shadow-xl: 0 24px 64px rgba(20, 18, 12, 0.16);

            --space-1: 0.25rem;
            --space-2: 0.5rem;
            --space-3: 0.75rem;
            --space-4: 1rem;
            --space-5: 1.25rem;
            --space-6: 1.5rem;
            --space-8: 2rem;
            --space-10: 2.5rem;
            --space-12: 3rem;
            --space-16: 4rem;
            --space-20: 5rem;
            --space-24: 6rem;

            --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
            --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
            --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
            --text-lg: clamp(1.125rem, 1rem + 0.75vw, 1.5rem);
            --text-xl: clamp(1.5rem, 1.2rem + 1.25vw, 2.25rem);
            --text-2xl: clamp(2rem, 1.2rem + 2.5vw, 3.5rem);
            --text-3xl: clamp(2.5rem, 1rem + 4vw, 5rem);

            --font-display: 'Cabinet Grotesk', 'Georgia', sans-serif;
            --font-body: 'Satoshi', 'Helvetica Neue', sans-serif;

            --content-default: 1080px;
            --content-wide: 1280px;
            --content-narrow: 640px;
            --transition: 180ms cubic-bezier(0.16, 1, 0.3, 1);
        }

        [data-theme="dark"] {
            --color-bg: #131210;
            --color-surface: #1a1917;
            --color-surface-2: #201e1c;
            --color-surface-offset: #252320;
            --color-divider: #2e2b28;
            --color-border: #383430;
            --color-text: #e0ddd8;
            --color-text-muted: #8a8780;
            --color-text-faint: #5a5752;
            --color-text-inverse: #1a1917;
            --color-primary: #3fa896;
            --color-primary-hover: #2d8f7e;
            --color-primary-active: #1d7060;
            --color-primary-light: #1e3532;
            --color-accent: #f5a060;
            --color-accent-hover: #e8883e;
            --color-accent-light: #3b2615;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
            --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
            --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.5);
            --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
        }

        /* ========================
       BASE RESET
    ======================== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-font-smoothing: antialiased;
            scroll-padding-top: 80px;
        }

        body {
            min-height: 100dvh;
            font-family: var(--font-body);
            font-size: var(--text-base);
            color: var(--color-text);
            background: var(--color-bg);
            line-height: 1.6;
        }

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

        ul[role="list"] {
            list-style: none;
        }

        input,
        button,
        textarea,
        select {
            font: inherit;
            color: inherit;
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: var(--font-display);
            text-wrap: balance;
            line-height: 1.15;
        }

        p {
            text-wrap: pretty;
            max-width: 68ch;
        }

        a,
        button,
        [role="button"] {
            transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        button {
            cursor: pointer;
            background: none;
            border: none;
        }

        @media (prefers-reduced-motion: reduce) {

            *,
            *::before,
            *::after {
                transition-duration: 0.01ms !important;
                animation-duration: 0.01ms !important;
            }
        }

        /* ========================
       UTILITIES
    ======================== */
        .container {
            max-width: var(--content-default);
            margin-inline: auto;
            padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
        }

        .container--wide {
            max-width: var(--content-wide);
            margin-inline: auto;
            padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
        }

        .section {
            padding-block: clamp(var(--space-12), 8vw, var(--space-24));
        }

        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0, 0, 0, 0);
            white-space: nowrap;
        }

        /* ========================
       NAV
    ======================== */
        .nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 100;
            background: color-mix(in oklch, var(--color-bg) 90%, transparent);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--color-divider);
            transition: background var(--transition);
        }

        .nav__inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: var(--space-2);
            max-width: var(--content-wide);
        }

        .nav__logo {
            display: flex;
            align-items: center;
            gap: var(--space-2);
            text-decoration: none;
            color: var(--color-text);
        }

        .nav__logo-text {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: var(--text-lg);
            color: var(--color-primary);
        }

        .nav__links {
            display: flex;
            align-items: center;
            gap: var(--space-6);
            list-style: none;
        }

        .nav__links a {
            text-decoration: none;
            font-size: var(--text-sm);
            font-weight: 500;
            color: var(--color-text-muted);
        }

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

        .nav__actions {
            display: flex;
            align-items: center;
            gap: var(--space-3);
        }

        .nav__cta {
            background: var(--color-primary);
            color: var(--color-text-inverse);
            padding: var(--space-2) var(--space-5);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 600;
            text-decoration: none;
        }

        .nav__cta:hover {
            background: var(--color-primary-hover);
        }

        .theme-toggle {
            width: 36px;
            height: 36px;
            border-radius: var(--radius-full);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-text-muted);
            border: 1px solid var(--color-border);
        }

        .theme-toggle:hover {
            color: var(--color-primary);
            border-color: var(--color-primary);
        }

        .nav__hamburger {
            display: none;
            width: 36px;
            height: 36px;
            align-items: center;
            justify-content: center;
            color: var(--color-text);
            border-radius: var(--radius-md);
            border: 1px solid var(--color-border);
        }

        @media (max-width: 768px) {
            .nav__links {
                display: none;
            }

            .nav__hamburger {
                display: flex;
            }

            .nav__links.is-open {
                display: flex;
                flex-direction: column;
                position: absolute;
                top: 100%;
                left: 0;
                right: 0;
                background: var(--color-surface);
                border-bottom: 1px solid var(--color-divider);
                padding: var(--space-4);
                gap: var(--space-4);
            }
        }

        /* ========================
       HERO
    ======================== */
        .hero {
            padding-top: clamp(100px, 12vw, 140px);
            padding-bottom: clamp(var(--space-12), 8vw, var(--space-24));
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 60% 50% at 70% 50%, color-mix(in oklch, var(--color-primary) 12%, transparent), transparent 70%),
                radial-gradient(ellipse 40% 60% at 20% 80%, color-mix(in oklch, var(--color-accent) 8%, transparent), transparent 60%);
            pointer-events: none;
        }

        .hero__inner {
            position: relative;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-12);
            align-items: center;
            max-width: var(--content-wide);
            margin-inline: auto;
            padding-inline: clamp(var(--space-4), 4vw, var(--space-12));
        }

        .hero__badge {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            background: var(--color-primary-light);
            color: var(--color-primary);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-full);
            font-size: var(--text-xs);
            font-weight: 600;
            letter-spacing: 0.05em;
            text-transform: uppercase;
            margin-bottom: var(--space-5);
        }

        .hero__badge-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--color-primary);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {

            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        .hero__title {
            font-size: var(--text-3xl);
            font-weight: 800;
            line-height: 1.05;
            color: var(--color-text);
            margin-bottom: var(--space-6);
        }

        .hero__title span {
            color: var(--color-primary);
        }

        .hero__sub {
            font-size: var(--text-base);
            color: var(--color-text-muted);
            line-height: 1.7;
            margin-bottom: var(--space-8);
            max-width: 52ch;
        }

        .hero__actions {
            display: flex;
            align-items: center;
            gap: var(--space-4);
            flex-wrap: wrap;
        }

        .btn {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            padding: var(--space-3) var(--space-7);
            border-radius: var(--radius-full);
            font-weight: 600;
            font-size: var(--text-sm);
            text-decoration: none;
            border: none;
            cursor: pointer;
        }

        .btn--primary {
            background: var(--color-primary);
            color: var(--color-text-inverse);
        }

        .btn--primary:hover {
            background: var(--color-primary-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .btn--secondary {
            background: transparent;
            color: var(--color-primary);
            border: 1.5px solid var(--color-primary);
        }

        .btn--secondary:hover {
            background: var(--color-primary-light);
        }

        .btn--accent {
            background: var(--color-accent);
            color: #fff;
        }

        .btn--accent:hover {
            background: var(--color-accent-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

        .hero__stats {
            display: flex;
            gap: var(--space-6);
            margin-top: var(--space-10);
            flex-wrap: wrap;
        }

        .hero__stat-value {
            font-family: var(--font-display);
            font-size: var(--text-xl);
            font-weight: 800;
            color: var(--color-text);
        }

        .hero__stat-label {
            font-size: var(--text-xs);
            color: var(--color-text-muted);
            margin-top: var(--space-1);
        }

        .hero__visual {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .hero__card-stack {
            position: relative;
            width: 100%;
            max-width: 400px;
        }

        .hero__card {
            background: var(--color-surface-2);
            border-radius: var(--radius-2xl);
            box-shadow: var(--shadow-xl);
            padding: var(--space-6);
            border: 1px solid var(--color-border);
        }

        .hero__card-header {
            display: flex;
            align-items: center;
            gap: var(--space-3);
            margin-bottom: var(--space-5);
        }

        .hero__card-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-lg);
            background: var(--color-primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .hero__card-title {
            font-weight: 700;
            font-size: var(--text-base);
        }

        .hero__card-sub {
            font-size: var(--text-xs);
            color: var(--color-text-muted);
        }

        .hero__progress-list {
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
        }

        .hero__progress-item label {
            display: flex;
            justify-content: space-between;
            font-size: var(--text-xs);
            color: var(--color-text-muted);
            margin-bottom: var(--space-1);
        }

        .hero__progress-bar {
            height: 6px;
            background: var(--color-surface-offset);
            border-radius: var(--radius-full);
            overflow: hidden;
        }

        .hero__progress-fill {
            height: 100%;
            border-radius: var(--radius-full);
            background: var(--color-primary);
            transition: width 1.5s ease;
        }

        .hero__floating {
            position: absolute;
            top: -20px;
            right: -20px;
            background: var(--color-surface-2);
            border-radius: var(--radius-xl);
            padding: var(--space-3) var(--space-4);
            box-shadow: var(--shadow-lg);
            border: 1px solid var(--color-border);
            display: flex;
            align-items: center;
            gap: var(--space-2);
            font-size: var(--text-xs);
            font-weight: 600;
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {

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

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

        .hero__floating-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: #22c55e;
        }

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

            .hero__visual {
                display: none;
            }
        }

        /* ========================
       SECTION HEADER
    ======================== */
        .section-header {
            margin-bottom: clamp(var(--space-8), 5vw, var(--space-16));
        }

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

        .section-header--center p {
            margin-inline: auto;
        }

        .section-label {
            display: inline-block;
            font-size: var(--text-xs);
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            color: var(--color-primary);
            margin-bottom: var(--space-3);
        }

        .section-title {
            font-size: var(--text-2xl);
            font-weight: 800;
            color: var(--color-text);
            margin-bottom: var(--space-4);
        }

        .section-sub {
            font-size: var(--text-base);
            color: var(--color-text-muted);
            line-height: 1.7;
        }

        /* ========================
       SPONSORS
    ======================== */
        .sponsors {
            background: var(--color-surface);
            border-top: 1px solid var(--color-divider);
            border-bottom: 1px solid var(--color-divider);
        }

        .sponsors__logos {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: var(--space-3) var(--space-6);
            margin-bottom: var(--space-10);
        }

        

        

        

        

        

        /* ========================
       ONG CARDS
    ======================== */
        .ongas {
            background: var(--color-bg);
        }

        .onga-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(min(320px, 100%), 1fr));
            gap: var(--space-6);
        }

        

        

        

        

        

        

        

        

        /* Color variants */
        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        

        /* ========================
       HOW IT WORKS
    ======================== */
        .how {
            background: var(--color-surface);
            border-top: 1px solid var(--color-divider);
        }

        .steps-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: var(--space-8);
            position: relative;
        }

        .steps-grid::before {
            content: '';
            position: absolute;
            top: 28px;
            left: calc(16.66% + var(--space-4));
            right: calc(16.66% + var(--space-4));
            height: 2px;
            background: linear-gradient(90deg, var(--color-primary), var(--color-accent));
            z-index: 0;
        }

        .step {
            position: relative;
            z-index: 1;
            text-align: center;
        }

        .step__number {
            width: 56px;
            height: 56px;
            border-radius: var(--radius-full);
            background: var(--color-primary);
            color: var(--color-text-inverse);
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: var(--font-display);
            font-size: var(--text-lg);
            font-weight: 800;
            margin: 0 auto var(--space-5);
            box-shadow: 0 0 0 6px var(--color-primary-light);
        }

        .step:nth-child(2) .step__number {
            background: color-mix(in oklch, var(--color-primary) 60%, var(--color-accent));
        }

        .step:nth-child(3) .step__number {
            background: var(--color-accent);
            box-shadow: 0 0 0 6px var(--color-accent-light);
        }

        .step__title {
            font-size: var(--text-lg);
            font-weight: 700;
            margin-bottom: var(--space-3);
        }

        .step__desc {
            font-size: var(--text-sm);
            color: var(--color-text-muted);
            line-height: 1.7;
            max-width: 28ch;
            margin-inline: auto;
        }

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

            .steps-grid::before {
                display: none;
            }
        }

        /* ========================
       CADASTRO / FORMULÁRIOS
    ======================== */
        .register {
            background: var(--color-bg);
        }

        .tabs {
            display: flex;
            gap: var(--space-2);
            margin-bottom: var(--space-8);
            background: var(--color-surface-offset);
            border-radius: var(--radius-full);
            padding: var(--space-1);
            width: fit-content;
            flex-wrap: wrap;
        }

        .tab {
            padding: var(--space-2) var(--space-6);
            border-radius: var(--radius-full);
            font-size: var(--text-sm);
            font-weight: 600;
            cursor: pointer;
            color: var(--color-text-muted);
            border: none;
            background: none;
            transition: all var(--transition);
        }

        .tab.is-active {
            background: var(--color-surface-2);
            color: var(--color-primary);
            box-shadow: var(--shadow-sm);
        }

        .tab:hover:not(.is-active) {
            color: var(--color-text);
        }

        .form-panel {
            display: none;
        }

        .form-panel.is-active {
            display: block;
            animation: fadeIn 0.25s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(6px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .form-card {
            background: var(--color-surface-2);
            border-radius: var(--radius-2xl);
            padding: clamp(var(--space-6), 4vw, var(--space-10));
            border: 1px solid var(--color-border);
            box-shadow: var(--shadow-md);
            max-width: 640px;
        }

        .form-title {
            font-size: var(--text-xl);
            font-weight: 800;
            margin-bottom: var(--space-2);
        }

        .form-sub {
            font-size: var(--text-sm);
            color: var(--color-text-muted);
            margin-bottom: var(--space-8);
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4);
        }

        .form-grid--full {
            grid-column: 1 / -1;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: var(--space-1);
        }

        .form-label {
            font-size: var(--text-xs);
            font-weight: 600;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            color: var(--color-text-muted);
        }

        .form-input,
        .form-select,
        .form-textarea {
            background: var(--color-surface);
            border: 1.5px solid var(--color-border);
            border-radius: var(--radius-lg);
            padding: var(--space-3) var(--space-4);
            font-size: var(--text-base);
            color: var(--color-text);
            outline: none;
            transition: border-color var(--transition), box-shadow var(--transition);
            width: 100%;
        }

        .form-input:focus,
        .form-select:focus,
        .form-textarea:focus {
            border-color: var(--color-primary);
            box-shadow: 0 0 0 3px color-mix(in oklch, var(--color-primary) 20%, transparent);
        }

        .form-input::placeholder {
            color: var(--color-text-faint);
        }

        .form-select {
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23888' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right var(--space-3) center;
            padding-right: var(--space-10);
        }

        .cause-grid {
            display: flex;
            flex-wrap: wrap;
            gap: var(--space-2);
        }

        .cause-chip {
            display: flex;
            align-items: center;
            gap: var(--space-1);
            padding: var(--space-1) var(--space-3);
            border-radius: var(--radius-full);
            border: 1.5px solid var(--color-border);
            font-size: var(--text-xs);
            font-weight: 600;
            cursor: pointer;
            transition: all var(--transition);
            background: var(--color-surface);
            color: var(--color-text-muted);
            user-select: none;
        }

        .cause-chip input {
            display: none;
        }

        .cause-chip:has(input:checked) {
            background: var(--color-primary-light);
            color: var(--color-primary);
            border-color: var(--color-primary);
        }

        .form-submit {
            margin-top: var(--space-6);
            width: 100%;
            padding: var(--space-4);
            font-size: var(--text-base);
            font-weight: 700;
            border-radius: var(--radius-xl);
            background: var(--color-primary);
            color: #fff;
            border: none;
            cursor: pointer;
            transition: all var(--transition);
        }

        .form-submit:hover {
            background: var(--color-primary-hover);
            transform: translateY(-1px);
            box-shadow: var(--shadow-md);
        }

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

        /* ========================
       SUCCESS TOAST
    ======================== */
        .toast {
            position: fixed;
            bottom: var(--space-6);
            right: var(--space-6);
            z-index: 999;
            background: var(--color-surface-2);
            border: 1px solid var(--color-primary);
            border-radius: var(--radius-xl);
            padding: var(--space-4) var(--space-6);
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: var(--space-3);
            font-size: var(--text-sm);
            font-weight: 600;
            color: var(--color-text);
            transform: translateY(100px);
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            pointer-events: none;
        }

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

        .toast__icon {
            font-size: 1.25rem;
        }

        /* ========================
       FOOTER
    ======================== */
        .footer {
            background: var(--color-text);
            color: var(--color-text-inverse);
            padding-block: clamp(var(--space-10), 6vw, var(--space-16));
        }

        .footer__inner {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: var(--space-10);
        }

        .footer__brand-name {
            font-family: var(--font-display);
            font-weight: 800;
            font-size: var(--text-lg);
            color: #fff;
            margin-bottom: var(--space-3);
        }

        .footer__brand-desc {
            font-size: var(--text-sm);
            color: color-mix(in oklch, var(--color-text-inverse) 60%, transparent);
            line-height: 1.7;
            /* max-width: 40ch; */
        }

        .footer__contact {
            margin-top: var(--space-4);
            font-size: var(--text-sm);
            color: color-mix(in oklch, var(--color-text-inverse) 70%, transparent);
        }

        .footer__col-title {
            font-weight: 700;
            font-size: var(--text-sm);
            letter-spacing: 0.05em;
            text-transform: uppercase;
            color: color-mix(in oklch, white 70%, transparent);
            margin-bottom: var(--space-4);
        }

        .footer__links {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: var(--space-3);
        }

        .footer__links a {
            font-size: var(--text-sm);
            color: color-mix(in oklch, var(--color-text-inverse) 65%, transparent);
            text-decoration: none;
            transition: color var(--transition);
        }

        .footer__links a:hover {
            color: #fff;
        }

        .footer__bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            margin-top: var(--space-10);
            padding-top: var(--space-6);
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: var(--space-4);
        }

        .footer__copy {
            font-size: var(--text-xs);
            color: color-mix(in oklch, var(--color-text-inverse) 50%, transparent);
        }

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

        :root {
            --green: #eaf7ef;
            --green-2: #d7f0df;
            --dark: #044038;
            --text: #123a32;
            --white: #fff;
            --border: #cfe6d7;
            --accent: #0d7a6b
        }

        * {
            box-sizing: border-box
        }

        body {
            margin: 0;
            font-family: Arial, sans-serif;
            color: var(--text);
            background: #fff;
            line-height: 1.6
        }

        a {
            text-decoration: none
        }

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

        section {
            padding: 56px 0
        }

        .block {
            background: var(--green);
            border: 1px solid var(--border);
            border-radius: 18px;
            padding: 28px
        }

        .hero {
            display: grid;
            grid-template-columns: 1.2fr .8fr;
            gap: 24px;
            align-items: center
        }

        .hero h1 {
            font-size: clamp(2rem, 4vw, 4rem);
            line-height: 1.05;
            color: var(--dark);
            margin: 0 0 16px
        }

        .hero p {
            font-size: 1.05rem;
            max-width: 60ch
        }

        .cta {
            display: inline-block;
            background: var(--accent);
            color: #fff;
            padding: 14px 22px;
            border-radius: 999px;
            margin-top: 18px;
            font-weight: 700
        }

        .grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 18px
        }

        .card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px
        }

        .card strong {
            margin-bottom: 0.5rem;
        }

        .muted {
            color: #4d6a62
        }

        .section-alt {
            background: var(--green)
        }

        .logos {
            display: flex;
            flex-wrap: wrap;
            gap: 12px
        }

        .logos {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }

        .logo {
            padding: 14px;
            border-radius: 999px;
            width: 100px;
            height: 100px;
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
            border: 1px solid var(--border);
            background-color: #fff;
        }

        .logo img {
            width: 100%;
            height: 100%;
            object-fit: contain;
        }


        .steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 18px
        }

        .step {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 18px
        }

        .tabs {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin: 18px 0 22px
        }

        .tab {
            padding: 10px 14px;
            border-radius: 999px;
            border: 1px solid var(--border);
            background: #fff;
            font-weight: 700
        }

        .form {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 22px
        }

        .row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 14px
        }

        .field {
            display: flex;
            flex-direction: column;
            gap: 6px
        }

        .input,
        select,
        textarea {
            padding: 12px 14px;
            border-radius: 12px;
            border: 1px solid #cfded5;
            width: 100%
        }

        .btn {
            background: var(--accent);
            color: #fff;
            border: 0;
            padding: 12px 18px;
            border-radius: 12px;
            font-weight: 700;
            cursor: pointer
        }

        .footer {
            padding: 30px 0;
            text-align: center;
            color: #45685f
        }

        .badge {
            display: inline-block;
            background: #fff;
            border: 1px solid var(--border);
            padding: 6px 10px;
            border-radius: 999px;
            font-size: .8rem;
            font-weight: 700;
            color: var(--dark)
        }

        @media(max-width:900px) {

            .hero,
            .grid,
            .steps,
            .row {
                grid-template-columns: 1fr
            }

            .block {
                padding: 20px
            }
        }
    

/* Additions */
p {
    text-align: justify;
}

@media (max-width: 768px) {
    .footer {
        padding-block: clamp(var(--space-6), 4vw, var(--space-8));
    }
    .footer__brand-name {
        font-size: var(--text-base);
    }
    .footer__brand-desc, .footer__contact, .footer__links a, .footer__copy {
        font-size: var(--text-xs);
    }
    .footer__bottom {
        margin-top: var(--space-6);
        padding-top: var(--space-4);
    }
}