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

:root {
    --accent: #FFE00B;
    --accent-hover: #e6cb0a;
    --accent-soft: rgba(255, 224, 11, 0.1);
    --accent-dark: #d4bb00;
    --anthracite: #202020;
    --anthracite-2: #2d2d2d;
    --white: #ffffff;
    --bg: #f0f0f0;
    --bg-white: #ffffff;
    --bg-card: #ffffff;
    --text: #202020;
    --text-light: #666666;
    --text-muted: #999999;
    --border: #e0e0e0;
    --border-light: #ebebeb;
    --green: #2ecc71;
    --red: #e74c3c;
    --radius: 8px;
    --radius-lg: 16px;
    --transition: 0.25s ease;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 20px;
}

body {
    font-family: 'Lato', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1, h2, h3, h4 {
    color: var(--anthracite);
    line-height: 1.25;
    font-weight: 900;
}

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

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 16px 32px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 1rem;
    font-family: inherit;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-align: center;
}

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

.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(248, 223, 26, 0.35);
}

.btn-lg {
    padding: 20px 40px;
    font-size: 1.1rem;
}

.btn-sm {
    padding: 10px 24px;
    font-size: 0.88rem;
}

.btn-sub {
    font-size: 0.78rem;
    font-weight: 400;
    opacity: 0.6;
}

.text-highlight {
    background: linear-gradient(to top, var(--accent) 30%, transparent 30%);
    padding: 0 4px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    animation: highlightDraw 0.8s ease 0.3s both;
}

@keyframes highlightDraw {
    from { background-size: 0% 100%; }
    to { background-size: 100% 100%; }
}

/* ===== Topbar ===== */
.topbar {
    background: var(--anthracite);
    padding: 28px 0;
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ===== Hero ===== */
.hero {
    padding: 72px 0 80px;
    text-align: center;
    background:
        linear-gradient(rgba(26, 26, 26, 0.90), rgba(26, 26, 26, 0.90)),
        url('images/Gemini_Generated_Image_jyad9mjyad9mjyad (1).png') center / cover no-repeat;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 700;
    font-size: 0.82rem;
    border-radius: 100px;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.hero h1 {
    font-size: 2.6rem;
    letter-spacing: -1px;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--white);
}

.hero-sub {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 580px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.hero .btn {
    margin-bottom: 0;
}

/* ===== Problem Grid ===== */
.problems {
    padding: 100px 0;
    text-align: center;
}

.problems h2 {
    font-size: 2rem;
    margin-bottom: 48px;
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.problem-card {
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all var(--transition);
}

.problem-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.problem-icon {
    margin-bottom: 16px;
    width: 48px;
    height: 48px;
    background: var(--accent-soft);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
}

.problem-card h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.problem-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Staggered delays for cards */
.problem-card:nth-child(1) { transition-delay: 0s; }
.problem-card:nth-child(2) { transition-delay: 0.08s; }
.problem-card:nth-child(3) { transition-delay: 0.16s; }

/* ===== Cases / Social Proof ===== */
.cases {
    padding: 100px 0;
    background: var(--bg-white);
    text-align: center;
}

.cases h2 {
    font-size: 2rem;
    margin-bottom: 48px;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.case-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    text-align: left;
    border: 1px solid var(--border-light);
}

.case-card-logo {
    max-height: 28px;
    width: auto;
    filter: grayscale(100%);
    opacity: 0.6;
    margin-bottom: 12px;
}

.case-card h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.case-results {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.case-results li {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.5;
    padding-left: 20px;
    position: relative;
}

.case-results li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.case-quote {
    border-top: 1px solid var(--border-light);
    padding-top: 16px;
}

.case-quote p {
    font-size: 0.9rem;
    color: var(--text);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 4px;
}

.case-author {
    font-size: 0.78rem;
    color: var(--text-muted);
}

/* Results Stats */
.results-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 40px 0 0;
}


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

.result-stat-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--anthracite);
    margin-bottom: 4px;
}

.result-stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* ===== Process / Timeline ===== */
.process {
    padding: 100px 0;
    text-align: center;
    background: var(--bg);
}

.process h2 {
    font-size: 2rem;
    margin-bottom: 8px;
}

.process-sub {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 48px;
}

.timeline {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    padding: 0 20px;
}

.timeline-line {
    position: absolute;
    top: 24px;
    left: 60px;
    right: 60px;
    height: 3px;
    background: var(--accent);
    border-radius: 2px;
    z-index: 0;
}

.timeline-step {
    flex: 1;
    max-width: 220px;
    position: relative;
    z-index: 1;
}

.timeline-num {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--anthracite);
    font-weight: 900;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.timeline-card h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.timeline-card p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===== Integrations (inside process) ===== */
.integrations-inner {
    text-align: center;
    margin-top: 64px;
    padding: 48px 40px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
}

.integrations-title {
    font-size: 2rem;
    margin-bottom: 32px;
}

.integration-badges {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.integration-badge {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 10px 20px;
    color: var(--anthracite);
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 0.3px;
}

.integration-badge--more {
    border-style: dashed;
    font-weight: 400;
    color: var(--text-muted);
}

.integrations-inner > p {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-top: 16px;
}

/* ===== FAQ ===== */
.faq {
    padding: 100px 0;
    background: var(--bg);
}

.faq h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-light);
}

