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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #0a1628;
    color: #ffffff;
    line-height: 1.6;
}

/* Header */
header {
    background: rgba(10, 22, 40, 0.95);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.logo:hover {
    color: white;
    text-decoration: none;
}

.logo i {
    color: white;
}

.logo:hover i {
    color: white;
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4a9eff;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.preview-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s;
}

.preview-btn:hover {
    background: rgba(255, 255, 255, 0.15);
}

.icon-buttons {
    display: flex;
    gap: 0.5rem;
}

.icon-btn {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    cursor: pointer;
    transition: all 0.3s;
}

.icon-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #4a9eff;
}

/* Hero Slider */
.hero-slider {
    margin-top: 70px;
    height: 500px;
    position: relative;
    overflow: hidden;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    max-width: 900px;
    padding: 2rem;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #4a9eff 0%, #64b5f6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.1rem;
    color: #cbd5e1;
    line-height: 1.8;
}

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: #4a9eff;
    width: 30px;
    border-radius: 5px;
}

/* Main Nav Tabs */
.main-tabs {
    background: #1a2942;
    padding: 2rem 0;
    margin-top: -1px;
}

.tabs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.tab-item {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.2);
    padding: 1.5rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    color: inherit;
    text-decoration: none;
    display: block;
}

.tab-item:hover {
    background: rgba(74, 158, 255, 0.15);
    transform: translateY(-3px);
}

.tab-item i {
    font-size: 2rem;
    color: #4a9eff;
    margin-bottom: 0.5rem;
}

.tab-item span {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
}

/* Section */
.section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.card {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    border-color: rgba(74, 158, 255, 0.4);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: rgba(74, 158, 255, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.card-icon i {
    font-size: 1.8rem;
    color: #4a9eff;
}

.card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #ffffff;
}

.card p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.card-link {
    color: #4a9eff;
    text-decoration: none;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.card-link:hover {
    gap: 0.5rem;
}

/* News Cards */
.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
}

.news-card {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.news-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 158, 255, 0.15);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.news-icon i {
    color: #4a9eff;
    font-size: 1.3rem;
}

.news-content {
    flex: 1;
}

.news-date {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.3rem;
}

.news-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.news-text {
    font-size: 0.9rem;
    color: #94a3b8;
}

.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(74, 158, 255, 0.2);
    border-radius: 4px;
    font-size: 0.75rem;
    color: #4a9eff;
    margin-left: 0.5rem;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
    border-radius: 12px;
    padding: 3rem;
    text-align: center;
    margin: 4rem 0;
}

