/* DELTA BOM Manager Plugin Styles */

:root {
    --delta-primary: #00d4ff;
    --delta-secondary: #6496ff;
    --delta-dark: #0f0f1e;
    --delta-light: #e0e0e0;
    --delta-text: #b0b0d0;
    --delta-bg: rgba(20, 30, 50, 0.8);
    --delta-red: #ff3232;
    --delta-orange: #ff9632;
    --delta-yellow: #ffc832;
    --delta-green: #32c864;
}

.delta-container {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 100%);
    color: var(--delta-light);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Header */
.delta-header {
    background: linear-gradient(90deg, #16213e 0%, #0f3460 100%);
    padding: 40px 20px;
    text-align: center;
    border-bottom: 3px solid var(--delta-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.2);
}

/* Hero Section */
.delta-hero {
    background: linear-gradient(135deg, #0f0f1e 0%, #1a1a2e 50%, #16213e 100%);
    padding: 60px 20px;
    border-bottom: 3px solid var(--delta-primary);
    box-shadow: 0 20px 50px rgba(0, 212, 255, 0.25);
}

.delta-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.delta-headline {
    font-size: 2.8em;
    color: var(--delta-primary);
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    line-height: 1.2;
    font-weight: 700;
}

.delta-hero-subheadline {
    font-size: 1.2em;
    color: #c0c0e0;
    margin-bottom: 35px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.delta-header h1 {
    font-size: 2.5em;
    color: var(--delta-primary);
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.delta-subtitle {
    font-size: 1.3em;
    color: #a0a0ff;
    font-weight: 300;
    margin: 5px 0;
}

.delta-subtitle-secondary {
    font-size: 1.1em;
    color: #a0a0c0;
    margin: 5px 0;
}

/* Content */
.delta-content {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Section */
.delta-section {
    background: var(--delta-bg);
    border: 2px solid var(--delta-primary);
    border-radius: 15px;
    padding: 40px;
    margin-bottom: 60px;
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.delta-section h2 {
    color: var(--delta-primary);
    font-size: 2em;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--delta-primary);
    padding-bottom: 15px;
}

.delta-section p {
    line-height: 1.6;
}

/* Flow Diagram */
.delta-flow-diagram {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
}

.delta-flow-box {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(160, 160, 255, 0.1) 100%);
    border: 2px solid var(--delta-primary);
    border-radius: 10px;
    padding: 20px;
    animation: slideIn 0.6s ease-out;
}

.delta-flow-box h3 {
    color: var(--delta-primary);
    margin-bottom: 10px;
    font-size: 1.3em;
}

.delta-flow-box p {
    color: #c0c0c0;
    margin: 0;
}

.delta-arrow-down {
    text-align: center;
    font-size: 2em;
    color: var(--delta-primary);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Signals Grid */
.delta-signals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}

.delta-signal-box {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.15) 0%, rgba(50, 100, 200, 0.15) 100%);
    border: 2px solid #6496ff;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    animation: fadeIn 0.8s ease-out;
}

.delta-signal-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(100, 150, 255, 0.3);
    border-color: var(--delta-primary);
}

.delta-signal-box h3 {
    color: #6496ff;
    margin-bottom: 15px;
    font-size: 1.2em;
}

.delta-signal-number {
    display: inline-block;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #6496ff 0%, var(--delta-primary) 100%);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 35px;
    margin-right: 10px;
    font-weight: bold;
}

.delta-signal-box p {
    color: #b0b0d0;
    font-size: 0.95em;
    line-height: 1.6;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Zone System */
.delta-zone-system {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.delta-zone {
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    border: 3px solid;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.delta-zone::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delta-zone:hover::before {
    opacity: 1;
}

.delta-zone:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.delta-zone-red {
    background: linear-gradient(135deg, rgba(255, 50, 50, 0.2) 0%, rgba(200, 30, 30, 0.2) 100%);
    border-color: #ff3232;
    color: #ff6464;
}

.delta-zone-orange {
    background: linear-gradient(135deg, rgba(255, 150, 50, 0.2) 0%, rgba(200, 100, 30, 0.2) 100%);
    border-color: #ff9632;
    color: #ffb366;
}

.delta-zone-yellow {
    background: linear-gradient(135deg, rgba(255, 200, 50, 0.2) 0%, rgba(200, 150, 30, 0.2) 100%);
    border-color: #ffc832;
    color: #ffe066;
}

.delta-zone-blue {
    background: linear-gradient(135deg, rgba(50, 150, 255, 0.2) 0%, rgba(30, 100, 200, 0.2) 100%);
    border-color: #3296ff;
    color: #64b0ff;
}

.delta-zone-green {
    background: linear-gradient(135deg, rgba(50, 200, 100, 0.2) 0%, rgba(30, 150, 80, 0.2) 100%);
    border-color: #32c864;
    color: #64ff96;
}

.delta-zone-icon {
    font-size: 3em;
    margin-bottom: 15px;
}

.delta-zone h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.delta-zone p {
    font-size: 0.9em;
    line-height: 1.5;
}

/* Why Section */
.delta-why-section {
    background: rgba(50, 100, 200, 0.08) !important;
    border: 2px solid #6496ff !important;
}

/* Benefits Grid */
.delta-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.delta-benefit-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(100, 150, 255, 0.12) 100%);
    border: 2px solid rgba(0, 212, 255, 0.3);
    border-left: 5px solid var(--delta-primary);
    padding: 25px;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.08);
}

.delta-benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.5);
}

