/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color palette from re-source.my.site.com */
    --black-primary: #111214;
    --light-grey: #c3c3c3;
    --white: white;
    --black-secondary: #18191c;
    --grey: #393a3d;
    --primary-color: rgb(170, 236, 253);
    --secondary-color: rgb(0, 138, 188);
    --white-smoke: #e9e9e9;
    --transparent: rgba(255, 255, 255, 0);
    --aquamarine: #99E1F2;
    
    /* Additional blue tones from site */
    --blue-light: #1b96ff;
    --blue-dark: #0d2236;
    --blue-medium: #1b3246;
    --cyan-glow: rgba(0, 193, 255, 0.5);
    
    /* Legacy variables for compatibility */
    --turquoise: var(--secondary-color);
    --orchid: var(--primary-color);
    --primary-dark: #014486;
    --text-primary: var(--white);
    --text-secondary: var(--light-grey);
    --bg-light: var(--black-secondary);
    --bg-white: var(--black-primary);
    --border-color: var(--grey);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.6);
}

body {
    font-family: Ubuntu, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--black-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-image: radial-gradient(circle farthest-corner at 50% 50%, rgba(0, 193, 255, 0.05), var(--black-primary));
}

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

/* Header (Sticky) */
.header {
    position: sticky;
    top: 0;
    background: rgba(17, 18, 20, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 16px 0;
    box-shadow: var(--shadow-sm);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 48px;
    width: auto;
    display: block;
}

.btn {
    background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border-radius: 25px;
    padding: .25rem;
    transition: color .2s;
    display: inline-block;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    position: relative;
    height: 48px;
    line-height: 48px;
    box-sizing: border-box;
    color: #ffffff;
}
/* 
.btn-primary {
    background-image: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border: none;
    box-shadow: 0 4px 15px rgba(0, 193, 255, 0.2);
    position: relative;
    z-index: 1;
} */
/* 
.btn-primary::before {
    content: '';
    position: absolute;
    top: .25rem;
    left: .25rem;
    right: .25rem;
    bottom: .25rem;
    background: var(--black-secondary);
    border-radius: 23px;
    z-index: 0;
} */

.btn-primary * {
    position: relative;
    z-index: 1;
}

.btn-primary:hover {
color: var(--light-grey);
}

.btn-header {
    font-size: 14px;
    height: 48px;
    position: relative;
    color: #ffffff !important;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0px 26px;
    box-sizing: border-box;
    z-index: 2;
    text-shadow: none;
}

.btn-header::before {
    content: '';
    position: absolute;
    top: .25rem;
    left: .25rem;
    right: .25rem;
    bottom: .25rem;
    background: var(--black-secondary);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
}

.btn-header:hover {
    color: var(--light-grey) !important;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: radial-gradient(circle farthest-corner at 50% 50%, rgba(0, 193, 255, 0.1), var(--black-primary));
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 193, 255, 0.15), var(--transparent));
    border-radius: 50%;
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 24px;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.6;
    color: var(--light-grey);
    margin-bottom: 32px;
}

.hero-cta {
    margin-bottom: 32px;
}

.email-input-wrapper {
    display: flex;
    gap: 12px;
    max-width: 600px;
}

.email-input {
    flex: 1;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--black-secondary);
    color: var(--white);
    height: 48px;
    box-sizing: border-box;
}

.email-input::placeholder {
    color: var(--light-grey);
}

.email-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 193, 255, 0.1);
}

.btn-hero {
    padding: 14px 32px;
    white-space: nowrap;
    height: 48px;
    line-height: 12px;
    position: relative;
    color: #ffffff !important;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
    text-shadow: none;
}

.btn-hero::before {
    content: '';
    position: absolute;
    top: .25rem;
    left: .25rem;
    right: .25rem;
    bottom: .25rem;
    background: var(--black-secondary);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
}

.btn-hero:hover {
    color: var(--light-grey) !important;
}

