/* ============================================
   Web-Planung.de - Additional Page Styles
   ============================================ */

/* ==========================================
   AUTH PAGES (Login & Register)
   ========================================== */

.auth-page {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    display: flex;
    flex-direction: column;
}

.auth-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.auth-header .logo img {
    height: 45px;
}

.auth-main {
    flex: 1;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 40px 20px 80px;
}

.auth-container {
    width: 100%;
    max-width: 700px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.auth-container h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.auth-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-top: -20px;
    margin-bottom: 30px;
}

/* Login Container - Smaller */
.login-container {
    max-width: 450px;
    padding: 40px;
}

/* Form Sections */
.form-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h2 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--accent-primary);
}

.form-section h2 .hint {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.section-desc {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Form Grid */
.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition-fast);
}

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

.form-group input::placeholder {
    color: var(--text-muted);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    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='%23666' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Phone Input */
.phone-input {
    display: flex;
    gap: 10px;
}

.country-code {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    white-space: nowrap;
}

.country-code .flag {
    font-size: 1.2rem;
}

.phone-input input {
    flex: 1;
}

/* Password Input */
.password-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.password-input {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.password-input input {
    width: 100%;
}

.btn-generate {
    padding: 10px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-generate:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}

.password-tip {
    margin-top: 12px;
    padding: 16px;
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.password-tip strong {
    color: var(--accent-primary);
}

.password-wrapper {
    position: relative;
}

.password-wrapper input {
    width: 100%;
    padding-right: 50px;
}

.toggle-password {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: var(--transition-fast);
}

.toggle-password:hover {
    opacity: 1;
}

/* Checkbox & Toggle */
.checkbox-group {
    margin-bottom: 20px;
}

.checkbox-group.terms {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 22px;
    height: 22px;
    min-width: 22px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-light);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.checkbox-label input:checked + .checkmark {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.checkbox-label input:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 0.8rem;
    font-weight: bold;
}

.checkbox-label a {
    color: var(--accent-primary);
}

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

.link-small {
    font-size: 0.85rem;
    margin-left: 5px;
}

.checkbox-hint {
    margin-top: 10px;
    margin-left: 34px;
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Toggle Switch */
.toggle-group {
    display: flex;
    align-items: center;
    gap: 16px;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 32px;
    cursor: pointer;
}

.toggle-switch input {
    display: none;
}

.toggle-slider-inline {
    position: absolute;
    inset: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: var(--transition-normal);
}

.toggle-slider-inline::before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    left: 4px;
    top: 3px;
    background: var(--text-muted);
    border-radius: 50%;
    transition: var(--transition-normal);
}

.toggle-switch input:checked + .toggle-slider-inline {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
}

.toggle-switch input:checked + .toggle-slider-inline::before {
    transform: translateX(28px);
    background: white;
}

/* Form Options (Login) */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.forgot-link {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.forgot-link:hover {
    text-decoration: underline;
}

/* Button Full Width */
.btn-full {
    width: 100%;
    justify-content: center;
    padding: 16px;
    font-size: 1rem;
}

/* Auth Divider */
.auth-divider {
    display: flex;
    align-items: center;
    margin: 30px 0;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border-color);
}

.auth-divider span {
    padding: 0 16px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Social Login */
.social-login {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 14px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-social:hover {
    border-color: var(--accent-primary);
}

.social-icon {
    font-size: 1.2rem;
    font-weight: bold;
}

/* reCAPTCHA Notice */
.recaptcha-notice {
    margin-top: 24px;
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.recaptcha-notice strong {
    color: var(--text-secondary);
}

.recaptcha-notice a {
    color: var(--text-muted);
}

.recaptcha-notice a:hover {
    color: var(--accent-primary);
}

/* Auth Footer */
.auth-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.auth-footer a {
    color: var(--accent-primary);
    margin: 0 8px;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.highlight-link {
    font-weight: 600;
}


/* ==========================================
   CART PAGE
   ========================================== */

.cart-page {
    padding: 60px 0 100px;
    min-height: calc(100vh - 200px);
}

.cart-page h1 {
    font-size: 2rem;
    margin-bottom: 40px;
}

.cart-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    align-items: start;
}

/* Cart Items */
.cart-items {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
}

/* Empty Cart */
.cart-empty {
    text-align: center;
    padding: 60px 20px;
}

.empty-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.cart-empty h2 {
    font-size: 1.3rem;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

/* Filled Cart */
.cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
}

.cart-item:last-child {
    border-bottom: none;
}

.item-info {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
}

.item-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.item-details h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.item-desc,
.item-domain {
    font-size: 0.85rem;
    color: var(--text-muted);
}

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

.item-price .price {
    display: block;
    font-weight: 600;
    color: var(--accent-primary);
}

.item-price .period {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.btn-remove {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-remove:hover {
    background: #ff4444;
    border-color: #ff4444;
    color: white;
}

/* Promo Code */
.promo-code {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.promo-code label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.promo-input {
    display: flex;
    gap: 10px;
}

.promo-input input {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.95rem;
}

.promo-input input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

/* Order Summary */
.order-summary {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    position: sticky;
    top: 100px;
}

.order-summary h2 {
    font-size: 1.2rem;
    margin-bottom: 24px;
}

.summary-rows {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 0.95rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.summary-total {
    padding: 20px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 20px;
}

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

.total-row span:first-child {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.total-amount {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.btn-checkout {
    margin-bottom: 20px;
}

.btn-checkout:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

.terms-checkbox {
    margin-bottom: 24px;
}

.terms-checkbox .checkbox-label {
    font-size: 0.85rem;
}

.payment-methods-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.payment-methods-info span {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 10px;
}

.payment-icons {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 1.5rem;
    opacity: 0.6;
}

/* Simple Footer */
.simple-footer {
    padding: 30px 0;
}

.simple-footer .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0;
}

.payment-badges {
    display: flex;
    gap: 10px;
    font-size: 1.3rem;
    opacity: 0.5;
}


/* ==========================================
   LEGAL PAGES (Impressum, Datenschutz, AGB)
   ========================================== */

.page-hero {
    padding: 60px 0 40px;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-top: 10px;
}

.legal-page {
    padding: 60px 0 100px;
}

.legal-layout {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

/* Legal Sidebar */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-nav ul {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.legal-nav li {
    border-bottom: 1px solid var(--border-color);
}

.legal-nav li:last-child {
    border-bottom: none;
}

.legal-nav a {
    display: block;
    padding: 16px 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

.legal-nav a:hover,
.legal-nav a.active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-primary);
}

.legal-nav a.active {
    border-left: 3px solid var(--accent-primary);
}

/* Legal Content */
.legal-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.3rem;
    margin-bottom: 16px;
    color: var(--accent-primary);
}

.legal-section p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section p:last-child {
    margin-bottom: 0;
}

.legal-section a {
    color: var(--accent-primary);
}

.legal-section a:hover {
    text-decoration: underline;
}

.contact-box {
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
}


/* ==========================================
   MODAL
   ========================================== */

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay .modal {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    max-width: 700px;
    width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    transform: translateY(20px);
    transition: var(--transition-normal);
}

.modal-overlay.active .modal {
    transform: translateY(0);
}

.modal-overlay .modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 30px;
    border-bottom: 1px solid var(--border-color);
}

.modal-overlay .modal-header h2 {
    font-size: 1.3rem;
    color: var(--accent-primary);
}

.modal-close {
    width: 36px;
    height: 36px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 50%;
    color: var(--text-secondary);
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close:hover {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.modal-overlay .modal-content {
    padding: 30px;
    overflow-y: auto;
    flex: 1;
}

.modal-overlay .modal-content h3 {
    font-size: 1rem;
    color: var(--accent-primary);
    margin: 24px 0 12px;
}

.modal-overlay .modal-content h3:first-child {
    margin-top: 0;
}

.modal-overlay .modal-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.modal-overlay .modal-footer {
    padding: 20px 30px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: flex-end;
}


/* ==========================================
   PRODUCT PAGES (Hosting, Domains)
   ========================================== */

.product-hero {
    padding: 80px 0 60px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

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

.product-hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-hero-content p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-hero-image {
    display: flex;
    justify-content: center;
}

.product-illustration {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 6rem;
}

/* Nur für Emoji-Icons den alten Stil behalten */
.product-illustration--styled {
    background: var(--accent-gradient);
    border-radius: var(--radius-lg);
    transform: rotate(-5deg);
    box-shadow: 0 30px 60px rgba(230, 57, 70, 0.3);
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.pricing-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.billing-toggle {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.billing-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 8px;
}

.billing-btn:hover,
.billing-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.billing-btn .save-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: 600;
}

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

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--accent-primary);
    box-shadow: var(--shadow-glow);
}

.pricing-card.featured::before {
    content: 'Beliebt';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-gradient);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.pricing-card .old-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 0.9rem;
}

.pricing-card .price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin: 10px 0;
}

.pricing-card .price-period {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 24px;
}

.pricing-card .btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 24px;
}

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

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.pricing-features .check {
    color: var(--accent-primary);
}

/* Product Features */
.product-features {
    padding: 80px 0;
    background: var(--bg-primary);
}

.product-features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 50px;
}

.product-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.product-feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.product-feature-card:hover {
    border-color: var(--accent-primary);
}

.product-feature-card .feature-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.product-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.product-feature-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}


/* ==========================================
   CONTACT PAGE
   ========================================== */

.contact-page {
    padding: 80px 0;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact-info > p {
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.7;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-method .method-icon {
    width: 50px;
    height: 50px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-method p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-method a {
    color: var(--accent-primary);
}

.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-container h2 {
    font-size: 1.3rem;
    margin-bottom: 30px;
}


/* ==========================================
   TICKET PAGE
   ========================================== */

.ticket-page {
    padding: 80px 0;
}

.ticket-container {
    max-width: 700px;
    margin: 0 auto;
}

.ticket-container h1 {
    text-align: center;
    margin-bottom: 40px;
}

.ticket-form {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px;
}


/* ==========================================
   KNOWLEDGEBASE
   ========================================== */

.kb-page {
    padding: 80px 0;
}

.kb-header {
    text-align: center;
    margin-bottom: 50px;
}

.kb-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.kb-search {
    max-width: 600px;
    margin: 0 auto;
}

.kb-search input {
    width: 100%;
    padding: 16px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: 1rem;
}

.kb-search input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.kb-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.kb-category {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    transition: var(--transition-normal);
}

.kb-category:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
}

.kb-category-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.kb-category h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
}

.kb-category p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.kb-category .article-count {
    color: var(--accent-primary);
    font-size: 0.85rem;
    font-weight: 500;
}

/* KB Article Page */
.kb-article-page {
    padding: 60px 0;
}

.kb-article-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 50px;
}

.kb-sidebar {
    position: sticky;
    top: 100px;
}

.kb-sidebar h3 {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.kb-sidebar ul {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.kb-sidebar li {
    border-bottom: 1px solid var(--border-color);
}

.kb-sidebar li:last-child {
    border-bottom: none;
}

.kb-sidebar a {
    display: block;
    padding: 14px 18px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.kb-sidebar a:hover,
.kb-sidebar a.active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-primary);
}

.kb-article-content {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 50px;
}

.kb-article-content h1 {
    font-size: 2rem;
    margin-bottom: 30px;
    line-height: 1.3;
}

.kb-article-content h2 {
    font-size: 1.4rem;
    margin: 40px 0 20px;
    color: var(--accent-primary);
}

.kb-article-content h3 {
    font-size: 1.1rem;
    margin: 30px 0 15px;
}

.kb-article-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
}

.kb-article-content code {
    background: var(--bg-tertiary);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Fira Code', monospace;
    font-size: 0.9em;
    color: var(--accent-primary);
}

.kb-article-content pre {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    overflow-x: auto;
    margin: 20px 0;
}

.kb-article-content pre code {
    background: none;
    padding: 0;
}

.kb-article-content ul,
.kb-article-content ol {
    margin: 16px 0 16px 24px;
    color: var(--text-secondary);
}

.kb-article-content li {
    margin-bottom: 8px;
    line-height: 1.7;
}

.kb-article-meta {
    display: flex;
    gap: 20px;
    padding-top: 30px;
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.kb-helpful {
    margin-top: 30px;
    padding: 24px;
    background: rgba(230, 57, 70, 0.05);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-md);
    text-align: center;
}

.kb-helpful p {
    margin-bottom: 16px;
    color: var(--text-primary);
}

.kb-helpful-buttons {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.kb-helpful-buttons button {
    padding: 10px 24px;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.kb-helpful-buttons button:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}


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

@media (max-width: 1024px) {
    .cart-layout {
        grid-template-columns: 1fr;
    }
    
    .order-summary {
        position: static;
    }
    
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-nav ul {
        display: flex;
        overflow-x: auto;
    }
    
    .legal-nav li {
        border-bottom: none;
        border-right: 1px solid var(--border-color);
        white-space: nowrap;
    }
    
    .legal-nav a.active {
        border-left: none;
        border-bottom: 3px solid var(--accent-primary);
    }
    
    /* Product Pages */
    .product-hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .product-hero-image {
        order: -1;
    }
    
    .product-illustration {
        width: 200px;
        height: 200px;
        font-size: 4rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .product-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Contact Page */
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    /* KB Pages */
    .kb-categories {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .kb-article-layout {
        grid-template-columns: 1fr;
    }
    
    .kb-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .auth-container {
        padding: 30px 20px;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: auto;
    }
    
    .phone-input {
        flex-direction: column;
    }
    
    .form-options {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .cart-page h1 {
        font-size: 1.5rem;
    }
    
    .item-info {
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
    }
    
    .cart-item {
        flex-wrap: wrap;
    }
    
    .item-price {
        text-align: left;
        margin-left: 66px;
    }
    
    .promo-input {
        flex-direction: column;
    }
    
    .simple-footer .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .page-hero h1 {
        font-size: 1.8rem;
    }
    
    .legal-content {
        padding: 25px;
    }
    
    /* Product Pages */
    .product-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .billing-toggle {
        flex-direction: column;
        align-items: center;
    }
    
    .billing-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .product-features-grid {
        grid-template-columns: 1fr;
    }
    
    /* KB Pages */
    .kb-categories {
        grid-template-columns: 1fr;
    }
    
    .kb-article-content {
        padding: 25px;
    }
    
    .kb-article-content h1 {
        font-size: 1.5rem;
    }
    
    /* Modal */
    .modal-overlay .modal {
        max-height: 90vh;
    }
    
    .modal-overlay .modal-header,
    .modal-overlay .modal-content,
    .modal-overlay .modal-footer {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .auth-header {
        padding: 20px;
    }
    
    .auth-main {
        padding: 20px 15px 40px;
    }
    
    .auth-container h1 {
        font-size: 1.5rem;
    }
    
    .form-section h2 {
        font-size: 1rem;
    }
    
    .auth-footer {
        font-size: 0.85rem;
    }
    
    .auth-footer a {
        display: block;
        margin: 8px 0;
    }
}


/* ==========================================
   COMPARISON TABLES (Collapsible)
   ========================================== */

.comparison-section {
    margin-top: 40px;
}

.comparison-section h4 {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-secondary);
}

/* Comparison Header with Plan Names */
.comparison-header {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    gap: 0;
    background: var(--bg-tertiary);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
}

.comparison-header .plan-header {
    padding: 20px;
    text-align: center;
    border-left: 1px solid var(--border-light);
}

.comparison-header .plan-header:first-child {
    border-left: none;
}

.comparison-header .plan-header h5 {
    font-size: 0.95rem;
    margin-bottom: 8px;
}

.comparison-header .plan-header .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.comparison-header .plan-header .price-period {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.comparison-header .plan-header .btn {
    margin-top: 12px;
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Collapsible Accordion */
.comparison-accordion {
    border: 1px solid var(--border-light);
    border-top: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    overflow: hidden;
}

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

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border: none;
    width: 100%;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-fast);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.accordion-header:hover {
    background: rgba(230, 57, 70, 0.05);
}

.accordion-header.active {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-primary);
}

.accordion-icon {
    width: 32px;
    height: 32px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.accordion-title {
    flex: 1;
}

.accordion-arrow {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.accordion-header.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    background: var(--bg-secondary);
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.3s ease,
                opacity 0.3s ease;
    opacity: 0;
}

.accordion-content.active {
    max-height: 800px;
    opacity: 1;
}

/* Comparison Table Rows */
.comparison-row {
    display: grid;
    grid-template-columns: 1fr repeat(3, 1fr);
    gap: 0;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-card);
}

.comparison-row:nth-child(even) {
    background: var(--bg-secondary);
}

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

.comparison-label {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.comparison-label .tooltip {
    position: relative;
    cursor: help;
}

.comparison-label .tooltip-icon {
    width: 16px;
    height: 16px;
    background: var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--text-muted);
}

.comparison-label .tooltip-text {
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    width: 250px;
    line-height: 1.5;
    visibility: hidden;
    opacity: 0;
    transition: var(--transition-fast);
    z-index: 100;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-md);
}

.comparison-label .tooltip:hover .tooltip-text {
    visibility: visible;
    opacity: 1;
}

.comparison-value {
    padding: 14px 20px;
    text-align: center;
    font-size: 0.9rem;
    border-left: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-value .check {
    color: #10b981;
    font-size: 1.1rem;
}

.comparison-value .cross {
    color: var(--text-muted);
}

.comparison-value .optional {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Legal Text Styles (for datenschutz/agb) */
.legal-text h3 {
    font-size: 1.1rem;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.legal-text h4 {
    font-size: 1rem;
    color: var(--text-primary);
    margin: 20px 0 10px;
}

.legal-text ul {
    color: var(--text-secondary);
    margin: 16px 0 16px 24px;
    line-height: 1.8;
}

.legal-text li {
    margin-bottom: 8px;
}

/* Responsive Comparison Tables */
@media (max-width: 768px) {
    .comparison-header {
        display: none;
    }
    
    .comparison-row {
        grid-template-columns: 1fr;
    }
    
    .comparison-value {
        border-left: none;
        border-top: 1px solid var(--border-color);
        justify-content: space-between;
    }
    
    .comparison-value::before {
        content: attr(data-plan);
        font-weight: 500;
        color: var(--text-muted);
        font-size: 0.85rem;
    }
}


/* ==========================================
   DOMAIN TRANSFER PAGE
   ========================================== */

.tld-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.tld-preview-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition-fast);
}

.tld-preview-card:hover {
    border-color: var(--accent-primary);
}

.tld-preview-card .tld {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.tld-preview-card .price {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px;
    text-align: center;
    position: relative;
}

.step-card::after {
    content: '→';
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    color: var(--accent-primary);
}

.step-card:last-child::after {
    display: none;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--accent-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    margin: 0 auto 20px;
}

.step-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.step-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Checklist */
.checklist {
    list-style: none;
    padding: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.checklist .check {
    color: #10b981;
    font-weight: bold;
    flex-shrink: 0;
}

/* Link Arrow */
.link-arrow {
    color: var(--accent-primary);
    font-weight: 500;
    transition: var(--transition-fast);
}

.link-arrow:hover {
    text-decoration: underline;
}

/* Domain Search Box */
.domain-search-box {
    max-width: 600px;
}

.domain-search-form {
    display: flex;
    gap: 12px;
}

.domain-input {
    flex: 1;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
}

.domain-input:focus {
    outline: none;
    border-color: var(--accent-primary);
}

@media (max-width: 768px) {
    .tld-preview-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .step-card::after {
        display: none;
    }
    
    .info-grid {
        grid-template-columns: 1fr !important;
    }
    
    .info-image {
        display: none;
    }
    
    .domain-search-form {
        flex-direction: column;
    }
}

/* ============================================
   E-MAIL FEATURE PAGES
   ============================================ */

/* Feature Highlights */
.feature-highlights {
    padding: 60px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.highlight-item {
    text-align: center;
    padding: 20px 15px;
}

.highlight-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.highlight-item h3 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 1200px) {
    .highlights-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

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

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
}

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

.how-it-works-text .section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.how-it-works-text h2 {
    font-size: 2.2rem;
    margin-bottom: 25px;
}

.how-it-works-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

.how-it-works-image .image-placeholder {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 60px;
    text-align: center;
}

.image-placeholder.email-illustration {
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
}

.email-illustration .illustration-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 20px;
}

.email-illustration span {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .how-it-works-content {
        grid-template-columns: 1fr;
    }
    
    .how-it-works-image {
        order: -1;
    }
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: var(--bg-secondary);
}

.why-section .section-badge {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

.why-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-normal);
}

.why-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.why-icon {
    font-size: 3rem;
    margin-bottom: 25px;
}

.why-card h3 {
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.why-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

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

/* Email Filter Hero Variants */
.email-filter-hero .product-illustration {
    font-size: 8rem;
}

.email-filter-hero.outgoing .product-illustration {
    font-size: 8rem;
}

.email-archive-hero .product-illustration {
    font-size: 8rem;
}

/* Hero Buttons */
.hero-buttons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
    }
}

/* Feature Carousel */
.feature-carousel {
    padding: 80px 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.carousel-track {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.carousel-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition-normal);
}

.carousel-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.carousel-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.carousel-card h3 {
    font-size: 1rem;
    margin-bottom: 12px;
}

.carousel-card p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.6;
}

@media (max-width: 1200px) {
    .carousel-track {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

@media (max-width: 480px) {
    .carousel-track {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   KNOWLEDGE BASE ARTICLE LIST
   ============================================ */

.kb-category-section {
    margin-bottom: 50px;
}

.kb-category-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-primary);
}

.category-icon {
    font-size: 1.5rem;
}

.kb-articles-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.kb-article-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    text-decoration: none;
}

.kb-article-item:hover {
    border-color: var(--accent-primary);
    transform: translateX(5px);
    background: rgba(230, 57, 70, 0.05);
}

.kb-article-item .article-icon {
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.kb-article-item .article-content {
    flex: 1;
}

.kb-article-item .article-content h3 {
    font-size: 1.05rem;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.kb-article-item .article-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.kb-article-item .article-arrow {
    font-size: 1.2rem;
    color: var(--accent-primary);
    opacity: 0;
    transition: var(--transition-fast);
}

.kb-article-item:hover .article-arrow {
    opacity: 1;
}

/* ============================================
   CUSTOMER DASHBOARD
   ============================================ */

.dashboard-page {
    min-height: 100vh;
    background: var(--bg-primary);
}

.dashboard-header {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 15px 0;
}

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

.dashboard-nav {
    display: flex;
    gap: 30px;
}

.dashboard-nav a {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 10px 0;
    border-bottom: 2px solid transparent;
    transition: var(--transition-fast);
}

.dashboard-nav a:hover,
.dashboard-nav a.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent-primary);
}

.dashboard-nav .dropdown-menu {
    left: 0;
    transform: translateX(0) translateY(10px);
}

.dashboard-nav .dropdown:hover .dropdown-menu {
    transform: translateX(0) translateY(0);
}

.dashboard-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-actions .icon-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

.dashboard-actions .icon-btn:hover {
    border-color: var(--accent-primary);
}

/* Customer Menu Bar */
.customer-menu-bar {
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border-color);
    padding: 0;
}

.customer-menu-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.customer-menu-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 15px 20px;
    background: transparent;
    border-right: 1px solid var(--border-color);
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.customer-icon {
    font-size: 0.6rem;
    color: var(--accent-primary);
}

.customer-nav {
    display: flex;
    gap: 5px;
    flex: 1;
    padding: 0 20px;
}

.customer-nav a {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 0.85rem;
    padding: 15px 16px;
    border-bottom: 2px solid transparent;
    transition: all 0.15s ease;
    white-space: nowrap;
}

.customer-nav a:hover {
    color: var(--text-secondary);
}

.customer-nav a.active {
    color: var(--text-primary);
    border-bottom-color: var(--accent-primary);
}

.customer-actions {
    padding: 10px 0;
}

.customer-actions .btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

@media (max-width: 992px) {
    .customer-menu-bar .container {
        flex-wrap: wrap;
    }
    
    .customer-menu-label {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(192, 57, 43, 0.2);
        justify-content: center;
    }
    
    .customer-nav {
        width: 100%;
        padding: 0;
        overflow-x: auto;
        justify-content: center;
    }
    
    .customer-actions {
        width: 100%;
        text-align: center;
        padding: 10px 0 15px;
    }
}

@media (max-width: 576px) {
    .customer-nav a {
        padding: 12px 15px;
        font-size: 0.85rem;
    }
}

.user-menu {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    cursor: pointer;
}

.user-avatar {
    width: 32px;
    height: 32px;
    background: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.dashboard-main {
    padding: 32px 0 60px;
}

.dashboard-title {
    margin-bottom: 8px;
}

.dashboard-title h1 {
    font-size: 1.5rem;
    margin-bottom: 4px;
    font-weight: 600;
}

.dashboard-breadcrumb {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.dashboard-breadcrumb a {
    color: var(--accent-primary);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 24px;
    margin-top: 24px;
}

/* Profile Card */
.profile-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 28px 24px;
}

.profile-avatar {
    width: 64px;
    height: 64px;
    background: var(--bg-tertiary);
    border-radius: 8px;
    margin: 0 auto 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-secondary);
    letter-spacing: 1px;
}

.profile-name {
    font-size: 1.1rem;
    text-align: center;
    margin-bottom: 12px;
    font-weight: 600;
}

.profile-address {
    color: var(--text-muted);
    text-align: center;
    font-size: 0.85rem;
    line-height: 1.5;
    margin-bottom: 20px;
}

.profile-actions {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.profile-actions .btn {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.profile-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.profile-section h3 {
    font-size: 0.75rem;
    margin-bottom: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.contact-avatar {
    width: 28px;
    height: 28px;
    background: var(--bg-tertiary);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--text-muted);
}

.shortcuts-list {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.shortcut-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    color: var(--text-secondary);
    font-size: 0.85rem;
    transition: all 0.15s ease;
}

.shortcut-link:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

.shortcut-icon {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Dashboard Content */
.dashboard-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.stat-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px 20px;
    text-align: left;
    position: relative;
    transition: border-color 0.2s ease;
    cursor: pointer;
    border-left: 3px solid var(--border-color);
}

.stat-card--hosting { border-left-color: #10b981; }
.stat-card--domains { border-left-color: #3b82f6; }
.stat-card--invoices { border-left-color: #f59e0b; }
.stat-card--tickets { border-left-color: #8b5cf6; }

.stat-card-link:hover .stat-card,
.stat-card:hover {
    border-color: var(--border-light);
}

.stat-number {
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.stat-card-icon {
    color: var(--text-muted);
    margin-bottom: 8px;
}

.stat-card--hosting .stat-card-icon { color: #10b981; }
.stat-card--domains .stat-card-icon { color: #3b82f6; }
.stat-card--invoices .stat-card-icon { color: #f59e0b; }
.stat-card--tickets .stat-card-icon { color: #8b5cf6; }

/* Dashboard Cards */
.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
}

.dashboard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-color);
    background: var(--bg-secondary);
}

.dashboard-card-header h2 {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.dashboard-card-body {
    padding: 20px;
}

/* Service Item */
.service-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.service-item:first-child {
    padding-top: 0;
}

.service-info h4 {
    font-size: 0.95rem;
    margin-bottom: 2px;
    font-weight: 500;
}

.service-info p,
.service-domain {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.service-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.status-badge.active {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.status-badge.pending {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.status-badge.suspended {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.manage-btn {
    padding: 6px 12px;
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.15s ease;
    text-decoration: none;
}

.manage-btn:hover {
    border-color: var(--border-light);
    color: var(--text-primary);
}

/* Two Column Cards */
.dashboard-two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 40px;
}

.empty-state--minimal {
    padding: 30px 20px;
}

.empty-state .empty-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empty-state p {
    color: var(--text-muted);
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.empty-state a:not(.btn) {
    color: var(--accent-primary);
    font-size: 0.9rem;
}

.empty-state .btn {
    margin-top: 4px;
}

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

@media (max-width: 968px) {
    .dashboard-grid {
        grid-template-columns: 1fr;
    }
    
    .dashboard-two-col {
        grid-template-columns: 1fr;
    }
    
    .dashboard-nav {
        display: none;
    }
}

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

/* ============================================
   KNOWLEDGE BASE ARTICLE PAGE
   ============================================ */

.kb-article-page {
    padding: 40px 0 80px;
}

.kb-breadcrumb {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 30px;
}

.kb-breadcrumb a {
    color: var(--accent-primary);
}

.kb-breadcrumb a:hover {
    text-decoration: underline;
}

.kb-article-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}

.kb-article-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
    line-height: 1.3;
}

.article-meta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-body {
    line-height: 1.8;
    color: var(--text-secondary);
}

.article-body h2 {
    font-size: 1.4rem;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.article-body h3 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin: 30px 0 15px;
}

.article-body p {
    margin-bottom: 15px;
}

.article-body ul,
.article-body ol {
    margin: 15px 0 25px 25px;
}

.article-body li {
    margin-bottom: 10px;
}

.article-body code {
    background: var(--bg-tertiary);
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9em;
    color: var(--accent-primary);
}

.article-body a {
    color: var(--accent-primary);
}

.article-body a:hover {
    text-decoration: underline;
}

.code-block {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 20px 0;
    font-family: 'Consolas', 'Monaco', monospace;
    font-size: 0.9rem;
    overflow-x: auto;
}

.code-block code {
    background: none;
    padding: 0;
    color: var(--text-primary);
}

.info-box {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 25px 0;
    color: var(--text-primary);
}

.success-box {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 25px 0;
    color: var(--text-primary);
}

.warning-box {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 25px 0;
    color: var(--text-primary);
}

.article-feedback {
    margin-top: 50px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.article-feedback p {
    margin-bottom: 15px;
    color: var(--text-primary);
}

.feedback-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-bottom: 15px;
}

.feedback-count {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* KB Sidebar */
.kb-sidebar {
    position: sticky;
    top: 120px;
}

.sidebar-section {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 25px;
}

.sidebar-section h3 {
    font-size: 1rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.related-articles {
    list-style: none;
}

.related-articles li {
    margin-bottom: 12px;
}

.related-articles a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    display: block;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.related-articles a:hover {
    background: rgba(230, 57, 70, 0.1);
    color: var(--accent-primary);
}

@media (max-width: 968px) {
    .kb-article-layout {
        grid-template-columns: 1fr;
    }
    
    .kb-sidebar {
        position: static;
    }
}

/* ============================================
   DOMAIN SELECTION PAGE
   ============================================ */

.domain-selection-page {
    padding: 60px 0;
    min-height: 60vh;
}

.domain-selection-page .page-header {
    margin-bottom: 40px;
}

.domain-selection-page .page-header h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.selected-product {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    display: inline-flex;
    gap: 10px;
    align-items: center;
}

.selected-product span {
    color: var(--text-secondary);
}

.selected-product strong {
    color: var(--accent-primary);
}

/* Domain Options */
.domain-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 40px;
}

.domain-option {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.domain-option:hover {
    border-color: var(--accent-primary);
}

.domain-option.active {
    border-color: var(--accent-primary);
    background: rgba(230, 57, 70, 0.05);
}

.domain-option .option-icon {
    font-size: 2.5rem;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(230, 57, 70, 0.1);
    border-radius: var(--radius-md);
    flex-shrink: 0;
}

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

.domain-option .option-content h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.domain-option .option-content p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.domain-option .option-check {
    width: 28px;
    height: 28px;
    border: 2px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: transparent;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.domain-option.active .option-check {
    background: var(--accent-gradient);
    border-color: var(--accent-primary);
    color: white;
}

/* Domain Search Form */
.domain-search-form-container {
    margin-bottom: 30px;
}

.domain-search-row {
    display: flex;
    gap: 0;
    margin-bottom: 15px;
}

.domain-input-large {
    flex: 1;
    padding: 18px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-right: none;
    border-radius: var(--radius-md) 0 0 var(--radius-md);
    color: var(--text-primary);
    font-size: 1rem;
}

.domain-input-large:focus {
    outline: none;
    border-color: var(--accent-primary);
}

.tld-select {
    position: relative;
}

.tld-select select {
    height: 100%;
    padding: 18px 40px 18px 20px;
    background: var(--bg-tertiary);
    border: 2px solid var(--border-color);
    border-left: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    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='%23a0a0a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
}

.tld-select select:focus {
    outline: none;
}

.domain-search-row .btn {
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 18px 30px;
}

.domain-hint {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Domain Results */
.domain-results {
    margin-bottom: 30px;
}

.domain-result {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 20px 25px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
}

.domain-result.available {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.05);
}

.domain-result.unavailable {
    border-color: #ef4444;
    background: rgba(239, 68, 68, 0.05);
}

.domain-result .result-info {
    display: flex;
    align-items: center;
    gap: 15px;
    flex: 1;
}

.domain-result .result-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.domain-result.available .result-icon {
    background: #10b981;
    color: white;
}

.domain-result.unavailable .result-icon {
    background: #ef4444;
    color: white;
}

.domain-result .result-domain {
    font-weight: 700;
    font-size: 1.1rem;
}

.domain-result .result-status {
    color: var(--text-secondary);
}

.domain-result .result-price {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.domain-result .result-price .price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-primary);
}

.domain-result .result-price .period {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Domain Actions */
.domain-actions {
    display: flex;
    justify-content: space-between;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

@media (max-width: 768px) {
    .domain-search-row {
        flex-direction: column;
    }
    
    .domain-input-large {
        border-radius: var(--radius-md);
        border-right: 2px solid var(--border-color);
    }
    
    .tld-select select {
        width: 100%;
        border-radius: var(--radius-md);
        border-left: 2px solid var(--border-color);
    }
    
    .domain-search-row .btn {
        border-radius: var(--radius-md);
    }
    
    .domain-option {
        flex-direction: column;
        text-align: center;
    }
    
    .domain-option .option-check {
        position: absolute;
        top: 15px;
        right: 15px;
    }
    
    .domain-result {
        flex-direction: column;
        text-align: center;
    }
    
    .domain-result .result-info {
        flex-direction: column;
    }
}

/* ==========================================
   EMAIL HOSTING - FEATURE CARDS
   ========================================== */

.email-features-cards {
    padding: 80px 0;
    background: var(--bg-secondary);
}

.feature-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.email-feature-card {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.email-feature-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.feature-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(229, 62, 62, 0.2), rgba(229, 62, 62, 0.05));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 15px;
}

.feature-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent-primary);
    font-weight: 600;
    font-size: 0.95rem;
}

.feature-card-link .arrow {
    transition: transform 0.3s ease;
}

.email-feature-card:hover .feature-card-link .arrow {
    transform: translateX(5px);
}

/* ==========================================
   EMAIL HOSTING - RSPAMD SECTION
   ========================================== */

.rspamd-section,
.how-rspamd-works {
    padding: 100px 0;
}

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

.rspamd-content.reverse {
    direction: rtl;
}

.rspamd-content.reverse > * {
    direction: ltr;
}

.rspamd-text .section-badge {
    display: inline-block;
    margin-bottom: 20px;
}

.rspamd-text h2 {
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 25px;
}

.rspamd-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.rspamd-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.security-illustration {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shield-icon {
    font-size: 8rem;
    animation: pulse-glow 2s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        filter: drop-shadow(0 0 20px rgba(229, 62, 62, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 40px rgba(229, 62, 62, 0.6));
    }
}

.security-lines {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 40px;
    opacity: 0.3;
}

.security-lines span {
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-primary), transparent);
}

/* Filter Illustration */
.filter-illustration {
    width: 100%;
    max-width: 400px;
}

.email-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.email-icon {
    font-size: 3rem;
    padding: 20px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
}

.email-icon.incoming {
    animation: incoming-email 2s ease-in-out infinite;
}

@keyframes incoming-email {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.filter-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 25px 30px;
    background: linear-gradient(135deg, var(--accent-primary), #c53030);
    border-radius: var(--radius-md);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    text-align: center;
}

/* ==========================================
   EMAIL HOSTING - BENEFITS
   ========================================== */

.email-benefits {
    padding: 100px 0;
    background: var(--bg-secondary);
    text-align: center;
}

.email-benefits .section-badge {
    display: inline-block;
    margin-bottom: 15px;
}

.email-benefits h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: left;
    margin-bottom: 50px;
}

.benefit-card {
    padding: 30px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.15rem;
    margin-bottom: 15px;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

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

/* ==========================================
   EMAIL HOSTING - QUICK PRICING
   ========================================== */

.quick-pricing {
    padding: 100px 0;
    text-align: center;
}

.quick-pricing .section-badge {
    display: inline-block;
    margin-bottom: 15px;
}

.quick-pricing h2 {
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.pricing-tabs {
    max-width: 600px;
    margin: 0 auto;
}

.tab-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn:hover {
    border-color: var(--accent-primary);
}

.tab-btn.active {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: white;
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.quick-price-card {
    padding: 40px;
    background: var(--bg-card);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    text-align: center;
}

.quick-price-card h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.quick-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 25px;
}

.quick-price .from {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quick-price .amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-primary);
}

.quick-price .currency {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.quick-price .period {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.quick-price-card .btn {
    margin-bottom: 25px;
}

.quick-features {
    list-style: none;
    text-align: left;
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
}

.quick-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    position: relative;
    padding-left: 25px;
}

.quick-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* ==========================================
   EMAIL HOSTING - FAQ
   ========================================== */

.faq-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 50px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
}

.faq-question h3 {
    font-size: 1.05rem;
    margin: 0;
}

.faq-icon {
    color: var(--text-muted);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 25px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* 2-Column Pricing Grid */
.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
    margin: 0 auto 60px;
}

/* 2-Column Comparison Header */
.comparison-header-2 {
    grid-template-columns: 1.5fr 1fr 1fr;
}

/* 2-Column Comparison Row */
.comparison-row-2 {
    grid-template-columns: 1.5fr 1fr 1fr;
}

/* ==========================================
   RESPONSIVE - EMAIL HOSTING
   ========================================== */

@media (max-width: 992px) {
    .feature-cards-grid {
        grid-template-columns: 1fr;
    }
    
    .email-feature-card {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-card-icon {
        margin: 0 auto;
    }
    
    .rspamd-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .rspamd-content.reverse {
        direction: ltr;
    }
    
    .rspamd-text {
        text-align: center;
    }
    
    .rspamd-text h2 {
        font-size: 1.8rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid-2 {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .email-flow {
        flex-direction: column;
    }
    
    .comparison-header-2,
    .comparison-row-2 {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-header-2 .plan-header:first-child,
    .comparison-row-2 .comparison-label {
        display: none;
    }
}

