/*
 * AI Visible - Consolidated Stylesheet
 * Auto-generated from all HTML files
 * Last updated: 2026-01-28
 * FIXED VERSION with audit form corrections
 */


/* ============================================================ */
/*                          CSS Reset                           */
/* ============================================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* ============================================================ */
/*                        CSS Variables                         */
/* ============================================================ */

:root {
    --primary: #0a2540;
    --accent: #00d4ff;
    --accent-warm: #ff6b35;
    --text-dark: #1a1a1a;
    --text-light: #4a5568;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --success: #10b981;
    --error: #ef4444;
}


/* ============================================================ */
/*                    Animations & Keyframes                    */
/* ============================================================ */

@keyframes fadeIn {
    from {
    opacity: 0;
    transform: translateY(20px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes slideDown {
    from {
    opacity: 0;
    transform: translateY(-30px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
    transform: scale(1);
    opacity: 0.5;
    }
    50% {
    transform: scale(1.1);
    opacity: 0.8;
    }
}

@keyframes schemaTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% / 3)); }
}

@keyframes slideInFade {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}


/* ============================================================ */
/*                  Base Typography & Elements                  */
/* ============================================================ */

body {
    font-family: 'Inter', -apple-system, sans-serif;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f7 100%);
    overflow-x: hidden;
    min-height: 100vh;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary);
    line-height: 1.2;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

h2 {
    color: #1a365d;
    font-size: 1.7em;
    margin-top: 30px;
    margin-bottom: 20px;
    border-bottom: 3px solid #f59e0b;
    padding-bottom: 12px;
    font-weight: 600;
}

h3 {
    color: #1a365d;
    font-size: 1.7em;
    margin-top: 40px;
    margin-bottom: 05px;
    font-weight: 600;
}

p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--text-dark);
}

ol {
    margin: 25px 0 25px 30px;
    line-height: 2;
}

ul {
    line-height: 2;
    margin: 20px 0;
}

li {
    margin-bottom: 10px;
}

li strong {
    margin-bottom: 10px;
    font-weight: 600;
}

a {
    color: #3b82f6;
    text-decoration: none;
    font-weight: 600;
}

strong {
    margin-bottom: 10px;
    font-weight: 600;
}

/* ============================================================ */
/*                      Layout Components                       */
/* ============================================================ */

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 30px;
    border-radius: 16px;
    margin-bottom: 50px;

    animation: fadeIn 0.8s ease-out;
}

