.form-group--conditional {
    display: none;
}
.form-group--conditional.is-visible {
    display: block;
    margin-top: 1rem;
}
.form-group--conditional select {
    margin-top: 0.65rem;
}
.form-group--conditional .conditional-spacing {
    margin-top: 0.85rem;
    display: block;
}
.form-group__subtitle--spaced {
    margin-top: 0.85rem;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* eUniron Brand Colors */
    --primary-color: #0A2E5A; /* eUniron Standard Blue */
    --secondary-color: #0A2E5A; /* Same as primary for consistency */
    --accent-color: #00B5A3; /* eUniron Innovation Aqua */
    --text-color: #444444; /* eUniron Foundation Grey */
    --text-light: #6b7280; /* Lighter grey for secondary text */
    --bg-color: #FFFFFF; /* Clean White */
    --bg-alt: #f9fafb; /* Light grey background for alternate sections */
    --border-color: #e5e7eb; /* Light border color */
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

/* Headlines - Questrial */
h1, h2, h3, h4, h5, h6,
.nav-brand h1,
.section-title,
.service-card h3,
.stat-item h3,
.highlight-item h4,
.partnership-text h3,
.contact-info h3 {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    color: #0A2E5A;
    letter-spacing: 0.5px;
}

/* Hero title stays white (on image background) */
.hero-title {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    color: white;
    letter-spacing: 0.5px;
}

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

/* Navigation */
.navbar {
    background: rgba(10, 46, 90, 0.95);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.35s ease;
    box-shadow: 0 10px 30px -15px rgba(10, 46, 90, 0.35);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(10, 46, 90, 0.08);
}

.navbar::after {
    content: '';
    position: absolute;
    inset: auto 0 -1px 0;
    height: 4px;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.4) 0%, rgba(0, 181, 163, 0.6) 100%);
    opacity: 0.6;
}

.navbar.scrolled {
    background: rgba(7, 26, 52, 0.98);
    box-shadow: 0 18px 45px -20px rgba(10, 46, 90, 0.65);
    border-bottom-color: rgba(255, 255, 255, 0.08);
}

.navbar.scrolled .nav-brand h1 {
    color: rgba(255, 255, 255, 0.92);
}

.navbar.scrolled .nav-link {
    color: rgba(255, 255, 255, 0.82);
}

.navbar.scrolled .nav-link:hover,
.navbar.scrolled .nav-link:focus,
.navbar.scrolled .nav-link:focus-visible,
.navbar.scrolled .nav-link.active {
    color: #ffffff;
}

.navbar.scrolled .nav-toggle span {
    background-color: rgba(255, 255, 255, 0.85);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
    min-height: 72px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.nav-logo {
    height: 40px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-brand h1 {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 400;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: stretch;
    height: 100%;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.82);
    font-weight: 500;
    position: relative;
    padding: 0 1.25rem;
    border-radius: 0;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: center;
}

.nav-link:hover,
.nav-link:focus,
.nav-link:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 10px 20px -12px rgba(10, 46, 90, 0.6);
    transform: translateY(-2px);
    outline: none;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s ease, left 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
    left: 0;
}

.nav-region {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    margin-left: 1.5rem;
    padding: 0.45rem 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(6px);
}

.nav-region__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
}

.nav-region__control {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    padding: 0.25rem 0.6rem 0.25rem 0.4rem;
}

.nav-region__flag {
    font-size: 1.1rem;
    line-height: 1;
}

.nav-region__control select {
    border: none;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    appearance: none;
    padding-right: 0.25rem;
    cursor: pointer;
}

.nav-region__control select:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.nav-region__control option {
    color: var(--primary-color);
}

.nav-link.active {
    color: white;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.95) 0%, rgba(0, 181, 163, 0.95) 100%);
    box-shadow: 0 18px 35px -20px rgba(10, 46, 90, 0.8);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.85);
    margin: 3px 0;
    transition: 0.3s;
}

/* DraftSight Highlight Section */
.draftsight-highlight {
    background: linear-gradient(135deg, var(--bg-alt) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 60px 20px;
    position: relative;
}

.draftsight-highlight::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.draftsight-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 2.5rem;
    align-items: stretch;
}

.draftsight-brand {
    background: #ffffff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.draftsight-brand::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 181, 163, 0.12), transparent 55%);
    pointer-events: none;
}

.draftsight-brand > * {
    position: relative;
    z-index: 2;
}

.draftsight-logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    border: 1px solid rgba(10, 46, 90, 0.15);
    border-radius: 999px;
    padding: 0.65rem 1.2rem;
    margin-bottom: 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 25px rgba(10, 46, 90, 0.08);
}

.draftsight-logo-pill img {
    width: 120px;
    height: auto;
    display: block;
}

.draftsight-logo-pill span {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    font-weight: 700;
}

.draftsight-brand h2 {
    font-size: 2.75rem;
    margin-bottom: 1.25rem;
}

.draftsight-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.75rem;
}

.draftsight-points {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.draftsight-points li {
    font-size: 1rem;
    background: rgba(10, 46, 90, 0.04);
    border-left: 4px solid var(--accent-color);
    padding: 1rem 1rem 1rem 1.25rem;
    border-radius: 12px;
    color: var(--text-color);
}

.draftsight-points strong {
    color: var(--primary-color);
}

.draftsight-image {
    margin-bottom: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.draftsight-image img {
    width: 100%;
    height: auto;
    max-width: 600px;
    display: block;
    object-fit: cover;
}

.draftsight-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.support-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.draftsight-panel {
    background: rgba(10, 46, 90, 0.9);
    color: white;
    border-radius: 28px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 25px 50px -20px rgba(10, 46, 90, 0.65);
}

.draftsight-savings {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
}

.savings-header p {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.savings-header h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.savings-chart {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.chart-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    border-radius: 14px;
    font-weight: 600;
    color: white;
}

.chart-bar--autocad {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.2));
}

.chart-bar--draftsight {
    background: linear-gradient(90deg, var(--accent-color), #00d4aa);
    box-shadow: 0 12px 20px -10px rgba(0, 181, 163, 0.8);
}

.draftsight-metrics {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1rem;
}

.ds-metric {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1rem;
    text-align: center;
}

.draftsight-payment {
    background: rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.metric-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.draftsight-fieldproof {
    margin-top: 3.5rem;
}

.fieldproof-intro {
    background: white;
    border-radius: 28px;
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.fieldproof-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(10, 46, 90, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
}

.fieldproof-intro h3 {
    font-size: 2.4rem;
    margin: 1rem 0;
    color: var(--primary-color);
}

.fieldproof-intro p {
    color: var(--text-light);
    line-height: 1.7;
}

.fieldproof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.25rem;
}

.fact-card {
    border: 1px solid rgba(10, 46, 90, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    background: rgba(10, 46, 90, 0.02);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.fact-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.fact-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.fact-card p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.95rem;
}

.fieldproof-list {
    list-style: none;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding: 0;
}

.fieldproof-list li {
    font-size: 1rem;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
}

.fieldproof-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.draftsight-fieldproof strong {
    color: var(--primary-color);
}

.fieldproof-industries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.fieldproof-industries span {
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(0, 181, 163, 0.12);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.85rem;
}

.fieldproof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.field-card {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.field-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.field-card__body {
    background: white;
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.field-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.9rem;
    border-radius: 999px;
    background: rgba(0, 181, 163, 0.12);
    color: var(--accent-color);
    font-weight: 700;
    font-size: 0.75rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.field-card h4 {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.field-card p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('tech.jpg') center/cover no-repeat;
    color: white;
    padding: 150px 20px 100px;
    text-align: center;
    margin-top: 70px;
    position: relative;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-tagline {
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 0.8s ease;
    opacity: 0.95;
}

.hero-title {
    font-size: 3rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.8s ease 0.1s both;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    animation: fadeInUp 0.8s ease 0.2s both;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn-primary {
    background-color: white;
    color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--bg-alt);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* CTA Button Enhancement */
.btn-cta {
    position: relative;
    overflow: hidden;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    background: linear-gradient(135deg, var(--accent-color) 0%, #00d4aa 100%);
    color: white;
    border: none;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(0, 181, 163, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: cta-pulse 2s infinite;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-cta:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 181, 163, 0.6);
    animation: none;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:active {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0, 181, 163, 0.5);
}

@keyframes cta-pulse {
    0%, 100% {
        box-shadow: 0 8px 25px rgba(0, 181, 163, 0.4);
    }
    50% {
        box-shadow: 0 8px 25px rgba(0, 181, 163, 0.6), 0 0 20px rgba(0, 181, 163, 0.3);
    }
}

/* Sections */
.section {
    padding: 80px 20px;
}

.section-alt {
    background-color: var(--bg-alt);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #0A2E5A;
    font-weight: 400;
    font-family: 'Questrial', sans-serif;
    letter-spacing: 0.5px;
}

/* About Section */
.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.draftsight-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 2rem;
}

.draftsight-main-message h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    line-height: 1.2;
}

.draftsight-main-message p {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.draftsight-key-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-highlight {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--bg-alt) 100%);
    border-radius: 16px;
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-highlight:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--accent-color);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.draftsight-cta-section {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(0, 181, 163, 0.1) 0%, rgba(10, 46, 90, 0.05) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 181, 163, 0.2);
}

.cta-subtitle {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.draftsight-focus {
    margin-top: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--bg-alt) 100%);
    border-radius: 20px;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-lg);
}

.focus-header {
    text-align: center;
    margin-bottom: 3rem;
}

.focus-header h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.focus-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.focus-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.focus-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.focus-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.focus-icon svg {
    width: 30px;
    height: 30px;
}

.focus-card h4 {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.focus-cta {
    text-align: center;
}

.focus-note {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
    font-style: italic;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-text p:last-child {
    margin-bottom: 0;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 16px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-item:hover::before {
    transform: scaleX(1);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color) !important;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 181, 163, 0.3);
}

.stat-icon svg {
    width: 40px;
    height: 40px;
}

.stat-item:hover .stat-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(10, 46, 90, 0.4);
}

.stat-item h3 {
    color: var(--text-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.stat-item:hover h3 {
    color: var(--primary-color);
}

.stat-item p {
    color: #374151; /* darker body text for better contrast */
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Services Section */
.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card--platform {
    padding: 3.5rem;
    background: white;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.platform-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    background: rgba(0, 181, 163, 0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.platform-hero {
    margin-bottom: 1rem;
}

.platform-media {
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    margin-bottom: 1.5rem;
}

.platform-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.35));
}

.platform-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.platform-info h3 {
    font-size: 2.3rem;
    margin: 0;
}

.platform-copy p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.platform-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 2rem;
}

.platform-note {
    font-size: 0.9rem;
    color: var(--text-light);
}

.platform-logos {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.platform-logos--header {
    margin-bottom: 1rem;
}

.platform-logos--header img {
    flex: 1 1 calc(50% - 0.5rem);
    max-width: calc(50% - 0.5rem);
}

.platform-logos img {
    height: 90px;
    width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.15));
    background: #fff;
    padding: 0.6rem 1rem;
    border-radius: 16px;
    border: 1px solid rgba(10, 46, 90, 0.08);
}

.service-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    text-align: left;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.service-icon-wrapper {
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color) !important;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 181, 163, 0.3);
}

.service-icon svg {
    width: 36px;
    height: 36px;
}

.service-card:hover .service-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(10, 46, 90, 0.4);
}

