/* Web Design Modern Page - Purple Theme */

:root {
    --wd-primary: #8b5cf6;
    --wd-primary-dark: #7c3aed;
    --wd-primary-light: #a78bfa;
    --wd-accent: #c4b5fd;
    --wd-dark: #0f172a;
    --wd-text: #334155;
    --wd-text-muted: #64748b;
    --wd-glass: rgba(139, 92, 246, 0.1);
    --wd-glass-border: rgba(139, 92, 246, 0.2);
    /* Domain checker variables (matching homepage) */
    --gradient-start: #6d0e80;
    --gradient-mid: #580869;
    --gradient-end: #160531;
    --accent-green: #22c55e;
    --text-dark: #1f2937;
    --text-muted: #6b7280;
    --bg-light: #f8fafc;
    --border-color: #e5e7eb;
    --white: #ffffff;
}

/* ===== Domain Checker (shared component) ===== */
.domain-modern {
    padding: 80px 0;
    background: var(--white);
}

.domain-card-modern {
    background: var(--bg-light);
    border-radius: 20px;
    padding: 48px;
}

.domain-header h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.domain-header p {
    color: var(--text-muted);
}

.search-input-wrapper {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    gap: 12px;
    background: var(--white);
    border-radius: 14px;
    padding: 12px;
    border: 2px solid var(--border-color);
    margin-top: 24px;
    transition: all 0.3s;
}

.search-input-wrapper:focus-within {
    border-color: var(--gradient-start);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 18px;
    font-size: 16px;
    outline: none;
    direction: ltr;
    text-align: left;
}

.search-input-wrapper button {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-mid));
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 120px;
    justify-content: center;
}

.search-input-wrapper button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.search-input-wrapper button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.search-input-wrapper button.loading .btn-text { display: none; }
.search-input-wrapper button.loading i { display: none; }

.search-input-wrapper button .btn-spinner {
    display: none;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

.search-input-wrapper button.loading .btn-spinner { display: block; }

@keyframes spin { to { transform: rotate(360deg); } }

/* Domain Results */
.domain-results-modern { margin-top: 20px; }

.domain-results-modern .d-flex {
    background: var(--white);
    border-radius: 12px;
    padding: 16px 20px;
    margin-bottom: 10px;
    border: 2px solid var(--border-color);
    align-items: center;
    gap: 16px;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.domain-results-modern .domain-status { flex: 1; }
.domain-results-modern .domain-status p { margin: 0; font-weight: 600; font-size: 15px; }
.domain-results-modern .success-color p { color: var(--accent-green); }
.domain-results-modern .pink-color p { color: #e11d48; }
.domain-results-modern .price { font-weight: 700; color: var(--text-dark); font-size: 16px; }
.domain-results-modern .price p { margin: 0; }

.domain-results-modern .domain-status-btn button {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.domain-results-modern .green-btn { background: var(--accent-green); color: white; }
.domain-results-modern .green-btn:hover { background: #16a34a; }
.domain-results-modern .pink-btn { background: #fce7f3; color: #be185d; }
.domain-results-modern .pink-btn:hover { background: #fbcfe8; }

/* Domain Prices Row */
.domain-prices-row {
    display: flex;
    align-items: center;
    gap: 32px;
    margin-top: 32px;
    padding-top: 32px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.domain-price-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 12px 18px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.domain-price-item:hover {
    border-color: var(--gradient-start);
    box-shadow: 0 4px 15px rgba(165, 17, 140, 0.1);
}

.price-info { display: flex; flex-direction: column; gap: 2px; }
.price-info .tld { font-weight: 700; color: var(--text-dark); font-size: 15px; }
.price-info .price { font-size: 13px; color: var(--gradient-start); font-weight: 600; }
.price-info .price small { font-weight: 400; color: var(--text-muted); }

.view-all-domains {
    margin-right: auto;
    color: var(--gradient-start);
    font-weight: 600;
    text-decoration: none;
}

/* ===== Hero Section ===== */
.wd-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}

.wd-hero-bg {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 0;
}

.wd-hero .container { position: relative; z-index: 1; }

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

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

.wd-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 24px;
}

.wd-badge svg { width: 20px; height: 20px; }

.wd-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.3;
    text-align: right;
}

.wd-hero-desc {
    font-size: 1.2rem;
    margin-bottom: 32px;
    line-height: 1.8;
}

.wd-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 36px;
}

.wd-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
}

.wd-feature-item i { font-size: 16px; }

.wd-hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.btn-wd-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4);
}

.btn-wd-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.5);
    color: #fff;
}

