:root {
    /* Brand color palette */
    --red-orange: #EF327D;       /* Brand magenta - CTA/highlight */
    --midnight-blue: #16224C;    /* Brand blue - text, titles, icons */
    --sky-blue: #7ACBC4;         /* Green dark - positive/accent */
    --neon-violet: #EF327D;      /* Align accent elements with magenta */
    
    /* Supporting Colors */
    --white: #ffffff;
    --light-gray: #EFF2F6;       /* Grey background */
    --medium-gray: #D2EBEA;      /* Green light for panels/borders */
    --dark-gray: #16224C;
    --text-dark: #16224C;
    --text-light: #16224C;
    --border-light: #D2EBEA;
    --border-radius: 25px;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.15);

    /* Shared CTA arrow styling */
    --cta-arrow-size: 1.2rem;
    --cta-arrow-weight: 700;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: var(--light-gray);
    min-height: 100vh;
    color: var(--text-dark);
    position: relative;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

header {
    text-align: center;
    margin-bottom: 24px;
    color: var(--midnight-blue);
    position: relative;
    padding: 20px 20px 16px;
}

.language-selector {
    position: absolute;
    top: 0;
    right: 0;
}

.language-selector select {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 8px;
    padding: 8px 16px 8px 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    outline: none;
    box-shadow: var(--shadow);
}

.language-selector select option {
    color: var(--text-dark);
    background: var(--white);
}

.language-selector select:hover,
.language-selector select:focus {
    border-color: var(--sky-blue);
    box-shadow: 0 0 0 3px rgba(102, 204, 255, 0.1);
}

.language-selector option {
    background: var(--midnight-blue);
    color: var(--white);
}

header h1 {
    font-size: 2.8rem;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--midnight-blue);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

header p {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: start;
}

.right-column {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-visual {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 520px;
}

.hero-visual img {
    width: 420px;
    max-width: 90%;
    height: auto;
    display: block;
}


.form-section, .results-section {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    padding: 24px;
    box-shadow: var(--shadow);
    transition: all 0.2s ease;
}

.form-section:hover, .results-section:hover {
    box-shadow: var(--shadow-hover);
}

.form-section {
    position: sticky;
    top: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.form-row .form-group {
    flex: 1;
    margin-bottom: 0;
}

.wage-group {
    flex: 1;
}

.wage-input-group {
    display: flex;
    gap: 8px;
    align-items: stretch;
}

.wage-input-group input[type="number"] {
    flex: 1;
    margin-bottom: 0;
}

.currency-select {
    flex: 1;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.form-group input[type="number"],
.form-group input[type="email"],
.form-group input[type="text"],
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-light);
    border-radius: 8px;
    font-size: 16px;
    font-weight: 400;
    background: var(--white);
    transition: all 0.2s ease;
    outline: none;
    color: var(--text-dark);
    box-shadow: none;
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--sky-blue) !important;
    box-shadow: 0 0 0 3px rgba(102, 204, 255, 0.1) !important;
    outline: none !important;
}

.channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
    margin-top: 12px;
}

.channel-card {
    background: var(--white);
    border: 1px solid var(--border-light);
    border-radius: 10px;
    padding: 16px;
    transition: all 0.2s ease;
    position: relative;
    overflow: hidden;
}

.channel-card:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-hover);
}

.channel-card.active {
    border-color: var(--sky-blue);
    background: rgba(102, 204, 255, 0.02);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.channel-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(102, 204, 255, 0.1);
    border-radius: 8px;
}

.channel-info {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.channel-info h4 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.3;
}

.toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
}

.toggle-switch input[type="checkbox"] {
    opacity: 0;
    width: 0;
    height: 0;
}

.switch-label {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--medium-gray);
    transition: 0.3s;
    border-radius: 24px;
}

.switch-label:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .switch-label {
    background: var(--sky-blue);
}

.toggle-switch input:checked + .switch-label:before {
    transform: translateX(17px) translateY(-50%);
}

.channel-input {
    margin-top: 6px;
}

.channel-input input[type="number"] {
    width: 100%;
    padding: 8px 12px;
    border: 1px solid var(--border-light);
    border-radius: 6px;
    font-size: 14px;
    transition: all 0.2s ease;
    background: var(--light-gray);
}