.service-card h3 {
    color: var(--text-color);
    margin-bottom: 1.25rem;
    font-size: 1.75rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--primary-color);
}

.service-card > p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.service-media-wide + p {
    margin-top: 2rem;
}

.service-media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-media-grid figure {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
    background: #000;
}

.service-media-grid img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    opacity: 0.95;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.service-media-grid figure:hover img {
    transform: scale(1.03);
    opacity: 1;
}

.service-media-grid figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 0.75rem 1rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
    color: #fff;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
}

.service-media-wide {
    margin-top: 1rem;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
    position: relative;
}

.service-media-wide img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.service-media-wide figcaption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem 1.25rem;
    background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.75));
    color: white;
    font-size: 0.9rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-features li {
    color: var(--text-light);
    padding: 0.75rem 0;
    padding-left: 1.75rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-color);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card:hover .service-features li::before {
    background: var(--accent-color);
    transform: translateY(-50%) scale(1.3);
}

@media (max-width: 900px) {
    .service-card--platform {
        padding: 2.5rem;
    }

    .platform-media {
        height: 260px;
    }
}

@media (max-width: 600px) {
    .platform-logos--header {
        flex-direction: column;
        align-items: flex-start;
    }

    .platform-info h3 {
        font-size: 2rem;
    }

    .platform-points {
        grid-template-columns: 1fr;
    }
}

/* Partnership Section */
.partnership-content {
    max-width: 1000px;
    margin: 0 auto 3rem;
}

.partnership-text {
    margin-bottom: 0;
    overflow: hidden;
}

.partnership-text h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.partnership-text p {
    font-size: 1.1rem;
    color: #374151; /* darker neutral for stronger contrast */
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.partnership-text strong {
    color: var(--primary-color);
    font-weight: 600;
}

.partnership-image {
    position: relative;
    float: left;
    width: 300px;
    max-width: 40%;
    margin: 0 2rem 1.5rem 0;
    min-height: 260px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: #dc2626;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partnership-photo {
    width: 100%;
    max-width: 250px;
    height: auto;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    padding: 1.5rem;
}

/* Show the logo image */
.partnership-photo {
    display: block;
}

/* Clear float after partnership text */
.partnership-text::after {
    content: "";
    display: table;
    clear: both;
}

/* Hide placeholder text when logo is present */
.image-placeholder-text {
    display: none;
}

.partnership-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Eventive Section */
.eventive-section {
    background: radial-gradient(circle at top left, rgba(0, 181, 163, 0.08), transparent 55%),
                radial-gradient(circle at bottom right, rgba(10, 46, 90, 0.08), transparent 45%),
                var(--bg-alt);
    position: relative;
    overflow: hidden;
}

.eventive-section--hidden {
    display: none;
}

.eventive-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -160px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(0, 181, 163, 0.28) 0%, rgba(0, 181, 163, 0) 70%);
    z-index: 0;
}

.eventive-section::after {
    content: '';
    position: absolute;
    bottom: -160px;
    left: -200px;
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(10, 46, 90, 0.28) 0%, rgba(10, 46, 90, 0) 70%);
    z-index: 0;
}

.eventive-section .container {
    position: relative;
    z-index: 1;
}

.eventive-header {
    max-width: 900px;
    margin: 0 auto 3rem;
    text-align: center;
}

.eventive-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1.25rem;
    border-radius: 999px;
    background: rgba(10, 46, 90, 0.08);
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.eventive-title {
    text-align: center;
    margin-bottom: 1.5rem;
}

.eventive-intro {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

.eventive-showcase {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: stretch;
}

.eventive-gallery {
    display: grid;
    gap: 1.75rem;
}

.eventive-frame {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(10, 46, 90, 0.08);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 260px;
}

.eventive-frame--desktop {
    min-height: 320px;
}

.eventive-frame__badge {
    display: inline-flex;
    align-self: flex-start;
    margin: 1.25rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(0, 181, 163, 0.12);
    color: var(--accent-color);
    font-weight: 600;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.eventive-frame__body {
    flex: 1;
    padding: 0 1.5rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventive-mobile-gallery {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    width: 100%;
}

.eventive-placeholder {
    width: 100%;
    min-height: 200px;
    border-radius: 18px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.12) 0%, rgba(0, 181, 163, 0.18) 100%);
    border: 1px dashed rgba(10, 46, 90, 0.2);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--primary-color);
    text-align: center;
    padding: 2rem;
}

.eventive-placeholder__title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}

.eventive-placeholder__subtitle {
    font-size: 0.95rem;
    color: rgba(10, 46, 90, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.eventive-screenshot {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 25px 45px -30px rgba(10, 46, 90, 0.6);
    border: 1px solid rgba(10, 46, 90, 0.08);
}

.eventive-mobile {
    width: 160px;
    height: 320px;
    border-radius: 32px;
    background: linear-gradient(180deg, rgba(10, 46, 90, 0.15) 0%, rgba(0, 181, 163, 0.25) 100%);
    padding: 1.75rem 1.25rem;
    position: relative;
    box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6), 0 20px 60px -30px rgba(10, 46, 90, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
}

.eventive-mobile::before,
.eventive-mobile::after {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.6);
}

.eventive-mobile::before {
    top: 1rem;
}

.eventive-mobile::after {
    bottom: 1rem;
}

.eventive-mobile__screen {
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px dashed rgba(10, 46, 90, 0.2);
    overflow: hidden;
    display: flex;
}

.eventive-mobile__screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

.eventive-mobile__title {
    font-size: 1.05rem;
    font-weight: 600;
}

.eventive-mobile__status {
    font-size: 0.85rem;
    color: rgba(10, 46, 90, 0.7);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.eventive-content {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    justify-content: center;
}

.eventive-feature {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.5rem;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(10, 46, 90, 0.08);
    box-shadow: 0 15px 40px -24px rgba(10, 46, 90, 0.5);
}

.eventive-feature h3 {
    margin-bottom: 0.5rem;
    font-size: 1.35rem;
    color: var(--primary-color);
}

.eventive-feature p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

.eventive-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.12) 0%, rgba(0, 181, 163, 0.22) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    box-shadow: 0 10px 25px -15px rgba(10, 46, 90, 0.8);
}