.faq-item.active {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 700;
    color: var(--anthracite);
    text-align: left;
    gap: 16px;
}

.faq-toggle {
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--text-muted);
    flex-shrink: 0;
    transition: transform var(--transition);
    width: 24px;
    text-align: center;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    font-size: 0.93rem;
    color: var(--text-light);
    line-height: 1.7;
    padding-bottom: 20px;
}

/* ===== Contact ===== */
.contact {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-header {
    text-align: center;
    margin-bottom: 48px;
}

.contact-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.contact-header > p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 24px;
    line-height: 1.7;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-layout {
    max-width: 780px;
    margin: 0 auto;
}

.contact-embed {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-meta {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 24px;
    flex-wrap: wrap;
    gap: 16px;
}

.contact-checks {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-check {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
}

.contact-details {
    display: flex;
    gap: 20px;
}

.contact-details a {
    font-size: 0.85rem;
    color: var(--anthracite);
    font-weight: 700;
    transition: color var(--transition);
}

.contact-details a:hover {
    color: var(--accent-dark);
}

/* ===== HubSpot Embed ===== */
.hubspot-embed {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
    min-height: 700px;
}

/* ===== Personal Contact Banner ===== */
.personal-contact {
    background: #FFDF00;
    overflow: hidden;
}

.personal-contact-inner {
    display: flex;
    align-items: center;
    gap: 48px;
    max-width: 780px;
    margin: 0 auto;
}

.personal-contact-photo {
    flex-shrink: 0;
    width: 280px;
    align-self: flex-end;
}

.personal-contact-photo img {
    display: block;
    width: 100%;
    height: auto;
}

.personal-contact-text {
    padding: 48px 0;
}

.personal-contact-text h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: var(--anthracite);
}

.personal-contact-text > p {
    font-size: 1rem;
    color: var(--anthracite);
    opacity: 0.7;
    margin-bottom: 20px;
}

.personal-contact-links {
    display: flex;
    gap: 24px;
    margin-bottom: 12px;
}

.personal-contact-links a {
    font-size: 1.05rem;
    font-weight: 900;
    color: var(--anthracite);
    transition: opacity var(--transition);
}

.personal-contact-links a:hover {
    opacity: 0.7;
}

.personal-contact-photo-mobile {
    display: none;
}

.personal-contact-name {
    font-size: 0.82rem;
    color: var(--anthracite);
    opacity: 0.5;
}

/* ===== Calculator CTA ===== */
.calculator-cta {
    padding: 80px 0;
    background: var(--bg-white);
    text-align: center;
}

.calculator-cta-inner {
    max-width: 560px;
    margin: 0 auto;
    padding: 48px 40px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.calculator-cta-inner h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.calculator-cta-inner p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

/* ===== ROI Calculator ===== */
.roi-calculator {
    padding: 100px 0;
    background: var(--bg-white);
}

.roi-header {
    text-align: center;
    margin-bottom: 48px;
}

.roi-header h2 {
    font-size: 2rem;
    margin-bottom: 12px;
}

.roi-header > p {
    font-size: 1.05rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

.roi-trust {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.roi-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text);
}

.roi-form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

.roi-form {
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.roi-section {
    margin-bottom: 32px;
}

.roi-section:last-of-type {
    margin-bottom: 0;
}

.roi-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.roi-section-num {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent);
    color: var(--anthracite);
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.roi-section-desc {
    font-size: 0.88rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.6;
}

.roi-fields-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

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

.roi-field-full {
    grid-column: 1 / -1;
}

.roi-field label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--anthracite);
}

.roi-form input,
.roi-form select {
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.93rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.roi-form input:focus,
.roi-form select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.roi-field.error input,
.roi-field.error select {
    border-color: var(--red);
}

.roi-field .error-msg {
    font-size: 0.78rem;
    color: var(--red);
}

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

.roi-checkbox {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.88rem;
    font-weight: 400;
    cursor: pointer;
}

.roi-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    padding: 0;
    cursor: pointer;
    accent-color: var(--accent);
}

/* Document rows */
.roi-doc-rows {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.roi-doc-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr auto;
    gap: 12px;
    align-items: end;
    padding: 16px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
}

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

.roi-doc-field label {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
}

.roi-doc-field input,
.roi-doc-field select {
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.88rem;
    color: var(--text);
    background: var(--bg-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.roi-doc-field input:focus,
.roi-doc-field select:focus {
    border-color: var(--accent);
    outline: none;
    box-shadow: 0 0 0 3px var(--accent-soft);
}

.roi-doc-field.error input,
.roi-doc-field.error select {
    border-color: var(--red);
}

.roi-doc-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.4rem;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: color var(--transition);
    align-self: end;
    margin-bottom: 4px;
}

.roi-doc-remove:hover {
    color: var(--red);
}

.roi-add-row {
    background: transparent;
    border: 1px dashed var(--border);
    color: var(--text-muted);
    width: 100%;
    padding: 12px;
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all var(--transition);
}

.roi-add-row:hover {
    border-color: var(--accent);
    color: var(--text);
}

.roi-hourly-cost {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border-light);
}

.roi-hourly-hint {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 4px;
    font-style: italic;
}

.roi-submit {
    text-align: center;
    margin-top: 32px;
}

/* Honeypot */
.roi-hp {
    position: absolute;
    left: -9999px;
    opacity: 0;
    height: 0;
    width: 0;
    overflow: hidden;
}

/* Thank you screen */
.roi-thank-you {
    text-align: center;
    padding: 60px 40px;
    background: var(--bg);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
}

.roi-thank-you-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-size: 1.8rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.roi-thank-you h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
}

.roi-thank-you p {
    font-size: 1rem;
    color: var(--text-light);
    max-width: 480px;
    margin: 0 auto 24px;
    line-height: 1.7;
}

/* ===== Newsletter ===== */
.newsletter {
    padding: 48px 0 0;
    background: var(--anthracite);
}

.newsletter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.newsletter-text h3 {
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.newsletter-form input {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius);
    color: white;
    font-family: inherit;
    font-size: 0.88rem;
    min-width: 240px;
    transition: border-color var(--transition);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.newsletter-form input:focus {
    border-color: var(--accent);
    outline: none;
}

.newsletter-success {
    color: var(--green);
    font-weight: 700;
    font-size: 0.93rem;
}

/* ===== Footer ===== */
.footer {
    padding: 32px 0;
    background: var(--anthracite);
    border-top: none;
}

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

.footer p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

/* ===== Animations ===== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* ===== Responsive ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.1rem;
    }

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

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

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

    .results-stats {
        flex-direction: column;
        gap: 24px;
    }

    .timeline {
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .timeline-line {
        display: none;
    }

    .timeline-step {
        max-width: 400px;
    }

    .process h2,
    .faq h2,
    .problems h2,
    .cases h2,
    .roi-header h2 {
        font-size: 1.6rem;
    }

    .roi-fields-grid {
        grid-template-columns: 1fr;
    }

    .roi-doc-row {
        grid-template-columns: 1fr;
    }

    .roi-doc-remove {
        align-self: end;
        justify-self: end;
    }

    .roi-trust {
        flex-direction: column;
        align-items: center;
    }

    .newsletter-inner {
        flex-direction: column;
        text-align: center;
    }

    .newsletter-form {
        flex-direction: column;
        width: 100%;
        max-width: 320px;
    }

    .newsletter-form input {
        min-width: 0;
    }

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

    .btn-lg {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .contact-meta {
        flex-direction: column;
        align-items: center;
    }

    .contact-checks {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .personal-contact-inner {
        flex-direction: column;
        gap: 0;
        text-align: center;
    }

    .personal-contact-photo {
        display: none;
    }

    .personal-contact-photo-mobile {
        display: block;
        width: 220px;
        margin: 20px auto;
    }

    .personal-contact-photo-mobile img {
        display: block;
        width: 100%;
        height: auto;
    }

    .personal-contact-text {
        padding: 32px 24px 40px;
    }

    .personal-contact-links {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.7rem;
    }

    .container {
        padding: 0 16px;
    }

    .problems,
    .cases,
    .process,
    .faq,
    .contact,
    .roi-calculator {
        padding: 72px 0;
    }

    .roi-form {
        padding: 24px;
    }
}