.btn-wd-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255,255,255,0.3);
    cursor: pointer;
}

.btn-wd-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}

/* Hero Visual - Browser Frame */
.wd-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.wd-browser-frame {
    width: 380px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 16px;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.browser-dots {
    display: flex;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.browser-dots span:nth-child(1) { background: #ef4444; }
.browser-dots span:nth-child(2) { background: #f59e0b; }
.browser-dots span:nth-child(3) { background: #22c55e; }

.browser-url {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    margin: 0 14px;
    background: rgba(255,255,255,0.06);
    border-radius: 8px;
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    direction: ltr;
}

.browser-url svg { color: #22c55e; flex-shrink: 0; }

.browser-content { padding: 18px; }

.browser-nav-bar {
    height: 8px;
    width: 60%;
    background: rgba(255,255,255,0.12);
    border-radius: 4px;
    margin-bottom: 18px;
}

.browser-hero-block {
    height: 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.3), rgba(167, 139, 250, 0.2));
    border-radius: 10px;
    margin-bottom: 18px;
}

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

.browser-card-item {
    height: 50px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
}

.wd-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 14px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    animation: wdFloatCard 5s ease-in-out infinite;
}

.wd-floating-card span:not(.card-icon) { font-size: 14px; font-weight: 600; color: var(--wd-dark); }

.wd-floating-card .card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    border-radius: 10px;
    color: #fff;
    font-size: 18px;
}

.wd-floating-card .card-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); }
.wd-floating-card .card-icon.green svg { color: #fff; }

.wd-floating-card.card-1 { top: 60px; right: -20px; animation-delay: 0s; }
.wd-floating-card.card-2 { bottom: 80px; left: -10px; animation-delay: -2s; }

@keyframes wdFloatCard { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }


/* Section Header */
.section-header-modern { margin-bottom: 60px; }

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--wd-glass), rgba(167, 139, 250, 0.15));
    border: 1px solid var(--wd-glass-border);
    border-radius: 50px;
    color: var(--wd-primary-dark);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.section-header-modern h2 { font-size: 2.5rem; font-weight: 700; color: var(--wd-dark); margin-bottom: 16px; }
.section-header-modern p { font-size: 1.1rem; color: var(--wd-text-muted); }


/* Theme Gallery */
.wd-themes { padding: 100px 0; background: #fff; }

.theme-filter-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 50px;
}

.theme-filter-btn {
    padding: 12px 28px;
    background: #f8fafc;
    border: 2px solid #e2e8f0;
    border-radius: 50px;
    color: var(--wd-text);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.theme-filter-btn:hover {
    border-color: var(--wd-primary-light);
    color: var(--wd-primary-dark);
}

.theme-filter-btn.active {
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    border-color: transparent;
    color: #fff;
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.3);
}

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

.theme-card-modern {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.theme-card-modern.theme-show {
    animation: themeIn 0.3s ease forwards;
}

.theme-card-modern.theme-hide {
    animation: themeOut 0.3s ease forwards;
}

@keyframes themeIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes themeOut {
    from { opacity: 1; transform: scale(1); }
    to { opacity: 0; transform: scale(0.9); }
}

.theme-card-modern:hover {
    transform: translateY(-8px);
    border-color: var(--wd-primary-light);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.theme-image-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/4.5;
}

.theme-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.theme-card-modern:hover .theme-image-wrapper img {
    transform: scale(1.05);
}

.theme-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(15, 23, 42, 0.7);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.theme-card-modern:hover .theme-overlay { opacity: 1; }

.theme-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.theme-btn.preview {
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    color: #fff;
}

.theme-btn.preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.5);
    color: #fff;
}