.eventive-icon svg {
    width: 26px;
    height: 26px;
}

.eventive-cta {
    align-self: flex-start;
    margin-top: 0.75rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: none;
}

.eventive-plans {
    margin-top: 4rem;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 24px;
    padding: 3rem;
    border: 1px solid rgba(10, 46, 90, 0.08);
    box-shadow: 0 25px 60px -40px rgba(10, 46, 90, 0.65);
}

.eventive-plans__title {
    text-align: center;
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 2.5rem;
    font-family: 'Questrial', sans-serif;
    font-weight: 400;
}

.eventive-plans__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2.5rem;
}

.eventive-plan-card {
    border-radius: 20px;
    border: 1px solid rgba(10, 46, 90, 0.08);
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.96) 0%, rgba(245, 249, 255, 0.96) 100%);
    box-shadow: 0 20px 45px -30px rgba(10, 46, 90, 0.6);
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.eventive-plan-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.12) 0%, rgba(0, 181, 163, 0.18) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.eventive-plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 70px -40px rgba(10, 46, 90, 0.75);
    border-color: rgba(0, 181, 163, 0.35);
}

.eventive-plan-card:hover::after {
    opacity: 0.12;
}

.eventive-plan-card > * {
    position: relative;
    z-index: 1;
}

.eventive-plan-card__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 700;
    background: rgba(10, 46, 90, 0.12);
    color: var(--primary-color);
    margin-bottom: 1.75rem;
}

.eventive-plan-card h4 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.eventive-plan-card__description {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 1rem;
    margin-bottom: 1.75rem;
}

.eventive-plan-card ul {
    list-style: none;
    display: grid;
    gap: 0.85rem;
    margin-bottom: 2rem;
}

.eventive-plan-card ul li {
    position: relative;
    padding-left: 1.75rem;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.6;
}

.eventive-plan-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    box-shadow: 0 6px 18px -10px rgba(10, 46, 90, 0.9);
}

.eventive-plan-card__cta-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.eventive-plan-card__cta-label::before {
    content: '★';
    color: var(--accent-color);
    font-size: 1rem;
}

.eventive-plan-card--highlight {
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.9) 0%, rgba(0, 181, 163, 0.85) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 80px -40px rgba(10, 46, 90, 0.85);
}

.eventive-plan-card--highlight .eventive-plan-card__badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.eventive-plan-card--highlight h4,
.eventive-plan-card--highlight .eventive-plan-card__description,
.eventive-plan-card--highlight ul li,
.eventive-plan-card--highlight .eventive-plan-card__cta-label {
    color: rgba(255, 255, 255, 0.92);
}

.eventive-plan-card--highlight ul li::before {
    background: rgba(255, 255, 255, 0.85);
}

.eventive-plan-card--highlight .eventive-plan-card__cta-label::before {
    color: rgba(255, 255, 255, 0.8);
}

/* Renewable Energy Section */
.renewable-section {
    background-color: var(--bg-alt);
}

.renewable-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
    align-items: center;
}

.renewable-text {
    color: var(--text-light);
}

.renewable-title {
    text-align: left;
    margin-bottom: 1.5rem;
}

.renewable-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.renewable-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 1rem;
}

.renewable-list li {
    position: relative;
    padding-left: 1.75rem;
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.6;
}

.renewable-list li::before {
    content: "";
    position: absolute;
    top: 14px;
    left: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--accent-color);
}

.renewable-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.1) 0%, rgba(0, 181, 163, 0.2) 100%);
    min-height: 420px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.renewable-photo {
    width: auto;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: contain;
}

.renewable-footnote {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1.5rem;
    font-style: italic;
}

.renewable-videos {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 2rem;
}

.renewable-videos__title {
    grid-column: 1 / -1;
    margin: 0 0 0.5rem;
    font-size: 1.4rem;
    font-weight: 600;
    color: #0A2E5A;
}

.video-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 46, 90, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-card__media {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.25), rgba(0, 181, 163, 0.25));
    background-size: cover;
    background-position: center;
    padding-top: 56.25%;
}

.video-card__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 181, 163, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 181, 163, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .video-card__play-icon {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(10, 46, 90, 0.9);
}

.video-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-card__content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.video-card__content p {
    color: var(--text-light);
    line-height: 1.6;
}

.video-card__button {
    align-self: flex-start;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-card__button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
}

.video-modal__content {
    position: relative;
    background: #0b1630;
    border-radius: 16px;
    padding: 1.5rem;
    width: min(900px, 90vw);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.55);
    z-index: 10;
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-modal__close:hover {
    background: white;
    transform: scale(1.05);
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 12px;
    background: black;
}

.renewable-faq {
    margin-top: 3rem;
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    padding: 2.5rem;
    border-left: 6px solid var(--primary-color);
}

.renewable-faq h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.faq-item {
    background: rgba(10, 46, 90, 0.04);
    border-radius: 12px;
    margin-bottom: 1rem;
    padding: 1.1rem 1.25rem;
    border: 1px solid rgba(10, 46, 90, 0.08);
}

.faq-item:last-of-type {
    margin-bottom: 0;
}

.faq-item summary {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
    cursor: pointer;
    list-style: none;
    outline: none;
    position: relative;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    transform: rotate(45deg);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-top: 0.75rem;
}
.renewable-videos {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 46, 90, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-card__media {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.25), rgba(0, 181, 163, 0.25));
    background-image: url('windmill.jpeg');
    background-size: cover;
    background-position: center;
    padding-top: 56.25%;
    cursor: pointer;
}

.video-card__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 181, 163, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 181, 163, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .video-card__play-icon {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(10, 46, 90, 0.9);
}

.video-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-card__content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.video-card__content p {
    color: var(--text-light);
    line-height: 1.6;
}

.video-card__button {
    align-self: flex-start;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-card__button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
}

.video-modal__content {
    position: relative;
    background: #0b1630;
    border-radius: 16px;
    padding: 1.5rem;
    width: min(900px, 90vw);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.55);
    z-index: 10;
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-modal__close:hover {
    background: white;
    transform: scale(1.05);
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 12px;
    background: black;
}
.renewable-videos {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(260px, 1fr));
    gap: 2rem;
}

.video-card {
    background: white;
    border-radius: 16px;
    box-shadow: var(--shadow);
    border: 1px solid rgba(10, 46, 90, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-card__media {
    position: relative;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.25), rgba(0, 181, 163, 0.25));
    padding-top: 56.25%;
}

.video-card__play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 3rem;
    color: white;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0, 181, 163, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 28px rgba(0, 181, 163, 0.3);
    transition: transform 0.3s ease, background 0.3s ease;
}

.video-card:hover .video-card__play-icon {
    transform: translate(-50%, -50%) scale(1.05);
    background: rgba(10, 46, 90, 0.9);
}

.video-card__content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.video-card__content h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.video-card__content p {
    color: var(--text-light);
    line-height: 1.6;
}

.video-card__button {
    align-self: flex-start;
    padding: 0.65rem 1.4rem;
    border-radius: 999px;
    border: none;
    background: var(--primary-color);
    color: white;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

.video-card__button:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.video-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 2000;
}

.video-modal.open {
    opacity: 1;
    visibility: visible;
}

.video-modal__overlay {
    position: absolute;
    inset: 0;
}

.video-modal__content {
    position: relative;
    background: #0b1630;
    border-radius: 16px;
    padding: 1.5rem;
    width: min(900px, 90vw);
    box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.55);
    z-index: 10;
}

.video-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.4rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease;
}

.video-modal__close:hover {
    background: white;
    transform: scale(1.05);
}

#modalVideo {
    width: 100%;
    height: auto;
    max-height: 70vh;
    border-radius: 12px;
    background: black;
}

.highlight-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--primary-color);
    text-align: center;
}

.highlight-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 8px 20px rgba(0, 181, 163, 0.3);
}

.highlight-icon svg {
    width: 30px;
    height: 30px;
}

.highlight-item:hover .highlight-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 30px rgba(0, 181, 163, 0.4);
}

.highlight-item h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.highlight-item p {
    color: var(--text-light);
}

/* Contact Section */
.contact-shell {
    background: #ffffff;
    border-radius: 32px;
    padding: 3rem;
    box-shadow: 0 35px 70px rgba(0, 0, 0, 0.08);
}

.contact-summary {
    text-align: left;
    margin-bottom: 2.5rem;
}

.contact-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.35rem 1rem;
    border-radius: 999px;
    background: rgba(0, 181, 163, 0.12);
    color: var(--primary-color);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
}

.contact-intro {
    text-align: left;
    font-size: 1.05rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
    width: 100%;
}