.delta-benefit-card h3 {
    color: var(--delta-primary);
    margin-bottom: 12px;
    font-size: 1.15em;
    margin-top: 0;
}

.delta-benefit-card p {
    color: var(--delta-text);
    font-size: 0.95em;
    margin: 0;
    line-height: 1.6;
}

/* Toggle/Expandable Section */
.delta-toggle-section {
    background: rgba(0, 0, 0, 0.2);
    border: 2px dashed rgba(0, 212, 255, 0.3);
    border-radius: 10px;
    padding: 0;
    margin-top: 30px;
}

.delta-toggle-header {
    padding: 25px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    user-select: none;
    transition: all 0.3s ease;
}

.delta-toggle-header:hover {
    background: rgba(0, 212, 255, 0.08);
}

.delta-toggle-header h3 {
    color: var(--delta-primary);
    margin: 0;
    font-size: 1.2em;
    flex: 1;
}

.delta-toggle-icon {
    font-size: 1.5em;
    color: var(--delta-primary);
    transition: transform 0.3s ease;
}

.delta-toggle-icon.open {
    transform: rotate(180deg);
}

.delta-toggle-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 25px;
}

.delta-toggle-content.open {
    max-height: 2000px;
    padding: 0 25px 25px 25px;
}

/* Getting Started Section */
.delta-getting-started {
    background: rgba(100, 200, 100, 0.08) !important;
    border: 2px solid #32c864 !important;
}

.delta-phases-simple {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.delta-phase-simple {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #32c864;
    text-align: center;
}

.delta-phase-simple h4 {
    color: var(--delta-primary);
    margin-bottom: 10px;
    font-size: 1.1em;
}

.delta-phase-simple p {
    color: var(--delta-text);
    font-size: 0.9em;
    margin: 0;
}

/* Benefits Checklist */
.delta-benefits-quick {
    background: rgba(0, 212, 255, 0.08) !important;
    border: 2px solid var(--delta-primary) !important;
}

.delta-benefits-checklist {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.delta-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.2);
    border-left: 4px solid var(--delta-primary);
    border-radius: 8px;
}

.delta-checkmark {
    flex-shrink: 0;
    font-size: 1.3em;
    color: #32c864;
}

.delta-benefit-item p {
    margin: 0;
    color: #c0c0e0;
    line-height: 1.5;
}

/* Demo Section */
.delta-demo-section {
    background: rgba(100, 150, 255, 0.08) !important;
    border: 2px solid #6496ff !important;
    margin-bottom: 50px;
}

.delta-visual-proof {
    background: rgba(0, 0, 0, 0.4);
    border: 2px dashed #6496ff;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    margin: 30px 0;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.delta-visual-proof-icon {
    font-size: 3.5em;
    margin-bottom: 15px;
    opacity: 0.7;
}

.delta-visual-proof h4 {
    color: var(--delta-primary);
    margin-bottom: 10px;
    font-size: 1.2em;
}