.theme-btn.order {
    background: #fff;
    color: var(--wd-dark);
}

.theme-btn.order:hover {
    transform: translateY(-2px);
    color: var(--wd-dark);
}

.theme-card-modern h3 {
    padding: 20px 24px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--wd-dark);
    text-align: center;
    margin: 0;
}


/* WordPress Section */
.wd-wordpress {
    padding: 100px 0;
    background: linear-gradient(180deg, #faf5ff 0%, #f3e8ff 50%, #fff 100%);
}

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

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

.wd-wordpress-text h2 {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 20px;
}

.wd-wordpress-text > p {
    font-size: 1.1rem;
    color: var(--wd-text-muted);
    line-height: 1.8;
    margin-bottom: 28px;
}

.wd-wp-features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
}

.wd-wp-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    font-size: 15px;
    font-weight: 500;
    color: var(--wd-text);
    border-bottom: 1px solid #f1f5f9;
}

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

.wd-wp-features li svg { color: var(--wd-primary); flex-shrink: 0; }

.wd-wordpress-image {
    display: flex;
    justify-content: center;
}

.wd-wordpress-image img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}


/* Benefits Grid */
.wd-benefits { padding: 100px 0; background: #fff; }

.wd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.wd-benefit-card {
    background: #fff;
    border: 2px solid #f1f5f9;
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s ease;
}

.wd-benefit-card:hover {
    transform: translateY(-8px);
    border-color: var(--wd-primary);
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15);
}

.wd-benefit-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.3);
}

