:root {
  /* Place your full CSS variables here exactly as provided */
  --color-white: rgba(255, 255, 255, 1);
  /* ... add the rest of your CSS variables and full styles here ... */
}

.compact-cta {
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 20px;
    max-width: 600px;
    margin: 24px auto;
}
.cta-inner {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.cta-icon {
    font-size: 40px;
    line-height: 1;
    flex-shrink: 0;
}
.cta-content {
    flex: 1;
    min-width: 0;
}
.cta-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px 0;
    line-height: 1.3;
    color: #0066cc;
}
.cta-description {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 16px 0;
    color: #333;
}
.cta-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: flex-start;
}
.cta-form input {
    flex: 1;
    min-width: 140px;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 14px;
    background: white;
    color: #333;
}
.cta-button {
    padding: 10px 20px;
    background: #0066cc;
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.15s ease;
}
.cta-button:hover {
    background: #0052a3;
}
.error-message {
    font-size: 12px;
    color: #c0152f;
    margin-top: 4px;
    display: none;
}
.error-message.show {
    display: block;
}
.success-state {
    display: none;
    text-align: center;
    padding: 16px 0;
}
.success-state.show {
    display: block;
}
.download-btn {
    display: inline-block;
    padding: 12px 24px;
    background: #21a011;
    color: white;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.15s ease;
}
.download-btn:hover {
    background: #178608;
}