.delta-visual-proof p {
    color: #a0a0c0;
    font-size: 0.9em;
    margin: 0;
    max-width: 500px;
}

.delta-demo-mockup {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.delta-mockup-zone {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(50, 100, 150, 0.2) 100%);
    border: 2px solid #6496ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.delta-mockup-zone:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(100, 150, 255, 0.2);
}

.delta-mockup-zone h3 {
    color: var(--delta-primary);
    margin-bottom: 10px;
    font-size: 1.15em;
}

.delta-mockup-zone p {
    color: #b0b0d0;
    font-size: 0.9em;
    margin: 0;
}

/* Social Proof / Credibility Section */
.delta-social-proof {
    background: rgba(100, 200, 150, 0.08) !important;
    border: 2px solid #32c864 !important;
}

.delta-credibility-box {
    background: rgba(0, 0, 0, 0.3);
    border-left: 4px solid #32c864;
    border-radius: 8px;
    padding: 25px;
    margin: 25px 0;
}

.delta-credibility-box p {
    margin: 0;
    color: #d0d0e0;
    line-height: 1.6;
}

/* Social Proof Testimonials */
.delta-proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.delta-proof-card {
    background: linear-gradient(135deg, rgba(50, 200, 100, 0.1) 0%, rgba(100, 150, 255, 0.1) 100%);
    border: 2px solid rgba(50, 200, 100, 0.3);
    border-radius: 10px;
    padding: 25px;
    text-align: center;
}

.delta-proof-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.delta-proof-label {
    color: var(--delta-primary);
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.delta-proof-text {
    color: #d0d0e0;
    font-size: 0.9em;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.delta-cta-section {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(100, 150, 255, 0.15) 100%) !important;
    text-align: center;
}

.delta-cta-section h2 {
    color: var(--delta-primary);
}

.delta-cta-section p {
    color: var(--delta-text);
    font-size: 1.1em;
    margin: 20px 0;
}

.delta-cta-button {
    background: linear-gradient(135deg, #00ff88 0%, #00dd66 100%);
    color: #0f0f1e;
    border: 3px solid #00ff88;
    padding: 18px 50px;
    font-size: 1.2em;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 900;
    box-shadow: 0 0 40px rgba(0, 255, 136, 0.6), 0 0 20px rgba(0, 255, 136, 0.4);
    transition: all 0.3s ease;
    margin: 20px 0;
    letter-spacing: 0.5px;
}

.delta-cta-primary {
    padding: 16px 45px;
    font-size: 1.1em;
}

.delta-cta-primary-large {
    padding: 22px 70px;
    font-size: 1.35em;
    box-shadow: 0 0 50px rgba(0, 255, 136, 0.7), 0 0 30px rgba(0, 255, 136, 0.5);
}

.delta-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(0, 255, 136, 0.7), 0 4px 15px rgba(0, 255, 136, 0.5);
    background: linear-gradient(135deg, #00ffaa 0%, #00ee77 100%);
}

.delta-cta-subtext {
    color: #a0a0c0;
    font-size: 0.85em;
    margin-top: 15px !important;
}

/* Modal Styles */
.delta-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
    backdrop-filter: blur(5px);
}

.delta-modal.show {
    display: flex;
}

.delta-modal-content {
    background: linear-gradient(135deg, rgba(16, 20, 40, 0.95) 0%, rgba(20, 30, 50, 0.95) 100%);
    border: 2px solid var(--delta-primary);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(0, 212, 255, 0.05);
    animation: slideUp 0.4s ease-out;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.delta-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    border-bottom: 2px solid var(--delta-primary);
    padding-bottom: 20px;
}

.delta-modal-header h2 {
    flex: 1;
    font-size: 1.8em;
    color: var(--delta-primary);
    margin: 0;
}

.delta-modal-close {
    background: none;
    border: none;
    color: var(--delta-primary);
    font-size: 2em;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.delta-modal-close:hover {
    transform: scale(1.2);
    color: #64ff96;
}

.delta-modal-body {
    color: var(--delta-light);
}

.delta-modal-body > p {
    color: var(--delta-text);
    margin-bottom: 30px;
    text-align: center;
}

/* Interest Options */
.delta-interest-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
}

.delta-interest-card {
    background: linear-gradient(135deg, rgba(100, 150, 255, 0.15) 0%, rgba(50, 100, 200, 0.15) 100%);
    border: 2px solid #6496ff;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.delta-interest-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.delta-interest-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(100, 150, 255, 0.3);
    border-color: var(--delta-primary);
}

.delta-interest-card:hover::before {
    opacity: 1;
}

.delta-interest-card.delta-selected {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.25) 0%, rgba(100, 150, 255, 0.25) 100%);
    border-color: var(--delta-primary);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.delta-interest-icon {
    font-size: 2.5em;
    margin-bottom: 10px;
}