.cta-btn {
    background: #4a9eff;
    color: white;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.cta-btn:hover {
    background: #3a8eef;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(74, 158, 255, 0.3);
}

/* Download Section */
.download-section {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.download-content h2 {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.download-content p {
    color: #94a3b8;
}

.download-btn {
    background: #fbbf24;
    color: #0a1628;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.download-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
}

/* Footer */
footer {
    background: #0f1d35;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem 0 1rem;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-column h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

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

.footer-column a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    line-height: 2;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4a9eff;
}

.app-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.app-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.8rem 1.2rem;
    border-radius: 8px;
    color: #ffffff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s;
}

.app-btn:hover {
    background: rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 2rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #64748b;
    font-size: 0.85rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #64748b;
    text-decoration: none;
}

/* Order page */
.order-hero {
    max-width: 1400px;
    margin: 120px auto 40px;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.order-hero__content h1 {
    font-size: 2.5rem;
    margin: 0.5rem 0 1rem;
}

.order-hero__content .lede {
    color: #cbd5e1;
    max-width: 720px;
}

.order-hero__meta {
    display: grid;
    gap: 1rem;
}

.meta-card {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.meta-card i {
    color: #4a9eff;
    font-size: 1.4rem;
}

.meta-title {
    font-weight: 600;
}

.meta-text {
    color: #94a3b8;
    font-size: 0.95rem;
}

.eyebrow {
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: #4a9eff;
}

.order-wrapper {
    max-width: 1000px;
    margin: 0 auto 80px;
    padding: 0 2rem;
    position: relative;
}

.order-form {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
}

.step-indicator {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(10, 22, 40, 0.5);
    border-radius: 12px;
    border: 1px solid rgba(74, 158, 255, 0.15);
}

.step-indicator-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    flex: 1;
    position: relative;
}

.step-indicator-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(74, 158, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #94a3b8;
    transition: all 0.3s;
}

.step-indicator-item.active .step-indicator-number {
    background: #4a9eff;
    border-color: #4a9eff;
    color: #ffffff;
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.4);
}

.step-indicator-item.completed .step-indicator-number {
    background: rgba(46, 204, 113, 0.2);
    border-color: #2ecc71;
    color: #2ecc71;
}

.step-indicator-label {
    font-size: 0.75rem;
    color: #94a3b8;
    text-align: center;
    font-weight: 500;
}

.step-indicator-item.active .step-indicator-label {
    color: #4a9eff;
    font-weight: 600;
}

.step-indicator-item.completed .step-indicator-label {
    color: #2ecc71;
}

.step-indicator-line {
    flex: 1;
    height: 2px;
    background: rgba(74, 158, 255, 0.2);
    margin: 0 0.5rem;
    position: relative;
    top: -20px;
}

.step-indicator-line.completed {
    background: #2ecc71;
}

.order-summary-fixed {
    background: rgba(10, 22, 40, 0.6);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    position: sticky;
    top: 90px;
    z-index: 10;
    backdrop-filter: blur(10px);
}

.summary-header h3 {
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    color: #ffffff;
}

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

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

.summary-label {
    color: #94a3b8;
}

.summary-value {
    color: #ffffff;
    font-weight: 600;
}

.summary-value.highlight {
    color: #4a9eff;
    font-size: 1.1rem;
}

.form-steps {
    display: grid;
    gap: 1.5rem;
}

.form-step {
    display: none;
    border: 1px solid rgba(74, 158, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(10, 22, 40, 0.35);
}

.form-step.active {
    display: block;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #4a9eff;
    display: grid;
    place-items: center;
    font-weight: 700;
}

.step-kicker {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.06em;
    color: #4a9eff;
    margin: 0;
}

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

.form-label {
    display: block;
    margin-bottom: 0.35rem;
    color: #cbd5e1;
    font-weight: 600;
}

.form-input,
.form-select {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 10px;
    padding: 0.9rem 1rem;
    color: #ffffff;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-input:focus,
.form-select:focus {
    outline: none;
    border-color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.15);
}

/* Validation: only show error state after user has interacted (blur) */
.form-input.touched.invalid,
.form-input.touched:invalid {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.form-input.touched.invalid:focus,
.form-input.touched:invalid:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.15);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.vignette-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.vignette-option {
    position: relative;
    border: 2px solid rgba(74, 158, 255, 0.25);
    border-radius: 16px;
    padding: 1.5rem 1.75rem;
    background: rgba(255, 255, 255, 0.03);
    cursor: pointer;
    transition: all 0.25s ease;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    color: inherit;
    text-decoration: none;
}

.vignette-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.vignette-option-icon {
    width: 72px;
    height: 72px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.15);
    border-radius: 50%;
    color: #4a9eff;
    font-size: 2.25rem;
}

.vignette-option-content {
    flex: 1;
    min-width: 0;
    text-align: left;
}

.vignette-option:hover {
    border-color: rgba(74, 158, 255, 0.5);
    background: rgba(74, 158, 255, 0.05);
    transform: translateY(-2px);
}

.vignette-option:hover .vignette-option-icon {
    background: rgba(74, 158, 255, 0.2);
}

.vignette-option-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.35rem;
    color: #4a9eff;
    opacity: 0;
    transition: opacity 0.2s;
}

.vignette-option.selected .vignette-option-check {
    opacity: 1;
}

.vignette-option.selected .vignette-option-icon {
    background: rgba(74, 158, 255, 0.35);
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.3);
}

.vignette-option.selected {
    border-color: #4a9eff;
    border-width: 3px;
    background: rgba(74, 158, 255, 0.15);
    box-shadow: 0 10px 40px rgba(74, 158, 255, 0.2), inset 0 0 0 1px rgba(74, 158, 255, 0.2);
}

.vignette-option .option-title {
    font-weight: 700;
    font-size: 1.1rem;
    margin: 0 0 0.35rem;
}

.vignette-option .option-price {
    font-size: 1.6rem;
    font-weight: 800;
    color: #4a9eff;
    margin: 0.15rem 0;
}

.vignette-option .option-validity {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 0;
}

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