.contact-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem 1.5rem;
}

.contact-highlights li {
    font-size: 0.95rem;
    color: var(--text-color);
    position: relative;
    padding-left: 1.25rem;
}

.contact-highlights li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.contact-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--accent-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(0, 181, 163, 0.3);
}

.contact-icon svg {
    width: 36px;
    height: 36px;
}

.contact-card:hover .contact-icon {
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 15px 35px rgba(0, 181, 163, 0.4);
}

.contact-card h3 {
    color: #0A2E5A;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.contact-card:hover h3 {
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.contact-note {
    display: block;
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--text-light);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-card a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.contact-cta {
    margin-top: 2.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn.btn-outline {
    border: 2px solid rgba(10, 46, 90, 0.15);
    background: transparent;
    color: var(--primary-color);
}

.btn.btn-outline:hover {
    background: rgba(10, 46, 90, 0.05);
    color: var(--primary-color);
    box-shadow: var(--shadow);
}

/* Footer */
.footer {
    background-color: var(--text-color);
    color: white;
    padding: 3rem 20px 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--accent-color);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
}

/* Responsive Design */
@media (max-width: 768px) {
    .draftsight-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .draftsight-text h2 {
        font-size: 2rem;
    }

    .draftsight-benefits {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .draftsight-cta {
        padding: 1.5rem;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .contact-shell {
        padding: 2rem;
    }

    .contact-cta {
        flex-direction: column;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .comparison-chart {
        padding: 1.5rem;
    }

    .chart-item {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .software-name {
        text-align: center;
    }

    .price-bar {
        height: 35px;
        padding-right: 0.75rem;
    }

    .price-text {
        font-size: 0.8rem;
    }

    .draftsight-focus {
        padding: 2rem 1.5rem;
        margin-top: 3rem;
    }

    .focus-header h3 {
        font-size: 1.75rem;
    }

    .focus-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .draftsight-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .draftsight-main-message h3 {
        font-size: 2rem;
    }

    .draftsight-main-message p {
        font-size: 1.1rem;
    }

    .draftsight-key-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 46, 90, 0.97);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-link {
        font-size: 0.85rem;
        padding: 0.9rem 1.5rem;
        color: rgba(255, 255, 255, 0.85);
    }

    .nav-link::after {
        display: none;
    }

    .nav-region {
        display: none;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .nav-logo {
        height: 32px;
    }

    .nav-brand h1 {
        font-size: 1.25rem;
    }

    .hero-tagline {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        margin-bottom: 0.75rem;
    }

    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
        padding: 0 10px;
    }

    .hero {
        padding: 120px 20px 80px;
        min-height: 500px;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }

    .section {
        padding: 60px 20px;
    }

    .about-text p {
        font-size: 1rem;
    }

    .about-content,
    .partnership-content {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-card {
        padding: 2.5rem 2rem;
    }

    .contact-intro {
        font-size: 1.1rem;
        margin-bottom: 3rem;
        padding: 0 10px;
    }

    .partnership-image {
        float: none;
        width: 100%;
        max-width: 100%;
        margin: 0 0 2rem 0;
        min-height: 260px;
    }

    .partnership-photo {
        max-width: 250px;
        padding: 1.5rem;
    }

    .renewable-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .renewable-title {
        text-align: center;
    }

    .renewable-image {
        min-height: 360px;
    }

    .renewable-stats,
    .renewable-videos {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item {
        padding: 2rem 1.5rem;
    }

    .stat-item h3 {
        font-size: 1.25rem;
    }

    .stat-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .stat-icon {
        width: 70px;
        height: 70px;
    }

    .stat-icon svg {
        width: 35px;
        height: 35px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card > p {
        font-size: 0.95rem;
    }

    .service-features li {
        font-size: 0.9rem;
        padding: 0.6rem 0;
        padding-left: 1.5rem;
    }

    .services-intro {
        font-size: 1rem;
        margin-bottom: 2.5rem;
        padding: 0 10px;
    }

    .partnership-highlights {
        grid-template-columns: 1fr;
    }

    .eventive-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .eventive-gallery {
        grid-template-columns: 1fr;
    }

    .eventive-feature {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .eventive-icon {
        margin: 0 auto 1rem;
    }

    .eventive-cta {
        align-self: center;
    }

    .eventive-plans {
        padding: 2.5rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .nav-logo {
        height: 28px;
    }

    .nav-brand h1 {
        font-size: 1.1rem;
    }

    .nav-brand {
        gap: 0.5rem;
    }

    .hero {
        padding: 100px 15px 60px;
        min-height: 450px;
    }

    .hero-tagline {
        font-size: 0.8rem;
        letter-spacing: 1px;
    }

    .hero-title {
        font-size: 1.75rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
    }

    .section {
        padding: 50px 15px;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .service-card,
    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.25rem;
    }

    .contact-card p {
        font-size: 1rem;
    }

    .stat-item {
        padding: 1.75rem 1.25rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .renewable-image {
        min-height: 320px;
    }

    .renewable-faq {
        padding: 2rem 1.5rem;
    }

    .eventive-pill {
        font-size: 0.75rem;
        padding: 0.35rem 1rem;
    }

    .eventive-intro {
        font-size: 1rem;
    }

    .eventive-frame__badge {
        margin: 1rem;
        font-size: 0.7rem;
    }

    .eventive-mobile {
        width: 140px;
        height: 280px;
    }

    .eventive-mobile-gallery {
        gap: 1rem;
        justify-content: center;
    }

    .eventive-mobile-gallery .eventive-mobile:nth-child(n+2) {
        display: none;
    }

    .eventive-plans {
        padding: 2rem 1.5rem;
    }

    .eventive-plans__title {
        font-size: 1.4rem;
    }
}

/* Renewable Energy Section - Modern Corporate Layout */
.renewable-story {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f3f4 100%);
    border-radius: 20px;
    padding: 4rem 2rem;
    margin-bottom: 5rem;
    overflow: hidden;
}

.renewable-story::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="%230A2E5A" opacity="0.03"/><circle cx="75" cy="75" r="1" fill="%230A2E5A" opacity="0.03"/><circle cx="50" cy="10" r="0.5" fill="%231e5f99" opacity="0.02"/><circle cx="10" cy="90" r="0.5" fill="%231e5f99" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.story-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.renewable-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #0A2E5A;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.stats-toggle-container {
    margin-bottom: 2.5rem;
    position: relative;
}

.stats-toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 1rem 1.5rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-toggle-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(10, 46, 90, 0.1), transparent);
    transition: left 0.5s ease;
}

.stats-toggle-btn:hover::before {
    left: 100%;
}

.stats-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.toggle-text {
    font-size: 1rem;
    font-weight: 600;
    color: #0A2E5A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.toggle-icon {
    width: 20px;
    height: 20px;
    color: #0A2E5A;
    transition: transform 0.3s ease;
}

.stats-toggle-btn[aria-expanded="true"] .toggle-icon {
    transform: rotate(180deg);
}

.stats-toggle-btn[aria-expanded="true"] .toggle-text {
    font-size: 0;
}

.stats-toggle-btn[aria-expanded="true"] .toggle-text::after {
    content: "Hide Statistics";
    font-size: 1rem;
    font-weight: 600;
    color: #0A2E5A;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 2rem;
}

.story-stats[aria-hidden="false"] {
    max-height: 600px;
    opacity: 1;
    transform: translateY(0);
}

.stat-item {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #0A2E5A, #1e5f99, #2e77aa);
    border-radius: 20px 0 0 20px;
    transition: width 0.4s ease;
}

.stat-item:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.stat-item:hover::before {
    width: 8px;
}

.stat-number {
    font-size: 4.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0A2E5A, #1e5f99, #2e77aa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    min-width: 140px;
    text-align: center;
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #0A2E5A;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
}

.stat-description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0.3px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
    font-weight: 400;
}

.story-images {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.story-image-top,
.story-image-bottom {
    position: relative;
    flex: 1;
}

.story-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    position: relative;
    transition: transform 0.3s ease;
}

.story-photo:hover {
    transform: scale(1.02);
}

.story-photo::before {
    content: '';
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.08), rgba(30, 95, 153, 0.08));
    border-radius: 24px;
    z-index: -1;
}

.image-overlay {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.overlay-content {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.overlay-content svg {
    width: 20px;
    height: 20px;
    color: #0A2E5A;
    flex-shrink: 0;
}

.overlay-content span {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0A2E5A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Distributed Power Challenge */
.renewable-challenge {
    margin-bottom: 5rem;
    position: relative;
}

.renewable-challenge h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #0A2E5A;
    font-weight: 700;
    position: relative;
}

.renewable-challenge h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0A2E5A, #1e5f99);
    border-radius: 2px;
}

.challenge-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 3rem;
}

.challenge-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.challenge-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2E5A, #1e5f99);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.challenge-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.challenge-card:hover::before {
    transform: scaleX(1);
}

.challenge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0A2E5A, #1e5f99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(10, 46, 90, 0.3);
}

.challenge-icon::before {
    content: '';
    position: absolute;
    inset: -8px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.2), rgba(30, 95, 153, 0.2));
    border-radius: 50%;
    z-index: -1;
}