.channel-card.active .channel-input input[type="number"] {
    background: var(--white);
    border-color: var(--sky-blue);
}

.channel-input input[type="number"]:focus {
    outline: none !important;
    border-color: var(--sky-blue) !important;
    box-shadow: 0 0 0 3px rgba(122, 203, 196, 0.15) !important;
}

.channel-input input[type="number"]:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.slider {
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: var(--border-light);
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    transition: all 0.2s ease;
    cursor: pointer;
}

.slider:hover {
    background: var(--medium-gray);
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red-orange);
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(239, 50, 125, 0.25);
    border: 2px solid white;
    transition: all 0.2s ease;
    margin-top: -7px;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 50, 125, 0.35);
}

.slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--red-orange);
    cursor: pointer;
    border: 2px solid white;
    box-shadow: 0 2px 6px rgba(239, 50, 125, 0.25);
    transition: all 0.2s ease;
    margin-top: -7px;
}

.slider::-moz-range-thumb:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(239, 50, 125, 0.35);
}

/* Slider value display styling */
#repeatValue {
    font-weight: 600;
    color: var(--red-orange);
    background: rgba(239, 50, 125, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(239, 50, 125, 0.2);
    min-width: 40px;
    display: inline-block;
    text-align: center;
    font-size: 14px;
}



.button-group {
    display: flex;
    gap: 15px;
    margin-top: 24px;
}

.calculate-btn, .reset-btn {
    flex: 1;
    padding: 14px 24px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.calculate-btn {
    background: var(--red-orange);
    color: var(--white);
    box-shadow: none;
}

.calculate-btn::before {
    display: none;
}

.calculate-btn:hover {
    background: #d42b70;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 50, 125, 0.35);
}

.reset-btn {
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
}

.reset-btn:hover {
    background: var(--light-gray);
    transform: translateY(-1px);
    box-shadow: var(--shadow);
}

.results-section {
    animation: slideIn 0.5s ease-out;
    position: relative;
}

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

.results-header h2 {
    color: var(--midnight-blue);
    margin-bottom: 25px;
    font-size: 2rem;
}



.results-pdf-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--white);
    color: var(--text-dark);
    border: 1px solid var(--border-light);
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.7;
}

.results-pdf-btn:hover {
    opacity: 1;
    background: var(--light-gray);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.results-pdf-btn:disabled {
    background: var(--medium-gray);
    color: var(--dark-gray);
    cursor: not-allowed;
    transform: none;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



/* PDF-specific styles for hidden content generation */
.pdf-content {
    position: fixed;
    left: -9999px;
    top: 0;
    width: 794px;
    background: white;
    font-family: 'Inter', sans-serif;
    padding: 40px;
    box-sizing: border-box;
    font-size: 14px;
    line-height: 1.4;
}

.results-summary {
    display: flex;
    justify-content: stretch;
    margin-bottom: 30px;
}


.main-result {
    width: 100%;
    max-width: none;
}


.result-card {
    text-align: center;
    padding: 40px 32px;
    border-radius: 24px;
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.result-card::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.05) 100%);
    pointer-events: none;
}

.result-card.primary {
    background: var(--red-orange);
    color: var(--white);
}

.result-card.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 83, 73, 0.25);
}

.result-card.secondary {
    background: linear-gradient(135deg, var(--sky-blue) 0%, #7dd3f7 50%, #b3e5fc 100%);
    color: var(--white);
}

.result-card.secondary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 16px 48px rgba(102, 204, 255, 0.3),
        0 8px 24px rgba(102, 204, 255, 0.15);
}

.result-card h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    opacity: 0.9;
}

.result-value {
    font-size: 2.5rem;
    font-weight: 700;
}

.result-amount {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 10px;
}

.result-prefix {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
    display: inline;
    margin-right: 8px;
    vertical-align: bottom;
}

.result-label {
    font-size: 1.1rem;
    text-align: center;
    opacity: 0.9;
    font-weight: 500;
}