.vehicle-option {
    position: relative;
    border: 2px solid rgba(74, 158, 255, 0.25);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.25rem;
    cursor: pointer;
    transition: all 0.25s ease;
}

.vehicle-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    pointer-events: none;
}

.vehicle-option-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(74, 158, 255, 0.15);
    border-radius: 50%;
    color: #4a9eff;
    font-size: 2.5rem;
}

.vehicle-option:hover {
    border-color: rgba(74, 158, 255, 0.5);
    background: rgba(74, 158, 255, 0.05);
}

.vehicle-option.selected .vehicle-option-icon {
    background: rgba(74, 158, 255, 0.35);
    color: #4a9eff;
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.3);
}

.vehicle-option.selected {
    border-color: #4a9eff;
    border-width: 3px;
    background: rgba(74, 158, 255, 0.15);
    box-shadow: 0 10px 40px rgba(74, 158, 255, 0.2), inset 0 0 0 1px rgba(74, 158, 255, 0.2);
}

.vehicle-option-check {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    color: #4a9eff;
    opacity: 0;
    transition: opacity 0.2s;
}

.vehicle-option.selected .vehicle-option-check {
    opacity: 1;
}

.vehicle-option-content {
    flex: 1;
}

.option-title {
    font-weight: 700;
    font-size: 1.15rem;
    margin: 0 0 0.5rem;
}

.option-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #4a9eff;
}