.challenge-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.challenge-card h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #0A2E5A;
    font-weight: 700;
}

.challenge-card p {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #1e5f99, #0A2E5A);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.challenge-detail {
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
    line-height: 1.5;
}

.challenge-summary {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* CO3 Windboom Introduction */
.windboom-intro {
    display: flex;
    gap: 4rem;
    align-items: center;
    margin-bottom: 6rem;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 50%, #ffffff 100%);
    padding: 4rem 3rem;
    border-radius: 24px;
    position: relative;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.windboom-intro::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(10, 46, 90, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.intro-content {
    flex: 1;
    position: relative;
    z-index: 2;
}

.eastally-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.eastally-logo img {
    max-height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.brand-highlight {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.brand-highlight h3 {
    font-size: 2.4rem;
    color: #0A2E5A;
    margin: 0;
    font-weight: 800;
    line-height: 1.2;
}

.brand-logo {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
}

.brand-logo::before {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.2), rgba(30, 95, 153, 0.2));
    border-radius: 24px;
    z-index: -1;
}

.brand-photo {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

.windboom-intro > p {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.windboom-features {
    list-style: disc;
    margin-top: 1.5rem;
    padding-left: 1.5rem;
    display: block;
    gap: 0;
}

.feature-item {
    margin-bottom: 0.5rem;
    padding-left: 0.25rem;
}

/* feature-icon no longer used for windboom features; kept only for legacy references */

.feature-item span {
    font-size: 1rem;
    color: #333;
    line-height: 1.5;
    font-weight: 500;
}

.intro-image {
    flex: 1;
    position: relative;
    z-index: 2;
}

.windboom-photo {
    width: 100%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    position: relative;
}

.windboom-photo::before {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.1), rgba(30, 95, 153, 0.1));
    border-radius: 35px;
    z-index: -1;
}

.image-placeholder {
    position: absolute;
    top: 1.5rem;
    left: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.placeholder-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.placeholder-content svg {
    width: 24px;
    height: 24px;
    color: #0A2E5A;
}

.placeholder-content span {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0A2E5A;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Power Output Visualization */
.power-output {
    margin-bottom: 6rem;
    position: relative;
}

.power-output::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, #0A2E5A, #1e5f99, #0A2E5A);
    border-radius: 2px;
}

.power-output h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #0A2E5A;
    font-weight: 700;
    position: relative;
}

.output-comparison {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    position: relative;
}

.wind-condition {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(248, 249, 250, 0.95));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    text-align: center;
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.wind-condition::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg,
        #0A2E5A 0%,
        #1e5f99 25%,
        #2e77aa 50%,
        #1e5f99 75%,
        #0A2E5A 100%);
    border-radius: 24px 24px 0 0;
}

.wind-condition:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 120px rgba(0, 0, 0, 0.12);
}

.condition-header {
    margin-bottom: 2.5rem;
}

.wind-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #0A2E5A, #1e5f99);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    position: relative;
    box-shadow: 0 8px 25px rgba(10, 46, 90, 0.3);
}

.wind-icon::before {
    content: '';
    position: absolute;
    inset: -6px;
    background: linear-gradient(135deg, rgba(10, 46, 90, 0.2), rgba(30, 95, 153, 0.2));
    border-radius: 50%;
    z-index: -1;
}

.wind-icon svg {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.wind-condition h4 {
    font-size: 1.6rem;
    color: #0A2E5A;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.wind-speed {
    font-size: 1rem;
    color: #666;
    font-style: italic;
    font-weight: 500;
}

.power-number {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #0A2E5A, #1e5f99);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
    display: block;
    line-height: 1;
}

.power-breakdown {
    display: block;
}

.power-note {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 0.75rem;
    text-align: left;
}

.power-list {
    margin: 0;
    padding-left: 1.25rem;
    text-align: left;
}

.power-list li {
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    color: #333;
}

.output-note {
    text-align: center;
    font-size: 1rem;
    color: #666;
    font-style: italic;
    margin-top: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    line-height: 1.6;
}

/* Dual-Purpose Design */
.dual-purpose {
    margin-bottom: 6rem;
    position: relative;
}

.dual-purpose::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #0A2E5A, #1e5f99, #0A2E5A, transparent);
    border-radius: 2px;
}

.purpose-content h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #0A2E5A;
    font-weight: 700;
    position: relative;
}

.purpose-content h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, #0A2E5A, #1e5f99);
    border-radius: 2px;
}

.purpose-content > p {
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #444;
    margin-bottom: 4rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
}

.purpose-applications {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

.application-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(248, 249, 250, 0.9));
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.application-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #0A2E5A, #1e5f99, #2e77aa);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.application-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
}

.application-item:hover::before {
    transform: scaleX(1);
}

.application-image {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
    border: 2px dashed rgba(108, 117, 125, 0.3);
    transition: all 0.3s ease;
}