.case-study-banner {
    display: block;
    background: linear-gradient(135deg, #ef327d 0%, #c32464 100%);
    color: var(--white);
    padding: 24px 32px;
    border-radius: 16px;
    text-align: center;
    margin: 30px 0 0 0;
    box-shadow: 
        0 8px 32px rgba(239, 50, 125, 0.25),
        0 4px 16px rgba(239, 50, 125, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.case-study-banner:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 40px rgba(239, 50, 125, 0.35),
        0 6px 20px rgba(239, 50, 125, 0.2);
    text-decoration: none;
    color: var(--white);
}

.case-study-banner::after {
    content: '→';
    position: absolute;
    right: 32px;
    top: 50%;
    transform: translateY(-50%);
    font-size: var(--cta-arrow-size);
    font-weight: var(--cta-arrow-weight);
    transition: transform 0.3s ease;
}

.case-study-banner:hover::after {
    transform: translateY(-50%) translateX(4px);
}

.case-study-text {
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    padding-right: 50px;
}

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

.stat-item {
    background: var(--light-gray);
    padding: 20px;
    border-radius: var(--border-radius);
    text-align: center;
    border-left: 4px solid var(--sky-blue);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--dark-gray);
    margin-bottom: 8px;
    font-weight: 500;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--midnight-blue);
}

.industry-insight {
    background: linear-gradient(135deg, rgba(210, 235, 234, 0.6) 0%, rgba(122, 203, 196, 0.25) 100%);
    backdrop-filter: blur(10px);
    padding: 32px;
    border-radius: 20px;
    margin-bottom: 40px;
    border: 2px solid rgba(122, 203, 196, 0.35);
    position: relative;
    overflow: hidden;
}

.industry-insight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--sky-blue) 0%, var(--medium-gray) 100%);
}

.industry-insight h4 {
    color: var(--midnight-blue);
    margin-bottom: 10px;
}

.channel-breakdown {
    margin-bottom: 30px;
}

.channel-breakdown h4 {
    color: var(--midnight-blue);
    margin-bottom: 15px;
}

.channel-savings {
    display: grid;
    gap: 10px;
}

.channel-saving-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 15px;
    background: var(--light-gray);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--red-orange);
}

.channel-saving-item .channel-name {
    font-weight: 600;
    color: var(--midnight-blue);
}

.channel-saving-item .saving-amount {
    font-weight: 700;
    color: var(--red-orange);
}

.chart-container {
    margin-top: 30px;
    height: 400px;
    position: relative;
}

.chart-container h3 {
    color: var(--midnight-blue);
    margin-bottom: 20px;
}

.chart-container canvas {
    height: 100% !important;
    width: 100% !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    header h1 {
        font-size: 2rem;
    }

    header p {
        font-size: 1rem;
    }

    .language-selector {
        position: static;
        text-align: center;
        margin-bottom: 20px;
    }

    .main-content {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-section {
        position: static;
    }

    .form-section, .results-section {
        padding: 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 0;
    }

    .form-row .form-group {
        margin-bottom: 20px;
    }

    .wage-input-group {
        flex-direction: column;
        gap: 12px;
    }

    .currency-select {
        min-width: auto;
    }

    .channels-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .channel-card {
        padding: 12px;
    }

    .channel-icon {
        font-size: 18px;
        width: 28px;
        height: 28px;
    }

    .channel-header {
        gap: 10px;
        margin-bottom: 8px;
    }

    .results-summary {
        flex-direction: column;
        align-items: center;
    }

    .results-pdf-btn {
        top: 15px;
        right: 15px;
        width: 36px;
        height: 36px;
        font-size: 14px;
    }

    .summary-stats {
        grid-template-columns: 1fr;
    }

    .result-value {
        font-size: 2rem;
    }

    .button-group {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .channel-item {
        padding: 15px;
        background: var(--white);
        border-radius: var(--border-radius);
        margin-bottom: 10px;
    }

    .channels-section {
        padding: 10px;
    }
}

/* Loading state */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

.loading .calculate-btn {
    background: var(--medium-gray);
    cursor: not-allowed;
}

/* Validation styles */
.form-group input:invalid {
    border-color: var(--red-orange);
}

.form-group input:valid {
    border-color: var(--sky-blue);
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
    background: var(--sky-blue);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--neon-violet);
} 

/* === Coworkers additions (logo, mascot, CTA) === */
.logo-top-left {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 300px;
    height: auto;
    max-width: 100%;
    z-index: 1000;
}

/* Remove PDF button from UI */
.results-pdf-btn,
#downloadPdfBtn {
    display: none !important;
}

