/* ======================================
   Red Wing IT AI Automation Services
   Custom Styles (Bootstrap 5.2.3 not included)
   ====================================== */

/* ======================================
   COLOR VARIABLES & DESIGN SYSTEM
   ====================================== */
:root {
    --ai-primary: #00d4ff;
    --ai-secondary: #ff006e;
    --ai-dark: #0a0e27;
    --ai-darker: #050812;
    --ai-card-bg: #0f1429;
    --ai-text: #e0e0e0;
    --ai-text-muted: #b0b0b0;
    --ai-border: rgba(255, 255, 255, 0.1);
    --ai-border-accent: rgba(0, 212, 255, 0.2);
    --font-primary: 'IBM Plex Sans', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
}

/* ======================================
   GLOBAL RESET & BASE STYLES
   ====================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    height: 100%;
    width: 100%;
    scroll-behavior: smooth;
}

/* ======================================
   BODY & PAGE CONTAINER
   ====================================== */
body,
.ai-body {
    background-color: var(--ai-darker);
    color: var(--ai-text);
    font-family: var(--font-primary), -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: 0.3px;
    overflow-x: hidden;
}

body {
    background: linear-gradient(135deg, var(--ai-darker) 0%, #0d1028 100%);
    min-height: 100vh;
}

/* ======================================
   TYPOGRAPHY - HEADINGS
   ====================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display), 'Space Grotesk', sans-serif;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    letter-spacing: -1px;
}

h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
}

h3 {
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 700;
}

h4 {
    font-size: 1.5rem;
    font-weight: 600;
}

h5 {
    font-size: 1.25rem;
    font-weight: 600;
}

h6 {
    font-size: 1rem;
    font-weight: 600;
}

p {
    margin-bottom: 1.5rem;
}

/* ======================================
   NAVBAR STYLES
   ====================================== */
.ai-nav {
    background-color: rgba(10, 14, 39, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--ai-border);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ai-brand {
    font-family: var(--font-display), sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 1px;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.ai-brand:hover {
    color: var(--ai-primary);
    transition: color 0.3s ease;
}

/* ======================================
   HERO SECTION STYLES
   ====================================== */
.ai-hero {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050812 0%, #0a0e27 50%, #0d1028 100%);
    padding: 100px 0;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ai-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.ai-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 80% 50%, rgba(255, 0, 110, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating orbs */
.ai-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 8s ease-in-out infinite;
}

.ai-orb-one {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.6) 0%, rgba(0, 212, 255, 0) 70%);
    top: -100px;
    left: -100px;
    animation-duration: 12s;
}

.ai-orb-two {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 0, 110, 0.6) 0%, rgba(255, 0, 110, 0) 70%);
    bottom: -150px;
    right: -150px;
    animation-duration: 15s;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0);
    }
    25% {
        transform: translate(30px, -30px);
    }
    50% {
        transform: translate(-20px, 20px);
    }
    75% {
        transform: translate(20px, 30px);
    }
}

/* Hero content */
.ai-kicker {
    display: inline-block;
    font-family: var(--font-display), sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--ai-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--ai-border-accent);
    border-radius: 50px;
}

.ai-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 800;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.ai-lead {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--ai-text-muted);
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* ======================================
   SECTION STYLES
   ====================================== */
.ai-section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.ai-section-description {
    font-size: 1.125rem;
    color: var(--ai-text-muted);
    text-align: center;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.ai-band {
    background-color: rgba(15, 20, 41, 0.5);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.ai-band:nth-child(even) {
    background-color: rgba(10, 14, 39, 0.3);
}

/* ======================================
   SERVICE PAGE STYLES
   ====================================== */
.ai-service-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ai-primary);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Use Cases */
.ai-use-cases {
    margin: 2rem 0;
}

.ai-use-cases-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.ai-use-cases-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-use-cases-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--ai-text);
    line-height: 1.5;
}