.application-item:hover .image-placeholder {
    background: linear-gradient(135deg, #0A2E5A, #1e5f99);
    border-color: rgba(10, 46, 90, 0.5);
}

.application-item:hover .image-placeholder svg {
    color: white;
}

.application-item:hover .image-placeholder span {
    color: white;
}

.image-placeholder svg {
    width: 32px;
    height: 32px;
    color: #6c757d;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.image-placeholder span {
    font-size: 0.8rem;
    color: #6c757d;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    transition: color 0.3s ease;
}

.application-text h4 {
    font-size: 1.4rem;
    color: #0A2E5A;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

 .application-text p {
     font-size: 1rem;
     color: #666;
     line-height: 1.6;
     margin: 0;
     font-weight: 400;
 }

@media (max-width: 1024px) {
    .draftsight-grid {
        grid-template-columns: 1fr;
    }

    .draftsight-panel {
        order: -1;
    }

    .draftsight-brand,
    .draftsight-panel,
    .fieldproof-intro {
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .draftsight-brand,
    .draftsight-panel,
    .fieldproof-intro {
        padding: 1.5rem;
    }

    .draftsight-logo-pill {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .draftsight-brand h2 {
        font-size: 2.1rem;
    }

    .draftsight-points li {
        font-size: 0.95rem;
    }

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

/* Responsive Design for Renewable Section */
@media (max-width: 768px) {
    .renewable-story {
        flex-direction: column;
        gap: 2rem;
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }

    .renewable-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
    }

    .story-stats {
        gap: 1rem;
        margin-bottom: 2rem;
        width: 100%;
        margin-top: 1.5rem;
    }

    .story-images {
        flex-direction: row;
        gap: 1rem;
    }

    .story-photo {
        height: 220px;
    }

    .image-overlay {
        bottom: 0.75rem;
        left: 0.75rem;
        padding: 0.5rem 1rem;
    }

    .overlay-content span {
        font-size: 0.8rem;
    }

    .stats-toggle-btn {
        padding: 0.875rem 1.25rem;
    }

    .toggle-text {
        font-size: 0.9rem;
    }

    .toggle-icon {
        width: 18px;
        height: 18px;
    }

    .stat-item {
        padding: 1.5rem 1rem;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .stat-item::before {
        width: 100%;
        height: 6px;
        border-radius: 0;
    }

    .stat-item:hover::before {
        height: 8px;
    }

    .stat-number {
        font-size: 3.5rem;
        min-width: auto;
    }

    .stat-content {
        align-items: center;
        gap: 0.75rem;
    }

    .stat-label {
        font-size: 1rem;
        letter-spacing: 1.5px;
        text-align: center;
    }

    .stat-description {
        font-size: 0.9rem;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }

    .story-text {
        font-size: 1.1rem;
    }

    .story-images {
        flex-direction: column;
        gap: 1rem;
        margin-top: 2rem;
    }

    .story-photo {
        height: 200px;
    }

    .image-overlay {
        bottom: 0.5rem;
        left: 0.5rem;
        right: auto;
        padding: 0.5rem 0.75rem;
    }

    .overlay-content span {
        font-size: 0.75rem;
    }

    .renewable-challenge h3 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .challenge-card {
        padding: 2rem 1.5rem;
    }

    .challenge-icon {
        width: 70px;
        height: 70px;
    }

    .challenge-icon svg {
        width: 30px;
        height: 30px;
    }

    .windboom-intro {
        flex-direction: column;
        gap: 3rem;
        padding: 3rem 2rem;
        margin-bottom: 4rem;
    }

    .eastally-logo {
        margin-bottom: 1.25rem;
    }

    .eastally-logo img {
        max-height: 60px;
    }

    .brand-highlight {
        gap: 1.5rem;
    }

    .brand-highlight h3 {
        font-size: 2rem;
    }

    .brand-logo {
        width: 70px;
        height: 70px;
    }

    .brand-photo {
        width: 50px;
        height: 50px;
    }

    .windboom-intro > p {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .windboom-features {
        gap: 1rem;
    }

    .intro-image {
        width: 100%;
    }

    .windboom-photo {
        height: auto;
        max-height: 400px;
        object-fit: contain;
    }

    .image-placeholder {
        top: 1rem;
        left: 1rem;
        padding: 0.75rem 1rem;
    }

    .power-output h3 {
        font-size: 2rem;
        margin-bottom: 3rem;
    }

    .output-comparison {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .wind-condition {
        padding: 2.5rem 2rem;
    }

    .power-number {
        font-size: 3rem;
    }

    .power-item {
        padding: 1.5rem 1rem;
    }

    .power-icons {
        gap: 0.5rem;
    }

    .power-icons svg {
        width: 28px;
        height: 28px;
    }

    .dual-purpose {
        margin-bottom: 4rem;
    }

    .purpose-content h3 {
        font-size: 2rem;
    }

    .purpose-content > p {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .purpose-applications {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .application-item {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }

    .application-image {
        width: 80px;
        height: 80px;
    }

    .application-text h4 {
        font-size: 1.2rem;
    }

    .application-text p {
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .renewable-story {
        padding: 2rem 1rem;
    }

    .renewable-title {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 3rem;
    }

    .stat-label {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .stat-description {
        font-size: 0.85rem;
        max-width: 240px;
    }

    .stats-toggle-btn {
        padding: 0.75rem 1rem;
    }

    .toggle-text {
        font-size: 0.85rem;
    }

    .toggle-icon {
        width: 16px;
        height: 16px;
    }

    .challenge-card {
        padding: 1.5rem 1rem;
    }

    .wind-condition {
        padding: 2rem 1.5rem;
    }

    .power-number {
        font-size: 2.5rem;
    }

    .application-item {
        padding: 1.5rem 1rem;
    }
}

/* Side Panel */
.side-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.side-panel[aria-hidden="false"] {
    opacity: 1;
    pointer-events: all;
}

.side-panel__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.side-panel__content {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 520px;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.side-panel[aria-hidden="false"] .side-panel__content {
    transform: translateX(0);
}

.side-panel__close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border: none;
    background: rgba(10, 46, 90, 0.1);
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--primary-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.side-panel__close:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

.side-panel__header {
    padding: 3rem 2.5rem 2rem;
    border-bottom: 1px solid var(--border-color);
}

.side-panel__logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-panel__logo img {
    max-height: 60px;
    width: auto;
    object-fit: contain;
}

.side-panel__logo--platform {
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.side-panel__logo--platform img {
    max-height: 80px;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
}

.side-panel__header h2 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 400;
}

.side-panel__header p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}
.side-panel__steps-indicator {
    margin-top: 1.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.step-indicator__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.65rem 0.5rem;
    border-radius: 14px;
    border: 1px dashed var(--border-color);
    transition: all 0.3s ease;
    text-align: center;
    min-height: 76px;
}
.step-indicator__item.is-active {
    border-color: var(--accent-color);
    background: rgba(0, 181, 163, 0.08);
    box-shadow: 0 8px 20px rgba(0, 181, 163, 0.15);
}
.step-indicator__item.is-complete {
    border-color: var(--primary-color);
    background: rgba(10, 46, 90, 0.08);
    color: var(--primary-color);
}
.step-indicator__number {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid currentColor;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 0.25rem;
}
.step-indicator__label {
    font-size: 0.8rem;
    font-weight: 600;
    color: inherit;
}
.step-indicator__separator {
    width: 24px;
    height: 2px;
    background: var(--border-color);
}

.side-panel__form {
    padding: 2rem 2.5rem;
    flex: 1;
}
.form-step {
    display: none;
    animation: fadeInUp 0.4s ease;
}
.form-step.is-active {
    display: block;
}
.form-step__intro {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}
.form-step__hint {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 1rem;
}
.form-step__back {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}
.form-step__back:hover {
    text-decoration: underline;
}
.audience-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}
.audience-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.25rem;
    background: #f7fbfd;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary-color);
    text-align: center;
}
.audience-card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.05);
}
.audience-card__icon svg {
    width: 28px;
    height: 28px;
}
.audience-card__title {
    font-size: 1.1rem;
    font-weight: 700;
}
.audience-card__hint {
    font-size: 0.85rem;
    color: var(--text-light);
}
.audience-card:hover,
.audience-card.is-selected {
    border-color: var(--accent-color);
    background: rgba(0, 181, 163, 0.12);
    box-shadow: 0 12px 24px rgba(0, 181, 163, 0.2);
}

.package-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.package-card {
    position: relative;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    background: #f7fbfd;
    cursor: pointer;
    transition: all 0.3s ease;
    overflow: hidden;
}

.package-card input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.package-card__content {
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.package-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 1rem;
    border-bottom: 2px solid rgba(0, 181, 163, 0.1);
}

.package-card__title {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.package-card__price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.25rem;
}

.package-card__amount {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
}

.package-card__period {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.package-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    flex-grow: 1;
}

.package-card__features li {
    font-size: 0.95rem;
    color: var(--text-color);
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.5;
}

.package-card__features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1rem;
}

.package-card__discount {
    background: linear-gradient(135deg, var(--accent-color), #00d4aa);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    text-align: center;
    margin-top: auto;
}

.package-card:hover {
    border-color: var(--accent-color);
    background: rgba(0, 181, 163, 0.08);
    box-shadow: 0 12px 28px rgba(0, 181, 163, 0.2);
    transform: translateY(-2px);
}

.package-card input[type="radio"]:checked + .package-card__content {
    background: rgba(0, 181, 163, 0.12);
}

.package-card input[type="radio"]:checked ~ .package-card__content,
.package-card:has(input[type="radio"]:checked) {
    border-color: var(--accent-color);
    background: rgba(0, 181, 163, 0.12);
    box-shadow: 0 12px 28px rgba(0, 181, 163, 0.25);
}

.package-card:has(input[type="radio"]:checked) .package-card__discount,
.package-card.is-selected .package-card__discount {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    box-shadow: 0 4px 12px rgba(10, 46, 90, 0.3);
}

.package-card.is-selected {
    border-color: var(--accent-color);
    background: rgba(0, 181, 163, 0.12);
    box-shadow: 0 12px 28px rgba(0, 181, 163, 0.25);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text-color);
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(0, 181, 163, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}
.form-group select:disabled {
    background: rgba(0, 0, 0, 0.03);
    cursor: not-allowed;
}
.is-locked {
    opacity: 0.7;
}
.form-group--stacked {
    margin-top: 2rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.5rem;
}
.form-group__title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}
.form-group__description {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.35rem;
}
.form-group--consent {
    margin-top: 1.5rem;
    border-top: 1px solid rgba(0, 181, 163, 0.2);
    padding-top: 1.25rem;
}
.link-inline {
    color: var(--accent-color);
    text-decoration: underline;
    font-weight: 600;
}
.link-inline:hover {
    color: var(--primary-color);
}
.checkbox-option {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-color);
    margin-bottom: 0.75rem;
    cursor: pointer;
}
.checkbox-option input {
    margin-top: 0;
}
.checkbox-option span {
    display: inline-block;
}
.checkbox-option__prefix {
    font-weight: 700;
    color: var(--accent-color);
    margin-right: 0.35rem;
}
.checkbox-option--required span {
    font-weight: 600;
}
.checkbox-option:last-child {
    margin-bottom: 0;
}

.side-panel__form .btn-cta {
    width: 100%;
    margin-top: 1rem;
}
.side-panel__form .btn-cta:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    animation: none;
    box-shadow: none;
}

/* Support FAB & Modal */
.support-fab {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 11000;
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.9rem 1.5rem;
    background: linear-gradient(135deg, var(--accent-color), #00d4aa);
    border: none;
    border-radius: 999px;
    color: white;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    animation: support-fab-bounce 2.3s infinite ease-in-out;
}
.support-fab.is-hidden {
    opacity: 0;
    transform: translateY(10px);
}
.support-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 55px rgba(0, 0, 0, 0.3);
}
.support-fab__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}
.support-fab::after {
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(0, 181, 163, 0.45);
    opacity: 0.7;
    animation: support-fab-glow 2.8s infinite ease-in-out;
    z-index: -1;
}

@keyframes support-fab-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-7px);
    }
}