.logo-container {
    background: var(--white);
    max-width: 1000px;
    padding: 30px;
    border-radius: 16px;
    margin-bottom: 50px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    animation: fadeIn 0.8s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.header {
    text-align: center;
    margin-bottom: 50px;
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.form-section {
    background: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.form-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}


.pages-section > label {
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.contact-section {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    color: var(--white);
    padding: 45px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}


.footer {
    background: #ffffff;
    padding: 60px 30px 40px 30px;
    margin-top: 10px;
    text-align: center;
    border-top: 5px solid #0a2540;
}

.footer-content {
    width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.footer-logo {
    width: 150px;
    height: auto;
}

.footer-text {
    color: #4a5568;
    font-size: 14px;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-text a {
    color: #4a5568;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-text a:hover {
    color: #0a2540;
}

header {
    margin-bottom: 40px;
}

.faq-section {
    margin-top: 50px;
}

.logo-container img {
    width: 100%;
    height: auto;
    max-width: 300px;
}


.about-section h3 {
    color: #0a2540;
    margin-top: 0;
    font-size: 1.4em;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.content-section {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 30px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    animation: fadeIn 0.8s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section {
    background: linear-gradient(135deg, var(--text-dark) 0%, #1e3a5f 100%);
    max-width: 900;
    color: var(--white);
    padding: 40px 40px;
    border-radius: 16px;
    text-align: center;
    margin-top: 00px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    animation: fadeIn 0.8s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 35px;
}


/* ============================================================ */
/*                        Buttons & CTAs                        */
/* ============================================================ */

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, #00a8cc 100%);
    color: var(--white);
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    margin-top: 10px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.4);
}

.submit-button:active {
    transform: translateY(0);
}


.cta-box h3 {
    color: white;
    margin-top: 0;
    margin-bottom: 15px;
    border: none;
    padding: 0;
}

.cta-box p {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 25px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 18px 40px;
    border-radius: 6px;
    font-size: 18px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-button:hover {
    background: #d97706;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.cta-box strong {
    color: #0a2540;
    font-size: 1.1em;
}

.cta-box a {
    color: #d97706;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid #f59e0b;
}

.cta-box a:hover {
    color: #b45309;
}


.cookie-consent-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-consent-button {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-preferences-buttons {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cookie-preferences-buttons button {
    flex: 1;
    min-width: 150px;
}


/* ============================================================ */
/*                        Form Elements                         */
/* ============================================================ */

.form-intro {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 2px solid var(--bg-light);
}

.form-group {
    margin-bottom: 25px;
}

label {
    display: block;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
    color: var(--text-dark);
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

textarea {
    resize: vertical;
    min-height: 120px;
}


.page-input-group input {
    width: 100%;
}


.audit-form h2 {
    color: white;
    border-bottom: 3px solid #f59e0b;
    margin-top: 0;
    padding-bottom: 10px;
}

.audit-form-text {
    font-size: 1.05em;
    margin-bottom: 25px;
    line-height: 1.8;
}

.audit-form ul {
    margin: 15px 0;
}


.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #0066cc;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    opacity: 0.95;
}


/* ============================================================ */
/*                    Components & Utilities                    */
/* ============================================================ */


.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 300;

    margin: 0 auto;
}

.logo-img {
    max-width: 500px;
    width: 100%;
    height: auto;
}

.promo-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    padding: 25px 30px;
    border-radius: 12px;
    margin-top: 25px;
    text-align: center;
    border-left: 4px solid #f59e0b;
	box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    animation: fadeIn 0.8s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.promo-box strong {
    color: #f59e0b;
    font-size: 1.4rem;
    display: block;
    margin-bottom: 10px;
}

.promo-box p {
    margin: 10px 0;
    color: #1a1a1a;
    font-size: 1rem;
    line-height: 1.6;
}

.promo-box span {
    color: #1a1a1a;
    font-size: 1rem;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.required {
    color: var(--accent-warm);
}

.help-text {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 5px;
    font-style: italic;
}

.optional-fields-note {
    margin-bottom: 25px;
}


.recommendation-box strong {
    color: var(--accent-warm);
}

.contact-content {
    position: relative;
    z-index: 1;
}

.contact-info-block {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-info-block h3 {
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.contact-item {
    margin-bottom: 20px;
    display: flex;
    align-items: start;
}

.contact-icon {
    font-size: 1.5rem;
    margin-right: 15px;
    min-width: 30px;
}

.contact-text h3 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--white);
    margin-top: 0;
}

.contact-text p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin: 0;
}

.contact-text a {
    color: var(--accent);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: var(--white);
    text-decoration: underline;
}

.trust-signals {
    background: rgba(255, 255, 255, 0.1);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 40px;
}

.trust-signals h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
    color: var(--white);
}

.trust-signals .centered-image {
    text-align: center;
}

.centered-image {
    text-align: center;
    margin: 20px 0;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInFade 0.8s ease-out 0.3s forwards;
}

.centered-image img {
    max-width: 110%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: all 0.4s ease;
}

.centered-image img:hover {
    transform: scale(1.08);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.trust-item {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
    font-size: 0.95rem;
}

.trust-item::before {
    content: '✓';
    font-size: 1.2rem;
    color: var(--success);
    margin-right: 10px;
    font-weight: bold;
}

.back-link {
    text-align: center;
    margin-top: 40px;
}

.back-link a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.back-link a:hover {
    color: var(--accent);
    transform: translateX(-5px);
}

.copyright-symbol {
    font-size: 16px;
}

.meta {
    font-size: 0.9em;
    color: #718096;
    margin-top: 0px;
}

.accent-answer {
    background: #fffbeb;
    border-left: 4px solid #f59e0b;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 6px;
    font-size: 1.05em;
    line-height: 1.7;
}

.accent-answer:hover {

    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 10, 1, 0.3);
}

.accent-answer a {
    color: #f59e0b;
}

.direct-answer {
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    padding: 20px 25px;
    margin: 25px 0;
    border-radius: 6px;
    font-size: 1.05em;
    line-height: 1.7;
}

.direct-answer:hover {

    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(15, 10, 1, 0.3);
}


.direct-answer strong {
    color: #1e40af;
    font-weight: 600;
}

.example-box {
    background: #fffbeb;
    border: 2px solid #f59e0b;
    padding: 30px;
    margin: 30px 0;
    border-radius: 10px;
}

.example-box h4 {
    color: #92400e;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.example-box strong {

    font-weight: 600;
}

.code-block {
    background: #1e293b;
    color: #e2e8f0;
    border: 1px solid #334155;
    border-radius: 8px;
    padding: 20px;
    margin: 25px 0;
    overflow-x: auto;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
}


.faq-item {
    margin-bottom: 25px;
    padding: 25px;
    background: #f0f9ff;
    border-left: 4px solid #3b82f6;
    border-radius: 6px;
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1e40af;
    margin-bottom: 12px;
}

.faq-answer {
    color: #2d3748;
    line-height: 1.8;
}

.author-bio {
    margin-top: 10px;
    padding: 5px;
    justify-self: center;
    max-width: 1200;
    border: 0px solid #e2e8f0;
    border-radius: 10px;
}

.author-bio h3 {
    color: #0a2540;
    margin-top: 0;
    font-size: 1.4em;
}

.author-bio strong {
    color: #0a2540;
}

.author-bio p {
    margin-bottom: 12px;
}

.highlight {
    background: #fef3c7;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 600;
    color: #92400e;
}


.short-answer strong {
    color: #1e40af;
}


.inline-link {
    color: #3b82f6;
    font-weight: 600;
}

.inline-link-warm {
    color: #f59e0b;
    font-weight: bold;
}


.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    padding: 20px;
    z-index: 9999;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

.cookie-consent-banner.show {
    display: block;
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-consent-text {
    flex: 1;
    min-width: 300px;
}

.cookie-consent-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    color: #333;
}

.cookie-consent-text p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-consent-text a {
    color: #0066cc;
    text-decoration: underline;
}

.cookie-consent-accept {
    background: #0066cc;
    color: #fff;
}

.cookie-consent-accept:hover {
    background: #0052a3;
}

.cookie-consent-reject {
    background: #f0f0f0;
    color: #333;
}

.cookie-consent-reject:hover {
    background: #e0e0e0;
}

.cookie-consent-customize {
    background: transparent;
    color: #0066cc;
    border: 1px solid #0066cc;
}

.cookie-consent-customize:hover {
    background: #f0f7ff;
}

.cookie-preferences-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-preferences-modal.show {
    display: flex;
}

.cookie-preferences-content {
    background: #fff;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 30px;
}

.cookie-preferences-content h2 {
    margin: 0 0 20px 0;
    font-size: 24px;
    color: #333;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background: #f9f9f9;
    border-radius: 4px;
}

.cookie-category h3 {
    margin: 0;
    font-size: 16px;
    color: #333;
}

.cookie-category p {
    margin: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-toggle {
    position: relative;
    width: 50px;
    height: 26px;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    transition: .4s;
    border-radius: 34px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.alert-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
    border-left: 4px solid var(--accent-warm);
    text-align: center;
    padding: 25px 30px;
    border-radius: 12px;
    margin-bottom: 50px;
    margin-top: 50px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.alert-box strong {
    color: var(--accent-warm);
    font-weight: 600;
    font-size: 1.4rem;
}

.alert-box p {
    margin-top: 10px;
    color: var(--text-dark);
    line-height: 1.6;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.stat-card {
    background: linear-gradient(135deg, var(--accent) 0%, #00a8cc 100%);
    color: var(--white);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    transition: transform 0.3s ease;
}

.ticker-card {
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    color: var(--white);

    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 20px #0a2540;
    transition: transform 0.3s ease;
    background: linear-gradient(135deg, var(--primary) 0%, #1e3a5f 100%);
    box-shadow: 0 8px 20px rgba(10, 37, 64, 0.4);
    min-width: 320px;
    max-width: 400px;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.resources-list {
    margin: 30px 0;
}

.resource-link {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    margin-bottom: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.resource-link:hover {
    background: #e0f2fe;
    border-left-color: var(--accent);
    transform: translateX(5px);
}

.resource-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.resource-text {
    flex: 1;
}

.resource-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.resource-desc {
    color: var(--text-light);
    font-size: 0.95rem;
}

.value-props {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.value-prop {
    text-align: center;
}

.value-prop-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.value-prop h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--white);
}

.value-prop p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.schema-ticker {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e8f0f7 100%);
    padding: 40px 0;
    margin-top: 60px;
}

.schema-ticker-track {
    display: flex;
    gap: 20px;
    padding: 20px;
    width: max-content;
    animation: schemaTicker 40s linear infinite;
}

.schema-ticker:hover .schema-ticker-track {
    animation-play-state: paused;
}

.schema-ticker .ticker-card:hover {
    opacity: 0.85;
    transform: translateY(-5px);
}

.ticker-link {
    text-decoration: underline;
    color: var(--accent);
    display: block;
    cursor: pointer;
}

.ticker-link:hover {
    cOlor: var(--accent);
    opacity: 0.9;
}


ol li {
    margin-bottom: 15px;
    padding-left: 10px;
}

/* ============================================================ */
/*                        Media Queries                         */
/* ============================================================ */

@media (max-width: 968px) {
    .content-wrapper {
    grid-template-columns: 1fr;
    }
    .contact-section {
    order: 2;
    }
    h1 {
    font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .container {
    padding: 30px 20px;
    }
    .form-section,
    .contact-section {
    padding: 30px 25px;
    }
    .logo-placeholder {
    width: 250px;
    height: 250px;
    }
}

@media (max-width: 600px) {
    .footer-content {
    flex-direction: column;
    gap: 30px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .schema-ticker-track {
    animation: none;
    transform: translateX(0);
    }
}

/* ============================================================ */
/*              BLOG ARTICLE STYLES                             */
/* ============================================================ */

article {
    background: rgb(255, 255, 255);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.4);
    animation: fadeIn 0.8s ease-out 0.6s both;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin: 30px auto 40px auto;
}

article p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text-dark);
}

/* Promo grid container */
.promo-grid-layout {
  background: #fff2c6;
  border-left: 6px solid #ff9800;
  border-radius: 18px;
  padding: 28px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 300px));
  gap: 24px;
  justify-content: center;
}

/* Header tile spans full width */
.promo-header-tile {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.promo-header-tile h3 {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 600;
}

.promo-header-icon {
  font-size: 1.5rem;
}

/* Value tiles */
.promo-tile {
  background: rgba(255,255,255,0.55);
  border-radius: 14px;
  padding: 22px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.promo-tile-icon {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.promo-tile-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.promo-tile-text {
  font-size: 0.95rem;
  line-height: 1.45;
  max-width: 240px;
}

/* Tablet: 2 + 1 */
@media (max-width: 1024px) {
  .promo-grid-layout {
    grid-template-columns: repeat(2, minmax(0, 300px));
  }
}

/* Mobile: 1 / 1 / 1 */
@media (max-width: 640px) {
  .promo-grid-layout {
    grid-template-columns: 1fr;
  }

  .promo-tile-text {
    max-width: 100%;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.cta-button-orange:hover {
  background: #ff8555 !important;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4) !important;
}

@media (max-width: 768px) {
  .cta-box-flex {
    flex-direction: column !important;
    text-align: center;
  }
}