.delta-interest-card h3 {
    color: #6496ff;
    font-size: 1.1em;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.delta-interest-card p {
    color: #a0a0c0;
    font-size: 0.85em;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin: 0;
}

.delta-interest-card.delta-selected h3 {
    color: var(--delta-primary);
}

.delta-interest-radio {
    width: 24px;
    height: 24px;
    border: 2px solid #6496ff;
    border-radius: 50%;
    margin: 12px auto 0;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.delta-interest-card.delta-selected .delta-interest-radio {
    background: var(--delta-primary);
    border-color: var(--delta-primary);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.6);
}

.delta-interest-card.delta-selected .delta-interest-radio::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--delta-dark);
    font-weight: bold;
    font-size: 0.8em;
}

/* Feedback Section */
.delta-feedback-section {
    margin-top: 30px;
}

.delta-feedback-section label {
    color: var(--delta-primary);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.delta-feedback-section textarea {
    width: 100%;
    height: 120px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #6496ff;
    border-radius: 8px;
    padding: 15px;
    color: var(--delta-light);
    font-family: inherit;
    font-size: 0.95em;
    resize: vertical;
    transition: all 0.3s ease;
}

.delta-feedback-section textarea:focus {
    outline: none;
    border-color: var(--delta-primary);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Contact Section */
.delta-contact-section {
    margin-top: 20px;
}

.delta-contact-section label {
    color: var(--delta-primary);
    font-weight: bold;
    margin-bottom: 10px;
    display: block;
}

.delta-contact-section input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid #6496ff;
    border-radius: 8px;
    padding: 12px 15px;
    color: var(--delta-light);
    font-family: inherit;
    font-size: 0.95em;
    transition: all 0.3s ease;
}

.delta-contact-section input:focus {
    outline: none;
    border-color: var(--delta-primary);
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

/* Submit Section */
.delta-submit-section {
    margin-top: 25px;
    text-align: center;
}

.delta-submit-button {
    background: linear-gradient(135deg, var(--delta-primary) 0%, var(--delta-secondary) 100%);
    color: var(--delta-dark);
    padding: 14px 40px;
    font-size: 1.1em;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
    transition: all 0.3s ease;
}

.delta-submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.delta-submit-button:active {
    transform: translateY(0);
}

/* Success Message */
.delta-success-message {
    text-align: center;
    padding: 30px;
    background: rgba(100, 255, 150, 0.1);
    border: 2px solid #64ff96;
    border-radius: 12px;
    margin-top: 25px;
}

.delta-success-icon {
    font-size: 2.5em;
    margin-bottom: 15px;
}

.delta-success-message h3 {
    color: #64ff96;
    margin-bottom: 10px;
}

.delta-success-message p {
    color: var(--delta-text);
    margin-bottom: 20px;
}

.delta-success-close {
    background: #64ff96;
    color: var(--delta-dark);
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.delta-success-close:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(100, 255, 150, 0.4);
}

/* Responsive */
@media (max-width: 768px) {
    .delta-header h1 {
        font-size: 2em;
    }

    .delta-section h2 {
        font-size: 1.5em;
    }

    .delta-signals-grid,
    .delta-zone-system,
    .delta-benefits-grid,
    .delta-phases-grid {
        grid-template-columns: 1fr;
    }

    .delta-modal-content {
        width: 95%;
        padding: 25px;
    }

    .delta-modal-header h2 {
        font-size: 1.3em;
    }

    .delta-interest-options {
        grid-template-columns: 1fr;
    }

    .delta-cta-button {
        width: 100%;
    }

    .delta-flow-box {
        padding: 15px;
    }

    .delta-flow-box h3 {
        font-size: 1.1em;
    }
}