.wd-benefit-icon svg { width: 32px; height: 32px; color: #fff; }

.wd-benefit-icon.green { background: linear-gradient(135deg, #22c55e, #16a34a); box-shadow: 0 10px 30px rgba(34, 197, 94, 0.3); }
.wd-benefit-icon.orange { background: linear-gradient(135deg, #f59e0b, #d97706); box-shadow: 0 10px 30px rgba(245, 158, 11, 0.3); }
.wd-benefit-icon.blue { background: linear-gradient(135deg, #3b82f6, #2563eb); box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3); }
.wd-benefit-icon.pink { background: linear-gradient(135deg, #ec4899, #db2777); box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3); }
.wd-benefit-icon.purple { background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark)); }

.wd-benefit-card h3 { font-size: 1.1rem; font-weight: 700; color: var(--wd-dark); margin-bottom: 10px; }
.wd-benefit-card p { font-size: 14px; color: var(--wd-text-muted); line-height: 1.7; margin: 0; }


/* CTA Section */
.wd-cta { padding: 80px 0; background: linear-gradient(180deg, #f3e8ff 0%, #fff 100%); }

.cta-card {
    text-align: center;
    padding: 80px 50px;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    border-radius: 30px;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -25%;
    width: 100%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 60%);
}

.cta-content h2 { position: relative; font-size: 2.25rem; font-weight: 700; color: #fff; margin-bottom: 16px; }
.cta-content p { position: relative; font-size: 1.1rem; color: rgba(255, 255, 255, 0.9); margin-bottom: 32px; }

.cta-buttons { position: relative; display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: #fff;
    color: var(--wd-primary-dark);
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    color: var(--wd-primary-dark);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 14px;
    text-decoration: none;
    border: 2px solid rgba(255,255,255,0.5);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-cta-secondary:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
    color: #fff;
}


/* Modal */
.consult-modal { border: none; border-radius: 24px; overflow: hidden; }

.modal-close {
    position: absolute;
    top: 20px; left: 20px;
    width: 40px; height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.modal-close:hover { background: #f3f4f6; transform: rotate(90deg); }

.modal-visual {
    background: linear-gradient(135deg, #ede9fe 0%, #e9d5ff 100%);
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.modal-avatar {
    width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    border-radius: 50%;
    color: #fff;
    margin-bottom: 30px;
    box-shadow: 0 20px 50px rgba(139, 92, 246, 0.3);
}

.modal-avatar svg { width: 60px; height: 60px; stroke: #fff; flex-shrink: 0; }

.modal-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 12px 0;
    font-size: 15px;
    color: var(--wd-dark);
}

.modal-contact i { color: var(--wd-primary-dark); }

.modal-form { padding: 50px 40px; }

.modal-form h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--wd-dark);
    margin-bottom: 28px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-free {
    padding: 6px 14px;
    background: var(--wd-glass);
    color: var(--wd-primary-dark);
    font-size: 13px;
    font-weight: 600;
    border-radius: 50px;
}

.modal-form input[type="text"],
.modal-form input[type="tel"],
.modal-form input[type="email"] {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    transition: all 0.3s;
}

.modal-form input:focus { outline: none; border-color: var(--wd-primary); }

.time-select { margin: 20px 0; }
.time-select > label { display: block; font-size: 14px; font-weight: 600; color: var(--wd-dark); margin-bottom: 12px; }
.time-opts { display: flex; gap: 16px; flex-wrap: wrap; }
.time-opts label { display: flex; align-items: center; gap: 8px; font-size: 14px; color: #64748b; cursor: pointer; }
.time-opts input[type="radio"] { width: 18px; height: 18px; accent-color: var(--wd-primary); }

.form-btns { display: flex; gap: 16px; margin-top: 28px; }

.btn-cancel {
    flex: 1;
    padding: 16px;
    background: #fff;
    color: var(--wd-dark);
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cancel:hover { background: #f9fafb; }

.btn-submit {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(135deg, var(--wd-primary), var(--wd-primary-dark));
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4); }


/* Responsive */
@media (max-width: 1200px) {
    .theme-grid { grid-template-columns: repeat(2, 1fr); }
    .wd-benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .wd-hero-content { grid-template-columns: 1fr; text-align: center; }
    .wd-hero-text, .wd-hero h1 { text-align: center; }
    .wd-hero h1 { font-size: 2.5rem; }
    .wd-hero-features, .wd-hero-buttons { justify-content: center; }
    .wd-hero-visual { min-height: 350px; }
    .wd-wordpress-content { grid-template-columns: 1fr; }
    .wd-wordpress-text { text-align: center; }
    .wd-wordpress-text .btn-wd-primary { margin: 0 auto; }
    .wd-wordpress-image { order: -1; }
    .modal-visual { display: none; }
}

@media (max-width: 768px) {
    .wd-hero { padding: 80px 0 60px; }
    .wd-hero h1 { font-size: 2rem; }
    .wd-hero-features { flex-direction: column; align-items: center; }
    .theme-grid, .wd-benefits-grid { grid-template-columns: 1fr; }
    .section-header-modern h2 { font-size: 1.75rem; }
    .theme-filter-buttons { gap: 8px; }
    .theme-filter-btn { padding: 10px 20px; font-size: 13px; }
    .wd-wordpress-text h2 { font-size: 1.75rem; }
    .domain-card-modern { padding: 28px; }
    .domain-prices-row { gap: 16px; }
    .domain-price-item { padding: 10px 14px; }
}

@media (max-width: 576px) {
    .wd-hero h1 { font-size: 1.75rem; }
    .wd-hero-buttons { flex-direction: column; width: 100%; }
    .btn-wd-primary, .btn-wd-secondary { width: 100%; justify-content: center; }
    .wd-browser-frame { width: 280px; }
    .wd-floating-card.card-1 { right: 0; }
    .wd-floating-card.card-2 { left: 0; }
    .cta-card { padding: 50px 24px; }
    .cta-content h2 { font-size: 1.5rem; }
    .cta-buttons { flex-direction: column; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
    .theme-filter-buttons { gap: 6px; }
    .theme-filter-btn { padding: 8px 16px; font-size: 12px; }
}

/* Menu spacing */
.main-menu > li {
    margin-left: 12px !important;
}

.main-menu > li > a {
    padding: 15px 16px !important;
}