.ai-use-case-check {
    color: var(--ai-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Deliverables */
.ai-deliverables {
    margin: 2rem 0;
}

.ai-deliverables-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1.25rem;
}

.ai-deliverables-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-deliverables-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--ai-text);
    line-height: 1.5;
}

.ai-deliverable-check {
    color: var(--ai-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Technology Cards */
.ai-tech-card {
    background-color: var(--ai-card-bg);
    border: 1px solid var(--ai-border);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.ai-tech-card:hover {
    border-color: var(--ai-border-accent);
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.1);
}

.ai-tech-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ai-primary);
}

.ai-tech-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.ai-tech-description {
    font-size: 0.95rem;
    color: var(--ai-text-muted);
    line-height: 1.6;
    margin-bottom: auto;
}

.ai-tech-note {
    font-size: 0.85rem;
    color: var(--ai-text-muted);
    font-style: italic;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--ai-border);
}

/* ======================================
   PRICING PAGE STYLES
   ====================================== */
.ai-pricing-card {
    background-color: var(--ai-card-bg);
    border: 1px solid var(--ai-border);
    border-radius: 12px;
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.ai-pricing-card:hover {
    border-color: var(--ai-border-accent);
    transform: translateY(-4px);
}

.ai-pricing-card-featured {
    border: 2px solid var(--ai-primary);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2), inset 0 0 20px rgba(0, 212, 255, 0.05);
    transform: scale(1.02);
}

.ai-pricing-card-featured:hover {
    transform: scale(1.02) translateY(-6px);
}

.ai-featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--ai-primary) 0%, #00a8cc 100%);
    color: var(--ai-darker);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

.ai-pricing-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--ai-border);
}

.ai-plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.ai-pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.ai-currency {
    font-size: 1.25rem;
    color: var(--ai-primary);
    font-weight: 600;
}

.ai-price {
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
}

.ai-price-custom {
    font-size: 1.25rem;
    color: var(--ai-text-muted);
    font-style: italic;
}

.ai-billing {
    font-size: 0.95rem;
    color: var(--ai-text-muted);
}

.ai-pricing-subtitle {
    font-size: 0.95rem;
    color: var(--ai-text-muted);
    margin-top: 1rem;
    font-style: italic;
}

.ai-pricing-features {
    flex-grow: 1;
    margin: 1.5rem 0;
}

.ai-features-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 1.5rem 0 1rem 0;
}

.ai-features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.ai-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--ai-text);
    line-height: 1.5;
}

.ai-features-list li::before {
    content: '✓';
    color: var(--ai-primary);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-features-list-excluded {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.ai-features-list-excluded li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: var(--ai-text-muted);
    line-height: 1.5;
}

.ai-features-list-excluded li::before {
    content: '−';
    color: var(--ai-text-muted);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.ai-optional-addon {
    background-color: rgba(0, 212, 255, 0.08);
    border: 1px solid var(--ai-border-accent);
    border-radius: 8px;
    padding: 1.25rem;
    margin: 1.5rem 0;
}

.ai-optional-addon h5 {
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.ai-optional-addon p {
    font-size: 0.85rem;
    color: var(--ai-text-muted);
    margin-bottom: 0.75rem;
}

.ai-addon-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--ai-primary);
}

.ai-pricing-cta {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--ai-border);
}

/* Feature Grid Tiles */
.ai-feature-tile {
    background-color: var(--ai-card-bg);
    border: 1px solid var(--ai-border);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.ai-feature-tile:hover {
    border-color: var(--ai-border-accent);
    transform: translateY(-4px);
}

.ai-feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--ai-primary);
}