/* Remove potential savings chart (keep the area as placeholder for mascot) */
.chart-container h3,
.chart-container canvas,
#savingsChart {
    display: none !important;
}

/* Mascot placement */
.coworky-money {
    width: 420px;
    max-width: 90%;
    height: auto;
    display: block;
}

.coworky-pre {
    margin: 10px auto 0 auto;
}

.coworky-post {
    width: 260px;
    margin: 10px auto 0 auto;
}

/* Make chart-container act as a nice placeholder for the small mascot */
.chart-container {
    height: auto !important;
    min-height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Contact CTA under results */
.contact-cta {
    display: flex;
    width: 100%;
    margin: 16px 0 0 0;
    background: var(--red-orange);
    color: var(--white);
    padding: 14px 24px;
    min-height: 52px;
    line-height: 1.2;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: var(--shadow);
}

.contact-cta:hover {
    background: #d42b70;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(239, 50, 125, 0.35);
}


.contact-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(239, 50, 125, 0.35), 0 6px 20px rgba(239, 50, 125, 0.2);
}

/* Mobile tweaks */
@media (max-width: 768px) {
    .logo-top-left {
        width: 220px;
        top: 12px;
        left: 12px;
    }
    .coworky-money {
        width: 320px;
    }
    .coworky-post {
        width: 220px;
    }
}


/* === Typography update ===
   Add these tags to <head>:
   <link rel="preconnect" href="https://fonts.googleapis.com">
   <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
   <link href="https://fonts.googleapis.com/css2?family=Poppins:wght@500;600;700&family=Roboto:wght@400;500;700&display=swap" rel="stylesheet">
*/
body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
}
header h1,
header p {
    font-family: 'Poppins', 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif !important;
}

/* Logo half size */
.logo-top-left { width: 150px !important; }
@media (max-width: 768px) { .logo-top-left { width: 110px !important; } }

/* "Podívejte se jak..." button: color + same height as other buttons */
.case-study-banner {
    background: #16224c !important;
    padding: 14px 24px !important;   /* match other CTAs */
    border-radius: 8px !important;
    min-height: 52px;               /* keep consistent height */
    width: 100%;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow) !important;
}

/* Remove legacy arrow pseudo-element so CTA aligns with the contact button */
.case-study-banner::after {
    content: none !important;
    display: none !important;
}
.case-study-text { 
    font-size: 16px !important;
    padding-right: 0;
    width: 100%;
    text-align: center;
}

/* Green insight box under savings: unify + remove left thick stripe/shadow */
.industry-insight {
    background: rgba(210, 235, 234, 0.6) !important;
    border: 1px solid rgba(210, 235, 234, 0.9) !important;
    box-shadow: none !important;
}
.industry-insight::before { display: none !important; }


.results-summary .result-card { width: 100%; }



/* Arrow in CTA buttons */
.btn-arrow {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.2s ease;
}
.btn-primary:hover .btn-arrow {
    transform: translateX(2px);
}
/* Shared CTA arrow wrapper */
.btn-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-arrow .arrow {
    font-size: var(--cta-arrow-size);
    font-weight: var(--cta-arrow-weight);
    line-height: 1;
    transform: translateY(1px);
    display: inline-block;
}


/* === CTA buttons: center text, no arrows === */
.btn-arrow {
    justify-content: center !important;
    text-align: center;
}

.btn-arrow .arrow,
.btn-arrow svg {
    display: none !important;
}


/* Center CTA buttons */
.cta,
button[type="submit"] {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}


/* Ensure 'Podívejte se, …' CTA is centered and without arrow */
button,
a.button,
a.btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

button .arrow,
a.button .arrow,
a.btn .arrow,
button svg,
a.button svg,
a.btn svg {
    display: none !important;
}


/* === Subtle vertical alignment for all CTA buttons === */
button,
a.btn,
a.button {
    min-height: 52px;          /* unified CTA height */
    padding-top: 14px;
    padding-bottom: 14px;
    line-height: 1.2;
}

/* Equal vertical spacing when CTAs are stacked */
.cta-group,
.cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
