/* ============================================
   ARCHITECT PAGE - CSS
   Project Architecture Generator Styles
   ============================================ */

/* =============================================
   HERO SECTION - Enhanced Design (Same as Solutions)
   ============================================= */
.architect-hero-enhanced {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}


/* Background Effects */
.architect-hero-enhanced .hero-bg-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Floating Particles */
.architect-hero-enhanced .hero-particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(99, 102, 241, 0.4);
    border-radius: 50%;
    animation: floatParticleArch 15s infinite;
}

.architect-hero-enhanced .hero-particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.architect-hero-enhanced .hero-particles span:nth-child(2) {
    left: 20%;
    top: 60%;
    animation-delay: -3s;
}

.architect-hero-enhanced .hero-particles span:nth-child(3) {
    left: 70%;
    top: 30%;
    animation-delay: -5s;
}

.architect-hero-enhanced .hero-particles span:nth-child(4) {
    left: 80%;
    top: 70%;
    animation-delay: -8s;
}

.architect-hero-enhanced .hero-particles span:nth-child(5) {
    left: 50%;
    top: 80%;
    animation-delay: -12s;
}

@keyframes floatParticleArch {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.3;
    }

    25% {
        transform: translateY(-30px) rotate(90deg);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-15px) rotate(180deg);
        opacity: 0.4;
    }

    75% {
        transform: translateY(-40px) rotate(270deg);
        opacity: 0.5;
    }
}

/* Hero Content */
.architect-hero-enhanced .hero-content-center {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
    z-index: 2;
}

/* Hero Badge */
.architect-hero-enhanced .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.2), rgba(168, 85, 247, 0.2));
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: badgePulseArch 3s ease-in-out infinite;
}

.architect-hero-enhanced .hero-badge svg {
    stroke: #a5b4fc;
}

@keyframes badgePulseArch {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.3);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(99, 102, 241, 0);
    }
}

/* Hero Title */
.architect-hero-enhanced h1 {
    font-size: 3.2rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.text-gradient-animated {
    background: linear-gradient(135deg, #22d3ee 0%, #a855f7 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

/* Hero Subtitle */
.architect-hero-enhanced .hero-subtitle-dark {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 2rem;
}

/* Benefits Grid Enhanced */
.architect-hero-enhanced .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
}

.architect-hero-enhanced .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.architect-hero-enhanced .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
}

.architect-hero-enhanced .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.architect-hero-enhanced .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.architect-hero-enhanced .benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.architect-hero-enhanced .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.architect-hero-enhanced .benefit-icon-purple svg {
    stroke: #a855f7;
}

.architect-hero-enhanced .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.architect-hero-enhanced .benefit-icon-green svg {
    stroke: #10b981;
}

.architect-hero-enhanced .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.architect-hero-enhanced .benefit-icon-rose svg {
    stroke: #f43f5e;
}

.architect-hero-enhanced .benefit-content {
    text-align: left;
}

.architect-hero-enhanced .benefit-content strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.15rem;
}