@keyframes support-fab-glow {
    0%, 100% {
        box-shadow: 0 0 18px rgba(0, 181, 163, 0.35);
        opacity: 0.5;
    }
    50% {
        box-shadow: 0 0 26px rgba(0, 181, 163, 0.65);
        opacity: 0.9;
    }
}
.support-fab__icon svg {
    width: 18px;
    height: 18px;
}
.support-modal {
    position: fixed;
    inset: 0;
    z-index: 11050;
    pointer-events: none;
}
.support-modal[aria-hidden="false"] {
    pointer-events: all;
}
.support-modal[aria-hidden="true"] .support-modal__content,
.support-modal[aria-hidden="true"] .support-modal__overlay {
    pointer-events: none;
    visibility: hidden;
}
.support-modal__overlay {
    position: absolute;
    inset: 0;
    background: transparent;
}
.support-modal__content {
    position: absolute;
    bottom: 110px;
    right: 28px;
    width: min(420px, 92vw);
    max-height: 80vh;
    background: #fff;
    border-radius: 22px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: auto;
}
.support-modal[aria-hidden="false"] .support-modal__content {
    transform: translateY(0);
    opacity: 1;
}
.support-modal__close {
    position: absolute;
    top: 0.9rem;
    right: 0.9rem;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: rgba(10, 46, 90, 0.08);
    font-size: 1.5rem;
    cursor: pointer;
}
.support-modal__header {
    padding: 2rem 2rem 1.25rem;
    background: linear-gradient(135deg, rgba(0, 181, 163, 0.08), rgba(10, 46, 90, 0.03));
}
.support-modal__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    color: var(--accent-color);
    margin-bottom: 0.8rem;
    font-weight: 700;
}
.support-modal__header h2 {
    margin-bottom: 0.6rem;
    color: var(--primary-color);
}
.support-modal__header-copy-hidden {
    display: none;
}
.support-modal__body {
    padding: 1.5rem 2rem 2rem;
    overflow-y: auto;
}
.support-step {
    display: none;
    animation: fadeInUp 0.35s ease;
}
.support-step.is-active {
    display: block;
}
.support-step__subtitle {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
}
.support-step__subtitle--primary {
    font-size: 1rem;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.support-step__subtitle--primary::before {
    content: '⚡';
    font-size: 1rem;
}
.support-step__description {
    font-size: 0.92rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
.support-choice-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}
.support-contact-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}
.support-contact-item {
    border: 1px solid rgba(10, 46, 90, 0.1);
    border-radius: 14px;
    padding: 0.85rem 1rem;
    background: rgba(10, 46, 90, 0.04);
}
.support-contact-item__label {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(10, 46, 90, 0.6);
    margin-bottom: 0.2rem;
}
.support-contact-item a {
    font-weight: 600;
    color: var(--primary-color);
    text-decoration: none;
    word-break: break-word;
}
.support-contact-form {
    margin-top: 1.25rem;
    border: 1px solid rgba(10, 46, 90, 0.1);
    border-radius: 16px;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.03);
}
.support-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin-bottom: 1rem;
}
.support-contact-form .form-group {
    margin-bottom: 0.75rem;
}
.support-contact-form .form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.3rem;
    display: block;
}
.support-contact-form input,
.support-contact-form select,
.support-contact-form textarea {
    width: 100%;
    border-radius: 10px;
    border: 1px solid rgba(10, 46, 90, 0.18);
    padding: 0.6rem 0.75rem;
    font-size: 0.9rem;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.support-contact-form input:focus,
.support-contact-form select:focus,
.support-contact-form textarea:focus {
    outline: 2px solid rgba(0, 181, 163, 0.35);
    border-color: rgba(0, 181, 163, 0.35);
}
.support-choice-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    background: #f9fcff;
    text-align: left;
    transition: all 0.25s ease;
    cursor: pointer;
}
.support-choice-card__icon {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}
.support-choice-card:hover {
    transform: translateY(-3px);
    border-color: var(--accent-color);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}
.support-step__back {
    background: none;
    border: none;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
    cursor: pointer;
}
.support-existing-grid {
    display: grid;
    gap: 1.5rem;
}
.support-existing-card {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.5rem;
    background: #fdfefe;
    box-shadow: var(--shadow);
}
.support-existing-card h3 {
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}
.support-existing-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
}
.support-step__note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
.support-chat-router {
    display: inline-flex;
    gap: 0.75rem;
    margin-bottom: 1rem;
    background: rgba(0, 0, 0, 0.03);
    padding: 0.4rem;
    border-radius: 999px;
}
.support-chat-router__btn {
    border: none;
    border-radius: 999px;
    padding: 0.45rem 1.2rem;
    font-weight: 600;
    color: var(--text-light);
    background: transparent;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.support-chat-router__btn.is-active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 8px 20px rgba(10, 46, 90, 0.25);
}
.support-chat-pane {
    border: 1px solid var(--border-color);
    border-radius: 18px;
    padding: 1.25rem;
    background: #fdfefe;
    box-shadow: inset 0 1px 2px rgba(0,0,0,0.04);
}
.support-chat-pane__status {
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
    color: var(--text-light);
}
.support-chat-pane__status span {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.2rem;
}
.support-chat-guidance {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.8rem;
}
.support-chat-window {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem;
    height: 220px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}
.support-chat-message {
    max-width: 85%;
    padding: 0.65rem 0.9rem;
    border-radius: 12px;
    font-size: 0.94rem;
    line-height: 1.4;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.08);
    animation: supportChatFade 0.25s ease;
}
.support-chat-message.is-bot {
    background: linear-gradient(145deg, rgba(0, 181, 163, 0.12), rgba(10, 46, 90, 0.05));
    color: var(--primary-color);
    align-self: flex-start;
    border: 1px solid rgba(10, 46, 90, 0.05);
}
.support-chat-message.is-user {
    background: var(--accent-color);
    color: #fff;
    align-self: flex-end;
}
.support-chat-message.is-bot + .support-chat-message.is-bot {
    margin-top: -0.15rem;
}
.support-chat-message.is-user + .support-chat-message.is-bot {
    margin-top: 0.2rem;
}

@keyframes supportChatFade {
    from {
        opacity: 0;
        transform: translateY(6px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.support-chat-message--options {
    align-self: flex-end;
    background: var(--accent-color);
    color: #fff;
    border: none;
    width: auto;
    max-width: 100%;
}
.support-chat-options-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.35rem;
    font-weight: 700;
    opacity: 0.8;
}
.support-chat-options-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}
.support-chat-option-button {
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 999px;
    padding: 0.35rem 0.9rem;
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--accent-color);
    background: #fff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.support-chat-option-button:hover,
.support-chat-option-button:focus-visible {
    background: rgba(255, 255, 255, 0.85);
    color: var(--accent-color);
    border-color: #fff;
    outline: none;
}
.support-chat-message--form {
    align-self: flex-end;
    background: var(--accent-color);
    color: #fff;
    width: 100%;
}
.support-chat-inline-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.support-chat-inline-form__prompt {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.9;
}
.support-chat-inline-form label {
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.95;
}
.support-chat-inline-form input {
    border: none;
    border-radius: 10px;
    padding: 0.65rem 0.85rem;
    font-size: 0.95rem;
    background: #fff;
    color: var(--primary-color);
}
.support-chat-inline-form button {
    align-self: flex-end;
    padding: 0.5rem 1rem;
}
.support-sales-form fieldset {
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.25rem;
}
.support-sales-form legend {
    padding: 0 0.5rem;
    font-weight: 700;
    color: var(--primary-color);
}
.support-contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}
.support-contact-fields [data-contact-field] {
    display: none;
}
.support-contact-fields [data-contact-field].is-visible {
    display: block;
}
.btn.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 1px solid var(--border-color);
    padding: 0.5rem 1.25rem;
    border-radius: 999px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}
.btn.btn-secondary:hover,
.btn.btn-secondary:focus-visible {
    background: rgba(10, 46, 90, 0.08);
    color: var(--primary-color);
    outline: none;
}
.support-sales-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.support-sales-progress {
    display: flex;
    gap: 0.75rem;
    list-style: none;
    padding: 0;
    margin: 0;
}
.support-sales-progress li {
    flex: 1;
    text-align: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.4rem 0.2rem;
    border-bottom: 2px solid var(--border-color);
    color: var(--text-light);
}
.support-sales-progress li.is-active {
    border-bottom-color: var(--accent-color);
    color: var(--primary-color);
    font-weight: 700;
}
.support-sales-progress li.is-complete {
    border-bottom-color: var(--primary-color);
    color: var(--primary-color);
}
.support-sales-steps {
    display: grid;
}
.support-sales-step {
    display: none;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 1.5rem;
    background: #fff;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.02);
}
.support-sales-step.is-active {
    display: block;
}
.support-sales-step h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
}
.support-sales-step .is-disabled {
    opacity: 0.5;
    pointer-events: none;
}
.support-sales-controls {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: flex-end;
}