.trust-signals {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.trust-badge {
    font-size: 14px;
    color: var(--light-grey);
    font-weight: 500;
}

.hero-image {
    position: relative;
}

.product-screenshot {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.screenshot-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Trust Bar */
.trust-bar {
    padding: 40px 0;
    background: var(--black-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
}

.trust-logo {
    opacity: 0.6;
    filter: grayscale(100%);
    transition: opacity 0.2s;
}

.trust-logo:hover {
    opacity: 1;
}

.trust-logo img {
    height: 40px;
    width: auto;
}

.trust-logo.appexchange {
    font-size: 18px;
    font-weight: 600;
    color: var(--light-grey);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Metrics Section */
.metrics {
    padding: 80px 0;
    background: var(--black-primary);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.metric-card {
    text-align: center;
    padding: 40px 24px;
    border-radius: 12px;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    transition: transform 0.2s, border-color 0.2s;
}

.metric-card:hover {
    transform: translateY(-4px);
    border-color: var(--secondary-color);
}

.metric-card.highlight {
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    border: none;
    color: white;
}

.metric-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.metric-value {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 12px;
    line-height: 1;
}

.metric-label {
    font-size: 16px;
    line-height: 1.5;
    color: var(--light-grey);
}

.metric-card.highlight .metric-label {
    color: rgba(255, 255, 255, 0.9);
}

/* Product UI Section */
.product-ui {
    padding: 80px 0;
    background: var(--black-secondary);
}

.product-screenshot-large {
    max-width: 1000px;
    margin: 0 auto;
}

.browser-frame {
    background: var(--black-secondary);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.browser-bar {
    background: var(--black-primary);
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-color);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
}

.browser-dots span:nth-child(1) {
    background: #EF4444;
}

.browser-dots span:nth-child(2) {
    background: #F59E0B;
}

.browser-dots span:nth-child(3) {
    background: #10B981;
}

.screenshot-content {
    width: 100%;
    height: auto;
    display: block;
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--black-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.feature-card {
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    background: var(--black-secondary);
    transition: all 0.3s;
}

.feature-card:hover {
    border-color: var(--secondary-color);
    box-shadow: 0 8px 20px rgba(0, 193, 255, 0.2);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.feature-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.feature-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-grey);
}

/* Features Carousel Section */
.features-carousel-section {
    padding: 40px 0 60px;
    overflow: hidden;
    margin-bottom: 0;
}

.features-carousel-wrapper {
    position: relative;
    width: 100%;
    max-width: 100%;
}

.features-carousel {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.carousel-slide {
    min-width: 100%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-content {
    width: 100%;
    max-width: 800px;
    padding: 0 24px;
    text-align: center;
}

.carousel-feature-title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--white);
}

.carousel-feature-gif {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    background: var(--black-primary);
}

.carousel-feature-gif img {
    width: auto;
    height: 450px;
    display: block;
    margin: 0 auto;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 24px;
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(17, 18, 20, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border-color);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    pointer-events: all;
    z-index: 11;
}

.carousel-btn:hover {
    background: rgba(0, 193, 255, 0.2);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

.carousel-btn:active {
    transform: scale(0.95);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 0 24px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: var(--grey);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carousel-dot:hover {
    background: var(--light-grey);
    transform: scale(1.2);
}

.carousel-dot.active {
    background: var(--secondary-color);
    width: 32px;
    border-radius: 6px;
}

/* Differentiation Section */
.differentiation {
    padding: 80px 0;
    background: var(--black-secondary);
}

.differentiation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.diff-card {
    padding: 32px;
    background: var(--black-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s, border-color 0.3s;
}

.diff-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(0, 193, 255, 0.2);
}

.diff-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.diff-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--white);
}

.diff-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-grey);
}

/* Demo Value Section */
.demo-value {
    padding: 80px 0;
    background: linear-gradient(to bottom, rgba(1, 118, 211, 0.1), rgba(0, 193, 255, 0.1));
    position: relative;
}

.demo-benefits {
    max-width: 800px;
    margin: 0 auto;
}

.demo-benefit {
    display: flex;
    gap: 24px;
    padding: 32px;
    background: var(--black-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
    align-items: flex-start;
    transition: border-color 0.3s;
}

.demo-benefit:hover {
    border-color: var(--secondary-color);
}

.benefit-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.benefit-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--white);
}

.benefit-description {
    font-size: 16px;
    line-height: 1.6;
    color: var(--light-grey);
}

/* Conversion Form Section */
.conversion-form {
    padding: 80px 0;
    background: var(--black-primary);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: var(--black-secondary);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 16px;
    color: var(--white);
}

.form-subtitle {
    font-size: 18px;
    text-align: center;
    color: var(--light-grey);
    margin-bottom: 40px;
}

.demo-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.required-asterisk {
    color: #EF4444;
}

.form-input {
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
    background: var(--black-primary);
    color: var(--white);
    height: 48px;
    box-sizing: border-box;
}

/* Select specific styles */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
}

select.form-input option {
    background: var(--black-primary);
    color: var(--white);
    padding: 12px;
}

.form-input::placeholder {
    color: var(--light-grey);
}

.form-input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 193, 255, 0.1);
}

/* Removed automatic invalid styling - validation handled in JS on blur */

.btn-form {
    padding: 16px 32px;
    font-size: 18px;
    margin-top: 8px;
    width: 100%;
    height: 48px;
    line-height: 8px;
    position: relative;
    color: #ffffff !important;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
    text-shadow: none;
}