.architect-hero-enhanced .benefit-content span {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Responsive for new hero */
@media (max-width: 1024px) {
    .architect-hero-enhanced .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .architect-hero-enhanced {
        padding: 100px 0 60px;
    }

    .architect-hero-enhanced h1 {
        font-size: 2.5rem;
    }

    .architect-hero-enhanced .hero-subtitle-dark {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .architect-hero-enhanced .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .architect-hero-enhanced .benefit-card {
        padding: 1rem;
    }

    .architect-hero-enhanced .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .architect-hero-enhanced .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

@media (max-width: 480px) {
    .architect-hero-enhanced h1 {
        font-size: 2rem;
    }

    .architect-hero-enhanced .hero-badge {
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }

    .architect-hero-enhanced .benefit-icon {
        width: 44px;
        height: 44px;
    }
}

/* =============================================
   LEGACY HERO - Dark Background Design (kept for backward compat)
   ============================================= */
.architect-hero-white {
    padding: 120px 0 60px;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #0f172a 100%);
    text-align: center;
    position: relative;
}

.architect-hero-white::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.hero-content-white {
    max-width: 700px;
    margin: 0 auto 3rem;
    position: relative;
}

.hero-badge-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: rgba(99, 102, 241, 0.2);
    border: 1px solid rgba(99, 102, 241, 0.3);
    color: #a5b4fc;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.architect-hero-white h1 {
    font-size: 3rem;
    font-weight: 800;
    color: #f8fafc;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.architect-hero-white h1 .text-gradient {
    background: linear-gradient(135deg, #22d3ee, #a855f7, #f43f5e);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientShift 4s ease infinite;
}

.hero-subtitle-white {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Grid - Dark Theme */
.benefits-grid-white {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    position: relative;
}

.benefit-card-white {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.benefit-card-white:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.benefit-icon-white {
    font-size: 1.75rem;
    flex-shrink: 0;
}

.benefit-text h3 {
    font-size: 1rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.25rem;
}

.benefit-text p {
    font-size: 0.85rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Benefits */
@media (max-width: 1024px) {
    .benefits-grid-white {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .architect-hero-white {
        padding: 100px 0 40px;
    }

    .architect-hero-white h1 {
        font-size: 2rem;
    }

    .benefits-grid-white {
        grid-template-columns: 1fr;
    }
}

/* =============================================
   FORM SECTION - Soft Gray Background
   ============================================= */
.form-section {
    padding: 4rem 0 6rem;
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
}

.architect-form {
    padding: 3rem;
    border-radius: 24px;
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border: 1px solid #cbd5e1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}

.form-step {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid #e2e8f0;
}

.form-step:last-of-type {
    border-bottom: none;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
}

.step-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
    color: #0f172a;
}

.step-header p {
    color: #64748b;
    font-size: 0.95rem;
}

/* Form Groups */
.form-row {
    margin-bottom: 1.5rem;
}

.form-row.two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 500;
}

.label-icon {
    font-size: 1.1rem;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"] {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #0f172a;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.2);
}

.form-group input::placeholder {
    color: #94a3b8;
}

/* Slider */
.slider-container {
    position: relative;
    margin: 1.5rem 0;
}

.slider-container input[type="range"] {
    width: 100%;
    height: 8px;
    border-radius: 4px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
}

.slider-container input[type="range"]::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.4);
}

.slider-value {
    text-align: center;
    margin-top: 1rem;
}

.value-number {
    font-size: 3rem;
    font-weight: 700;
    color: #6366f1;
    font-family: var(--font-code);
    display: block;
    line-height: 1;
}

.value-label {
    color: #64748b;
    font-size: 1rem;
}

.slider-marks {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Modules Selector */
.modules-selector {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.module-option {
    cursor: pointer;
}

.module-option input[type="checkbox"] {
    display: none;
}

.module-card {
    padding: 1.5rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.module-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Module Card Colors */
.module-option[data-module="moodle"] .module-card {
    border-color: rgba(34, 211, 238, 0.3);
}

.module-option[data-module="moodle"]:hover .module-card,
.module-option[data-module="moodle"].selected .module-card {
    border-color: #22d3ee;
    background: rgba(34, 211, 238, 0.1);
}

.module-option[data-module="biblioteca"] .module-card {
    border-color: rgba(52, 211, 153, 0.3);
}

.module-option[data-module="biblioteca"]:hover .module-card,
.module-option[data-module="biblioteca"].selected .module-card {
    border-color: #34d399;
    background: rgba(52, 211, 153, 0.1);
}

.module-option[data-module="academico"] .module-card {
    border-color: rgba(167, 139, 250, 0.3);
}

.module-option[data-module="academico"]:hover .module-card,
.module-option[data-module="academico"].selected .module-card {
    border-color: #a78bfa;
    background: rgba(167, 139, 250, 0.1);
}

.module-option[data-module="expediente"] .module-card {
    border-color: rgba(129, 140, 248, 0.3);
}

.module-option[data-module="expediente"]:hover .module-card,
.module-option[data-module="expediente"].selected .module-card {
    border-color: #818cf8;
    background: rgba(129, 140, 248, 0.1);
}

.module-option[data-module="aulas"] .module-card {
    border-color: rgba(251, 191, 36, 0.3);
}

.module-option[data-module="aulas"]:hover .module-card,
.module-option[data-module="aulas"].selected .module-card {
    border-color: #fbbf24;
    background: rgba(251, 191, 36, 0.1);
}

.module-option[data-module="asistencia"] .module-card {
    border-color: rgba(251, 113, 133, 0.3);
}

.module-option[data-module="asistencia"]:hover .module-card,
.module-option[data-module="asistencia"].selected .module-card {
    border-color: #fb7185;
    background: rgba(251, 113, 133, 0.1);
}

/* Selected state check */
.module-check {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.module-check svg {
    width: 14px;
    height: 14px;
    opacity: 0;
    color: #fff;
}

.module-option.selected .module-check,
.module-option input:checked+.module-card .module-check {
    background: linear-gradient(135deg, #10b981, #059669);
    border-color: #10b981;
}

.module-option.selected .module-check svg,
.module-option input:checked+.module-card .module-check svg {
    opacity: 1;
}

.module-icon {
    font-size: 2.75rem;
    display: block;
    margin-bottom: 1rem;
}

.module-card h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #0f172a;
}

.module-desc {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.module-price-tag {
    font-size: 0.8rem;
    padding: 0.5rem 1rem;
    background: #f1f5f9;
    color: #475569;
    border-radius: 50px;
    display: inline-block;
    border: 1px solid #e2e8f0;
}

.module-option.selected .module-price-tag {
    background: rgba(16, 185, 129, 0.2);
    color: #34d399;
    border-color: rgba(16, 185, 129, 0.3);
}

/* Preview Section */
.preview-section {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.preview-header h3 {
    margin-bottom: 1.5rem;
    color: #0f172a;
}

.preview-content {
    display: flex;
    gap: 3rem;
    justify-content: center;
}

.preview-item {
    text-align: center;
}

.preview-label {
    display: block;
    color: #64748b;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.preview-value {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: var(--font-code);
    color: #0f172a;
}

.preview-item.highlight .preview-value {
    color: #6366f1;
    font-size: 2rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-primary-large,
.btn-secondary-large {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 1rem 2.5rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary-large {
    background: #6366f1;
    color: #ffffff;
}

.btn-primary-large:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}

.btn-secondary-large {
    background: #0f172a;
    color: #ffffff;
}

.btn-secondary-large:hover {
    background: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.3);
}

.btn-icon {
    display: none;
}

/* =============================================
   BENEFITS SECTION
   ============================================= */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg-darker);
}

.benefits-section .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.benefit-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    margin-bottom: 0.5rem;
}

.benefit-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* =============================================
   PROPOSAL PAGE
   ============================================= */
.proposal-hero {
    padding: 120px 0 40px;
}

.proposal-header-card {
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.proposal-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(0, 210, 255, 0.2);
    border-radius: 50px;
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.proposal-id {
    font-family: var(--font-code);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.id-value {
    color: var(--accent-primary);
}

.institution-name {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.header-meta {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.meta-icon {
    font-size: 1.2rem;
}

/* Proposal Content */
.proposal-content {
    padding: 2rem 0 6rem;
}

.proposal-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 2rem;
    align-items: start;
}

.proposal-section {
    padding: 2rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.title-icon {
    font-size: 1.5rem;
}

/* Modules List */
.modules-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.module-item {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    border-left: 4px solid var(--accent-primary);
}

.module-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.module-header .module-icon {
    font-size: 2rem;
}

.module-info h3 {
    margin-bottom: 0.2rem;
}

.module-price {
    color: var(--accent-primary);
    font-family: var(--font-code);
    font-weight: 600;
}

.module-features {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
}

.module-features li {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Diagram */
.diagram-container {
    padding: 2rem;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
}

.diagram-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.diagram-row.modules-row {
    gap: 1rem;
}

.diagram-node {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    text-align: center;
    min-width: 120px;
}

.diagram-node.primary {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
    border: none;
}

.node-icon {
    font-size: 1.5rem;
    display: block;
    margin-bottom: 0.5rem;
}

.node-label {
    font-size: 0.85rem;
}

.diagram-arrows {
    display: flex;
    justify-content: center;
    gap: 2rem;
    padding: 0.5rem 0;
}

.arrow-down {
    width: 2px;
    height: 30px;
    background: linear-gradient(to bottom, var(--accent-primary), transparent);
    position: relative;
}

.arrow-down::after {
    content: '▼';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-primary);
    font-size: 8px;
}

/* Server Specs */
.server-tier {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.tier-badge {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.tier-type {
    color: var(--text-muted);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.spec-card {
    padding: 1.5rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 12px;
    text-align: center;
}

.spec-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-primary);
    font-family: var(--font-code);
    line-height: 1;
}

.spec-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    text-transform: uppercase;
}

.specs-extras {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.extra-icon {
    font-size: 1.1rem;
}

/* Pricing Card (Sidebar) */
.proposal-sidebar {
    position: sticky;
    top: 100px;
}

.pricing-card {
    padding: 2rem;
    border-radius: 16px;
}

.pricing-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.pricing-breakdown {
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
    margin-bottom: 1rem;
}

.pricing-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.pricing-total {
    margin-bottom: 2rem;
}

.total-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
}

.total-row.main {
    font-size: 1.2rem;
    font-weight: 600;
}

.total-value {
    color: var(--accent-primary);
    font-family: var(--font-code);
    font-size: 1.5rem;
}

.total-row.secondary {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.pricing-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-download,
.btn-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-download {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-purple));
    color: #fff;
}

.btn-contact {
    background: transparent;
    border: 2px solid var(--accent-primary);
    color: var(--accent-primary);
}

.btn-download:hover,
.btn-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 210, 255, 0.3);
}

.pricing-validity {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--glass-border);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Final CTA */
.final-cta {
    padding: 4rem 0;
}

.final-cta .cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 3rem;
    border-radius: 20px;
}

.final-cta .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.final-cta .cta-content p {
    color: var(--text-muted);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .proposal-grid {
        grid-template-columns: 1fr;
    }

    .proposal-sidebar {
        position: static;
    }

    .modules-selector {
        grid-template-columns: repeat(2, 1fr);
    }

    .specs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .architect-hero h1 {
        font-size: 2.5rem;
    }

    .form-row.two-cols {
        grid-template-columns: 1fr;
    }

    .modules-selector {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr 1fr;
    }

    .preview-content {
        flex-direction: column;
        gap: 1.5rem;
    }

    .form-actions {
        flex-direction: column;
    }

    .header-meta {
        flex-direction: column;
        gap: 1rem;
    }

    .module-features {
        grid-template-columns: 1fr;
    }

    .specs-extras {
        grid-template-columns: 1fr;
    }

    .final-cta .cta-box {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
}

@media (max-width: 480px) {
    .architect-form {
        padding: 1.5rem;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .specs-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* =============================================
   BENEFITS HIGHLIGHT SECTION (Moved from Hero)
   ============================================= */
.benefits-highlight-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
    padding: 5rem 0;
}

.benefits-highlight-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-highlight-section .section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f8fafc;
}

.benefits-highlight-section .section-title .highlight {
    background: linear-gradient(135deg, #22d3ee, #a855f7);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.benefits-highlight-section .benefits-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1100px;
    margin: 0 auto;
}

.benefits-highlight-section .benefit-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.benefits-highlight-section .benefit-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.benefits-highlight-section .benefit-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    flex-shrink: 0;
}

.benefits-highlight-section .benefit-icon-cyan {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(6, 182, 212, 0.1));
}

.benefits-highlight-section .benefit-icon-cyan svg {
    stroke: #22d3ee;
}

.benefits-highlight-section .benefit-icon-purple {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.2), rgba(168, 85, 247, 0.1));
}

.benefits-highlight-section .benefit-icon-purple svg {
    stroke: #a855f7;
}

.benefits-highlight-section .benefit-icon-green {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(16, 185, 129, 0.1));
}

.benefits-highlight-section .benefit-icon-green svg {
    stroke: #10b981;
}

.benefits-highlight-section .benefit-icon-rose {
    background: linear-gradient(135deg, rgba(244, 63, 94, 0.2), rgba(244, 63, 94, 0.1));
}

.benefits-highlight-section .benefit-icon-rose svg {
    stroke: #f43f5e;
}

.benefits-highlight-section .benefit-content {
    text-align: left;
}

.benefits-highlight-section .benefit-content strong {
    display: block;
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.2rem;
}

.benefits-highlight-section .benefit-content span {
    font-size: 0.9rem;
    color: #94a3b8;
}

/* Responsive Benefits Section */
@media (max-width: 1024px) {
    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-highlight-section {
        padding: 3rem 0;
    }

    .benefits-highlight-section .section-title {
        font-size: 2rem;
    }

    .benefits-highlight-section .benefits-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 0.5rem;
    }

    .benefits-highlight-section .benefit-card {
        padding: 1.25rem;
    }

    .benefits-highlight-section .benefit-icon {
        width: 48px;
        height: 48px;
    }

    .benefits-highlight-section .benefit-icon svg {
        width: 24px;
        height: 24px;
    }
}

/* Hero Description */
.architect-hero-enhanced .hero-description {
    max-width: 700px;
    margin: 0 auto;
}

.architect-hero-enhanced .hero-description p {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.architect-hero-enhanced .hero-description p:last-child {
    margin-bottom: 0;
}

/* =============================================
   CAPTCHA STYLES
   ============================================= */
.captcha-group {
    margin-top: 0.5rem;
}

.captcha-container {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.captcha-container:hover,
.captcha-container:focus-within {
    border-color: #6366f1;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08), rgba(139, 92, 246, 0.08));
}

.captcha-question {
    flex: 1;
}

.captcha-text {
    font-size: 1.1rem;
    color: #475569;
    font-weight: 500;
}

.captcha-text strong {
    color: #6366f1;
    font-weight: 700;
    font-size: 1.25rem;
    padding: 0 0.15rem;
}

.captcha-input {
    width: 100px;
    padding: 0.75rem;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
}

.captcha-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.captcha-input::placeholder {
    color: #94a3b8;
    font-weight: 400;
    font-size: 0.9rem;
}

/* Remove spinner from number input */
.captcha-input::-webkit-outer-spin-button,
.captcha-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.captcha-input[type=number] {
    -moz-appearance: textfield;
    appearance: textfield;
}

.captcha-hint {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.8rem;
    color: #94a3b8;
}

/* Responsive captcha */
@media (max-width: 640px) {
    .captcha-container {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .captcha-question {
        text-align: center;
    }

    .captcha-input {
        width: 100%;
    }
}

/* =============================================
   ALERT STYLES
   ============================================= */
.architect-alert {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    animation: slideIn 0.3s ease;
}

.architect-alert-error {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.architect-alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
}

.architect-alert-text-error {
    color: #fca5a5;
    font-weight: 500;
}

.architect-alert-text-success {
    color: #6ee7b7;
    font-weight: 500;
}

.architect-alert-icon-error {
    stroke: #ef4444;
}

.architect-alert-icon-success {
    stroke: #10b981;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}