.ai-feature-tile h5 {
    font-size: 1rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.ai-feature-tile p {
    font-size: 0.9rem;
    color: var(--ai-text-muted);
    margin-bottom: 0;
}

/* Accordion */
.ai-accordion {
    background-color: transparent;
    border: none;
}

.ai-accordion-item {
    background-color: var(--ai-card-bg);
    border: 1px solid var(--ai-border);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.ai-accordion-item:last-child {
    border-bottom: 1px solid var(--ai-border);
}

.ai-accordion-button {
    background-color: var(--ai-card-bg);
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-align: left;
}

.ai-accordion-button:hover {
    background-color: rgba(0, 212, 255, 0.08);
    color: var(--ai-primary);
}

.ai-accordion-button::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--ai-primary);
    transition: transform 0.3s ease;
    margin-left: auto;
}

.ai-accordion-button.collapsed::after {
    transform: rotate(0deg);
}

.ai-accordion-button:not(.collapsed)::after {
    content: '−';
}

.ai-accordion-body {
    background-color: rgba(0, 212, 255, 0.03);
    color: var(--ai-text);
    padding: 1.5rem;
    border-top: 1px solid var(--ai-border);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* ======================================
   BUTTON STYLES
   ====================================== */
.ai-btn-primary {
    background: linear-gradient(135deg, var(--ai-primary) 0%, #00a8cc 100%);
    color: var(--ai-darker);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 212, 255, 0.2);
}

.ai-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 212, 255, 0.3);
    color: var(--ai-darker);
    text-decoration: none;
}

.ai-btn-primary:active {
    transform: translateY(0);
}

.ai-btn-secondary {
    background-color: transparent;
    color: var(--ai-primary);
    border: 2px solid var(--ai-primary);
    padding: 0.65rem 1.75rem;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    letter-spacing: 0.5px;
}

.ai-btn-secondary:hover {
    background-color: rgba(0, 212, 255, 0.1);
    color: var(--ai-primary);
    text-decoration: none;
    transform: translateY(-2px);
}

.ai-btn-secondary:active {
    transform: translateY(0);
}

/* ======================================
   CTA SECTION STYLES
   ====================================== */
.ai-cta {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 0, 110, 0.05) 100%);
    border: 1px solid var(--ai-border-accent);
    border-radius: 12px;
    padding: 3rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.ai-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(0, 212, 255, 0.1),
        transparent
    );
    animation: shimmer 3s infinite;
    pointer-events: none;
}

@keyframes shimmer {
    0% {
        left: -50%;
    }
    100% {
        left: 150%;
    }
}

.ai-cta h2 {
    margin-bottom: 1rem;
}

.ai-cta p {
    font-size: 1.1rem;
    color: var(--ai-text-muted);
    margin-bottom: 2rem;
}

/* ======================================
   FOOTER STYLES
   ====================================== */
.ai-footer {
    background-color: var(--ai-darker);
    border-top: 1px solid var(--ai-border);
    padding: 3rem 0 1rem 0;
    margin-top: 4rem;
    color: var(--ai-text-muted);
    font-size: 0.9rem;
}