.btn-form::before {
    content: '';
    position: absolute;
    top: .25rem;
    left: .25rem;
    right: .25rem;
    bottom: .25rem;
    background: var(--black-secondary);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
}

.btn-form:hover {
    color: var(--light-grey) !important;
}

/* Sticky Mobile CTA */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(17, 18, 20, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--border-color);
    padding: 12px 16px;
    z-index: 999;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.3);
}

.btn-sticky {
    width: 100%;
    padding: 14px;
    font-size: 16px;
    height: 48px;
    line-height: 12px;
    position: relative;
    color: #ffffff !important;
    overflow: visible;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    z-index: 2;
    text-shadow: none;
}

.btn-sticky::before {
    content: '';
    position: absolute;
    top: .25rem;
    left: .25rem;
    right: .25rem;
    bottom: .25rem;
    background: var(--black-secondary);
    border-radius: 23px;
    z-index: -1;
    pointer-events: none;
}

.btn-sticky:hover {
    color: var(--light-grey) !important;
}

/* Footer */
.footer {
    padding: 40px 0;
    background: var(--black-secondary);
    text-align: center;
    color: var(--light-grey);
    font-size: 14px;
    border-top: 1px solid var(--border-color);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }

    .header {
        padding: 12px 0;
    }

    .btn-header {
        padding: 0px 26px;
        font-size: 13px;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-title {
        font-size: 32px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 18px;
        margin-bottom: 24px;
    }

    .email-input-wrapper {
        flex-direction: column;
        max-width: 100%;
    }

    .email-input,
    .btn-hero {
        width: 100%;
        padding: 14px 16px;
    }

    .btn-hero {
        height: 48px;
    }

    .trust-signals {
        flex-direction: column;
        gap: 12px;
    }

    .trust-bar {
        padding: 32px 0;
    }

    .trust-logos {
        gap: 32px;
    }

    .metrics {
        padding: 60px 0;
    }

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .metric-card {
        padding: 32px 20px;
    }

    .metric-value {
        font-size: 36px;
    }

    .product-ui {
        padding: 60px 0;
    }

    .features {
        padding: 60px 0;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .feature-card {
        padding: 24px;
    }

    .features-carousel-section {
        padding: 32px 0 40px;
    }

    .carousel-content {
        max-width: 100%;
        padding: 0 16px;
    }

    .carousel-feature-title {
        font-size: 22px;
        margin-bottom: 24px;
        line-height: 1.3;
    }

    .carousel-feature-gif {
        max-width: 100%;
        border-radius: 8px;
    }

    .carousel-feature-gif img {
        height: 350px;
    }

    .carousel-nav {
        padding: 0 8px;
    }

    .carousel-btn {
        width: 36px;
        height: 36px;
    }

    .carousel-btn svg {
        width: 18px;
        height: 18px;
    }

    .carousel-dots {
        margin-top: 24px;
        padding: 0 16px;
        gap: 8px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .differentiation {
        padding: 60px 0;
    }

    .differentiation-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .demo-value {
        padding: 60px 0;
    }

    .demo-benefit {
        padding: 24px;
        flex-direction: column;
        gap: 16px;
    }

    .conversion-form {
        padding: 60px 0;
    }

    .form-wrapper {
        padding: 32px 20px;
        margin: 0 16px;
    }

    .form-title {
        font-size: 28px;
    }

    .form-subtitle {
        font-size: 16px;
    }

    .form-input,
    .btn-form {
        height: 48px;
        font-size: 16px;
    }

    /* Mobile select fixes */
    select.form-input {
        padding: 12px 40px 12px 16px;
        line-height: 1.5;
        background-position: right 12px center;
        background-size: 16px;
        display: block;
        text-align: left;
    }

    select.form-input option {
        padding: 12px 16px;
        line-height: 1.5;
    }

    .sticky-cta {
        display: block;
    }

    /* Ensure form is accessible when keyboard opens */
    .conversion-form {
        padding-bottom: 100px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 24px;
    }

    .form-title {
        font-size: 24px;
    }

    .features-carousel-section {
        padding: 24px 0 32px;
    }

    .carousel-feature-title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .carousel-content {
        padding: 0 12px;
    }

    .carousel-nav {
        padding: 0 4px;
    }

    .carousel-btn {
        width: 32px;
        height: 32px;
    }

    .carousel-btn svg {
        width: 16px;
        height: 16px;
    }

    .carousel-dots {
        margin-top: 20px;
        padding: 0 12px;
    }

    .carousel-feature-gif img {
        height: 280px;
    }
}

/* Performance Optimizations */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus styles for accessibility */
button:focus-visible,
input:focus-visible,
select:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}