.option-validity {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.info-box {
    background: rgba(74, 158, 255, 0.08);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 10px;
    padding: 1rem;
    color: #cbd5e1;
    display: flex;
    gap: 0.6rem;
    align-items: flex-start;
    margin-top: 1rem;
}

.info-box i {
    color: #4a9eff;
}

.form-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.form-section:first-of-type {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.section-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 1rem;
}

.form-hint {
    font-size: 0.85rem;
    color: #64748b;
    margin-top: 0.4rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #4a9eff;
}

.checkbox-label {
    cursor: pointer;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.checkbox-link {
    margin-left: 2.2rem;
    margin-top: 0.35rem;
}

.checkbox-link a {
    color: #4a9eff;
    text-decoration: none;
    font-size: 0.85rem;
}

.checkbox-link a:hover {
    text-decoration: underline;
}

.checkbox-card {
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 0.75rem;
}

.step-summary-box {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.step-summary-content {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.step-summary-image {
    position: relative;
    flex-shrink: 0;
}

.step-summary-image img {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    object-fit: cover;
}

.image-desc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(74, 158, 255, 0.9);
    color: #ffffff;
    text-align: center;
    padding: 0.25rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 0 0 10px 10px;
}

.step-summary-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.summary-warning {
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 8px;
    padding: 0.75rem;
    font-size: 0.85rem;
    color: #fbbf24;
    margin-top: 1rem;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 1rem;
}

.summary-detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.summary-detail-row:last-child {
    border-bottom: none;
}

.summary-detail-label {
    color: #94a3b8;
    font-size: 0.9rem;
}

.summary-detail-value {
    color: #ffffff;
    font-weight: 600;
    font-size: 0.95rem;
}

.payment-methods-selection {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-bottom: 2rem;
}

.payment-method-card {
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    text-align: center;
}

.payment-method-card:hover {
    border-color: rgba(74, 158, 255, 0.5);
    transform: translateY(-2px);
}

.payment-method-card.selected {
    border-color: rgba(74, 158, 255, 0.8);
    background: rgba(74, 158, 255, 0.08);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.08);
}

.payment-method-card i {
    font-size: 2.5rem;
    color: #4a9eff;
}

.payment-method-card span {
    font-weight: 600;
    color: #ffffff;
}

.payment-method-card .payment-hint {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.price-summary-final {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
}

.confirmation-message {
    text-align: center;
    padding: 3rem 2rem;
}

.confirmation-message i {
    font-size: 4rem;
    color: #2ecc71;
    margin-bottom: 1rem;
}

.confirmation-message h2 {
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.confirmation-message p {
    color: #94a3b8;
    font-size: 1.1rem;
}

.country-flags-wrapper {
    margin-top: 0.5rem;
}

.country-flags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.country-flag-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.75rem;
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.02);
    transition: all 0.2s;
    min-width: 80px;
}

.country-flag-option:hover {
    border-color: rgba(74, 158, 255, 0.5);
    transform: translateY(-2px);
}

.country-flag-option.selected {
    border-color: rgba(74, 158, 255, 0.8);
    background: rgba(74, 158, 255, 0.08);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.08);
}

.country-flag-option input[type="radio"] {
    display: none;
}

.country-flag-option .flag-box {
    width: 80px;
    height: 60px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.country-flag-option .flag-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.country-flag-option .flag-code {
    font-size: 0.85rem;
    font-weight: 700;
    color: #cbd5e1;
}

.order-summary {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 1.75rem;
    height: fit-content;
    position: sticky;
    top: 120px;
}

.summary-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-icons {
    display: flex;
    gap: 0.6rem;
    color: #94a3b8;
}

.payment-icon {
    font-size: 1.4rem;
}

.price-summary {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 12px;
    padding: 1rem;
}

.price-row {
    display: flex;
    justify-content: space-between;
    padding: 0.65rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.price-row.total {
    border-bottom: none;
    font-weight: 700;
    color: #ffffff;
}

.step-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.primary-btn,
.secondary-btn,
.submit-btn {
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 10px;
    padding: 0.9rem 1.2rem;
    background: rgba(74, 158, 255, 0.15);
    color: #ffffff;
    cursor: pointer;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-weight: 600;
}

.primary-btn:hover,
.secondary-btn:hover,
.submit-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(74, 158, 255, 0.6);
}

.secondary-btn {
    background: rgba(255, 255, 255, 0.05);
}

.submit-btn {
    flex: 1;
    justify-content: center;
    background: #4a9eff;
    border-color: #4a9eff;
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.25);
}

.flash {
    padding: 0.9rem 1rem;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.flash-success {
    background: rgba(46, 204, 113, 0.12);
    border: 1px solid rgba(46, 204, 113, 0.4);
    color: #b7f5cf;
}

.flash-error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
}

/* Order Success Page */
.order-success {
    text-align: center;
    padding: 3rem 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: rgba(46, 204, 113, 0.12);
    border: 3px solid rgba(46, 204, 113, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-icon i {
    font-size: 3rem;
    color: #2ecc71;
}

.order-success h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.success-message {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.order-details-card {
    background: linear-gradient(145deg, #1a2942 0%, #0f1d35 100%);
    border: 1px solid rgba(74, 158, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
}

.order-details-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-align: center;
}

.order-details-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.detail-label {
    font-size: 0.9rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.detail-value {
    font-size: 1.1rem;
    color: #ffffff;
    font-weight: 600;
}

.detail-value.highlight {
    color: #4a9eff;
    font-size: 1.3rem;
}

.success-info-box {
    background: rgba(74, 158, 255, 0.1);
    border: 1px solid rgba(74, 158, 255, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin: 2rem 0;
    display: flex;
    gap: 1rem;
    text-align: left;
}

.success-info-box i {
    color: #4a9eff;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.success-info-box ul {
    margin: 0.5rem 0 0 1.5rem;
    color: #cbd5e1;
}

.success-info-box li {
    margin-bottom: 0.5rem;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .order-details-grid {
        grid-template-columns: 1fr;
    }
    
    .success-actions {
        flex-direction: column;
    }
    
    .success-actions .primary-btn,
    .success-actions .secondary-btn {
        width: 100%;
    }
}

@media (max-width: 1024px) {
    .order-summary-fixed {
        position: static;
    }
    .order-hero {
        grid-template-columns: 1fr;
        margin-top: 90px;
    }
    .step-summary-content {
        flex-direction: column;
    }
    .payment-methods-selection {
        grid-template-columns: 1fr;
    }
    .step-indicator {
        padding: 1rem;
    }
    .step-indicator-label {
        font-size: 0.65rem;
    }
    .step-indicator-number {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
    }
}

@media (max-width: 640px) {
    .step-indicator {
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    .step-indicator-line {
        display: none;
    }
    .step-indicator-item {
        flex: 0 0 calc(33.333% - 0.5rem);
    }
    .country-flags {
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .step-actions {
        flex-direction: column;
    }
    .primary-btn,
    .secondary-btn,
    .submit-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .tabs-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .download-section {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .slide-content h1 {
        font-size: 2rem;
    }
}

/* Hide the original vignette form field completely */
.order-form > div[style*="display: none"] {
    display: none !important;
}

.order-form > div[style*="display: none"] * {
    display: none !important;
    visibility: hidden !important;
}

