.seo-intro {
    max-width: 900px;
    margin: 40px auto;
    padding: 0 20px;
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
}
:root {
    --cream: #f7f1e8;
    --cream-light: #fbf7f2;
    --tan: #e8dccf;
    --brown: #b48a60;
    --brown-light: #c9a782;
    --brown-dark: #8a6a45;
    --text-main: #2b2b2b;
    --text-secondary: #555;
    --white: #ffffff;
}

/* GLOBAL RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: system-ui, sans-serif;
    background: var(--cream-light);
    color: var(--text-main);
    line-height: 1.6;
}

/* HEADER / HERO */
.hero {
    background: linear-gradient(180deg, #f8f2e7 0%, #e4d4c3 100%);
    padding: 60px 20px 40px;
    text-align: center;
    border-bottom: 1px solid var(--brown-light);
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--brown-dark);
    margin-bottom: 10px;
}

.hero p {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* SEARCH BOX */
.search-box {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.search-box input {
    width: 320px;
    padding: 12px 14px;
    border: 1px solid var(--brown-light);
    border-radius: 8px;
    font-size: 16px;
}

.search-box button {
    padding: 12px 20px;
    background: var(--brown);
    color: var(--white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background .2s ease, transform .15s ease;
}

.search-box button:hover {
    background: var(--brown-light);
    transform: translateY(-2px);
}

/* SEARCH RESULT */
#search-result {
    margin-top: 15px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
}

.result-available { color: #2e7d32; }
.result-taken { color: #b71c1c; }

/* REGISTER BUTTON */
.register-btn {
    margin-left: 10px;
    padding: 8px 14px;
    background: var(--brown);
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: background .2s ease, transform .15s ease;
}

.register-btn:hover {
    background: var(--brown-light);
    transform: translateY(-2px);
}

/* 3 FEATURE BOXES UNDER HERO */
.features {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.feature {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    width: 280px;
    text-align: center;
    border: 1px solid var(--cream);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature h3 {
    color: var(--brown-dark);
    margin-bottom: 10px;
}

/* PRICING GRID (HOME PAGE) */
.pricing-matrix-section {
    padding: 60px 20px;
}

.price-grid-row {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.price-tile-box {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--cream);
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    transition: transform .2s ease, box-shadow .2s ease;
}

.price-tile-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.tile-tld-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--brown-dark);
}

.tile-tld-cost {
    margin-top: 6px;
    font-size: 18px;
    color: var(--text-secondary);
}

.view-all-container {
    text-align: center;
    margin-top: 30px;
}

.view-all-btn {
    padding: 12px 22px;
    background: var(--brown);
    color: var(--white);
    border-radius: 8px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background .2s ease, transform .15s ease;
}

.view-all-btn:hover {
    background: var(--brown-light);
    transform: translateY(-2px);
}

/* 4 FEATURE CARDS (2x2 GRID) */
.features-grid {
    padding: 60px 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--cream);
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);

    min-height: 150px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;

    transition: transform .2s ease, box-shadow .2s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.feature-card h3 {
    color: var(--brown-dark);
    margin-bottom: 10px;
}

/* PRICING PAGE CONTAINER */
.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

/* PRICING PAGE TABLE */
.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.price-table th {
    background: var(--cream);
    color: var(--brown-dark);
    font-weight: 700;
    padding: 14px;
    border-bottom: 1px solid var(--cream-light);
}

.price-table td {
    padding: 14px;
    border-bottom: 1px solid var(--cream-light);
    color: var(--text-main);
}

/* PRICING PAGE SEARCH INPUT */
#searchInput {
    width: 100%;
    padding: 12px;
    background: var(--white);
    border: 1px solid var(--cream);
    color: var(--text-main);
    border-radius: 8px;
    font-size: 16px;
}

/* UNIVERSAL FAQ STYLE */
.faq-item {
    background: var(--white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--cream);
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: transform .2s ease, box-shadow .2s ease;
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.faq-item h3,
.faq-item h4 {
    color: var(--brown-dark);
    margin-bottom: 8px;
    font-size: 20px;
    font-weight: 700;
}

.faq-section > h2 {
    color: var(--brown-dark);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: left;
}

/* FOOTER */
.site-footer {
    background: var(--brown-dark);
    color: var(--white);
    padding: 40px 20px;
    margin-top: 60px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.footer-column h4 { margin-bottom: 10px; }
.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 6px; }
.footer-column a { color: var(--white); text-decoration: none; }

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    font-size: 14px;
}

/* ========================================
   FIX 1: FAQ width restored
   ======================================== */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* ========================================
   FIX 2: Pricing search box readable
   ======================================== */
#searchInput {
    background: var(--white) !important;
    border: 1px solid var(--brown-dark) !important;
    color: var(--text-main) !important;
}

#searchInput::placeholder {
    color: var(--text-secondary);
    opacity: 0.8;
}