.ai-footer a {
    color: var(--ai-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.ai-footer a:hover {
    color: #ffffff;
}

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

.ai-footer ul li {
    margin-bottom: 0.75rem;
}

/* ======================================
   FORM STYLES
   ====================================== */
.ai-form-shell {
    background-color: var(--ai-card-bg);
    border: 1px solid var(--ai-border);
    border-radius: 12px;
    padding: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.ai-form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ai-border);
    color: var(--ai-text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: var(--font-primary), sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    width: 100%;
}

.ai-form-control::placeholder {
    color: var(--ai-text-muted);
}

.ai-form-control:focus {
    background-color: rgba(0, 212, 255, 0.08);
    border-color: var(--ai-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
    color: var(--ai-text);
}

.ai-form-select {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--ai-border);
    color: var(--ai-text);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-family: var(--font-primary), sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    appearance: none;
}

.ai-form-select:focus {
    background-color: rgba(0, 212, 255, 0.08);
    border-color: var(--ai-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.ai-form-select option {
    background-color: var(--ai-card-bg);
    color: var(--ai-text);
}

.ai-form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: none;
    font-size: 0.95rem;
}

.ai-form-status.is-success {
    display: block;
    background-color: rgba(0, 212, 255, 0.1);
    color: var(--ai-primary);
    border: 1px solid var(--ai-border-accent);
}

.ai-form-status.is-error {
    display: block;
    background-color: rgba(255, 0, 110, 0.1);
    color: var(--ai-secondary);
    border: 1px solid rgba(255, 0, 110, 0.2);
}

.ai-form-status.is-info {
    display: block;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--ai-text);
    border: 1px solid var(--ai-border);
}

/* ======================================
   ANIMATIONS & REVEAL EFFECTS
   ====================================== */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

/* ======================================
   RESPONSIVE DESIGN
   ====================================== */

/* Tablets and small screens */
@media (max-width: 768px) {
    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .ai-hero {
        padding: 60px 0;
        min-height: 400px;
    }

    .ai-title {
        font-size: 2rem;
    }

    .ai-lead {
        font-size: 1rem;
    }

    .ai-band {
        padding: 50px 0;
    }

    .ai-pricing-card-featured {
        transform: scale(1);
    }

    .ai-pricing-card-featured:hover {
        transform: translateY(-4px);
    }

    .ai-section-description {
        font-size: 1rem;
    }

    .ai-cta {
        padding: 2rem 1.5rem;
    }

    .ai-form-shell {
        padding: 1.5rem;
    }
}

/* Mobile devices */
@media (max-width: 576px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.125rem;
    }

    .ai-hero {
        padding: 40px 0;
        min-height: 300px;
    }

    .ai-orb {
        filter: blur(40px);
    }

    .ai-orb-one {
        width: 150px;
        height: 150px;
    }

    .ai-orb-two {
        width: 200px;
        height: 200px;
    }

    .ai-title {
        font-size: 1.5rem;
        max-width: 100%;
    }

    .ai-lead {
        font-size: 0.95rem;
        max-width: 100%;
    }

    .ai-band {
        padding: 30px 0;
    }

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

    .ai-section-description {
        font-size: 0.95rem;
    }

    .ai-pricing-card {
        padding: 1.5rem 1rem;
    }

    .ai-btn-primary,
    .ai-btn-secondary {
        width: 100%;
    }

    .ai-cta {
        padding: 1.5rem 1rem;
    }

    .ai-form-shell {
        padding: 1.25rem;
    }

    .ai-tech-card {
        padding: 1.5rem;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    .ai-title {
        font-size: 1.25rem;
    }

    .ai-lead {
        font-size: 0.875rem;
    }

    .ai-section-title {
        font-size: 1.25rem;
    }

    .ai-pricing-card {
        padding: 1rem;
    }

    .ai-form-shell {
        padding: 1rem;
    }
}

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

/* High contrast mode support */
@media (prefers-contrast: more) {
    .ai-border {
        border-color: rgba(255, 255, 255, 0.3);
    }

    .ai-form-control,
    .ai-form-select {
        border-width: 2px;
    }
}

/* ======================================
   UTILITY CLASSES
   ====================================== */
.text-primary {
    color: var(--ai-primary);
}

.text-secondary {
    color: var(--ai-secondary);
}

.text-muted {
    color: var(--ai-text-muted);
}

.bg-dark {
    background-color: var(--ai-darker);
}

.bg-card {
    background-color: var(--ai-card-bg);
}

.border-accent {
    border-color: var(--ai-border-accent);
}

.gap-1 {
    gap: 0.5rem;
}

.gap-2 {
    gap: 1rem;
}

.gap-3 {
    gap: 1.5rem;
}

.gap-4 {
    gap: 2rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.mt-3 {
    margin-top: 1.5rem;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1rem;
}

.mb-3 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.pt-4 {
    padding-top: 2rem;
}

.pb-4 {
    padding-bottom: 2rem;
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

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

.align-items-center {
    align-items: center;
}

.justify-content-center {
    justify-content: center;
}