.toast-stack {
    position: fixed;
    bottom: 24px;
    left: 24px;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    z-index: 9999;
    pointer-events: none;
    align-items: flex-start;
}
.toast-card {
    position: relative;
    min-width: 320px;
    max-width: 420px;
    background: radial-gradient(circle at top right, rgba(255, 255, 255, 0.98), rgba(245, 247, 250, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(10, 46, 90, 0.12);
    box-shadow: 0 30px 55px -25px rgba(7, 30, 60, 0.55);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 1.35rem 1.35rem 1.4rem;
    pointer-events: auto;
    animation: toastSlideIn 0.35s ease;
    overflow: hidden;
    backdrop-filter: blur(6px);
}
.toast-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 181, 163, 0.95), rgba(10, 46, 90, 0.95));
}
.toast-card::after {
    content: '';
    position: absolute;
    inset: 1px;
    border-radius: 19px;
    background: rgba(255, 255, 255, 0.45);
    z-index: 0;
    pointer-events: none;
}
.toast-card.is-dismissed {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}
.toast-card > * {
    position: relative;
    z-index: 1;
}
.toast-body {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.85rem;
    align-items: flex-start;
    width: 100%;
}

.toast-icon {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    background: rgba(0, 181, 163, 0.15);
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(0, 181, 163, 0.35);
}
.toast-content {
    flex: 1;
}
.toast-content strong {
    display: block;
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--primary-color);
    letter-spacing: 0.01em;
}
.toast-content p {
    margin: 0;
    font-size: 0.92rem;
    color: rgba(10, 46, 90, 0.75);
    line-height: 1.45;
}
.toast-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.25rem;
    justify-content: flex-end;
}
.toast-inline-form {
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
    margin-top: 0.35rem;
}
.toast-inline-form__field {
    display: flex;
    flex-direction: column;
    font-size: 0.82rem;
    color: var(--primary-color);
}
.toast-inline-form__field span {
    font-weight: 600;
    margin-bottom: 0.2rem;
}
.toast-inline-form__field input,
.toast-inline-form__field textarea {
    border: 1px solid rgba(10, 46, 90, 0.15);
    border-radius: 10px;
    padding: 0.45rem 0.65rem;
    font-size: 0.9rem;
    color: var(--primary-color);
    background: rgba(255, 255, 255, 0.95);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.toast-inline-form__field textarea {
    resize: vertical;
    min-height: 60px;
}
.toast-inline-form__field input:focus,
.toast-inline-form__field textarea:focus {
    outline: 2px solid rgba(0, 181, 163, 0.35);
    border-color: rgba(0, 181, 163, 0.35);
    box-shadow: 0 0 0 2px rgba(0, 181, 163, 0.1);
}
.toast-action-btn {
    border: none;
    border-radius: 999px;
    padding: 0.4rem 1.1rem;
    font-size: 0.86rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: #fff;
    box-shadow: 0 15px 30px -15px rgba(10, 46, 90, 0.75);
}
.toast-action-btn.is-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border: 1px solid rgba(10, 46, 90, 0.12);
    box-shadow: inset 0 0 0 1px rgba(10, 46, 90, 0.08);
}
.toast-action-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 36px -18px rgba(10, 46, 90, 0.65);
}
.toast-action-btn:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}
.toast-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    border: none;
    background: transparent;
    color: var(--text-light);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.25rem;
}
.toast-card[data-variant="success"] .toast-icon {
    background: rgba(0, 181, 163, 0.15);
    color: var(--accent-color);
    box-shadow: inset 0 0 0 1px rgba(0, 181, 163, 0.35);
}
.toast-card[data-variant="info"] .toast-icon {
    background: rgba(10, 46, 90, 0.12);
    color: var(--primary-color);
    box-shadow: inset 0 0 0 1px rgba(10, 46, 90, 0.25);
}
.toast-card[data-variant="error"] .toast-icon {
    background: rgba(210, 76, 97, 0.15);
    color: #d24c61;
    box-shadow: inset 0 0 0 1px rgba(210, 76, 97, 0.35);
}

@keyframes toastSlideIn {
    from {
        opacity: 0;
        transform: translateY(10px) scale(0.98);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (max-width: 640px) {
    .support-modal__content {
        width: 94vw;
        right: 3vw;
        bottom: 90px;
        max-height: 85vh;
        border-radius: 18px;
    }

    .support-modal__body,
    .support-modal__header {
        padding: 1.75rem;
    }

    .support-existing-actions {
        flex-direction: column;
    }

    .support-fab {
        bottom: 18px;
        right: 18px;
    }
}

@media (max-width: 640px) {
    .side-panel__content {
        max-width: 100%;
    }

    .side-panel__header,
    .side-panel__form {
        padding: 2rem 1.5rem;
    }

    .side-panel__header h2 {
        font-size: 1.75rem;
    }

    .side-panel__logo img {
        max-height: 50px;
    }

    .side-panel__logo--platform {
        gap: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .side-panel__logo--platform img {
        max-height: 60px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/* Blur Feature - Temporary Content Blurring */
.blur-content {
    filter: blur(8px);
    user-select: none;
    pointer-events: none;
    position: relative;
    transition: filter 0.3s ease;
}

.blur-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

/* Ensure blurred content doesn't interfere with layout */
.blur-content * {
    opacity: 0.3;
}

/* Privacy Policy & User Agreement Modal */
.policy-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.policy-modal[aria-hidden="false"] {
    opacity: 1;
    visibility: visible;
}

.policy-modal__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
}

.policy-modal__content {
    position: relative;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    z-index: 1;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}

.policy-modal[aria-hidden="false"] .policy-modal__content {
    transform: scale(1);
}

.policy-modal__close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #444;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 10;
}

.policy-modal__close:hover {
    background: rgba(0, 0, 0, 0.1);
    color: #000;
}

.policy-modal__close:focus {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

.policy-modal__header {
    padding: 2rem 2rem 1rem;
    border-bottom: 1px solid var(--border-color);
    flex-shrink: 0;
}

.policy-modal__header h2 {
    font-family: 'Questrial', sans-serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-weight: 600;
}

.policy-modal__last-updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

.policy-modal__body {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    color: var(--text-color);
    line-height: 1.7;
}

.policy-modal__body h1,
.policy-modal__body h2,
.policy-modal__body h3,
.policy-modal__body h4 {
    font-family: 'Questrial', sans-serif;
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.policy-modal__body h1 {
    font-size: 1.75rem;
    border-bottom: 2px solid var(--accent-color);
    padding-bottom: 0.5rem;
}

.policy-modal__body h2 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
}

.policy-modal__body h3 {
    font-size: 1.25rem;
    margin-top: 1.5rem;
}

.policy-modal__body h4 {
    font-size: 1.1rem;
    margin-top: 1.25rem;
}

.policy-modal__body p {
    margin-bottom: 1rem;
    color: var(--text-color);
}

.policy-modal__body ul,
.policy-modal__body ol {
    margin: 1rem 0 1rem 2rem;
    padding-left: 1rem;
}

.policy-modal__body li {
    margin-bottom: 0.5rem;
}

.policy-modal__body strong {
    color: var(--primary-color);
    font-weight: 600;
}

.policy-modal__body a {
    color: var(--accent-color);
    text-decoration: underline;
    transition: color 0.2s ease;
}

.policy-modal__body a:hover {
    color: var(--primary-color);
}

.policy-modal__body code {
    background: rgba(0, 0, 0, 0.05);
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.9em;
}

.policy-modal__body hr {
    border: none;
    border-top: 1px solid var(--border-color);
    margin: 2rem 0;
}

.policy-modal__body blockquote {
    border-left: 4px solid var(--accent-color);
    padding-left: 1rem;
    margin: 1rem 0;
    color: var(--text-light);
    font-style: italic;
}

.policy-modal__loading {
    text-align: center;
    padding: 3rem;
    color: var(--text-light);
}

.policy-modal__error {
    text-align: center;
    padding: 3rem;
    color: #dc2626;
}

@media (max-width: 768px) {
    .policy-modal__content {
        width: 95%;
        max-height: 95vh;
    }

    .policy-modal__header {
        padding: 1.5rem 1.5rem 1rem;
    }

    .policy-modal__header h2 {
        font-size: 1.5rem;
    }

    .policy-modal__body {
        padding: 1.5rem;
    }

    .policy-modal__close {
        top: 0.75rem;
        right: 0.75rem;
        width: 2rem;
        height: 2rem;
        font-size: 1.25rem;
    }
}

